  
    :root {
      /* Logo-inspired light palette */
      --primary: #12334f;           /* deep blue for headings */
      --accent-blue: #1993df;
      --accent-teal: #12c6c4;
      --accent-green: #29b96b;
      --accent-orange: #ff8a55;
      --accent-pink: #f66bb0;

      --bg-page: #f8fafc;
      --bg-soft: #f3f7fb;
      --bg-card: #ffffff;

      --text-main: #1a2433;
      --text-muted: #6b7383;
      --border-soft: rgba(15, 23, 42, 0.06);

      --radius-lg: 18px;
      --radius-md: 12px;
      --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-page);
      color: var(--text-main);
      min-height: 100vh;
    }

    h1, h2, h3, h4 {
      font-family: "DM Sans", system-ui, sans-serif;
      letter-spacing: 0.02em;
      color: var(--primary);
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR */
    .navbar-edubloom {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      transition: box-shadow .2s ease, background-color .2s ease;
    }

    .navbar-edubloom.scrolled {
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
      background: #ffffff;
    }

    .navbar-brand img {
      height: 60px;
      object-fit: contain;
    }

    .nav-link {
      color: #6c7484 !important;
      font-size: 0.92rem;
      position: relative;
      padding-bottom: .2rem;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary) !important;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
      transition: width 0.2s ease-out;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .btn-gradient {
      background-image: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
      border: none;
      color: #fff;
      padding: 0.55rem 1.4rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 14px 30px rgba(25, 147, 223, 0.35);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }

    .btn-gradient:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 18px 45px rgba(25, 147, 223, 0.45);
      filter: brightness(1.05);
      color: #fff;
    }

    .btn-outline-soft {
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      color: var(--primary);
      font-size: 0.9rem;
      padding: 0.55rem 1.3rem;
      background: #ffffff;
      transition: all .2s ease;
    }

    .btn-outline-soft:hover {
      background: #f3f7ff;
      border-color: var(--accent-blue);
      color: var(--primary);
    }

    /* HERO */
    .hero {
      padding: 110px 0 80px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 0 0, rgba(25, 147, 223, 0.18), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(41, 185, 107, 0.16), transparent 55%),
        radial-gradient(circle at 10% 110%, rgba(246, 107, 176, 0.12), transparent 55%),
        var(--bg-page);
    }

    .hero-tag {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--accent-teal);
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .hero-title {
      font-size: clamp(2.2rem, 3.1vw, 3rem);
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .hero-title span {
      background: linear-gradient(120deg, var(--accent-blue), var(--accent-teal), var(--accent-orange), var(--accent-pink));
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 0.97rem;
      color: var(--text-muted);
      max-width: 540px;
      margin-bottom: 1.4rem;
    }

    .hero-metrics {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.6rem;
    }

    .metric-pill {
      border-radius: 999px;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(15, 23, 42, 0.08);
      font-size: 0.78rem;
      color: var(--text-muted);
      box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    }

    .metric-pill strong {
      color: var(--primary);
    }

    .hero-card {
      /* background: linear-gradient(145deg, #ffffff, #f2f7ff); */
      border-radius: 24px;
      padding: 1.6rem 1.7rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(15, 23, 42, 0.04);
    }

    .hero-badge {
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(25, 147, 223, 0.08);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      margin-bottom: 0.9rem;
    }

    .dot-green {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--accent-green);
      box-shadow: 0 0 8px rgba(41, 185, 107, 0.8);
    }

    .hero-stat {
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      padding: 0.9rem 1rem;
      border: 1px solid rgba(15, 23, 42, 0.05);
      font-size: 0.82rem;
    }

    .hero-stat small {
      color: var(--text-muted);
    }

    .hero-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
      margin-top: 1.1rem;
    }

    .bar {
      width: 11px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.3);
      overflow: hidden;
      position: relative;
    }

    .bar span {
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      background: linear-gradient(180deg, var(--accent-teal), var(--accent-blue));
    }

    .banner-box{
      width: 100%;
    }

    .banner-box img{
       width: 100%;
       object-fit: cover;
    }

    /* GENERIC SECTION */
    .section-pad {
      padding: 70px 0 ;
    }

    .section-title-sm {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-teal);
      font-weight: 600;
      margin-bottom: .4rem;
    }

    .section-heading {
      font-size: 1.9rem;
      margin-bottom: 0.4rem;
    }

    .section-sub {
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    .section-pad-box img{
      width: 100%;
    }

    /* CARDS */
    .card-soft {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      padding: 1.3rem 1.4rem;
      height: 100%;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .card-soft:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
      border-color: rgba(25, 147, 223, 0.4);
    }

    .icon-pill {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      background: radial-gradient(circle at 30% 0, var(--accent-orange), var(--accent-blue));
      color: #ffffff;
      margin-bottom: 0.6rem;
    }

    .card-soft h5 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
      color: var(--primary);
    }

    .card-soft p {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    /* ABOUT EXTRA */
    .about-bg {
      border-radius: 20px;
      padding: 1.5rem 1.6rem;
      /* background: var(--bg-soft);
      border: 1px solid rgba(148, 163, 184, 0.25); */
    }

    .about-bg img{
      width: 100%;
    }

    /* MODULES SECTION */
    .modules-section {
      background: #ffffff;
    }

    /* ADVANTAGES */
    .adv-list {
      padding-left: 1.1rem;
    }

    .adv-list li {
      margin-bottom: 0.6rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .adv-list li::marker {
      color: var(--accent-green);
    }

    .step-pill {
      border-radius: 999px;
      padding: 0.25rem 0.8rem;
      font-size: 0.75rem;
      background: rgba(25, 147, 223, 0.08);
      color: var(--accent-blue);
      display: inline-block;
      margin-bottom: 0.4rem;
      font-weight: 500;
    }

    /* PRICING */
    .pricing-section {
      background: var(--bg-soft);
    }

    .price-card {
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      padding: 1.5rem 1.6rem;
      height: 100%;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      position: relative;
      overflow: hidden;
    }

    .price-card.highlight {
      border-color: var(--accent-blue);
    }

    .price-card.highlight::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 0 0, rgba(25,147,223,0.2), transparent 55%);
      opacity: 0.7;
      z-index: -1;
    }

    .price-tag {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }

    .price-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .price-list {
      list-style: none;
      padding-left: 0;
      margin: 1rem 0 1.3rem;
      font-size: 0.85rem;
    }

    .price-list li {
      margin-bottom: 0.4rem;
      position: relative;
      padding-left: 1.3rem;
      color: var(--text-muted);
    }

    .price-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent-green);
      font-size: 0.8rem;
    }

    /* FAQ */
    .faq-section {
      background: #ffffff;
    }

    .accordion-item {
      background: #ffffff;
      border: 1px solid var(--border-soft) !important;
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      margin-bottom: 0.7rem;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .accordion-button {
      background: transparent !important;
      color: var(--primary);
      font-size: 0.9rem;
    }

    .accordion-button:not(.collapsed) {
      color: var(--accent-blue);
      box-shadow: none;
    }

    .accordion-body {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* CTA */
    .cta-section {
      padding: 70px 0;
      background:
        radial-gradient(circle at 0 0, rgba(25,147,223,0.16), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(246,107,176,0.15), transparent 55%),
        #ffffff;
      border-top: 1px solid rgba(148, 163, 184, 0.35);
      margin-top: 40px;
    }

    .form-control,
    .form-select {
      background-color: #ffffff;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-main);
      font-size: 0.88rem;
    }

    .form-control::placeholder {
      color: rgba(148, 163, 184, 0.8);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 0.12rem rgba(25,147,223,0.25);
      background-color: #ffffff;
      color: var(--text-main);
    }

    textarea.form-control {
      border-radius: 16px;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(148,163,184,0.35);
      padding: 18px 0;
      font-size: 0.8rem;
      color: var(--text-muted);
      background: #f5f7fb;
    }

    footer a {
      color: var(--text-muted);
    }

    footer a:hover {
      color: var(--primary);
    }

    @media (max-width: 991px) {
      .hero {
        padding-top: 90px;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 2rem;
      }
    }