/* Section Background and Text Color */
.white-banner-wrapper {
    margin-top: 30px;
  background-color: white;
  color: #1e3a8a;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in-out;
}

/* Animated Glowing Circles in Background */
.white-banner-wrapper::before,
.white-banner-wrapper::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #93c5fd40, transparent 70%);
  animation: pulseGlow 6s infinite ease-in-out;
  z-index: 0;
}

.white-banner-wrapper::before {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
}

.white-banner-wrapper::after {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 5%;
}

/* Content Container */
.white-banner-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease-out;
}

/* Subtitle */
.white-banner-subtitle {
  font-size: 2.2rem; /* reduced from 2.6rem */
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Title */
.white-banner-title {
  font-size: 4.2rem; /* reduced from 5rem */
  margin-bottom: 26px;
  animation: fadeInUp 1s ease-in-out;
}

/* Highlighted Text in Title */
.text-highlight {
    font-size: 40px;
  color: #2563eb;
  font-weight: bold;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.white-banner-description {
  font-size: 1.4rem; /* reduced from 1.6rem */
  color: #1e3a8a;
  margin-bottom: 45px;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Start Button with Gradient Background */
.start-button {
  background: linear-gradient(to right, #1e3a8a, #60a5fa);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 18px 48px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

.start-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

/* Optional Arrow */
.arrow-wrap {
  display: inline-block;
  margin-left: 10px;
}

.arrow-icon {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  margin-left: 8px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .white-banner-title {
    font-size: 2.6rem; /* was 3rem */
  }
  .white-banner-subtitle {
    font-size: 1.8rem; /* was 2rem */
  }
  .white-banner-description {
    font-size: 1.2rem; /* was 1.3rem */
  }
  .start-button {
    font-size: 1.2rem;
    padding: 14px 32px;
  }
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}













/* Main Section Wrapper */
#zigzag {
  padding: 60px 5%;
  background: linear-gradient(to bottom, #f9fbfd, #e3efff);
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Layout for Each Row */
.zigzag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

/* Image Block */
.zigzag-img {
  flex: 1 1 45%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  animation: fadeIn 1.2s ease-in;
}

.zigzag-img img {
  width: 90%; /* Slightly reduced image size */
  border-radius: 20px;
 
  object-fit: cover;
}

/* Text Block */
.zigzag-text {
  flex: 1 1 50%;
  position: relative;
  top: -40px;
  margin-top: 50px; /* Adds space above text */
  animation: slideUp 1s ease-out;
}

/* Inner Text Styling */
.zigzag-text-box {
  margin-top: 100px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Headings and Paragraphs */
.zigzag-text h4 {
  color: #1976d2;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.zigzag-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.3;
}

.zigzag-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .zigzag-row,
  .zigzag-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .zigzag-text {
    top: 0;
    margin-top: 30px;
  }

  .zigzag-text-box {
    padding: 25px;
  }

  .zigzag-text h2 {
    font-size: 1.4rem;
  }

  .zigzag-img,
  .zigzag-text {
    max-width: 100%;
  }

  .zigzag-img img {
    width: 100%;
  }
}








  
   #howToUsePrompts {
    background: linear-gradient(to bottom, #e0f2ff, #c3dbf4, #a3c4e9);
    padding: 60px 5%;
    font-family: 'Segoe UI', sans-serif;
  }

  .accordion-wrapper {
    max-width: 800px;
    margin: auto;
  }

  .accordion-heading {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #0b2c59;
  }

  .accordion details {
    background-color: #ffffff;
    padding: 18px 20px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
  }

  .accordion details:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .accordion summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a6b;
    cursor: pointer;
  }

  .accordion p {
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #333;
  }

  @media screen and (max-width: 768px) {
    .accordion-heading {
      font-size: 1.8rem;
    }

    .accordion summary {
      font-size: 1rem;
    }
  }
/* HERO SECTION */
#hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
 
}

/* HERO CONTENT BOX */
.hero-content {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out;
  overflow: visible;
}

/* SMALL HEADING */
.hero-content h2 {
  color: #60a5fa;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* MAIN HEADING */
.hero-content h1 {
  font-size: 3rem;
 background-color: darkblue;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  overflow: visible;
  white-space: normal;
}

/* TYPED TEXT FIXED */
.hero-content h1 span#typed-text {
  font-size: 3.5rem;
  color: #0a192f; /* Navy Blue */
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  max-width: 100%;
  padding-right: 8px; /* Space for cursor */
  border-right: 2px solid #60a5fa;
  box-sizing: content-box;
  animation: blink 1s step-end infinite;
}

/* DESCRIPTION */
.hero-content h3 {
  font-size: 1.1rem;
  color:  #3b82f6;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* BUTTON */
.primary-btn {
  background: #3b82f6;
  color: #fff;
  font-weight: bold;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 0 20px #60a5fa;
}

/* ARROW ANIMATION */
.arrow-wrapper {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  animation: slideRight 1s infinite alternate;
}

.arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* GLOWING CIRCLES */
.circle-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(100px);
  z-index: 0;
  animation: moveGlow 8s infinite alternate ease-in-out;
}

.circle-glow.glow1 {
  top: 10%;
  left: 5%;
}

.circle-glow.glow2 {
  bottom: 10%;
  right: 5%;
}

/* ANIMATIONS */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}

@keyframes moveGlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px); }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #60a5fa; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h1 span#typed-text {
    font-size: 2.5rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }
}


    /* Prompt Grid */
    .prompt-section {
      padding: 40px 10%;
      text-align: center;
    }

    .prompt-section h2 {
      font-size: 30px;
      margin-bottom: 30px;
    }

    .prompt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
    }

    .prompt-card {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, background 0.3s ease;
      cursor: pointer;
      font-weight: bold;
    }

    .prompt-card:hover {
      transform: translateY(-10px) scale(1.03);
      background: #e0f7ff;
    }

    /* Why Use Our Prompts */
    .why-box {
      background: white;
      padding: 30px;
      width: 280px;
      text-align: center;
      border-radius: 16px;
      box-shadow: 0 0 18px rgba(0, 153, 255, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 1.2s ease;
    }

    .why-box img {
      width: 60px;
      margin-bottom: 15px;
    }

    .why-box:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 0 25px rgba(0, 153, 255, 0.2);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Trending Prompts */
    .trending-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
    }

    .trend-card {
      background: #e6f4ff;
      padding: 25px;
      text-align: center;
      font-weight: bold;
      font-size: 16px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: 0.3s;
      cursor: pointer;
      animation: pulse 3s infinite;
    }

    .trend-card:hover {
      background: #d0eaff;
      transform: scale(1.05);
      box-shadow: 0 12px 25px rgba(0,153,255,0.2);
    }