/* -------------------------------------------------
   Global Reset + Smooth Layout
-------------------------------------------------- */

/* Remove browser defaults */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root level variables (easy to theme later) */
:root {
  --font-main: "fredoka", sans-serif;
  --text-color: #ffffff;
  --accent: #9d6050;
  --max-width: 1400px;
}

/* Improve font rendering + smooth scrolling */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;       /* ensures page is scrollable */
  scrollbar-width: none;    /* Firefox */
}

html::-webkit-scrollbar {
  display: none;            /* Chrome, Safari, Edge */
}
body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.5;
  overflow-x: hidden; /* Prevent horizontal scroll issues */
}

/* Center all main content constraints */
.secton {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/*-------  HERO SECTION  --------*/
    .hero {
    min-height: 750px;
    background: url("../img/Main-image.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 200px 0px 20px 64px;
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    background-size: 105%;
  }
  100% {
    background-size: 115%;
  }
}

    .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);

  opacity: 0;
  animation: overlayFade 1.2s ease forwards;
}

@keyframes overlayFade {
  to {
    opacity: 1;
  }
}

    /* Dark overlay */
    .hero-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    }

    .hero-content {
    position: relative;
    color: #fefefe;
    width: 100%;
    margin: 0;
  animation: floatHero 6s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatHero {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

    /* ---------- Headings ---------- */
    .hero-text {
    max-width: 700px;
    margin-bottom: 80px; /* creates space above glass card */
    opacity: 0;
    transform: translateY(40px);
    animation: heroTextIn 1s ease forwards;
    animation-delay: 0.4s;
    }

    .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextIn 1s ease forwards;
    animation-delay: 0.7s;
    }

    .black-text {
      background: linear-gradient(90deg, #602C6D, #bf29e4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .brown-text {
      background: linear-gradient(90deg, #c5650c, #f99940);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    @keyframes heroTextIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-glass {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: -32px;
    }

    .glass-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 40px;
    border-radius: 16px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
      opacity: 0;
      transform: translateY(60px) scale(0.96);
      animation: glassReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 1s;
    }

    @keyframes glassReveal {
      0% {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
        backdrop-filter: blur(0px);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(18px);
      }
    }
    .glass-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(
        120deg,
        transparent,
        rgba(23, 0, 29, 0.406),
        transparent
      );
      transform: translateX(-100%);
      animation: glassShine 6s ease-out forwards;
    }

    @keyframes glassShine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }
    .glass-desc {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 16px;
    max-width: 400px;
    }
    /* ---------- CTA + Avatars ---------- */
    .glass-btn {
    display: inline-block;
    position: absolute;
    top: 32px;
    right: 24px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
    overflow: hidden;
    white-space: nowrap;
    }

    /* Gradient shine hover */
    .glass-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(234, 126, 26),
        rgba(96, 44, 109),
        rgb(234, 126, 26)
    );
    transition: all 0.5s ease;
    z-index: 0;
    }

    .glass-btn span {
    position: relative;
    z-index: 1;
    }

    .glass-btn:hover::before {
    left: 0;
    }

    .glass-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    color: #fff;
    }

    /* ---------- Avatar Group ---------- */
    .mentee-avatars {
        display: flex;
        align-items: center;
        margin: 16px 0px;
    }

    .mentee-avatars img,
    .mentee-avatars .more {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        margin-left: -8px;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.6s forwards;
    }

    /* Don’t push the very first circle */
    .mentee-avatars img:first-child {
        margin-left: 0;
    }

    .mentee-avatars .more {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eee;
        color: #333;
        font-size: 13px;
        font-weight: 600;
    }

    .more-text{
        font-size: 0.75rem;
        padding-left: 8px;
        transform: translateY(10px);
        animation: fadeInUp 0.6s forwards;
    }

    /* Animation keyframes */
    @keyframes fadeInUp {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }

    /* Stagger effect */
    .mentee-avatars img:nth-child(1) { animation-delay: 0.2s; }
    .mentee-avatars img:nth-child(2) { animation-delay: 0.4s; }
    .mentee-avatars img:nth-child(3) { animation-delay: 0.6s; }
    .mentee-avatars .more { animation-delay: 0.8s; }
 
    /* ---------- Responsive Breakpoints ---------- */
    @media (max-width: 768px) {
        .hero {
        justify-content: center;
        padding: 8rem 1.5rem 4rem 1.5rem;
        
    animation: none;
    background-size: cover;
    background-position: center;
  }

        .hero::before {
        z-index: 0;
        }

        .hero-content {
        max-width: 1000px;
        z-index: 1;
        text-align: center;
        }
        
        .hero-text {
            margin-bottom: 40px;
        }
        /* ---------- Headings ---------- */
        .hero h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: -1px;
        }

        /* ---------- Glass Card ---------- */
        .hero-glass {
            margin-left: 0px;
        }

        .glass-inner {
        flex-wrap: wrap;
        }

        /* ---------- CTA Button ---------- */
        .glass-btn {
            display: inline-block;
            top: 0;
            right: 0;
            position: relative;
            text-align: center;
            margin-top: 0;
            width: 100%;
        }

        /* ---------- Avatar Group ---------- */
        .mentee-avatars {
        flex-wrap: wrap;
        justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .hero {
            padding: 6rem 1rem 3rem 1rem;
        }
        
        .mentee-avatars img,
        .mentee-avatars .more {
            width: 28px;
            height: 28px;
        }

        .glass-btn span {
            font-size: 0.85rem;
        }
    }
    
