        *{
          margin:0;
          padding:0;
          box-sizing:border-box;
          font-family:'Inter', sans-serif;
          scroll-behavior: smooth;
          
        }

        body{
          background:#fff;
          color:#111;
          overflow-x: hidden;
        }

        /* ================= NAVBAR ================= */
        .navbar{
          max-width:1300px;
          margin:30px auto;
          padding:0 20px;
          display:flex;
          justify-content:space-between;
          align-items:center;
        }
        .navbar a{
            text-decoration: none;
            color: black;
        }
        .mobile-nav a{
            text-decoration: none;
            color: black;
        }

        .logo{
          font-weight:700;
          font-size:20px;
        }
        .logo img{
            height: 55px;
            width: auto;
            padding-left: 32px;
        }

        .nav-pill{
          background:#f3f4f6;
          padding:14px 24px;
          border-radius:50px;
          display:flex;
          gap:24px;
          cursor: pointer;
          font-size:14px;
        }
            .nav-pill a {
                text-decoration: none;
                color: black;
            }



        .signup-btn{
          border:1px solid #111;
          padding:10px 20px;
          border-radius:50px;
          background:#fff;
          cursor: pointer;
          font-weight: 500;
          transition: all 0.3s ease;
        }

        .signup-btn:hover {
          background: #111;
          color: #fff;
        }

        /* ================= HERO ================= */
        .hero{
          max-width:1300px;
          margin:60px auto;
          text-align:center;
          padding:0 20px;
        }

        .hero h1{
          font-size:56px;
          font-weight:600;
          line-height:1.15;
          margin-bottom:28px;
        }

        .hero h1 span{
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.hero h1 span{
  position: relative;
  display: inline-block;
  padding-bottom: 14px; /* space for underline */
}

.hero h1 span::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 17px;

  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1418 125'><path d='M1412.29 72.17c-11.04-5.78-20.07-14.33-85.46-25.24-22.37-3.63-44.69-7.56-67.07-11.04-167.11-22.06-181.65-21.24-304.94-30.56C888.78 1.39 822.57 1.1 756.44 0c-46.63-.11-93.27 1.56-139.89 2.5C365.5 13.55 452.86 7.68 277.94 23.15 202.57 33.32 127.38 45.01 52.07 55.69c-11.23 2.41-22.63 4.17-33.71 7.22C6.1 66.33 5.64 66.19 3.89 67.79c-7.99 5.78-2.98 20.14 8.72 17.5 33.99-9.47 32.28-8.57 178.06-29.66 4.26 4.48 7.29 3.38 18.42 3.11 13.19-.32 26.38-.53 39.56-1.12 53.51-3.81 106.88-9.62 160.36-13.95 18.41-1.3 36.8-3.12 55.21-4.7 23.21-1.16 46.43-2.29 69.65-3.4 120.28-2.16 85.46-3.13 234.65-1.52 23.42.99 1.57-.18 125.72 6.9 96.61 8.88 200.92 27.94 295.42 46.12 40.87 7.91 116.67 23.2 156.31 36.78 3.81 1.05 8.28-.27 10.51-3.58 3.17-3.72 2.66-9.7-.78-13.13-3.25-3.12-8.14-3.44-12.18-5.08' fill='%23facc15'/></svg>") 
  no-repeat center;

  background-size: contain;
}



        .hero-actions{
          display:flex;
          justify-content:center;
          gap:16px;
          margin-bottom:50px;
        }

        .primary-btn{
          background:#111;
          color:#fff;
          padding:14px 28px;
          border-radius:50px;
          border:none;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .primary-btn:hover {
          background: #333;
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .secondary-btn{
          background:#fff;
          border:1px solid #111;
          padding:14px 28px;
          border-radius:50px;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .secondary-btn:hover {
          background: #f3f4f6;
          transform: translateY(-2px);
        }

        /* ================= LOWER ================= */
        .hero-lower{
          display:grid;
          grid-template-columns:1fr 1.3fr 1fr;
          gap:40px;
          align-items:center;
        }

        /* ================= LEFT ================= */
        .left-stack{
          display:flex;
          flex-direction:column;
          gap:65px;
          align-items:center;
        }

        .learners{
          display:flex;
          align-items:center;
          gap:10px;
        }

        .avatars{
          display:flex;
        }

        .avatars img{
          width:40px;
          height:40px;
          border-radius:50%;
          border:2px solid #fff;
          margin-left:-10px;
        }

        .learners span{
          font-size:18px;
          color:#555;
        }

        /* ================= LEVEL CARD ================= */
        .level-card{
          background:#ede9fe;
          padding:18px;
          border-radius:24px;
          width:260px;
        }

        .level-grid{
          display:grid;
          grid-template-columns:1fr 1fr;
          gap:12px;
        }

        .level{
          background:#fff;
          padding:14px 10px;
          border-radius:14px;
          text-align:center;
          font-size:13px;
          font-weight:500;
          transition:0.35s ease;
          cursor: default;
        }

        .level.active{
          background:#6d28d9;
          color:#fff;
          transform:scale(1.08);
          box-shadow:0 12px 30px rgba(109,40,217,0.35);
        }

        /* ================= CENTER VIDEO ================= */
        .video-card{
          background:#f5f5f5;
          border-radius:26px;
          overflow:hidden;
          position:relative;
          height:350px;
          width: 600px;
        }

        .video-card video{
          width:100%;
          height:100%;
          object-fit:cover;
        }


        .online-badge{
          position:absolute;
          top:14px;
          left:14px;
          padding:6px 12px;
          border-radius:50px;
          font-size:12px;
          display:flex;
          align-items:center;
          gap:6px;
          color: white;
          

           background:rgba(255,255,255,0.35);
          backdrop-filter:blur(10px);
          -webkit-backdrop-filter:blur(10px);
          box-shadow:0 8px 22px rgba(0,0,0,0.15);
        }

        .dot-online{
          width:5px;
          height:5px;
          
          background:red;
          border-radius:50%;
          animation: pulse 2s infinite;
        }

        @keyframes pulse {
          0% { opacity: 1; }
          50% { opacity: 0.5; }
          100% { opacity: 1; }
        }

        /* ===== GLASSMORPHISM LANGUAGE PILLS ===== */
        .lang-pills{
          position:absolute;
          bottom:14px;
          left:50%;
          transform:translateX(-50%);
          display:flex;
          gap:12px;
        }

        .lang-pill{
          width:44px;
          height:44px;
          border-radius:50%;
          display:flex;
          align-items:center;
          justify-content:center;
          background:rgba(255,255,255,0.35);
          backdrop-filter:blur(10px);
          -webkit-backdrop-filter:blur(10px);
          border:1px solid rgba(255,255,255,0.45);
          box-shadow:0 8px 22px rgba(0,0,0,0.15);
          cursor: pointer;
          transition: transform 0.3s ease;
        }

        .lang-pill:hover {
          transform: scale(1.1);
        }

        .lang-pill svg{
          width:22px;
          height:22px;
          border-radius:4px;
        }


        /* ================= RIGHT CEFR ================= */
        .cefr-wrap{
          display:flex;
          flex-direction:column;
          align-items:center;
          gap:56px;
        }

        /* TEXT ABOVE CEFR CARD */
        .cefr-intro{
          max-width:260px;
          font-size:15px;
          line-height:1.4;
          color:#6b7280;
          text-align:left;
          letter-spacing: 1.2px;
        }

        /* CEFR CARD */
        .cefr-card{
          width:280px;
          background:#f4f3ff;
          border-radius:30px;
          border:15px solid #facc15;
          padding:16px;
          box-shadow:0 14px 34px rgba(0,0,0,0.08);
        }

        .cefr-content{
          text-align:left;
        }

        .cefr-card h3{
          font-size:15px;
          font-weight:600;
          color:#1f2937;
        }

        .subtitle{
          margin:4px 0 16px;
          font-size:12px;
          color:#6b7280;
        }

        /* ================= PROGRESS ================= */
        .progress{
          display:flex;
          justify-content:space-between;
          position:relative;
          margin-bottom:18px;
        }

        .progress::before{
          content:"";
          position:absolute;
          top:7px;
          left:10px;
          right:10px;
          height:2px;
          background:#dddafe;
        }

        .progress::after{
          content:"";
          position:absolute;
          top:7px;
          left:10px;
          height:2px;
          width:0;
          background:#5b5bf0;
          animation:progressGrow 1.6s ease-out forwards;
        }

        @keyframes progressGrow{
          to{ width:60%; }
        }

        .step{
          position:relative;
          z-index:1;
          display:flex;
          flex-direction:column;
          align-items:center;
          gap:6px;
        }

        .dot{
          width:14px;
          height:14px;
          border-radius:50%;
          background:#c7c4ff;
        }

        .dot.current{
          background:#5b5bf0;
          animation:pulseWave 1.4s infinite;
        }

        @keyframes pulseWave{
          0%{ box-shadow:0 0 0 0 rgba(91,91,240,.4); }
          70%{ box-shadow:0 0 0 10px rgba(91,91,240,0); }
          100%{ box-shadow:0 0 0 0 rgba(91,91,240,0); }
        }

        .dot.upcoming{
          background:#d1d5db;
        }

        .label{
          font-size:11px;
          color:#4b5563;
        }

        .current-level span{
          font-size:11px;
          color:#6b7280;
        }

        .current-level strong{
          display:block;
          margin-top:2px;
          font-size:14px;
          font-weight:600;
        }

        .footer{
          font-size:11px;
          color:#6b7280;
          margin-top: 10px;
        }

        /* ================= MOBILE NAVBAR ================= */
        .mobile-menu-btn {
          display: none;
          flex-direction: column;
          gap: 4px;
          background: none;
          border: none;
          cursor: pointer;
          padding: 8px;
        }

        .mobile-menu-btn span {
          width: 24px;
          height: 2px;
          background-color: #111;
          transition: all 0.3s ease;
        }

        .mobile-nav {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          z-index: 1000;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 30px;
          transform: translateX(100%);
          transition: transform 0.3s ease;
        }

        .mobile-nav.active {
          transform: translateX(0);
        }

        .mobile-nav span {
          font-size: 24px;
          font-weight: 500;
          cursor: pointer;
          padding: 10px 20px;
          transition: color 0.3s ease;
        }

        .mobile-nav span:hover {
          color: #6d28d9;
        }

        .close-menu {
          position: absolute;
          top: 30px;
          right: 30px;
          font-size: 30px;
          background: none;
          border: none;
          cursor: pointer;
          color: #111;
        }

        /* Mobile menu demo button */
        .mobile-demo-btn {
          border: 1px solid #111;
          padding: 12px 24px;
          border-radius: 50px;
          background: #fff;
          cursor: pointer;
          font-weight: 500;
          font-size: 16px;
          margin-top: 20px;
          transition: all 0.3s ease;
        }
        
        .mobile-demo-btn:hover {
          background: #111;
          color: #fff;
        }

        /* ================= RESPONSIVE DESIGN ================= */

        /* Large Tablets (900px - 1100px) */
        @media (max-width: 1100px) {
          .hero-lower {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 40px 20px;
          }
          
          .left-stack {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
          }
          
          .video-card {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
            justify-self: center;
            width: 100%;
            max-width: 600px;
          }
          
          .cefr-wrap {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
          }
          
          .hero h1 {
            font-size: 48px;
          }
        }

        /* Tablets (768px - 900px) */
        @media (max-width: 900px) {
          .navbar{
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 14px;
          }

          .hero-lower{
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto;
            gap: 60px;
          }

          .left-stack, .video-card, .cefr-wrap {
            grid-column: 1 / 2;
          }
          
          .left-stack {
            grid-row: 1 / 2;
            flex-direction: row;
            justify-content: space-around;
            flex-wrap: wrap;
          }
          
          .video-card {
            grid-row: 2 / 3;
            height: 300px;
          }
          
          .cefr-wrap {
            grid-row: 3 / 4;
          }

          .cefr-intro{
            text-align:center;
          }
          
          .hero h1 {
            font-size: 42px;
          }
        }

        /* Mobile Landscape & Small Tablets (600px - 768px) */
        @media (max-width: 768px) {
          .mobile-menu-btn {
            display: flex;
          }
          
          .nav-pill {
            display: none;
          }
          
          /* HIDE THE DEMO BUTTON FROM NAVBAR ON MOBILE */
          .signup-btn {
            display: none !important;
          }
          .logo img{
            height: 46px;
            padding-left: 30px;
            width: auto;
               }
          
          
          .hero {
            margin: 40px auto;
          }
          
          .hero h1 {
            font-size: 36px;
            margin-bottom: 24px;
          }
          
          .hero-actions {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
          }
          
          .primary-btn, .secondary-btn {
            padding: 12px 24px;
            font-size: 14px;
          }
          
          .left-stack {
            gap: 30px;
            flex-direction: column;
          }
          
          .video-card {
            height: 280px;
            border-radius: 20px;
          }
          
          .cefr-intro {
            text-align: center;
            max-width: 100%;
            padding: 0 20px;
          }
          
          .cefr-card {
            width: 100%;
            max-width: 320px;
          }
          
          .level-card {
            width: 100%;
            max-width: 300px;
          }
        }

        /* Mobile Portrait (480px - 600px) */
        @media (max-width: 600px) {
          .navbar {
            margin: 20px auto;
            padding: 0 16px;
          }
          
          .logo {
            font-size: 18px;
          }
          
          /* HIDE THE DEMO BUTTON FROM NAVBAR ON MOBILE */
          .signup-btn {
            display: none !important;
          }
          
          .hero {
            margin: 30px auto;
            padding: 0 16px;
          }
          
          .hero h1 {
            font-size: 32px;
            line-height: 1.2;
          }
          
          .hero-actions {
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
          }
          
          .primary-btn, .secondary-btn {
            width: 100%;
            max-width: 280px;
          }
          
          .hero-lower {
            gap: 40px;
          }
          
          .left-stack {
            gap: 30px;
          }
          
          .learners {
            flex-direction: column;
            gap: 15px;
            text-align: center;
          }
          
          .avatars img {
            width: 36px;
            height: 36px;
          }
          
          .video-card {
            height: 240px;
            border-radius: 18px;
          }
          
          .online-badge {
            font-size: 11px;
            padding: 5px 10px;
          }
          
          .lang-pills {
            gap: 8px;
          }
          
          .lang-pill {
            width: 40px;
            height: 40px;
          }
          
          .lang-pill svg {
            width: 20px;
            height: 20px;
          }
          
          .cefr-card {
            border-width: 12px;
            padding: 14px;
          }
          
          .level-card {
            padding: 16px;
          }
          
          .level {
            padding: 12px 8px;
            font-size: 12px;
          }
        }

        /* Small Mobile Devices (under 480px) */
        @media (max-width: 480px) {
          .hero h1 {
            font-size: 28px;
          }
          
          .hero h1 span {
            border-bottom-width: 3px;
          }
          .logo img{
            height: 45px;
            padding-left: 16px;
          }
          
          .video-card {
            height: 200px;
          }
          
          .cefr-card {
            border-width: 10px;
          }
          
          .level-grid {
            gap: 8px;
          }
          
          .level {
            padding: 10px 6px;
            font-size: 11px;
          }
          
          .cefr-intro {
            font-size: 14px;
            letter-spacing: normal;
          }
          
          .mobile-nav span {
            font-size: 20px;
          }
          
          .mobile-demo-btn {
            padding: 10px 20px;
            font-size: 15px;
          }
        }

        /* Extra Small Mobile Devices (under 360px) */
        @media (max-width: 360px) {
          .hero h1 {
            font-size: 24px;
          }
          
          .video-card {
            height: 180px;
          }
          
          .lang-pill {
            width: 36px;
            height: 36px;
          }
          
          .lang-pill svg {
            width: 18px;
            height: 18px;
          }
          
          .cefr-card {
            border-width: 8px;
          }
          
          .learners span {
            font-size: 16px;
          }
          
          .mobile-nav span {
            font-size: 18px;
          }
          
          .mobile-demo-btn {
            padding: 8px 16px;
            font-size: 14px;
          }
        }

        /* Show navbar demo button only on desktop */
        @media (min-width: 769px) {
          .signup-btn {
            display: block;
          }
        }




        /* ABOVE WAS HERO AND NAVBAR */
/* ===== MAIN WRAPPER ===== */
.hh-stats-strip-wrapper {
  /* margin: 10px 0; */
  /* padding: 50px 20px; */
  text-align: center;
  width: 100%;
}

/* ===== EXAM STATS ===== */
.hh-stats-strip-exam {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hh-stats-strip-exam-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.hh-stats-strip-exam-number {
  font-size: 1.4rem;
  font-weight: 300;
  color: #2563eb;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.hh-stats-strip-exam-label {
  font-size: 1rem;
  font-weight: 400;
  color: #374151;
  text-align: center;
}

/* ===== DIVIDER ===== */
.hh-stats-strip-divider {
  height: 1px;
  width: 60%;
  background: rgba(0,0,0,0.08);
  margin: 20px auto;
  border-radius: 1px;
}

/* ===== COMPANY HEADING ===== */
.hh-stats-strip-heading {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #5f5e63;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ===== COMPANY STRIP ===== */
.hh-stats-strip-company-strip {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: rgb(90 63 192 / 65%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  margin-bottom: 50px;
}

.hh-stats-strip-company-track {
  display: inline-flex;
  gap: 60px;
  animation: hh-stats-strip-scroll 30s linear infinite;
}

.hh-stats-strip-company {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
}

.hh-stats-strip-company:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ===== ANIMATION ===== */
@keyframes hh-stats-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hh-stats-strip-exam {
    gap: 40px;
    margin: 20px;
  }
  .hh-stats-strip-company-track {
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .hh-stats-strip-exam-number {
    font-size: 1.3rem;
  }
  .hh-stats-strip-exam-label {
    font-size: 0.95rem;
  }
  .hh-stats-strip-company {
    font-size: 0.9rem;
  }
  .hh-stats-strip-company-track {
    gap: 30px;
  }
}

        /* ==========  BENTO GRID WHY US SECTION ========================= */
                     /* SECTION HEADING */
.Bento-why-section-heading {
  max-width: 1300px;
  margin: 0 auto 40px;
  text-align: center;
}

.Bento-why-section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}

.Bento-why-section-heading p {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
 .Bento-why-section-card-heading .bbfirst{
  font-size: 36px;
}
/* MAIN GRID (DESKTOP) */
.Bento-why-section-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 740px 420px;
  gap: 20px;
  justify-content: center;
}

/* SECOND ROW FLIP */
.Bento-why-section-grid .Bento-why-section-reverse {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 420px 740px;
  gap: 20px;
}

/* CARD */
.Bento-why-section-card {
  min-height: 333px;
  background: #f2f2f2;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* FIRST CARD - Split layout */
.Bento-why-section-card.Bento-why-section-first {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
}

/* Top heading section */
.Bento-why-section-card-heading {
  padding: 24px;
  background: #f2f2f2;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
  height: 120px;
  display: flex;
  align-items: center;
}

.Bento-why-section-card-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* Certificate container (bottom half) */
.Bento-why-section-certificate-container {
  flex-grow: 1;
  background: #f4f5f7;
  border-radius: 0 0 16px 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.Bento-why-section-glass-wrapper {
  width: 100%;
  height: 100%;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.45),
    0 20px 50px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.Bento-why-section-certificate {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Certificate Header */
.Bento-why-section-certificate .Bento-why-section-header h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.2;
}

.Bento-why-section-certificate .Bento-why-section-header span {
  font-size: 11px;
  color: #6b6b6b;
  margin-top: 4px;
  display: block;
}

/* Certificate Bars */
.Bento-why-section-certificate .Bento-why-section-bars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 15px 0;
}

.Bento-why-section-certificate .Bento-why-section-bar {
  height: 3px;
  border-radius: 3px;
}

.Bento-why-section-certificate .Bento-why-section-bar.Bento-why-section-yellow {
  background: #f4c430;
}

.Bento-why-section-certificate .Bento-why-section-bar.Bento-why-section-blue {
  background: #4a90e2;
}

.Bento-why-section-certificate .Bento-why-section-bar.Bento-why-section-orange {
  background: #f5a623;
}

/* Certificate Content */
.Bento-why-section-certificate .Bento-why-section-content {
  text-align: center;
  margin: 15px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Bento-why-section-certificate .Bento-why-section-label {
  font-size: 11px;
  color: #6b6b6b;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.Bento-why-section-certificate .Bento-why-section-name {
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0;
  color: #1f1f1f;
  line-height: 1.2;
}

.Bento-why-section-certificate .Bento-why-section-description {
  max-width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.4;
  color: #6b6b6b;
}

/* Certificate Footer */
.Bento-why-section-certificate .Bento-why-section-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15px;
  position: relative;
}

.Bento-why-section-certificate .Bento-why-section-sign {
  width: 100px;
  text-align: center;
}

/* Badge Container */
.Bento-why-section-badge-container {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.Bento-why-section-badge-svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0);
  /* Animation controlled by parent class */
}

/* Stamp in animation - ONLY when parent has .Bento-why-section-animate */
.Bento-why-section-animate .Bento-why-section-badge-svg {
  animation: Bento-why-section-stampIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.8s;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@keyframes Bento-why-section-stampIn {
  0% {
    transform: scale(3) rotate(-20deg);
    opacity: 0;
  }
  70% {
    transform: scale(0.9) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Checkmark animation - ONLY when parent has .Bento-why-section-animate */
.Bento-why-section-checkmark-path {
  fill: rgba(48, 48, 48, 0);
  stroke: #303030;
  stroke-width: 1;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  /* Animation controlled by parent class */
}

.Bento-why-section-animate .Bento-why-section-checkmark-path {
  animation: Bento-why-section-drawAndFill 1s ease-out forwards;
  animation-delay: 1.4s;
}

@keyframes Bento-why-section-drawAndFill {
  0% {
    stroke-dashoffset: 120;
    fill: rgba(48, 48, 48, 0);
  }
  70% {
    stroke-dashoffset: 0;
    fill: rgba(48, 48, 48, 0);
  }
  100% {
    stroke-dashoffset: 0;
    fill: rgba(48, 48, 48, 1);
    stroke-width: 0;
  }
}

/* Approved text - ONLY when parent has .Bento-why-section-animate */
.Bento-why-section-approved-text {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: #10a64a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  /* Animation controlled by parent class */
}

.Bento-why-section-animate .Bento-why-section-approved-text {
  animation: Bento-why-section-fadeInUp 0.5s ease forwards;
  animation-delay: 1.8s;
}

@keyframes Bento-why-section-fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Certificate shake effect on stamp - ONLY when parent has .Bento-why-section-animate */
@keyframes Bento-why-section-certificateShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.Bento-why-section-certificate.Bento-why-section-shake {
  animation: Bento-why-section-certificateShake 0.3s ease;
}

/* Signature area */
.Bento-why-section-signature-wrap {
  position: relative;
  height: 40px;
  margin-bottom: 3px;
}

.Bento-why-section-signature-line {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  z-index: 1;
}

.Bento-why-section-signature-wrap svg {
  position: relative;
  width: 100%;
  height: 70%;
  z-index: 2;
}

.Bento-why-section-signature-wrap path {
  fill: none;
  stroke: #111;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  /* Animation controlled by parent class */
}

.Bento-why-section-animate .Bento-why-section-signature-wrap path {
  animation: Bento-why-section-write 3s ease forwards;
}

@keyframes Bento-why-section-write {
  to {
    stroke-dashoffset: 0;
  }
}

.Bento-why-section-certificate .Bento-why-section-sign .Bento-why-section-name {
  font-size: 10px;
  font-weight: 500;
  margin-top: 3px;
}

.Bento-why-section-certificate .Bento-why-section-sign .Bento-why-section-role {
  font-size: 9px;
  color: #6b6b6b;
}

/* Certificate Avatar */
.Bento-why-section-certificate-avatar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4c430;
  display: grid;
  place-items: center;
}

.Bento-why-section-certificate-avatar svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* Hover effect on badge */
.Bento-why-section-badge-container:hover .Bento-why-section-badge-svg {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 25px rgba(16, 166, 74, 0.3));
}

/* DEFAULT HEADING (TOP LEFT) - For other cards */
.Bento-why-section-card h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
  position: absolute;
  top: 24px;
  left: 24px;
  max-width: 80%;
  font-weight: 400;
}

/* SECOND CARD – Language Progress Card */
.Bento-why-section-card.Bento-why-section-second {
  position: relative;
  background: #f2f2f2;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Move heading back to bottom center */
.Bento-why-section-card.Bento-why-section-second h3 {
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  z-index: 10;
  font-size: 20px;
  font-weight: 400;
  color: #111;
}

/* Language Learning Progress Container */
.Bento-why-section-language-progress-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

/* Scaled down progress wrapper to fit */
.Bento-why-section-progress-wrapper {
  width: 100%;
  position: relative;
  height: 320px;
  transform: scale(0.85);
  transform-origin: center;
}

.Bento-why-section-progress-card {
  background: linear-gradient(135deg, #f4a460 0%, #e8894a 100%);
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: absolute;
  overflow: hidden;
  transform: rotate(6deg);
  width: 78%;
  z-index: 2;
  top: 10px;
  left: 110px;
}

.Bento-why-section-progress-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.Bento-why-section-card-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.Bento-why-section-level-badge {
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

.Bento-why-section-level-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
  font-weight: 500;
}

.Bento-why-section-progress-circle-container {
  background: white;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.Bento-why-section-progress-circle {
  width: 120px;
  height: 120px;
  position: relative;
}

.Bento-why-section-progress-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.Bento-why-section-progress-circle-bg {
  fill: none;
  stroke: #e8e8f0;
  stroke-width: 10;
}

.Bento-why-section-progress-circle-fill {
  fill: none;
  stroke: #7c88e8;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  /* Animation controlled by parent class */
}

.Bento-why-section-animate .Bento-why-section-progress-circle-fill {
  animation: Bento-why-section-progressAnimation 1.5s ease-out forwards;
}

@keyframes Bento-why-section-progressAnimation {
  from {
    stroke-dashoffset: 440;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.Bento-why-section-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
  color: #7c88e8;
}

.Bento-why-section-levels-card {
  background: white;
  border-radius: 20px;
  padding: 20px 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  position: absolute;
  width: 100%;
  top: 15px;
  left: 0;
  z-index: 1;
  opacity: 0.95;
}

.Bento-why-section-level-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: #6b5d52;
}

.Bento-why-section-level-icon {
  width: 35px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  color: white;
  margin-right: 12px;
  flex-shrink: 0;
}

.Bento-why-section-level-icon.Bento-why-section-a1 { background: #6ba572; }
.Bento-why-section-level-icon.Bento-why-section-a2 { background: #7eb36a; }
.Bento-why-section-level-icon.Bento-why-section-b1 { background: #d4a946; }
.Bento-why-section-level-icon.Bento-why-section-b2 { background: #e8965e; }
.Bento-why-section-level-icon.Bento-why-section-c1 { background: #d97b7b; }
.Bento-why-section-level-icon.Bento-why-section-c2 { background: #b97ba4; }

/* ========================= */
/* THIRD CARD - Quiz Time & Video Call Overlap */
/* ========================= */
.Bento-why-section-card.Bento-why-section-third {
  background: #f2f2f2;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Stack container for overlapping cards */
.Bento-why-section-stack-container {
  flex-grow: 1;
  position: relative;
  width: 120%;
  top: 24px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quiz Time Card - SCALED DOWN to fit */
.Bento-why-section-quiz-card {
  position: absolute;
  width: 180px;  /* Reduced from 250px */
  height: 180px; /* Reduced from 250px */
  background: #FFD700;
  border-radius: 16px; /* Slightly smaller radius */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px; /* Reduced from 32px */
  font-weight: bold;
  text-align: center;
  transform: rotate(-5deg);
  top: 50%;    /* Centered vertically */
  left: 25%;   /* Adjusted position */
  transform: translate(-50%, -50%) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 1;
}

/* Video Call Card - SCALED DOWN to fit */
.Bento-why-section-video-container {
  position: absolute;
  width: 180px;  /* Reduced from 250px */
  height: 180px; /* Reduced from 250px */
  border: 5px solid #6f63ff; /* Thinner border */
  border-radius: 18px;       
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  
  transform: rotate(3deg);
  top: 50%;       /* Centered vertically */
  left: 55%;      /* Adjusted position */
  transform: translate(-50%, -50%) rotate(3deg);
  z-index: 2;
}

.Bento-why-section-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Bento-why-section-mic-icon {
  position: absolute;
  bottom: 6px;
  right: 10px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 5px 8px;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========================= */
/* FOURTH CARD - Offset Cards UI (SCALED DOWN TO FIT) */
/* ========================= */
.Bento-why-section-card.Bento-why-section-fourth {
  background: #f2f2f2;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Container for both offset cards - SCALED DOWN */
.Bento-why-section-offset-cards-container {
  flex-grow: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  transform: scale(0.75);
  transform-origin: center center;
  margin-top: -10px;
}

/* Offset Cards Variables */
:root {
  --Bento-why-section-board: #ffffff;
  --Bento-why-section-clip: #e5e7eb;
  --Bento-why-section-border: #cbd5e1;
  --Bento-why-section-ink: #0f172a;
  --Bento-why-section-success: #16a34a;
  --Bento-why-section-bg:#f1f5f9;
  --Bento-why-section-paper:#ffffff;
  --Bento-why-section-accent:#2563eb;
  --Bento-why-section-muted:#e5e7eb;
  --Bento-why-section-star:#facc15;
}

/* Clipboard - positioned on left, overlapping - SCALED DOWN */
.Bento-why-section-offset-clipboard {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 280px;
  padding-top: 25px;
  z-index: 5;
}

/* User report - positioned on right, overlapping - SCALED DOWN */
.Bento-why-section-offset-page {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 300px;
  background: var(--Bento-why-section-paper);
  border: 7px solid #d0cde5;
  border-radius: 14px;
  padding: 20px 18px 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,.08);
  z-index: 9;
}

/* Clip - SCALED DOWN */
.Bento-why-section-offset-clip {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--Bento-why-section-clip);
  border: 2px solid var(--Bento-why-section-border);
  border-radius: 5px 5px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.Bento-why-section-offset-clip::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid var(--Bento-why-section-border);
}

/* Board - SCALED DOWN */
.Bento-why-section-offset-board {
  background: var(--Bento-why-section-board);
  border: 2px solid var(--Bento-why-section-border);
  border-radius: 10px;
  padding: 18px 14px 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

/* Header - SCALED DOWN */
.Bento-why-section-offset-header {
  text-align: center;
  margin-bottom: 16px;
}

.Bento-why-section-offset-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--Bento-why-section-ink);
}

.Bento-why-section-offset-subtitle {
  font-size: 10px;
  color: #64748b;
  margin-top: 3px;
}

/* Checklist - SCALED DOWN */
.Bento-why-section-offset-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item - SCALED DOWN */
.Bento-why-section-offset-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Circular checkbox - SCALED DOWN */
.Bento-why-section-offset-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color .3s ease;
}

.Bento-why-section-offset-circle svg {
  width: 12px;
  height: 12px;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transform: scale(.5);
  transition:
    stroke-dashoffset .45s ease,
    transform .35s ease;
}

.Bento-why-section-offset-item.Bento-why-section-checked .Bento-why-section-offset-circle {
  border-color: var(--Bento-why-section-success);
}

.Bento-why-section-offset-item.Bento-why-section-checked .Bento-why-section-offset-circle svg {
  stroke-dashoffset: 0;
  transform: scale(1);
}

/* Placeholder text - SCALED DOWN */
.Bento-why-section-offset-fake-text {
  flex: 1;
  display: grid;
  gap: 4px;
}

.Bento-why-section-offset-fake-text span {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
}

.Bento-why-section-offset-fake-text span:nth-child(1) { width: 90%; }
.Bento-why-section-offset-fake-text span:nth-child(2) { width: 65%; }

/* Footer - SCALED DOWN */
.Bento-why-section-offset-footer {
  margin-top: 16px;
  padding-top: 8px;
  border-top: 1px dashed var(--Bento-why-section-border);
  font-size: 10px;
  color: #475569;
  text-align: center;
}

/* Avatar - SCALED DOWN */
.Bento-why-section-offset-avatar-wrap{
  display:grid;
  place-items:center;
  margin-bottom:14px;
}
.Bento-why-section-offset-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#bfdbfe,#93c5fd);
  position:relative;
}
.Bento-why-section-offset-avatar svg{
  width:24px;
  height:24px;
  fill:#1e3a8a;
  position:absolute;
  inset:0;
  margin:auto;
}
.Bento-why-section-offset-avatar::before,
.Bento-why-section-offset-avatar::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid rgba(37,99,235,.35);
  /* Animation controlled by parent class */
}
.Bento-why-section-offset-avatar::after{animation-delay:1.3s;}
@keyframes Bento-why-section-ripple{
  from{transform:scale(1);opacity:.6}
  to{transform:scale(2.3);opacity:0}
}

.Bento-why-section-animate .Bento-why-section-offset-avatar::before,
.Bento-why-section-animate .Bento-why-section-offset-avatar::after {
  animation: Bento-why-section-ripple 2.6s ease-out infinite;
}

/* Name placeholders - SCALED DOWN */
.Bento-why-section-offset-name{
  display:grid;
  gap:6px;
  margin-bottom:20px;
}
.Bento-why-section-offset-name span{
  height:7px;
  background:var(--Bento-why-section-muted);
  border-radius:999px;
}
.Bento-why-section-offset-name span:first-child{width:55%;margin:auto}
.Bento-why-section-offset-name span:last-child{width:35%;margin:auto}

/* Evaluation rows - SCALED DOWN */
.Bento-why-section-offset-row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed var(--Bento-why-section-border);
}

.Bento-why-section-offset-label{
  height:7px;
  width:70%;
  background:var(--Bento-why-section-muted);
  border-radius:999px;
}

/* Stars - SCALED DOWN */
.Bento-why-section-offset-stars{
  display:flex;
  gap:5px;
}

.Bento-why-section-offset-star{
  width:14px;
  height:14px;
  fill:none;
  stroke:#cbd5e1;
  stroke-width:1.6;
  transform:scale(.8);
  opacity:.4;
  transition:
    fill .35s ease,
    stroke .35s ease,
    transform .35s cubic-bezier(.34,1.56,.64,1),
    opacity .35s ease;
}

.Bento-why-section-offset-star.Bento-why-section-active{
  fill:var(--Bento-why-section-star);
  stroke:var(--Bento-why-section-star);
  transform:scale(1);
  opacity:1;
}

/* ========================= */
/* RESPONSIVE ADJUSTMENTS FOR FOURTH CARD ONLY */
/* ========================= */

/* Tablet */
@media (max-width: 1100px) {
  .Bento-why-section-offset-cards-container {
    transform: scale(0.7);
    margin-top: -15px;
  }
  
  .Bento-why-section-offset-clipboard {
    width: 250px;
    left: 15px;
    bottom: 15px;
  }
  
  .Bento-why-section-offset-page {
    width: 260px;
    right: 3%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .Bento-why-section-card.Bento-why-section-fourth {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
  
  .Bento-why-section-offset-cards-container {
    transform: scale(0.65);
    margin-top: -20px;
  }
  
  .Bento-why-section-offset-clipboard {
    width: 220px;
    left: 10px;
    bottom: 10px;
  }
  
  .Bento-why-section-offset-page {
    width: 230px;
    right: 2%;
    top: 55%;
    scale: 1.2;
  }
  .Bento-why-section-offset-board{
    scale: 1.3;
  }
  .Bento-why-section-offset-clip{
    top: -26px;
  }
  .Bento-why-section-card-heading .bbfirst{
  font-size: 30px;
}
}

/* Small Mobile */
@media (max-width: 480px) {
  .Bento-why-section-offset-cards-container {
    transform: scale(0.6);
    margin-top: 60px;
  }
  
  .Bento-why-section-offset-clipboard {
    width: 190px;
    left: 5px;
    bottom: 5px;
  }
  
  .Bento-why-section-offset-page {
    width: 200px;
    right: -7%;
    top: 8%;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .Bento-why-section-offset-cards-container {
    transform: scale(0.55);
    margin-top: 33px;
  }
      .Bento-why-section-offset-board {
        scale: 1.1;
      }
         .Bento-why-section-offset-clip {
          top: 2px;
         }

             .Bento-why-section-offset-clipboard {
              bottom: -15px;
             }


  
  .Bento-why-section-offset-clipboard {
    width: 170px;
  }
  
  .Bento-why-section-offset-page {
    width: 180px;
  }
}

/* ========================= */
/* TABLET (EXISTING STYLES - UNCHANGED) */
/* ========================= */
@media (max-width: 1100px) {
  .Bento-why-section-grid {
    grid-template-columns: 1fr 1fr;
    margin: 15px;
  }

  .Bento-why-section-grid .Bento-why-section-reverse {
    grid-template-columns: 1fr 1fr;
  }

  .Bento-why-section-card {
    min-height: 320px;
  }
  
  .Bento-why-section-card-heading {
    height: 110px;
    padding: 20px;
  }
  
  .Bento-why-section-card-heading h3 {
    font-size: 22px;
  }
  
  .Bento-why-section-certificate {
    padding: 16px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-name {
    font-size: 20px;
  }
  
  .Bento-why-section-badge-container {
    width: 55px;
    height: 55px;
  }
  
  /* Language Progress Adjustments for Tablet */
  .Bento-why-section-progress-wrapper {
    height: 300px;
    transform: scale(0.8);
  }
  
  .Bento-why-section-progress-card {
    padding: 22px 18px;
    left: 100px;
  }
  
  .Bento-why-section-level-badge {
    font-size: 44px;
  }
  
  .Bento-why-section-progress-circle {
    width: 110px;
    height: 110px;
  }
  
  .Bento-why-section-progress-text {
    font-size: 28px;
  }
  
  .Bento-why-section-levels-card {
    padding: 18px 14px;
  }
  
  .Bento-why-section-level-item {
    font-size: 13px;
    padding: 7px 0;
  }
  
  .Bento-why-section-level-icon {
    width: 32px;
    height: 24px;
    font-size: 11px;
  }
  
  .Bento-why-section-card.Bento-why-section-second h3 {
    font-size: 17px;
    bottom: 20px;
  }
  
  /* Third Card Adjustments for Tablet */
  .Bento-why-section-stack-container {
    padding: 25px;
  }
  
  .Bento-why-section-quiz-card {
    width: 150px;
    height: 150px;
    font-size: 20px;
    left: 25%;
  }
  
  .Bento-why-section-video-container {
    width: 150px;
    height: 150px;
    left: 55%;
  }
  
  .Bento-why-section-mic-icon {
    padding: 4px 7px;
    font-size: 14px;
  }
}

/* ========================= */
/* MOBILE (EXISTING STYLES - UNCHANGED) */
/* ========================= */
@media (max-width: 768px) {
 

  .Bento-why-section-grid,
  .Bento-why-section-grid .Bento-why-section-reverse {
    grid-template-columns: 1fr;
  }

  .Bento-why-section-card {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
  
  .Bento-why-section-card.Bento-why-section-first {
    aspect-ratio: auto;
    min-height: 400px;
  }
  
  .Bento-why-section-card-heading {
    height: 100px;
    padding: 20px;
  }
  
  .Bento-why-section-card-heading h3 {
    font-size: 20px;
  }

  .Bento-why-section-card h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: none;
    font-size: 27px;
  }

  .Bento-why-section-card.Bento-why-section-second h3 {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .Bento-why-section-certificate-container {
    padding: 16px;
  }
  
  .Bento-why-section-glass-wrapper {
    padding: 10px;
  }
  
  .Bento-why-section-certificate {
    padding: 14px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-header h1 {
    font-size: 16px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-name {
    font-size: 18px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-description {
    font-size: 11px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
  }
  
  .Bento-why-section-badge-container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 2;
    margin: 8px 0;
    width: 50px;
    height: 50px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-sign {
    width: 100%;
    max-width: 150px;
  }
  
  .Bento-why-section-signature-wrap {
    height: 35px;
  }
  
  .Bento-why-section-approved-text {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 5px;
    font-size: 8px;
    padding-left: 50%;
  }
  
  /* Language Progress Adjustments for Mobile */
  .Bento-why-section-card.Bento-why-section-second {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
  
  .Bento-why-section-language-progress-container {
    padding: 15px;
  }
  
  .Bento-why-section-progress-wrapper {
    height: 250px;
    transform: scale(0.75);
    left: 69px;
  }
  
  .Bento-why-section-progress-card {
    padding: 20px 15px;
    left: 85px;
    border-radius: 18px;
    width: 50%;
  }
  
  .Bento-why-section-level-badge {
    font-size: 40px;
  }
  
  .Bento-why-section-level-subtitle {
    font-size: 11px;
  }
  
  .Bento-why-section-progress-circle-container {
    padding: 20px;
    border-radius: 14px;
  }
  
  .Bento-why-section-progress-circle {
    width: 100px;
    height: 100px;
  }
  
  .Bento-why-section-progress-text {
    font-size: 28px;
  }
  
  .Bento-why-section-levels-card {
    padding: 16px 12px;
    border-radius: 18px;
    width: 50%;
  }
  
  .Bento-why-section-level-item {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .Bento-why-section-level-icon {
    width: 30px;
    height: 22px;
    font-size: 10px;
    margin-right: 10px;
  }
  
  .Bento-why-section-card.Bento-why-section-second h3 {
    font-size: 21px;
    width: 85%;
    bottom: 18px;
  }
  
  /* Third Card Adjustments for Mobile */
  .Bento-why-section-card.Bento-why-section-third {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
  
  .Bento-why-section-stack-container {
    padding: 20px;
  }
  
  .Bento-why-section-quiz-card {
    width: 130px;
    height: 130px;
    font-size: 18px;
    left: 25%;
  }
  
  .Bento-why-section-video-container {
    width: 130px;
    height: 130px;
    left: 55%;
  }
  
  .Bento-why-section-mic-icon {
    padding: 4px 6px;
    font-size: 14px;
    bottom: 5px;
    right: 8px;
  }
  
  /* RESPONSIVE SECTION HEADING */
  .Bento-why-section-heading {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .Bento-why-section-heading h2 {
    font-size: 2rem;
  }
  
  .Bento-why-section-heading p {
    font-size: 1rem;
  }
}

/* ========================= */
/* SMALL MOBILE (EXISTING STYLES - UNCHANGED) */
/* ========================= */
@media (max-width: 480px) {
  .Bento-why-section-card.Bento-why-section-first {
    min-height: 380px;
  }
  
  .Bento-why-section-card-heading {
    height: 90px;
    padding: 16px;
  }
  
  .Bento-why-section-card-heading h3 {
    font-size: 18px;
  }
  
  .Bento-why-section-certificate-container {
    padding: 12px;
  }
  
  .Bento-why-section-certificate {
    padding: 12px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-header h1 {
    font-size: 15px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-name {
    font-size: 16px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-description {
    font-size: 10px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-sign .Bento-why-section-name {
    font-size: 9px;
  }
  
  .Bento-why-section-certificate .Bento-why-section-sign .Bento-why-section-role {
    font-size: 8px;
  }
  
  /* Language Progress Adjustments for Small Mobile */
  .Bento-why-section-progress-wrapper {
    height: 336px;
    transform: scale(0.7);
  }
  
  .Bento-why-section-progress-card {
    padding: 18px 14px;
    left: 40px;
  }
  
  .Bento-why-section-level-badge {
    font-size: 36px;
  }
  
  .Bento-why-section-level-subtitle {
    font-size: 10px;
  }
  
  .Bento-why-section-progress-circle-container {
    padding: 18px;
  }
  
  .Bento-why-section-progress-circle {
    width: 90px;
    height: 90px;
  }
  
  .Bento-why-section-progress-text {
    font-size: 24px;
  }
  
  .Bento-why-section-levels-card {
    padding: 14px 10px;
  }
  
  .Bento-why-section-level-item {
    font-size: 11px;
    padding: 5px 0;
  }
  
  .Bento-why-section-level-icon {
    width: 28px;
    height: 20px;
    font-size: 9px;
    margin-right: 8px;
  }
  
  .Bento-why-section-card.Bento-why-section-second h3 {
    font-size: 20px;
    bottom: 16px;
  }
  
  /* Third Card Adjustments for Small Mobile */
  .Bento-why-section-stack-container {
    padding: 15px;
    top: 51px;
  }
  
  .Bento-why-section-quiz-card {
    width: 110px;
    height: 110px;
    font-size: 16px;
    left: 25%;
  }
  
  .Bento-why-section-video-container {
    width: 110px;
    height: 110px;
    left: 55%;
  }
  
  .Bento-why-section-mic-icon {
    padding: 3px 5px;
    font-size: 12px;
    bottom: 4px;
    right: 6px;
  }
  
  /* RESPONSIVE SECTION HEADING FOR SMALL MOBILE */
  .Bento-why-section-heading h2 {
    font-size: 1.75rem;
  }
  
  .Bento-why-section-heading p {
    font-size: 0.9375rem;
  }
}

/* Special adjustment for very small screens (EXISTING - UNCHANGED) */
@media (max-width: 380px) {
  .Bento-why-section-progress-wrapper {
    height: 341px;
    transform: scale(0.65);
    left: 33px;
  }
  
  .Bento-why-section-progress-card {
    left: 65px;
  }
  
  .Bento-why-section-level-badge {
    font-size: 32px;
  }
  
  .Bento-why-section-progress-circle {
    width: 85px;
    height: 85px;
  }
  
  .Bento-why-section-progress-text {
    font-size: 22px;
  }
  
  .Bento-why-section-level-item {
    font-size: 10px;
  }
  
  /* Third Card Adjustments for Very Small Mobile */
  .Bento-why-section-quiz-card {
    width: 100px;
    height: 100px;
    font-size: 14px;
    left: 25%;
  }
  
  .Bento-why-section-video-container {
    width: 100px;
    height: 100px;
    left: 55%;
  }
  
  /* RESPONSIVE SECTION HEADING FOR VERY SMALL MOBILE */
  .Bento-why-section-heading h2 {
    font-size: 1.5rem;
    margin-top: 82px;
  }
  
  .Bento-why-section-heading p {
    font-size: 0.875rem;
  }
}



/*  ===================================  HOW IT WORKS SECTION ===================== */
/* Wrapper to replace bdy styling */
.How-it-works-section-wrapper {
  margin: 0;
  padding: 70px 40px;
  background: #fff;
  color: #111;
  
}

.How-it-works-section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

/* Wrapper */
.How-it-works-section-steps {
  max-width: 1100px;
  margin: auto;
}

/* Columns */
.How-it-works-section-grid {
  display: flex;
  gap: 18px;
}

/* Each column */
.How-it-works-section-item {
  flex: 1;
  transition: flex 0.6s ease;
}

/* Card */
.How-it-works-section-card {
  height: 385px;
  background: #fff4b8; /* default light yellow */
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

@media (min-width: 769px) {
  .How-it-works-section-card {
    cursor: pointer;
  }
  
  .How-it-works-section-card:hover {
    background: #fff0a3;
  }
}

.How-it-works-section-item.active .How-it-works-section-card {
  background: #ffd633; /* bright yellow only for active card */
}

/* Number */
.How-it-works-section-number {
  width: 36px;
  height: 36px;
  margin-top: 16px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  /* box-shadow: 0 8px 18px rgba(0,0,0,0.12); */
  border: 2px solid black
}

/* Text */
.How-it-works-section-text {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
}

.How-it-works-section-item.active .How-it-works-section-text {
  opacity: 1;
  transform: translateY(0);
}

.How-it-works-section-text h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.How-it-works-section-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  max-width: 280px;
}

/* ===== Language/Level Selector Styles ===== */
.How-it-works-section-language-level-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.How-it-works-section-item.active .How-it-works-section-language-level-wrapper {
  opacity: 1;
}

.How-it-works-section-selector-container {
  position: relative;
  width: 340px;
  height: 260px;
  transform: scale(0.95);
}

.How-it-works-section-selector-card {
  position: absolute;
  width: 200px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Card breathing animations */
@keyframes How-it-works-section-floatLeft {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes How-it-works-section-floatRight {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.How-it-works-section-language-card {
  left: 0;
  top: 30px;
  z-index: 1;
  animation: How-it-works-section-floatLeft 4.8s ease-in-out infinite;
}

.How-it-works-section-level-card {
  right: 0;
  top: 5px;
  z-index: 5;
  animation: How-it-works-section-floatRight 5.4s ease-in-out infinite;
}

.How-it-works-section-selector-card h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

/* ONE-BY-ONE ITEM LIFT */
@keyframes How-it-works-section-liftSlot {
  0%, 80%, 100% {
    transform: translateY(0);
    box-shadow: none;
  }
  20%, 40% {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  }
}

.How-it-works-section-language-item,
.How-it-works-section-level-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* TOTAL CYCLE = 18s → ONLY ONE ACTIVE */
.How-it-works-section-language-item:nth-of-type(1),
.How-it-works-section-level-item:nth-of-type(1) { animation: How-it-works-section-liftSlot 18s infinite; }
.How-it-works-section-language-item:nth-of-type(2),
.How-it-works-section-level-item:nth-of-type(2) { animation: How-it-works-section-liftSlot 18s infinite 3s; }
.How-it-works-section-language-item:nth-of-type(3),
.How-it-works-section-level-item:nth-of-type(3) { animation: How-it-works-section-liftSlot 18s infinite 6s; }
.How-it-works-section-language-item:nth-of-type(4),
.How-it-works-section-level-item:nth-of-type(4) { animation: How-it-works-section-liftSlot 18s infinite 9s; }
.How-it-works-section-language-item:nth-of-type(5),
.How-it-works-section-level-item:nth-of-type(5) { animation: How-it-works-section-liftSlot 18s infinite 12s; }
.How-it-works-section-language-item:nth-of-type(6),
.How-it-works-section-level-item:nth-of-type(6) { animation: How-it-works-section-liftSlot 18s infinite 15s; }

/* Real hover overrides loop */
.How-it-works-section-language-item:hover,
.How-it-works-section-level-item:hover {
  animation-play-state: paused;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.How-it-works-section-language-item.active {
  border: 1.5px solid #cfd6e4;
  background: #f9fafc;
}

.How-it-works-section-flag {
  font-size: 14px;
}

/* Levels */
.How-it-works-section-level-item { margin-bottom: 8px; }

.How-it-works-section-badge {
  min-width: 26px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 5px;
  color: #fff;
}

.How-it-works-section-a1 { background: #2e7d32; }
.How-it-works-section-a2 { background: #388e3c; }
.How-it-works-section-b1 { background: #f9a825; }
.How-it-works-section-b2 { background: #ef6c00; }
.How-it-works-section-c1 { background: #e53935; }
.How-it-works-section-c2 { background: #c62828; }

/* ===== Live Class UI Styles ===== */
.How-it-works-section-live-class-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.How-it-works-section-item.active .How-it-works-section-live-class-wrapper {
  opacity: 1;
}

.How-it-works-section-live-class-scene {
  position: relative;
  width: 420px;
  height: 260px;
  transform: scale(1.1);
}

/* Glassmorphism main video container */
.How-it-works-section-main-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  position: relative;
}

.How-it-works-section-main-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mic button */
.How-it-works-section-mic-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.How-it-works-section-mic-btn svg {
  width: 16px;
  fill: #fff;
}

/* Small floating video */
.How-it-works-section-small-video {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 115px;
  border-radius: 12px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.How-it-works-section-small-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.How-it-works-section-small-video .How-it-works-section-mic-btn {
  width: 28px;
  height: 28px;
  right: 8px;
  bottom: 8px;
}

/* Quiz card */
.How-it-works-section-quiz {
  position: absolute;
  left: -30px;
  bottom: -20px;
  width: 200px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.How-it-works-section-quiz-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.How-it-works-section-quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.How-it-works-section-option {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px;
  font-size: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.How-it-works-section-option:hover {
  background: #f5f5f5;
}

.How-it-works-section-option span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.How-it-works-section-option.active {
  background: #eef2ff;
  border-color: #4f46e5;
}

.How-it-works-section-option.active span {
  background: #4f46e5;
  color: #fff;
  border: none;
}

/* ===== Laptop Learning Interface Styles ===== */
.How-it-works-section-laptop-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.How-it-works-section-item.active .How-it-works-section-laptop-wrapper {
  opacity: 1;
}

.How-it-works-section-laptop-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  transform: scale(0.9);
}

.How-it-works-section-laptop {
  position: relative;
  z-index: 2;
}

.How-it-works-section-screen {
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px #c8cacb, inset 0 0 0 8px #000;
  height: 240px;
  width: 390px;
  margin: 0 auto;
  padding: 7px 7px 17px 7px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b9b3ff;
  transform-style: preserve-3d;
  transform: perspective(1900px) rotateX(-88.5deg);
  transform-origin: 50% 100%;
}

.How-it-works-section-item.active .How-it-works-section-screen {
  animation: How-it-works-section-open-laptop 2s forwards;
  animation-delay: 0.5s;
}

@keyframes How-it-works-section-open-laptop {
  0% {
    transform: perspective(1900px) rotateX(-88.5deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg);
  }
}

.How-it-works-section-screen::before {
  content: "";
  width: 390px;
  height: 10px;
  position: absolute;
  background: linear-gradient(#979899, transparent);
  top: -2px;
  transform: rotateX(90deg);
  border-radius: 5px 5px;
}

.How-it-works-section-screen::after {
  background: linear-gradient(to bottom, #272727, #0d0d0d);
  border-radius: 0 0 18px 18px;
  bottom: 2px;
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  width: 386px;
}

.How-it-works-section-header {
  width: 80px;
  height: 10px;
  position: absolute;
  background-color: #000;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -0%);
  border-radius: 0 0 5px 5px;
  z-index: 3;
}

.How-it-works-section-keyboard {
  background: radial-gradient(circle at center, #e2e3e4 85%, #a9abac 100%);
  border: solid #a0a3a7;
  border-radius: 2px 2px 10px 10px;
  border-width: 1px 2px 0 2px;
  box-shadow: inset 0 -2px 8px 0 #6c7074;
  height: 20px;
  margin-top: -8px;
  position: relative;
  width: 465px;
  z-index: 1;
}

.How-it-works-section-keyboard::after {
  background: #e2e3e4;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 0 4px 2px #babdbf;
  content: "";
  height: 8px;
  left: 50%;
  margin-left: -45px;
  position: absolute;
  top: 0;
  width: 90px;
}

.How-it-works-section-keyboard::before {
  background: 0 0;
  border-radius: 0 0 3px 3px;
  bottom: -2px;
  box-shadow: -200px 0 #272727, 190px 0 #272727;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 40px;
}

/* LEARNING CARD STYLES */
.How-it-works-section-learning-card-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.How-it-works-section-learning-card {
  width: 363px;
  height: 203px;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  box-sizing: border-box;
  opacity: 0;
}

.How-it-works-section-item.active .How-it-works-section-learning-card {
  animation: How-it-works-section-fade-in 1s forwards;
  animation-delay: 2.5s;
}

@keyframes How-it-works-section-fade-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.How-it-works-section-paper {
  height: 100%;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid #e2e0f5;
  padding: 12px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HEADER */
.How-it-works-section-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.How-it-works-section-title-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.How-it-works-section-title-inner {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #111111;
}

/* CIRCULAR FLAG */
.How-it-works-section-circular-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e2e0f5;
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 33%,
    #dd0000 33%,
    #dd0000 66%,
    #ffce00 66%,
    #ffce00 100%
  );
}

/* LEVEL */
.How-it-works-section-level {
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #f4f2ff;
  border: 1px solid #e2e0f5;
  font-weight: 600;
}

/* CONTENT */
.How-it-works-section-reading {
  flex: 1;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e0f5;
  padding: 10px 12px;
  overflow-y: auto;
}

/* SCROLLBAR */
.How-it-works-section-reading::-webkit-scrollbar {
  width: 4px;
}
.How-it-works-section-reading::-webkit-scrollbar-thumb {
  background: #b9b3ff;
  border-radius: 5px;
}
.How-it-works-section-reading::-webkit-scrollbar-track {
  background: transparent;
}

.How-it-works-section-label {
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 4px;
}

.How-it-works-section-paragraph {
  font-size: 11px;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 10px;
  white-space: pre-wrap;
}

.How-it-works-section-questions {
  border-top: 1px dashed #e2e0f5;
  padding-top: 6px;
}

.How-it-works-section-q {
  font-size: 10.5px;
  margin-bottom: 4px;
  color: #111111;
}

/* INSTRUCTION TEXT */
.How-it-works-section-instruction {
  position: absolute;
  bottom: 60px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-align: center;
  width: 100%;
  opacity: 0;
}

.How-it-works-section-item.active .How-it-works-section-instruction {
  animation: How-it-works-section-show-instruction 1s forwards;
  animation-delay: 3s;
}

@keyframes How-it-works-section-show-instruction {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== MOBILE STYLES (≤768px) - Scroll activation ===== */
@media (max-width: 768px) {
  .How-it-works-section-wrapper {
    padding: 40px 20px;
  }
  
  .How-it-works-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .How-it-works-section-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .How-it-works-section-item {
    width: 100%;
    margin-bottom: 20px;
    scroll-margin-top: 80px; /* For better scroll snapping */
  }
  
  .How-it-works-section-card {
    height: 160px;
    cursor: default; /* Remove cursor pointer on mobile */
  }
  
  .How-it-works-section-card:hover {
    background: inherit; /* Remove hover effect on mobile */
  }
  
  .How-it-works-section-selector-container {
    transform: scale(0.65);
    width: 300px;
    height: 230px;
  }
  
  .How-it-works-section-live-class-scene {
    transform: scale(0.65);
    width: 380px;
    height: 240px;
  }
  
  .How-it-works-section-laptop-container {
    transform: scale(0.55);
  }
  
  .How-it-works-section-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .How-it-works-section-text h4 {
    font-size: 16px;
  }
  
  .How-it-works-section-text p {
    font-size: 13px;
  }
  
  /* On mobile, show step text immediately when active */
  .How-it-works-section-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}

/* ===== DESKTOP & TABLET STYLES (>768px) - Click interaction ===== */
@media (min-width: 769px) {
  /* Hide content in non-active steps on desktop */
  .How-it-works-section-item:not(.active) .How-it-works-section-language-level-wrapper,
  .How-it-works-section-item:not(.active) .How-it-works-section-live-class-wrapper,
  .How-it-works-section-item:not(.active) .How-it-works-section-laptop-wrapper {
    display: none;
  }
  
  /* Show content in active steps */
  .How-it-works-section-item.active .How-it-works-section-language-level-wrapper,
  .How-it-works-section-item.active .How-it-works-section-live-class-wrapper,
  .How-it-works-section-item.active .How-it-works-section-laptop-wrapper {
    display: flex;
  }
  
  /* Remove cursor pointer on non-card elements */
  .How-it-works-section-language-item,
  .How-it-works-section-level-item,
  .How-it-works-section-option,
  .How-it-works-section-mic-btn {
    cursor: pointer;
  }
}



      /*  ====================== BUNDLE CLASS CARDS SECTION ===================== */
              .Bundle-cource-section-wrapper {
            
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            padding: 20px;
            width: 100%;
        }

        /* Container for all content */
        .Bundle-cource-section-main-container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Page Header */
        .Bundle-cource-section-page-header {
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
            padding: 0 20px;
        }

        .Bundle-cource-section-page-title {
            font-size: 2.2rem;
            color: #111827;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .Bundle-cource-section-page-title span {
            color: #5850ec;
        }

        .Bundle-cource-section-page-subtitle {
            font-size: 1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Language Switcher */
        .Bundle-cource-section-language-switcher-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            
            width: 100%;
            max-width: 600px;
            
        }
        
        .Bundle-cource-section-select-text {
            font-size: 0.95rem;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
            text-align: center;
        }
        
        .Bundle-cource-section-language-switcher {
            padding: 6px;
            max-width: 300px;
            display: flex;
            justify-content: center;
            border-radius: 9999px;
            border: 2px solid #e5e7eb;
            background: #ffffff;
            gap: 3px;
            box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
        }

        .Bundle-cource-section-language-switcher-switch {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 0;
            background: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            flex-shrink: 0;
        }

        .Bundle-cource-section-language-switcher-switch:hover {
            transform: translateY(-2px);
            background-color: rgba(99, 102, 241, 0.1);
        }

        .Bundle-cource-section-language-switcher-switch.active {
            background-color: rgba(99, 102, 241, 0.15);
            box-shadow: 0 3px 8px rgba(99, 102, 241, 0.2);
        }

        .Bundle-cource-section-language-switcher-switch:active {
            transform: translateY(0) scale(0.95);
        }

        .Bundle-cource-section-flag-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
        }

        .Bundle-cource-section-language-switcher-switch.active .Bundle-cource-section-flag-icon {
            border-color: #fff;
            transform: scale(1.05);
        }

        .Bundle-cource-section-language-switcher-switch:hover .Bundle-cource-section-flag-icon {
            transform: scale(1.08);
        }

        .Bundle-cource-section-language-display {
            text-align: center;
            padding: 15px;
        }

        .Bundle-cource-section-language-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: #111827;
            min-height: 32px;
            transition: all 0.3s ease;
        }

        .Bundle-cource-section-language-switcher-switch.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #000000;
        }

        /* Bundle Courses Section */
        .Bundle-cource-section-bundles-section {
            width: 100%;
            padding: 30px 20px;
            text-align: center;
        }

        /* Pricing Row - Cards Container */
        .Bundle-cource-section-pricing-row {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: stretch;
            flex-wrap: wrap;
        }

        /* Card Styles - Super Compact */
        .Bundle-cource-section-card {
            background-color: #fcb90e;
            color: #ffffff;
            padding: 24px 20px;
            border-radius: 18px;
            width: 290px;
            text-align: left;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .Bundle-cource-section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .Bundle-cource-section-card.featured {
            background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
            /* transform: scale(1.03); */
            z-index: 2;
        }
        .Bundle-cource-section-card.featured:hover{
          transform: translateY(-6px); box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 24px;
        }

        .Bundle-cource-section-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #111827;
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: 3.5px solid #ffffff;
        }

        .Bundle-cource-section-card-header {
            margin-bottom: 16px;
        }

        .Bundle-cource-section-bundle-levels {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
            justify-content: center;
        }

        .Bundle-cource-section-level-badge {
            font-size: 1.2rem;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 200px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            min-width: 48px;
            text-align: center;
        }

        .Bundle-cource-section-level-to {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin: 0 3px;
        }

        .Bundle-cource-section-card.featured .Bundle-cource-section-level-badge {
            background: rgba(255, 255, 255, 0.15);
        }

        .Bundle-cource-section-bundle-name {
            font-size: 1.4rem;
            margin-bottom: 6px;
            margin-top: 0;
            font-weight: 700;
            line-height: 1.3;
            text-align: center;
        }

        .Bundle-cource-section-card:not(.featured) .Bundle-cource-section-bundle-name {
            color: #ffffff;
        }

        .Bundle-cource-section-description {
            font-size: 0.85rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
            min-height: 55px;
            text-align: center;
        }

        .Bundle-cource-section-divider {
            border: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.226);
            margin: 14px 0;
        }

        /* Bundle Features in 2 columns - Very Compact */
        .Bundle-cource-section-bundle-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
            flex-grow: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 12px;
        }

        .Bundle-cource-section-bundle-features li {
            display: flex;
            align-items: flex-start;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.3;
        }

        .Bundle-cource-section-bundle-features li::before {
            content: '✓';
            display: inline-block;
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            text-align: center;
            line-height: 16px;
            margin-right: 6px;
            font-size: 0.65rem;
            flex-shrink: 0;
            margin-top: 0;
        }

        .Bundle-cource-section-card.featured .Bundle-cource-section-bundle-features li::before {
            background: rgba(255, 255, 255, 0.2);
        }

        .Bundle-cource-section-price-container {
            text-align: center;
            margin-bottom: 16px;
            padding: 12px;
           
            margin-top: 4px;
        }

        .Bundle-cource-section-original-price {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: line-through;
            margin-right: 5px;
        }

        .Bundle-cource-section-price-amount {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 2px;
            line-height: 1;
        }

        .Bundle-cource-section-card:not(.featured) .Bundle-cource-section-price-amount {
            color: #ffffff;
        }

        .Bundle-cource-section-price-period {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 3px;
        }

        .Bundle-cource-section-enroll-button {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
            color: white;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 8px rgba(99, 102, 241, 0.25);
        }

        .Bundle-cource-section-card.featured .Bundle-cource-section-enroll-button {
            background: #111;
            
        }

        .Bundle-cource-section-card:not(.featured) .Bundle-cource-section-enroll-button {
            background: #111;
            
        }

        .Bundle-cource-section-enroll-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(99, 102, 241, 0.35);
        }

        .Bundle-cource-section-card.featured .Bundle-cource-section-enroll-button:hover {
            box-shadow: 0 5px 12px rgba(61, 61, 67, 0.4);
            background: #fff;
    color: #111;
        }

        .Bundle-cource-section-card:not(.featured) .Bundle-cource-section-enroll-button:hover {
            background: #ffffff;
    color: black;
        }

        .Bundle-cource-section-enroll-button:active {
            transform: translateY(0);
        }

        /* Content animation */
        .Bundle-cource-section-content-changing {
            opacity: 0.5;
            transform: translateY(5px);
        }

        /* ===== Tablet ===== */
        @media (max-width: 1024px) {
            .Bundle-cource-section-pricing-row {
                gap: 16px;
            }
            
            .Bundle-cource-section-card {
                width: 280px;
                padding: 22px 18px;
            }
            
            .Bundle-cource-section-card.featured {
                transform: scale(1.02);
            }
            
            .Bundle-cource-section-bundle-features {
                gap: 8px 10px;
            }
            
            .Bundle-cource-section-bundle-features li {
                font-size: 0.76rem;
            }
            
            .Bundle-cource-section-price-amount {
                font-size: 1.7rem;
            }
        }

        /* ===== Mobile ===== */
        @media (max-width: 900px) {
            .Bundle-cource-section-wrapper { 
                padding: 12px 8px; 
            }
            
            .Bundle-cource-section-page-title {
                font-size: 1.8rem;
            }
            
            .Bundle-cource-section-page-subtitle {
                font-size: 0.9rem;
                padding: 0 8px;
            }
            
            .Bundle-cource-section-language-switcher-container {
                margin-bottom: 25px;
                padding: 16px 12px;
            }
            
            .Bundle-cource-section-language-switcher {
                max-width: 260px;
            }
            
            .Bundle-cource-section-language-switcher-switch {
                width: 44px;
                height: 44px;
            }
            
            .Bundle-cource-section-flag-icon {
                width: 36px;
                height: 36px;
            }
            
            .Bundle-cource-section-language-text {
                font-size: 1.2rem;
            }
            
            .Bundle-cource-section-pricing-row {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .Bundle-cource-section-card {
                width: 100%;
                max-width: 380px;
                padding: 20px 18px;
            }
            
            .Bundle-cource-section-card.featured {
                transform: none;
                order: -1;
            }
            
            .Bundle-cource-section-bundles-section {
                padding: 25px 16px;
            }
            
            /* On mobile, revert to single column for features */
            .Bundle-cource-section-bundle-features {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .Bundle-cource-section-bundle-features li {
                font-size: 0.82rem;
            }
        }

        @media (max-width: 480px) {
            .Bundle-cource-section-wrapper { 
                padding: 8px; 
            }
            
            .Bundle-cource-section-page-title {
                font-size: 1.6rem;
            }
            
            .Bundle-cource-section-page-subtitle {
                font-size: 0.85rem;
            }
            
            .Bundle-cource-section-language-switcher {
                max-width: 240px;
                padding: 5px;
            }
            
            .Bundle-cource-section-language-switcher-switch {
                width: 40px;
                height: 40px;
            }
            
            .Bundle-cource-section-flag-icon {
                width: 32px;
                height: 32px;
            }
            
            .Bundle-cource-section-card {
                padding: 18px 16px;
                border-radius: 16px;
                width: 100%;
                max-width: 340px;
            }
            
            .Bundle-cource-section-level-badge {
                font-size: 1.1rem;
                
                min-width: 44px;
            }
            
            .Bundle-cource-section-bundle-name {
                font-size: 1.3rem;
            }
            
            .Bundle-cource-section-price-amount {
                font-size: 1.6rem;
            }
            
            .Bundle-cource-section-bundle-features {
                gap: 7px;
            }
            
            .Bundle-cource-section-bundle-features li {
                font-size: 0.78rem;
            }
            
            .Bundle-cource-section-badge {
                font-size: 0.65rem;
                padding: 3px 10px;
            }
            
            .Bundle-cource-section-enroll-button {
                padding: 10px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 360px) {
            .Bundle-cource-section-card {
                padding: 16px 14px;
            }
            
            .Bundle-cource-section-bundle-features li {
                font-size: 0.75rem;
            }
            
            .Bundle-cource-section-price-amount {
                font-size: 1.5rem;
            }
            
            .Bundle-cource-section-bundle-features {
                gap: 6px;
            }
            
            .Bundle-cource-section-bundle-name {
                font-size: 1.2rem;
            }
            
            .Bundle-cource-section-level-badge {
                font-size: 1rem;
                padding: 4px 8px;
                min-width: 40px;
            }
            
            .Bundle-cource-section-description {
                font-size: 0.8rem;
                min-height: 50px;
            }
        }
        
/* ============   LEVEL WISE CARAUSAL DETAILS ===================== */

        .level-wise-cource-detail-wrapper {
            margin: 0;
            padding: 50px 20px;
            
            
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Language Switcher Styles */
        .level-wise-cource-detail-language-switcher-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 4px;
            width: 100%;
            max-width: 600px;
        }
        
        .level-wise-cource-detail-select-text {
            font-size: 14px;
            color: #555;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-align: center;
        }
        
        .level-wise-cource-detail-language-switcher {
            padding: 6px;
            max-width: 400px;
            display: flex;
            justify-content: center;
            border-radius: 9999px;
            border: 1px solid #e0e0e0;
            background: #eef1f5;
            gap: 2px;
        }

        .level-wise-cource-detail-language-switcher-switch {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 0;
            background: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            flex-shrink: 0;
        }

        .level-wise-cource-detail-language-switcher-switch:hover {
            transform: translateY(-2px);
            background-color: rgba(128, 128, 128, 0.08);
        }

        .level-wise-cource-detail-language-switcher-switch.level-wise-cource-detail-active {
            background-color: rgba(0, 100, 200, 0.1);
            box-shadow: 0 4px 12px rgba(0, 100, 200, 0.15);
        }

        .level-wise-cource-detail-language-switcher-switch:active {
            transform: translateY(0) scale(0.95);
        }

        .level-wise-cource-detail-flag-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .level-wise-cource-detail-language-switcher-switch.level-wise-cource-detail-active .level-wise-cource-detail-flag-icon {
            border-color: #FFF;
            transform: scale(1.05);
        }

        .level-wise-cource-detail-language-switcher-switch:hover .level-wise-cource-detail-flag-icon {
            transform: scale(1.08);
        }

        .level-wise-cource-detail-language-display {
            text-align: center;
            padding: 20px;
            min-width: 200px;
        }

        .level-wise-cource-detail-language-text {
            font-size: 22px;
            font-weight: 300;
            color: #1a1a1a;
            min-height: 40px;
            transition: all 0.3s ease;
            letter-spacing: -0.5px;
        }

        .level-wise-cource-detail-language-switcher-switch.level-wise-cource-detail-active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #111;
        }

        /* Smooth text transition */
        .level-wise-cource-detail-fade-out {
            opacity: 0;
            transform: translateY(10px);
        }

        .level-wise-cource-detail-fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Carousel Container */
        .level-wise-cource-detail-carousel-container {
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Carousel */
        .level-wise-cource-detail-carousel {
            display: flex;
            gap: 20px;
            scroll-behavior: smooth;
            overflow-x: auto;
            padding: 10px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .level-wise-cource-detail-carousel::-webkit-scrollbar {
            display: none;
        }

        /* Card */
        .level-wise-cource-detail-level-card {
            flex: 0 0 auto;
            width: 250px;
        }

        /* Level Container */
        .level-wise-cource-detail-level-box {
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            background: #f6f7f9;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .level-wise-cource-detail-level-card:hover .level-wise-cource-detail-level-box {
            transform: translateY(-2px);
        }

        .level-wise-cource-detail-level {
            font-size: 44px;
            font-weight: 700;
        }

        .level-wise-cource-detail-label {
            font-size: 14px;
            color: #777;
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Duration Pill */
        .level-wise-cource-detail-duration-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #6e696936;
            color: #555;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 12px;
            margin-top: 8px;
        }

        .level-wise-cource-detail-duration-pill svg {
            width: 14px;
            height: 14px;
            stroke-width: 2;
        }

        /* Details */
        .level-wise-cource-detail-details {
            margin-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .level-wise-cource-detail-detail-item {
            display: grid;
            grid-template-columns: 16px 1fr;
            gap: 8px;
            font-size: 14px;
            color: #555;
            max-width: 200px;
            min-height: 36px;
            transition: all 0.3s ease;
        }

        .level-wise-cource-detail-detail-item svg {
            width: 14px;
            height: 14px;
        }

        /* Colors */
        .level-wise-cource-detail-a1 { color: #4aa3df; }
        .level-wise-cource-detail-a2 { color: #e06c8b; }
        .level-wise-cource-detail-b1 { color: #7b6fd6; }
        .level-wise-cource-detail-b2 { color: #f39c4a; }
        .level-wise-cource-detail-c1 { color: #3cb371; }
        .level-wise-cource-detail-c2 { color: #444; }

        /* NAV */
        .level-wise-cource-detail-nav-center {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-top: 40px;
        }

        .level-wise-cource-detail-nav-btn {
            height: 40px;
            width: 40px;
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid #0c0c0c;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.35s ease;
        }

        .level-wise-cource-detail-nav-btn .level-wise-cource-detail-svg {
            fill: #0c0c0c;
            transition: all 0.35s ease;
        }

        .level-wise-cource-detail-nav-btn:hover {
            transform: translateY(-3px);
            background-color: #0c0c0c;
        }

        .level-wise-cource-detail-nav-btn:hover .level-wise-cource-detail-svg {
            fill: #ffffff;
            transform: scale(1.15);
        }

        .level-wise-cource-detail-nav-btn:active {
            transform: translateY(1px);
        }

        /* Header Styling */
        .level-wise-cource-detail-page-header {
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 800px;
            padding: 0 20px;
        }

        .level-wise-cource-detail-page-title {
            font-size: 36px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .level-wise-cource-detail-page-subtitle {
            font-size: 18px;
            color: #666;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Course content animation */
        .level-wise-cource-detail-content-changing {
            opacity: 0.5;
            transform: translateY(5px);
        }

        /* ===== Tablet ===== */
        @media (max-width: 1024px) {
            .level-wise-cource-detail-carousel-container {
                padding: 0 15px;
            }
            
            .level-wise-cource-detail-level-card {
                width: 230px;
            }
            
            .level-wise-cource-detail-carousel {
                gap: 15px;
            }
        }

        /* ===== Mobile ===== */
        @media (max-width: 768px) {
            .level-wise-cource-detail-wrapper { 
                padding: 30px 15px; 
            }
            
            .level-wise-cource-detail-page-title {
                font-size: 28px;
            }
            
            .level-wise-cource-detail-page-subtitle {
                font-size: 16px;
                padding: 0 10px;
            }
            
            .level-wise-cource-detail-language-switcher-container {
                
                padding: 2px;
            }
            
            .level-wise-cource-detail-language-switcher-switch {
                width: 50px;
                height: 50px;
            }
            
            .level-wise-cource-detail-flag-icon {
                width: 40px;
                height: 40px;
            }
            
            .level-wise-cource-detail-language-text {
                font-size: 18px;
            }
            
            .level-wise-cource-detail-level-card { 
                width: 200px;
                min-width: 200px;
            }
            
            .level-wise-cource-detail-level {
                font-size: 36px;
            }
            
            .level-wise-cource-detail-nav-center { 
                display: none;
            }
            
            .level-wise-cource-detail-carousel-container {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .level-wise-cource-detail-wrapper { 
                padding: 20px 10px; 
            }
            
            .level-wise-cource-detail-page-title {
                font-size: 24px;
            }
            
            .level-wise-cource-detail-page-subtitle {
                font-size: 14px;
            }
            
            .level-wise-cource-detail-language-switcher {
                padding: 4px;
                max-width: 300px;
            }
            
            .level-wise-cource-detail-language-switcher-switch {
                width: 45px;
                height: 45px;
            }
            
            .level-wise-cource-detail-flag-icon {
                width: 36px;
                height: 36px;
            }
            
            .level-wise-cource-detail-level-card { 
                width: 180px;
                min-width: 180px;
            }
            
            .level-wise-cource-detail-level {
                font-size: 32px;
            }
            
            .level-wise-cource-detail-level-box {
                padding: 20px;
            }
            
            .level-wise-cource-detail-details {
                margin-top: 12px;
            }
            
            .level-wise-cource-detail-detail-item {
                font-size: 13px;
            }
        }

        @media (max-width: 360px) {
            .level-wise-cource-detail-level-card { 
                width: 160px;
                min-width: 160px;
            }
            
            .level-wise-cource-detail-level-box {
                padding: 16px;
            }
            
            .level-wise-cource-detail-level {
                font-size: 28px;
            }
            
            .level-wise-cource-detail-label {
                font-size: 12px;
            }
            
            .level-wise-cource-detail-detail-item {
                font-size: 12px;
            }
            
            .level-wise-cource-detail-language-switcher-switch {
                width: 40px;
                height: 40px;
            }
            
            .level-wise-cource-detail-flag-icon {
                width: 32px;
                height: 32px;
            }
        }



        /* ======================= TEACHERS SECTION ===================== */
        /* ===== SECTION WRAPPER ===== */
.teacher-section-container {
  max-width: 1200px;
  
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Adjusted for smaller left card */
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  margin-top: 60px;
}

/* ===== LEFT CARD ===== */
.teacher-section-card {
  background: #939ed7;
  color: #fff;
  padding: 40px; /* Reduced padding for smaller card */
  border-radius: 28px;
  max-width: 100%;
  
}

/* ===== BADGE ===== */
.teacher-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.teacher-section-badge-icon {
  width: 26px;
  height: 26px;
  background: #c8ff5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b3a34;
  font-size: 14px;
  font-weight: 700;
}

/* ===== HEADING ===== */
.teacher-section-card h2 {
  font-size: 34px; /* Slightly smaller font */
  line-height: 1.2;
  margin-bottom: 16px;
}

.teacher-section-heading-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Avatar images */
.teacher-section-avatar {
  width: 30px; /* Slightly smaller avatars */
  height: 30px;
  object-fit: cover;
}

.teacher-section-avatar.round {
  border-radius: 50%;
}

.teacher-section-avatar.square {
  border-radius: 8px;
  rotate: -9deg;
}

/* ===== DESCRIPTION ===== */
.teacher-section-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ===== BUTTON ===== */
.teacher-section-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 36px;
  transition: transform 0.2s ease;
}

.teacher-section-btn:hover {
  transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.teacher-section-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  font-size: 14px;
}

.teacher-section-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.teacher-section-feature::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: #fff;
  color: #2f5b52;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ================= HERO CIRCLE STYLES ================= */
.teacher-section-hero-circle {
  position: relative;
  width: 100%;
  max-width: 520px; /* Increased max-width for larger hero circle */
  aspect-ratio: 1/1; /* Maintain circle shape */
  margin: auto;
}

/* OUTER DOTTED RING */
.teacher-section-hero-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed #facc15;
  z-index: 1;
}

/* INNER RING */
.teacher-section-circle-ring {
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  border: 14px solid #facc15;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}

.teacher-section-circle-ring img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 50%;
}

/* ================= FLOATING CARDS ================= */
.teacher-section-floating-card {
  position: absolute;
  background: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  white-space: nowrap;
}

/* ---------------- STUDENTS CARD (YELLOW WAVE) ---------------- */
.teacher-section-floating-card.students {
  top: 5%;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.teacher-section-floating-card.students .teacher-section-students-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.teacher-section-floating-card.students .teacher-section-card-icon {
  width: 36px;
  height: 36px;
  background: #FFC83D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
}

.teacher-section-floating-card.students .teacher-section-card-icon::before,
.teacher-section-floating-card.students .teacher-section-card-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255,200,61,0.5);
  transform: translate(-50%, -50%) scale(1);
  animation: teacher-section-wave 1.5s infinite;
  z-index: -1;
}

.teacher-section-floating-card.students .teacher-section-card-icon::after {
  animation-delay: 0.75s;
}

@keyframes teacher-section-wave {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.7); opacity: 0; }
}

.teacher-section-floating-card.students .teacher-section-card-content h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
.teacher-section-floating-card.students .teacher-section-card-content p {
  font-size: 11px;
  color: #777;
  margin: 2px 0 0;
}

.teacher-section-floating-card.students .teacher-section-avatars {
  display: flex;
  margin-top: 6px;
}
.teacher-section-floating-card.students .teacher-section-avatars img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -6px;
}
.teacher-section-floating-card.students .teacher-section-avatars img:first-child {
  margin-left: 0;
}

/* ---------------- MULTILINGUAL TEACHER CARD ---------------- */
.teacher-section-floating-card.teacher {
  bottom: 10%;
  right: -5%;
  display: flex;
  padding: 12px 14px;
  gap: 20px;
}

.teacher-section-floating-card.teacher .teacher-section-teacher-icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.teacher-section-floating-card.teacher svg {
  width: 36px;
  height: 36px;
  transform: scaleX(-1);
}

.teacher-section-floating-card.teacher .teacher-section-wave {
  position: absolute;
  top: 23px;
  left: 35px;
  width: 4px;
  height: 12px;
  background: #7d6df0;
  border-radius: 6px;
  animation: teacher-section-voice 1.2s infinite ease-in-out;
  opacity: .7;
}
.teacher-section-floating-card.teacher .teacher-section-wave:nth-child(2) { animation-delay: .15s; left: 39px; }
.teacher-section-floating-card.teacher .teacher-section-wave:nth-child(3) { animation-delay: .3s; left: 44px; }

@keyframes teacher-section-voice {
  0%,100% { transform: scaleY(.4); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.teacher-section-floating-card.teacher .teacher-section-teacher-text strong {
  display: block;
  font-size: 13px;
  color: #1b1b1b;
}
.teacher-section-floating-card.teacher .teacher-section-teacher-text span {
  font-size: 11px;
  color: #666;
}

.teacher-section-floating-card.teacher .teacher-section-langs {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.teacher-section-floating-card.teacher .teacher-section-langs .teacher-section-flag-pill {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0edff;
  display: flex;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.teacher-section-floating-card.teacher .teacher-section-langs svg { width: 18px; height: auto; border-radius: 50%; }

/* ---------------- OTHER CARDS ---------------- */
.teacher-section-floating-card.teachers { 
  top: 15%; 
  right: -5%; 
}

.teacher-section-floating-card.chart { 
  bottom: 20%; 
  left: 5%; 
  flex-direction: column; 
  align-items: center; 
}

/* Mini graph bars */
.teacher-section-chart-bars {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  align-items: flex-end;
}

.teacher-section-chart-bars span {
  width: 6px;
  height: 0;
  background: #2ecc71;
  border-radius: 4px;
}

/* ICONS */
.teacher-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.teacher-section-icon.green { background: #e8f8f0; color: #2ecc71; }
.teacher-section-icon.purple { background: #f0edff; color: #7d6df0; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1100px) {
  .teacher-section-container {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 622px;
  }
  
  .teacher-section-hero-circle {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .teacher-section-circle-ring { inset: 22px; }
  
  .teacher-section-card {
    max-width: 600px;
    margin: 16px;
  }
}

@media (max-width: 900px) {
  .teacher-section-card {
    padding: 35px;
  }
  
  .teacher-section-card h2 {
    font-size: 32px;
  }
  
  .teacher-section-hero-circle {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  
  
  .teacher-section-card {
    padding: 30px;
  }
  
  .teacher-section-hero-circle {
    max-width: 360px;
  }
  
  .teacher-section-circle-ring { 
    inset: 20px; 
    border-width: 12px; 
  }
  
  .teacher-section-floating-card.students .teacher-section-card-content h3 { font-size: 12px; }
  .teacher-section-floating-card.students .teacher-section-card-content p { font-size: 10px; }
  .teacher-section-floating-card.students .teacher-section-avatars img { width: 18px; height: 18px; }
  .teacher-section-floating-card.teacher .teacher-section-teacher-text strong { font-size: 12px; }
  .teacher-section-floating-card.teacher .teacher-section-teacher-text span { font-size: 10px; }
  .teacher-section-floating-card.teacher .teacher-section-langs .teacher-section-flag-pill { width: 20px; height: 20px; }
  
  .teacher-section-floating-card.teacher {
    right: -5%;
    bottom: 10%;
  }
  
  .teacher-section-floating-card.teachers {
    top: -1%;
    right: -16%;
  }
}

@media (max-width: 650px) {
  .teacher-section-container {
    gap: 50px;
  }
  
  .teacher-section-hero-circle {
    max-width: 320px;
  }
  
  .teacher-section-circle-ring { 
    inset: 18px; 
    border-width: 10px; 
  }
  
  .teacher-section-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .teacher-section-floating-card {
    transform: scale(0.9);
  }
  
  .teacher-section-floating-card.teacher {
    right: -8%;
    bottom: 8%;
  }
  
  .teacher-section-floating-card.students {
    left: -23%;
  }
}

@media (max-width: 480px) {
 
  .teacher-section-card {
    padding: 24px;
  }
  
  .teacher-section-card h2 {
    font-size: 28px;
  }
  
  .teacher-section-hero-circle {
    max-width: 280px;
  }
  
  .teacher-section-floating-card {
    transform: scale(0.85);
    font-size: 12px;
  }
  
  .teacher-section-floating-card.students {
    left: -8%;
    top: 3%;
  }
  
  .teacher-section-floating-card.chart {
        left: -8%;
        bottom: -1%;
  }
  
  .teacher-section-floating-card.teacher {
    right: 1%;
        bottom: -8%;
        padding: 11px 12px;
  }
  .teacher-section-floating-card.teachers{
    top: -13%;
    right: -1%;
  }
  .teacher-section-floating-card.chart{
        bottom: 20%;
    left: -10%;
  }
  .teacher-section-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .teacher-section-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .teacher-section-badge-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}


/* ====================== TESTIMONIAL SECTION ===================== */
/* SECTION */
.testimonial-section{
  max-width:1100px;
  margin:auto;
  padding:80px 20px;
}

/* HEADING */
.section-head{
  max-width:520px;
  margin-bottom:50px;
}

/* BADGE */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  background:#e8f8ef;
  color:#1f9254;
  font-size:13px;
  font-weight:500;
  border-radius:999px;
  margin-bottom:14px;
}

.badge-icon{
  width:16px;
  height:16px;
  background:#22c55e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.badge-icon svg{
  width:10px;
  height:10px;
  fill:#fff;
  z-index:2;
}

.badge-icon::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(34,197,94,0.6);
  animation:pulse 1.8s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:1;}
  100%{transform:scale(2.4);opacity:0;}
}

.section-head h2{
  font-size:40px;
  font-weight:600;
  color:#111827;
  margin-bottom:12px;
}

.section-head p{
  font-size:16px;
  color:#6b7280;
  line-height:1.6;
}

/* CAROUSEL */
.carousel{
  overflow:hidden;
  width:100%;
}

.track{
  display:flex;
  gap:30px;
  transition:transform 0.6s ease;
  padding:20px 0;
}

/* CARD */
.card{
  flex:0 0 360px;
  background:#f4f4f4;
  border-radius:24px;
  padding:28px;
  
  transition:transform 0.4s ease, opacity 0.4s ease;
}

.card.active{
  transform:scale(1.05);
  opacity:1;
}

.card.inactive{
  transform:scale(0.95);
  opacity:0.6;
}

/* USER */
.user{
  display:flex;
  gap:16px;
  margin-bottom:16px;
}

.user-image{
  width:60px;
  height:60px;
  border-radius:18px;
}

.user img{
  width:100%;
  height:100%;
  border-radius:18px;
  object-fit:cover;
}

.avatar-svg{
  width:100%;
  height:100%;
  border-radius:18px;
  background:#a7a69e;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  font-size:20px;
}

.user-info h4{
  margin:0;
  font-size:18px;
}

.user-info span{
  font-size:14px;
  color:#6b7280;
}

.review{
  font-size:15px;
  color:#374151;
  line-height:1.6;
  margin-bottom:18px;
}

/* FOOTER */
.rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.rating strong{
  font-size:16px;
}

.stars{
  color:#fbbf24;
}

.role{
  font-size:14px;
  color:#6b7280;
  min-height:18px;
}

/* CONTROLS */
.controls{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:30px;
}

.btn{
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  background:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 0.3s;
}

.btn svg{
  width:20px;
  height:20px;
  stroke:#fff;
  stroke-width:2.5;
  fill:none;
}

.btn:hover{
  background:#62cc40;
}

/* TABLET */
@media (max-width: 900px){
  .card{
    flex:0 0 300px;
  }
  .section-head h2{
    font-size:32px;
  }
  .testimonial-section{
  margin: 20px;
}
}


/* MOBILE */
@media (max-width: 600px){
  .testimonial-section{
    padding:60px 16px;
  }

  .card{
    flex:0 0 85%;
  }
  .section-head{
    margin-left: 35px;
  }
  .section-head h2{
    font-size:26px;
  }

  .section-head p{
    font-size:15px;
  }
}

/* ====================== DEMO CLASS FORM ===================== */

.demo-class-form-wrapper {
  margin: 0;
  color: #0f172a;
  padding: 20px;
  overflow-x: hidden;
}

.demo-class-form-hero {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 120px;
  text-align: center;
  position: relative;
}

/* ===== Headings ===== */
.demo-class-form-hero small {
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #f1ae03;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.demo-class-form-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 29px;
}

.demo-class-form-hero h1 span {
  color: #2563eb;
}

.demo-class-form-hero h1 .demo-class-form-free-word {
  position: relative;
  display: inline-block;
  color: #62cc40;
}

.demo-class-form-hero h1 .demo-class-form-free-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 60px;
  z-index: -1;
}

.demo-class-form-hero h1 .demo-class-form-free-svg svg path {
  fill: #fbbf24;
  fill-opacity: 1;
}

.demo-class-form-hero p {
  margin-top: 16px;
  color: #475569;
  font-size: 18px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SVG BASE ===== */
.demo-class-form-svg-holder {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  width: 900px;
  z-index: -5;
  pointer-events: none;
}

/* ===== Floating Card ===== */
.demo-class-form-card {
  position: relative;
  z-index: 2;
  width: 560px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.demo-class-form-card:hover {
  transform: translateY(-2px);
}

/* ===== Form Layout Improvements ===== */
.demo-class-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.demo-class-form-row .demo-class-form-group {
  flex: 1;
  margin-bottom: 0;
}

.demo-class-form-group {
  margin-bottom: 20px;
  position: relative;
}

.demo-class-form-label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 500;
}

.demo-class-form-input,
.demo-class-form-select,
.demo-class-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  font-size: 15px;
  outline: none;
  background-color: #fff;
  transition: all 0.2s ease;
}

.demo-class-form-input:focus,
.demo-class-form-select:focus,
.demo-class-form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.demo-class-form-input::placeholder,
.demo-class-form-textarea::placeholder {
  color: #94a3b8;
}

.demo-class-form-textarea {
  resize: none;
  height: 100px;
  line-height: 1.5;
}

/* ===== Improved Language Selector ===== */
.demo-class-form-language-wrapper {
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
  display: grid;
}

.demo-class-form-language-text {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.demo-class-form-language-switcher {
  padding: 6px;
  width: fit-content;
  display: flex;
  border-radius: 9999px;
  border: 1px solid #e0e0e0;
  background: #eef1f5;
  gap: 4px;
}

.demo-class-form-language-switch {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.demo-class-form-language-switch:hover {
  transform: translateY(-2px);
  background-color: rgba(128, 128, 128, 0.08);
}

.demo-class-form-language-switch.active {
  background-color: rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.demo-class-form-flag-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-class-form-language-switch.active .demo-class-form-flag-icon {
  border-color: #FFF;
  transform: scale(1.05);
}

/* ===== Custom Dropdown ===== */
.demo-class-form-dropdown-wrapper {
  margin-bottom: 20px;
}

.demo-class-form-dropdown {
  position: relative;
}

.demo-class-form-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease;
  background: #f9fafb;
  border: 1.5px solid #e2e8f0;
  width: 100%;
}

.demo-class-form-dropdown-trigger:hover {
  background: #f3f4f6;
  border-color: #cbd5e1;
}

.demo-class-form-dropdown-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  flex-shrink: 0;
}

.demo-class-form-dropdown-text {
  flex: 1;
  font-size: 12px;
  color: #1f2937;
  font-weight: 400;
  text-align: left;
}

.demo-class-form-dropdown-arrow {
  color: #9ca3af;
  font-size: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.demo-class-form-dropdown-trigger.active .demo-class-form-dropdown-arrow {
  transform: rotate(180deg);
}

.demo-class-form-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.demo-class-form-dropdown-menu.active {
  max-height: 450px;
  opacity: 1;
}

.demo-class-form-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  gap: 12px;
}

.demo-class-form-menu-item:hover {
  background: #f9fafb;
}

.demo-class-form-level-badge {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  color: white;
}

.demo-class-form-level-a1 { background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%); }
.demo-class-form-level-a2 { background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); }
.demo-class-form-level-b1 { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); }
.demo-class-form-level-b2 { background: linear-gradient(135deg, #fb923c 0%, #f97316 100%); }
.demo-class-form-level-c1 { background: linear-gradient(135deg, #f87171 0%, #ef4444 100%); }
.demo-class-form-level-c2 { background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }

.demo-class-form-level-info {
  flex: 1;
}

.demo-class-form-level-name {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 2px;
}

.demo-class-form-level-desc {
  font-size: 12px;
  color: #6b7280;
}

/* ===== Button ===== */
.demo-class-form-submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.demo-class-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.demo-class-form-submit-btn:active {
  transform: translateY(0);
}

/* Success message styles */
.demo-class-form-success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: #10b981;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
}

.demo-class-form-error-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: #ef4444;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .demo-class-form-hero {
    padding: 40px 16px 80px;
  }
  
  .demo-class-form-hero h1 {
    font-size: 36px;
  }
  
  .demo-class-form-hero h1 .demo-class-form-free-svg {
    width: 100px;
    height: 45px;
  }
  
  .demo-class-form-hero p {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .demo-class-form-svg-holder {
    width: 100%;
    
    height: 35px;
  }
  
  .demo-class-form-card {
    width: 100%;
    max-width: 480px;
    padding: 24px;
  }
  
  .demo-class-form-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .demo-class-form-hero h1 {
    font-size: 30px;
  }
  
  .demo-class-form-hero h1 .demo-class-form-free-svg {
    width: 80px;
    height: 35px;
  }
  
  .demo-class-form-card {
    padding: 20px;
  }
  
  .demo-class-form-language-switch {
    width: 44px;
    height: 44px;
  }
  
  .demo-class-form-flag-icon {
    width: 36px;
    height: 36px;
  }
}

/* ======================================== FAQ SECTION ======================================== */
/* LAYOUT */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 20px 0;
  margin-bottom: 70px;
}

/* LEFT SECTION */
.faq-left .pill {
  display: inline-flex;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.faq-left h2 {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.faq-help {
  margin-top: 40px;
}

.faq-help h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.faq-help p {
  margin: 6px 0 16px;
  font-size: 14px;
  color: #64748b;
}

.avatars {
  display: flex;
  margin-bottom: 18px;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.cta:hover {
  background: #1e293b;
}

/* RIGHT SECTION - FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* OPEN CARD */
.faq-item.active {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 26px;
  margin: 12px 0;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}

/* ICON */
.icon {
  font-size: 22px;
  color: #64748b;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* ANSWER */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

/* RESPONSIVE DESIGN */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .faq-section {
    gap: 50px;
    margin: 40px;
    margin-bottom: 101px;
  }
  
  .faq-left h2 {
    font-size: 36px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 700px;
  }
  
  .faq-left h2 {
    font-size: 34px;
  }
  
  .faq-list {
    max-width: 100%;
  }
}

/* Large mobile devices */
@media (max-width: 768px) {
  
  
  .faq-section {
    gap: 40px;
  }
  
  .faq-left h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .faq-item {
    padding: 20px 0;
  }
  
  .faq-item.active {
    padding: 22px;
    margin: 10px 0;
  }
  
  .faq-question {
    font-size: 15px;
  }
}

/* Medium mobile devices */
@media (max-width: 576px) {
  .faq-section{
    margin: 25px;
    margin-bottom: 90px;
  }
  .faq-left h2 {
    font-size: 28px;
  }
  
  .faq-help {
    margin-top: 30px;
  }
  
  .cta {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  
  .faq-item {
    padding: 18px 0;
  }
  
  .faq-item.active {
    padding: 20px;
    margin: 8px 0;
    border-radius: 14px;
  }
  
  .faq-question {
    font-size: 14px;
  }
  
  .icon {
    font-size: 20px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
}

/* Small mobile devices */
@media (max-width: 400px) {
  .faq-left h2 {
    font-size: 24px;
  }
  
  .faq-help h4 {
    font-size: 15px;
  }
  
  .faq-help p {
    font-size: 13px;
  }
  
  .avatars img {
    width: 32px;
    height: 32px;
  }
  
  .faq-item {
    padding: 16px 0;
  }
  
  .faq-item.active {
    padding: 18px;
  }
  
  .faq-question {
    font-size: 13px;
  }
  
  .icon {
    font-size: 18px;
    margin-left: 12px;
  }
}

/* Very small mobile devices (like iPhone SE) */
@media (max-width: 340px) {
 
  
  .faq-left h2 {
    font-size: 22px;
  }
  
  .pill {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .faq-item.active {
    padding: 16px;
    border-radius: 12px;
  }
}

/* ==================== Footer Section ==================== */
/* FOOTER */
.footer-section {
  max-width: 1200px;
  margin: auto;
  background: #f7f5ee;
  border-radius: 25px;
  padding: 60px 70px 40px;
}

/* GRID */
.footer-section-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-section-brand img {
  height: 59px;
  margin-bottom: 6px;
}

.footer-section-brand p {
  font-size: 14px;
  color: #666;
  max-width: 340px;
  line-height: 1.7;
}

/* SOCIAL LINKS */
.footer-section-social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-section-social-links a {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-section-social-links a:hover {
  transform: translateY(-2px);
  background: #e8e8e8;
}

.footer-section-social-links svg {
  width: 18px;
  height: 18px;
}

/* CONTACT INFO */
.footer-section-contact-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-section-contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.footer-section-contact-info a:hover {
  color: #000;
}

.footer-section-contact-info svg {
  width: 16px;
  height: 16px;
}

/* COLUMN */
.footer-section-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* LINKS */
.footer-section-links a {
  display: block;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-section-links a:hover {
  color: #000;
}

/* LANGUAGE PILLS */
.footer-section-lang-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  width: fit-content;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
}

.footer-section-flag-svg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* DEMO BUTTON */
.footer-section-demo-wrap {
  margin-top: 20px;
}
.footer-section-demo-wrap a{
    color: #000;
}

.footer-section-demo-label {
  cursor: pointer;
}

.footer-section-demo-input {
  display: none;
}

.footer-section-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid #000;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-section-demo-btn svg {
  width: 18px;
  height: 18px;
}

.footer-section-demo-btn:hover {
  background: #000;
  color: #fff;
  
}

/* DIVIDER */
.footer-section-divider {
  margin: 40px 0 18px;
  height: 1px;
  background: #ececec;
}

/* BOTTOM */
.footer-section-bottom {
  font-size: 13px;
  color: #777;
  text-align: center;
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 1024px) {
  .footer-section {
    padding: 50px 40px 30px;
    margin: 13px;
  }
  
  .footer-section-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .footer-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  
  .footer-section-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
 
  
  .footer-section {
    padding: 40px 30px 30px;
    border-radius: 24px;
  }
  
  .footer-section-grid {
    gap: 35px 25px;
  }
}

@media (max-width: 600px) {
    .footer-section{
        text-align: center;
        margin: 15px;
    }
  .footer-section-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-section-brand img{
    height: 73px;
  }
  .footer-section-brand p{
    max-width: 492px;
  }
  .footer-section-brand {
    max-width: 100%;
  }
  
  .footer-section-social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-section-lang-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-section-lang-pill {
    flex: 0 0 auto;
  }
  .footer-section-contact-info{
    align-items: center;
  }
}

@media (max-width: 480px) {
 
  
  .footer-section {
    padding: 30px 20px 25px;
    border-radius: 8px;
    margin: 12px;
  }
  
  .footer-section-grid {
    gap: 30px;
  }
  
  .footer-section-brand p {
    font-size: 13px;
  }
  
  .footer-section-social-links a {
    height: 36px;
    width: 36px;
  }
  
  .footer-section-contact-info a {
    font-size: 13px;
  }
  
  .footer-section-col h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .footer-section-links a {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .footer-section-lang-pill {
    font-size: 13px;
    padding: 7px 12px;
  }
  
  .footer-section-demo-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .footer-section-bottom {
    font-size: 12px;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .footer-section {
    padding: 25px 16px 20px;
  }
  
  .footer-section-lang-pills {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-section-lang-pill {
    width: 45%;
    justify-content: flex-start;
  }
}