
    :root {
      --navy: #0c1c34;
      --navy-2: #122845;
      --orange: #f47a1f;
      --orange-2: #f2670c;
      --yellow: #f7b733;
      --cream: #fff7ee;
      --gray-bg: #f6f7fa;
      --text-muted: #7c8698;
      --white: #ffffff;
      --radius-lg: 20px;
      --radius-md: 14px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--navy);
      background: var(--white);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Bricolage Grotesque", sans-serif;
    }

    img {
      max-width: 100%;
      display: inline-block;
    }
.text-center{
  text-align: center;
}
    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .eyebrow {
      color: var(--orange);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.25;
    }

    .center {
      text-align: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14.5px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all .25s ease;
      /* white-space: nowrap; */
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
    }

    .btn-orange:hover {
      background: var(--orange-2);
      transform: translateY(-2px);
    }

    .btn-outline-white {
      border-color: rgba(255, 255, 255, .5);
      color: #fff;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .12);
    }

    .btn-navy {
      background: var(--navy);
      color: #fff;
    }

    .btn-navy:hover {
      background: var(--navy-2);
    }

    .btn-yellow {
      background: var(--yellow);
      color: var(--navy);
    }

    .btn-yellow:hover {
      filter: brightness(1.05);
    }

    .btn-outline-navy {
      border-color: rgba(255, 255, 255, .6);
      color: #fff;
    }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 0;
    }

    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 1px;
    }

    .logo span.sub {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 5px;
      color: #c9d2e0;
      margin-top: 2px;
    }

    .logo .star {
      color: var(--orange);
    }

    .nav-links {
      display: flex;
      gap: 34px;
      align-items: flex-start;
    }

    .nav-links a {
      color: #dfe4ec;
      font-size: 14.5px;
      font-weight: 500;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a.active {
      color: var(--orange);
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--orange);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }

    .burger span {
      width: 26px;
      height: 2px;
      background: #fff;
      display: block;
    }

    /* ===== HERO ===== */
    .hero {
      background:
        linear-gradient(120deg, rgba(9, 19, 38, .94) 30%, rgba(9, 19, 38, .55) 70%),
        url('assets/images/banner/3.png') center/cover;
      position: relative;
      padding: 70px 0 140px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 40px;
      align-items: center;
    }

    .hero-eyebrow {
      font-family: 'Dancing Script', cursive;
      font-size: 26px;
      color: var(--orange);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .hero h1 {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.15;
      color: #fff;
      text-transform: uppercase;
    }

    .hero h1 .accent {
      color: var(--orange);
      display: block;
    }

    .hero p {
      color: #b7c0d1;
      font-size: 15.5px;
      max-width: 480px;
      margin: 20px 0 28px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .hf-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hf-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(244, 122, 31, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 16px;
      flex-shrink: 0;
    }

    .hf-icon img {
      filter: brightness(0) saturate(100%) invert(33%) sepia(75%) saturate(1619%) hue-rotate(352deg) brightness(105%) contrast(89%);
      padding: 10px;
    }

    .hf-item span {
      color: #cfd6e2;
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.3;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-visual .circle {
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, var(--yellow), var(--orange) 70%);
      position: relative;
      overflow: visible;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .hero-visual .circle img {
      width: 340px;
      border-radius: 12px 12px 0 0;
      object-fit: cover;
      height: 400px;
      object-position: top;
    }

   .badge-card {
    position: absolute;
    top: 276px;
    right: 0;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}
    .badge-card .num {
      color: var(--orange);
      font-size: 22px;
      font-weight: 800;
    }

    .badge-card .lbl {
      font-size: 11.5px;
      color: var(--navy);
      font-weight: 600;
      line-height: 1.3;
      margin-top: 2px;
    }

    .signature {
      position: absolute;
      bottom: 10px;
      left: -10px;
      text-align: left;
    }

   .signature .name {
    font-family: 'Dancing Script', cursive;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

    .signature .role {
      color: #fff;
      font-size: 12px;
      font-weight: 500;
    }

    /* ===== STATS BAR ===== */
    .stats-wrap {
      margin-top: -50px;
      position: relative;
      z-index: 10;
    }

    .stats-card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 50px rgba(12, 28, 52, .12);
      padding: 16px 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 14px;
      justify-content: center;
      border-right: 1px solid #edeff3;
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-icon {
      font-size: 30px;
    }

    .stat .num {
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
    }

    .stat .lbl {
      font-size: 12.5px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ===== ABOUT ===== */
    .about {
      padding: 40px 0 10px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 60px;
      align-items: center;
    }

    .about-img img {
      border-radius: var(--radius-lg);
    }

    .about h2 {
      font-size: 34px;
      font-weight: 700;
      margin: 6px 0 16px;
    }

    .about p.desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 22px;
      max-width: 540px;
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      font-weight: 500;
      color: var(--navy);
    }

    .check-list li .tick {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    /* ===== WHY CHOOSE ===== */
    .why {
      background: var(--gray-bg);
      padding: 30px 0;
    }

    .why-head {
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }

    .why-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(12, 28, 52, .05);
      transition: transform .25s ease;
    }

    .why-card:hover {
      transform: translateY(-6px);
    }

    .why-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      margin: 0 auto 16px;
      background: rgba(244, 122, 31, .12);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .why-card h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ===== OFFLINE/ONLINE ===== */
    .learning {
      padding: 40px 0;
    }

    .learning-head {
      max-width: 600px;
      margin: 0 auto 50px;
    }

    .learning-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }

    .learn-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      background: var(--gray-bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .learn-card img {
      height: 100%;
      object-fit: cover;
      min-height: 230px;
    }

    .learn-content {
      padding: 26px 24px;
    }

    .learn-content h3 {
      color: var(--orange);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .learn-content p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .learn-content .check-list li {
      font-size: 13px;
    }

    .learn-content .check-list li .tick {
      width: 16px;
      height: 16px;
      font-size: 9px;
    }

    /* ===== TESTIMONIALS ===== */
    .stories {
      background: var(--gray-bg);
      padding: 40px 0;
    }

    .stories-head {
      max-width: 600px;
      margin: 0 auto 50px;
    }

    .stories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr) 1.6fr;
      gap: 18px;
    }

    .t-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 20px 16px;
      box-shadow: 0 8px 24px rgba(12, 28, 52, .05);
    }

    .t-card img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 14px;
    }

    .t-card p {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
      font-style: italic;
    }

    .t-card .t-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
    }

    .video-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      min-height: 100%;
    }

    .video-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 280px;
    }

    .video-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(12, 28, 52, .1), rgba(12, 28, 52, .75));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .play-btn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .video-card .caption {
      color: #fff;
      font-weight: 700;
      font-size: 15px;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      max-width: 1240px;
      margin: 70px auto;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      width: 100%;
      position: relative;
    }

    .cta-left {
      padding: 41px 44px;
      width: 70%;
      background: #0c1c34;
      border-radius: 25px 0 0 25px;
    }

    .cta-left h3 {
      color: #FFF;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 22px;
      max-width: 420px;
    }

    .cta-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .cta-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      width: 30%;
      background: #f7b733;
      border-radius: 0 25px 25px 0;
    }

    .cta-banner::before {
      content: "";
      background: #f7b733;
      top: 0;
      left: auto;
      right: 100px;
      bottom: 0;
      height: 100%;
      width: 100%;
      clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
      position: absolute;
      max-width: 380px;
      margin: 0 auto;
    }

    .yellobackgroundimage {
      margin: -60px 0 0 -129px;
    }

    .cta-right img {
      height: 273px;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
    }

    /* ===== CONTACT FORM ===== */
    .demo-section {
      padding: 90px 0;
    }

    .demo-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .demo-grid img {
      border-radius: var(--radius-lg);
    }

    .demo-content h2 {
      font-size: 30px;
      font-weight: 700;
      margin: 8px 0 10px;
    }

    .demo-content>p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 26px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }

    .form-grid input,
    .form-grid select,
    .form-grid textarea {
      width: 100%;
      padding: 13px 16px;
      border-radius: 8px;
      border: 1.5px solid #e3e7ee;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      color: var(--navy);
      background: #fbfcfe;
    }

    .form-grid input:focus,
    .form-grid select:focus,
    .form-grid textarea:focus {
      outline: none;
      border-color: var(--orange);
    }

    .submit-btn {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 8px;
      background: var(--navy);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background: var(--navy-2);
    }

    /* ===== CONTACT / MAP ===== */
    .contact-map {
      padding: 30px 0 30px;
    }

    .cm-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 340px;
    }

    .cm-left {
      background: var(--navy);
      color: #fff;
      padding: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 22px;
    }

    .cm-left h3 {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.4;
    }

    .cm-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
    }

    .cm-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cm-icon img {
    width: 100%;
    height: 100%;
    padding: 8px;
}
 

    .cm-right iframe {
      width: 100%;
      height: 100%;
      min-height: 340px;
      border: none;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--gray-bg);
      color: #202122;
      padding: 10px 0 ;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 50px;
    }

    .footer-logo {
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .footer-logo .sub {
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 5px;
      color: #8b96ab;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    footer h4 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 18px;
      font-weight: 600;
    }

    footer ul li {
      margin-bottom: 11px;
      font-size: 13.5px;
    }

    footer ul li a:hover {
      color: var(--orange);
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
      padding: 20px 0;
      font-size: 12.5px;
      color: #8b96ab;
    }

    /* ===== MOBILE STICKY BAR ===== */
    .mobile-action-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: #fff;
      box-shadow: 0 -6px 20px rgba(12, 28, 52, .15);
    }

    .mobile-action-bar {
      display: none;
      grid-template-columns: 1fr 1fr 1fr;
    }

    .mab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 10px 0;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--navy);
      border-right: 1px solid #f0f1f4;
    }

    .mab-item:last-child {
      border-right: none;
    }

    .mab-item .mab-icon {
      font-size: 18px;
    }

    .mab-item.whatsapp .mab-icon {
      color: #25D366;
    }

    .mab-item.call .mab-icon {
      color: var(--orange);
    }

    .mab-item.inquiry .mab-icon {
      color: var(--navy);
    }

    .logo img,
    .footer-logo {
      filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4383%) hue-rotate(279deg) brightness(107%) contrast(115%);
      width: 150px;
    }
    .footer-copyright-text p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    

    .stat-icon {
      width: 60px;
      height: 60px;

    }

    .why-icon {
      width: 80px;
      height: 80px;

    }

    .why-icon img,
    .stat-icon img {
      width: 100%;
      height: 100%;
      filter: brightness(0) saturate(100%) invert(33%) sepia(75%) saturate(1619%) hue-rotate(352deg) brightness(105%) contrast(89%);
      opacity: 1;
      padding: 10px;
      ;
    }

    .text-justify {
      text-align: justify;
    }

    .icon-edu img {
      width: 156px;
      margin-top: -50px;
    }

    .cta-tagline {
      margin: 0 auto;
      font-size: 20px;
      font-weight: 500;
      text-align: center;
    }