/*-------  About Section  --------*/
    .top-wave{
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 105%;
    overflow: hidden;
    line-height: 0;
    background: transparent; /* Important: no black bars */
    }

   .wave-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent; /* Important: no black bars */
    opacity: 1;
    }

    .top-wave svg, .wave-divider svg {
    display: block;
    width: 100%;
    height: 35px; /* short, clean wave */
    opacity: 1;
    }

/*-------  About Section  --------*/
    .about-section {
    padding: 100px 64px;
    background: #fff; 
    position: relative;
    }

    .about-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    }


    /* Show only on mobile screens */
    @media screen and (max-width: 667px) {
    .about-section {
        padding: 80px 24px;
    }
    }

    /* Text styles */
    .about-text {
    flex: 1 1 200px;
    }

    .about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #602C6D;
    margin-bottom: 16px;
    }

    .about-text .about-intro {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D98638;
    }

    .about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    }

    .colored-btn {
    position: relative; /* REQUIRED for ::before */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(234, 126, 26);
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
    overflow: hidden; /* IMPORTANT for shine */
  }
  
  .colored-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(234, 126, 26),
        rgba(96, 44, 109),
        rgb(234, 126, 26)
    );
    transition: all 0.6s ease;
    z-index: 0;
  }

  .colored-btn span {
    position: relative;
    z-index: 1;
  }
  .colored-btn:hover::before {
    left: 0;
  }

  .colored-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  }

    .image-right {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .central-image img,
  .child img {
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

    .central-image img.show,
    .child img.show {
    opacity: 1;
    transform: scale(1);
    }

  .central-image img {
    width: 180px;
    height: 180px;
    border: #d98638 solid 2px;
  }

  .child-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 100px;
  }

  .child img {
    width: 150px;
    height: 150px;
    border: #602C6D solid 2px;
  }

  .lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
    
/*---------  IMPACT SECTION  ---------*/
    .impact-section {
    background: #fff; /* clean white background */
    padding: 20px 5px 100px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    }

    .impact-glass {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    padding: 25px 40px;
    border-radius: 20px;
    background: #fff; /* ✅ white card instead of gradient */
    border: 2px solid #602C6D; /* site color border */
    box-shadow: 0 6px 18px rgba(96,44,109,0.15); /* subtle purple shadow */
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
    }

    .impact-item {
    text-align: center;
    flex: 1;
    min-width: 0;
    }

    .impact-item i {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    color: #602C6D; /* site purple for icons */
    }

    .impact-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #602C6D, #D98638); /* gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .impact-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    }

    /* ✅ Responsive */
    @media screen and (max-width: 768px) {
    .impact-glass {
        padding: 20px 15px;
        gap: 10px;
    }

    .impact-item i {
        width: 28px;
        height: 28px;
    }

    .impact-item h3 {
        font-size: 1.2rem;
    }

    .impact-item p {
        font-size: 0.75rem;
    }
    }



/*---------  PROGRAMS SECTION  ---------*/    
    .programs-section {
    background: #faf7f5;
    padding: 80px 64px;
    text-align: center;
    }

    @media screen and (max-width: 667px) {
    .programs-section {
    padding: 60px 24px;
    }
    }

    .programs-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #602C6D;
    }

    .programs-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    }

    .programs-container {
    
    margin: 0 auto;
    }

    .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    }

    .program-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    }

    .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    .program-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    }

    .program-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 20px 20px 10px;
    color: #602C6D;
    }

    .program-card p {
    font-size: 0.95rem;
    color: #333;
    margin: 0 20px 15px;
    line-height: 1.5;
    }

    .program-link {
    display: inline-block;
    margin: 0 20px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D98638;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .program-link:hover {
    color: #602C6D;
    }

    /* Coming Soon badge */
    .coming-soon .coming-soon-badge {
    position: absolute;
    top: 12px;
    right: -40px;
    background: #602C6D;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    /* Disabled-looking link */
    .disabled-link {
    color: #999 !important;
    pointer-events: none;
    cursor: default;
    }

/*---------  ROADMAP SECTION  ---------*/
    .mentorship-roadmap {
    padding: 100px 20px;
    position: relative;
    }

    .roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    }

    /* TITLE */
    .roadmap-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #602C6D;
    }

    .roadmap-intro {
    text-align: center;
    max-width: 600px;
    margin: 10px auto 80px;
    color: #666;
    }

    /* TIMELINE */
    .timeline {
    position: relative;
    }

    .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 120px;
    z-index: 0;
    }

    /* ROW */
    .timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    }

    /* LEFT / RIGHT */
    .timeline-item.left {
    flex-direction: row;
    }

    .timeline-item.right {
    flex-direction: row-reverse;
    }

    /* CARD */
    .timeline-content {
    width: 45%;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }

    /* CONNECTOR LINE */
    .timeline-content::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 40px;
    height: 2px;
    background: #602c6d;
    }

    .timeline-item.left .timeline-content::before {
    right: 50%;
    }

    .timeline-item.right .timeline-content::before {
    left: 50%;
    }

    /* ICON (CENTER DOT) */
    .timeline-icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #602c6d;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
    }

    .timeline-icon.alt {
    background: #d98638;
    }

    /* TEXT */
    .timeline-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #602c6d;
    }

    .timeline-content ul {
    padding: 0;
    list-style: none;
    margin: 10px 0 0;
    }

    .timeline-content ul li {
    margin-bottom: 6px;
    color: #555;
    }

    /* FINAL */
    .timeline-content.final {
    background: linear-gradient(135deg, #602c6d, #d98638);
    color: #fff;
    }

    .timeline-content.final h3,
    .timeline-content.final p {
    color: #fff;
    }

    /* MOBILE */
    @media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-icon {
        left: 20px;
        transform: none;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-line {
        width: 60px;
    }
    }


/* cta-mentorship */
    .cta-mentorship {
    background: linear-gradient(135deg, #602C6D, #D98638);
    padding: 80px 64px;
    color: #fff;
    position: relative;
    overflow: hidden;
    }
    

    @media screen and (max-width: 667px) {
    .cta-mentorship {
    padding: 80px 48px;
    }
    }

    .cta-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    }

    .cta-text {
    flex: 1 1 0px;
    }

    .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    }

    .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    }



    .cta-btn-white {
    position: relative; /* REQUIRED for ::before */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
    overflow: hidden; /* IMPORTANT for shine */
    }

    .cta-btn-white i {
    width: 20px;
    height: 20px;
    }

  .cta-btn-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(234, 127, 26, 0),
        rgba(96, 44, 109, 0.42),
        rgba(234, 127, 26, 0));
    transition: all 0.6s ease;
    z-index: 0;
  }
  
    .cta-btn-white span {
        position: relative;
        z-index: 1;
    }

    .cta-btn-white:hover::before {
        left: 0;
    }

    .cta-btn-white.mentee {
    background: #fff;
    color: #602C6D;
    }

    .cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .cta-image img {
      padding: 16px;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    /* Mobile */
    @media (max-width: 568px) {
      .cta-container {
          flex-direction: column;
          text-align: center;
      }

      .cta-buttons {
          justify-content: center;
      }

      .mentee{
          margin-top: 20px;
      }

      .cta-image img {
          max-width: 100%;
      }
    }

    
/* community vioces */
    .stories-section {
    background: #fff;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    }

    .stories-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #602C6D;
    }

    .stories-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    }

    .stories-container {
    max-width: 2900px;
    margin: 0 auto;
    }

    /* Horizontal scroll carousel */

    .stories-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;     /* allow horizontal scroll */
    overflow-y: hidden;   /* ✅ prevent vertical scroll */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    }


    .story-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: #faf7f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    @media (min-width: 768px) {
    .story-card {
        flex: 0 0 45%; /* show ~2 on tablet/desktop */
    }
    }

    @media (min-width: 1024px) {
    .story-card {
        flex: 0 0 30%; /* show ~3 on large desktops */
    }
    }

    /* ✅ Make images uniform circular profile style */
    .story-card img {
    display: block;
    margin: 20px auto 0 auto;
    width: 120px;
    height: 120px;
    object-fit: cover;   /* fills the circle */
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .story-content {
    padding: 20px;
    text-align: center;
    }

    .story-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: #602C6D;
    }

    .story-content p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
    }

    .story-author {
    font-size: 0.9rem;
    font-weight: 500;
    color: #D98638;
    }

    .story-card:hover {
    
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

/* FAQ Section */
    .faq-section {
    padding: 80px 20px;
    background: #fff;
    color: #111827;
    position: relative;
    }

    .faq-container {
    max-width: 900px;
    margin: 0 auto;
    }

    .faq-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
    }

    /* FAQ Items */
    .faq-item {
    border-bottom: 1px solid #e5e7eb;
    }

    .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
    transition: color 0.3s ease;
    }

    .faq-question:hover {
    color: #4B2E83; /* brand purple */
    }

    .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-left: 0;
    }

    .faq-answer p {
    padding: 0 0 16px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    }

    /* Active state */
    .faq-item.active .faq-answer {
    max-height: 500px; /* enough for content */
    padding-left: 5px;
    }

    .faq-item.active .faq-question {
    color: #4B2E83;
    }
    
/* Beutiful CTA */
    .beautiful-cta {
    position: relative;
    background: linear-gradient(135deg, #602C6D, #D98638);
    color: #fff;
    padding: 80px 64px;
    overflow: hidden;
    }

    @media screen and (max-width: 667px) {
    .beautiful-cta {
    padding: 80px 24px;
    }
    }

    /* glowing overlay circles */
    .beautiful-cta::before, .beautiful-cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(120px);
    z-index: 0;
    }

    .beautiful-cta::before {
    top: -100px;
    left: -100px;
    }

    .beautiful-cta::after {
    bottom: -100px;
    right: -100px;
    }

    .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    }

    .cta-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    }

    .cta-content {
    flex: 1 1 40px;
    }

    .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    }

    .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    }

    
    .cta-image img {
    max-width: 380px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    /* Mobile adjustments */
    @media (max-width: 568px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    .cta-image img {
        max-width: 100%;
    }
    }
        
/* Headline / Title (slides in from left) */
    .leftt {
        opacity: 0;
        animation: textSlideLeft 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 0.9s;
    }

    /* Subtitle (slides in from right) */
    .rightt {
        opacity: 0;
        animation: textSlideRight 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 01.1s;
    }

    /* CTA Buttons (gentle upward + sideways pop) */
    .upp {
        opacity: 0;
        animation: textSlideUp 1.8s ease forwards;
        animation-delay: 2s;
    }


    /* Text slides */
    @keyframes textSlideLeft {
        0% { opacity: 0; transform: translateX(-40px); } /* reduced from -80px */
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes textSlideRight {
        0% { opacity: 0; transform: translateX(40px); } /* reduced from 80px */
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes textSlideUp {
        0% { opacity: 0; transform: translateY(20px) scale(0.97); } /* reduced from 40px */
        100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* WPForms wrapper */
    .contact-form form.wpforms-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Text + Email + Textarea fields */
    .contact-form .wpforms-form input[type="text"],
    .contact-form .wpforms-form input[type="email"],
    .contact-form .wpforms-form input[type="url"],
    .contact-form .wpforms-form input[type="tel"],
    .contact-form .wpforms-form textarea {
        
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        width: 100%;
        padding: 14px 16px;
        border-radius: 12px;
        border: none;
        font-size: 1rem;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15) !important;
        outline: none;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* Placeholders */
    .contact-form .wpforms-form input::placeholder,
    .contact-form .wpforms-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Submit button */
    .contact-form .wpforms-submit {
        padding: 14px 22px !important;
        border: none !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #fff !important;
        background: linear-gradient(135deg, #4B2E83, #F59E0B) !important;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.3s ease;
    }

    .contact-form .wpforms-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Hide labels (optional, since placeholders exist) */
    .contact-form .wpforms-field-label {
        display: none !important;
    }

    /* Make all WPForms fields stretch full width */
    .contact-form .wpforms-field {
        width: 100% !important;
        max-width: 100% !important;
    }