

    :root {
      --c-primary:   #0b2d7a;
      --c-dark:      #071a52;
      --c-accent:    #e8304a;
      --c-gold:      #f5a623;
      --c-teal:      #00c9a7;
      --c-white:     #ffffff;
      --c-light:     #f4f7fe;
      --c-muted:     #6b7a99;
      --c-border:    #dde3f0;
      --f-display:    sans-serif;
      --f-body:      'Outfit', sans-serif;
      --nav-h:       68px;
    }


    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--f-body); color: #1e2a45; background: #fff; overflow-x: hidden;  overflow-y: scroll; }
    a { text-decoration: none; color: inherit; }


    /* ============================================================
       TOP ANNOUNCEMENT TICKER
    ============================================================ */
    #topbar {
      background: var(--c-primary);
      font-family: var(--f-body);
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255,255,255,.82);
      padding: 7px 0;
      overflow: hidden;
    }
    .ticker-wrap { overflow: hidden; }
    .ticker-inner {
      display: flex;
      gap: 60px;
      animation: tickerScroll 34s linear infinite;
      width: max-content;
      white-space: nowrap;
    }
    .ticker-inner .t-item { display: flex; align-items: center; gap: 6px; }
    .ticker-inner .t-item span { color: var(--c-gold); }
    @keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }





   /* ===========  POPUP  WEBSITE =============================  */
   
    #modalOverlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 5, 12, 0.75);
      backdrop-filter: blur(14px) saturate(120%);
      -webkit-backdrop-filter: blur(14px) saturate(120%);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.45s ease, visibility 0.45s ease;
      
    }
 
    /* Overlay active state */
    #modalOverlay.active {
      opacity: 1;
      visibility: visible;
    }


    #leadModal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem;
      pointer-events: none;
 
      /* Hidden state */
      opacity: 0;
      transform: translateY(28px) scale(0.97);
      transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  visibility 0.45s;
      visibility: hidden;

       /* align-items: flex-start; */
       padding-top: 20px;

    }
 

    #leadModal.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
      pointer-events: all;
    }
 
    .modal-card {
      position: relative;
      width: 100%;
      max-width: 380px;
      background: rgba(18, 20, 32, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 24px;
      /* padding: 2.5rem 2.2rem 1rem; */
      box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 1px 0 rgba(255,255,255,0.12) inset;
      backdrop-filter: blur(32px) saturate(160%);
      -webkit-backdrop-filter: blur(32px) saturate(160%);
      overflow: hidden;
      margin-top: 0;
       /* max-height: none; */
       /* overflow-y: auto; */
        /* max-width: 400px;    */
        padding: 1.2rem 1rem 1rem;
        /* max-height: 100vh   */
        height: 480px;
    }
 
    .modal-card::before {
      content: '';
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 260px;
      height: 100px;
      background: radial-gradient(ellipse at center, rgba(0, 200, 180, 0.22), transparent 70%);
      pointer-events: none;
    }
 
    .btn-close-modal {
      position: absolute;
      top: 1.1rem;
      left: 1.1rem;
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
      z-index: 10;
    }
 
    .btn-close-modal:hover {
      background: rgba(255,255,255,0.15);
      transform: scale(1.12);
    }
 
    .btn-close-modal svg {
      width: 14px;
      height: 14px;
      stroke: rgba(255,255,255,0.75);
      stroke-width: 2.2;
      fill: none;
    }

    .modal-header-area {
      text-align: center;
      margin-bottom: 1.1rem;
    }
 
    .modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 200, 180, 0.12);
      border: 1px solid rgba(0, 200, 180, 0.3);
      color: #00c8b4;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 0.85rem;
    }
 
    .modal-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #00c8b4;
      border-radius: 50%;
      animation: pulse-dot 1.8s ease-in-out infinite;
    }
 
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }
 
    .modal-title {
      font-family:  sans-serif;
      font-size: clamp(1.2rem, 2vw, 1.7rem);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.025em;
      line-height: 1.10;
      margin-bottom: 0.5rem;
    }
 
    .modal-subtitle {
      font-family:  sans-serif;
      font-size: 0.88rem;
      color: rgb(255, 252, 252);
      font-weight: 300;
      letter-spacing: 0.01em;
    }
 
    .field-group {
      margin-bottom: 0.8rem;
    }
 
   
    .field-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 12px;
      padding: 0.6rem 1rem;
      color: #ffffff;
      font-family:  sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      outline: none;
      transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
      letter-spacing: 1px;
      /* -webkit-appearance: none; */
    }
 
    .field-input::placeholder {
      color: rgb(235, 231, 231);
      font-size: 0.8rem;
    }
 
    .field-input:focus {
      border-color: rgba(0, 200, 180, 0.55);
      background: rgba(0, 200, 180, 0.05);
      box-shadow: 0 0 0 3px rgba(0, 200, 180, 0.10);
    }
 
    textarea.field-input {
      resize: none;
      min-height: 60px;
    }
 
    .btn-callback {
      width: 100%;
      background: linear-gradient(135deg, #00c8b4 0%, #00a896 100%);
      border: none;
      border-radius: 12px;
      padding: 0.7rem 1rem;
      color: #ffffff;
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 30px rgba(0, 200, 180, 0.3);
      margin-top: 0.5rem;
    }
 
   
    .btn-callback::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }
 
    .btn-callback:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(0, 200, 180, 0.4);
    }
 
    .btn-callback:hover::after {
      left: 160%;
    }
 
    .btn-callback:active {
      transform: translateY(0px);
      box-shadow: 0 4px 16px rgba(0, 200, 180, 0.3);
    }
 
    /* SUCCESS STATE — shown after form submission */
    .success-state {
      display: none;
      text-align: center;
      padding: 1rem 0 0.5rem;
    }
 
    .success-icon {
      width: 60px;
      height: 60px;
      background: rgba(0, 200, 180, 0.12);
      border: 1.5px solid rgba(0, 200, 180, 0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }
 
    .success-icon svg {
      width: 26px;
      height: 26px;
      stroke: #00c8b4;
      stroke-width: 2.5;
      fill: none;
    }
 
    .success-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }
 
    .success-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.45);
    }
 
    .modal-footer-note {
      text-align: center;
      font-size: 0.9rem;
      color: rgb(243, 238, 238);
      margin-top: 1rem;
      letter-spacing: 0.02em;
    }
 
    /* 
       RESPONSIVE TWEAKS
    */

    @media (max-width: 991.98px) {
         .modal-card {
        padding: 1.5rem 1.5rem 1rem;
        border-radius: 20px;
        margin-top: 0;
      }
    }

@media (max-height: 768px) {
  #leadModal {
    align-items: flex-start;
    padding-top: 90px;
    
  }

  .modal-card {
    /* transform: scale(0.9);  */
    transform-origin: top center;
     padding: 1.5rem 1.7rem 1rem;
  }
} 
/* 

@media (max-height: 700px) {
  .modal-card {
    transform: scale(0.85);
  }
} */


    @media (max-width: 480px) {
      .modal-card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 20px;
        margin-top: 40px;
      }
 
      .modal-title {
        font-size: 1.45rem;
      }
    }


   /* ====================   END POPUP WEBSITE =============================== */





    /* ============================================================
       NAVBAR / HEADER
    ============================================================ */

    #mainNav {
      top: 0;
      z-index: 1050; 
      background: transparent;
      box-shadow: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px); 
      transition: box-shadow .3s, background .3s;
      height: var(--nav-h);
      overflow: visible;
    }

    #mainNav.nav-scrolled {
      background: rgba(255,255,255,1);
      box-shadow: 0 2px 32px rgba(11,45,122,.10);
    }

    #mainNav.nav-scrolled .nav-lnk,
    #mainNav.nav-scrolled .brand-name,
    #mainNav.nav-scrolled .brand-tag,
    #mainNav.nav-scrolled .btn-phone-nav,
    #mainNav.nav-scrolled .btn-demo {
          color: #071a52;
    }

    #mainNav.nav-scrolled .btn-phone-nav :hover {
       color: white;
    }

    #mainNav .nav-lnk,
    #mainNav .brand-name,
    #mainNav .brand-tag,
    #mainNav .btn-phone-nav,
    #mainNav .btn-demo {
     color: #fff;
    } 

    #mainNav .container {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between; 
      gap: 0;
      position: relative;
      right: 0;
      max-width: 100% !important;
      padding-left: 20px;
      padding-right: 20px;
    }

     .brand-wrap {
      display: flex;
      align-items: center;
      gap: 2px; 
      flex-shrink: 0;
      text-decoration: none;
      position: relative;
      right: 0;
    
    } 
    
    .brand-logo-box .dark-logo {
      width: 130px;
      height: 120px;
      object-fit: contain;
    }

    .white-logo {
     display: none;
    }

   .brand-logo-box .white-logo {
       width: 100px;
      height: 100px;
      object-fit: contain;  
    }

    #mainNav.nav-scrolled .dark-logo {
      display: none;
    }

    #mainNav.nav-scrolled .white-logo {
      display: block;
    }

     .brand-logo-box .brand-fallback {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: 1.1rem;
      color: #fff;
      position: absolute;
    }  

    .brand-text-wrap {
      line-height: 1.2rem;
    }

    .navbar-collapse {
      flex-grow: 0;
    }
    .nav-list {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 8px;
      justify-content: center;
      flex: 1;
      min-width: 0; 
    }

    .nav-lnk {
      font-family: var(--f-body);
      font-weight: 600;
      font-size: 1rem;
      color: #2d3a5e;
      padding: 7px 12px;
      border-radius: 8px;
      transition: background .2s, color .2s;
      display: flex;
      align-items: center;
      gap: 5px;
      position: relative;
      white-space: nowrap;
      cursor: pointer;
    }
    
    .nav-lnk:hover,
    .nav-lnk.active {
      background: rgba(11,45,122,.07);
      color: var(--c-primary);
    }

    .nav-lnk .dd-arrow {
      font-size: 0.6rem;
      opacity: .5;
      transition: transform .2s;
    }
    .nav-item.dropdown:hover .dd-arrow,
    .nav-item.dropdown.show .dd-arrow {
      transform: rotate(180deg);
    }

    .nav-lnk.active::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      background: var(--c-accent);
      border-radius: 50%;
    }

    .dropdown-menu {
      border: 1px solid var(--c-border) !important;
      border-radius: 16px !important;
      box-shadow: 0 20px 60px rgba(11,45,122,.14) !important;
      padding: 8px !important;
      min-width: 240px;
      margin-top: 8px !important;
      animation: dropAnim .18s ease;
    }
    @keyframes dropAnim {
      from { opacity:0; transform:translateY(-8px) scale(.98); }
      to   { opacity:1; transform:translateY(0) scale(1); }
    }
    .dropdown-item {
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 0.84rem;
      font-weight: 500;
      color: #2d3a5e;
      transition: background .15s, color .15s;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dropdown-item:hover {
      background: rgba(11,45,122,.07);
      color: var(--c-primary);
    }
    .dropdown-item .di-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: rgba(11,45,122,.07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
      transition: background .15s;
    }
    .dropdown-item:hover .di-icon {
      background: var(--c-primary);
      color: #fff;
    }
    .dropdown-item .di-text { display: flex; flex-direction: column; }
    .dropdown-item .di-label { font-weight: 600; font-size: 0.83rem; }
    .dropdown-item .di-sub { font-size: 0.7rem; color: var(--c-muted); font-weight: 400; margin-top: 1px; }
    .dropdown-divider { border-color: var(--c-border) !important; margin: 4px 6px !important; }

   
    .dd-viewall {
      background: rgba(11,45,122,.05) !important;
      color: var(--c-primary) !important;
      font-weight: 700 !important;
      margin-top: 2px;
    }
    .dd-viewall:hover {
      background: var(--c-primary) !important;
      color: #fff !important;
    }
    .dd-viewall .di-icon {
      background: var(--c-primary) !important;
      color: #fff !important;
    }

   
    .nav-ctas {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      margin-left: auto;
    }

    .btn-phone-nav {
      font-family: var(--f-body);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 8px 16px;
      background: transparent;
      color: var(--c-primary);
      border: 1.5px solid rgba(11,45,122,.25);
      border-radius: 50px;
      transition: all .2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    
    .btn-phone-nav:hover {
      border-color: var(--c-primary); 
    }

    .btn-demo {
      font-family: var(--f-body);
      font-weight: 700;
      font-size: 0.85rem;
      padding: 9px 22px;
      background: var(--c-accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      transition: all .2s;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }
    .btn-demo::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    }
    .btn-demo:hover {
      background: #c7293f;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(232,48,74,.40);
    }

  
    .nav-toggler {
      border: none;
      background: transparent;
      padding: 8px;
      cursor: pointer;
      margin-left: auto;
      display: none;
    }


    .nav-toggler span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s;
    }

    #mainNav .nav-toggler span {
     background: #fff;
    }


   #mainNav.nav-scrolled .nav-toggler span {
     background: #071a52;  
   }


    .nav-toggler span:not(:last-child) { margin-bottom: 5px; }
    .nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggler.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



 
     @media (max-width: 1199.98px) {
      .btn-phone-nav { display: none; }
    }


    @media (max-width: 1200px) {
  .nav-lnk {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .btn-demo {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}


    @media (max-width: 991.98px) {
      #mainNav {  min-height: var(--nav-h);
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              will-change: transform;
              transform: translateZ(0);
           }

      .brand-logo-box .dark-logo {
         max-height: 60px;   
      }

      #mainNav.nav-scrolled .brand-logo-box .white-logo {
        max-height: 50px;  
         
      }

      #mainNav .container {
        flex-wrap: wrap;
        padding-top: 8px;
        padding-bottom: 12px; 
        height: auto; 
        align-items: center;
        right: 0;
      }
       .brand-wrap {
        right: 0;
      }
      .nav-toggler { display: block; }
      .navbar-collapse {
        width: 100%;
        order: 3;
        display: none;
        padding-bottom: 16px;
       background-color: #071a52; 
      }
      .navbar-collapse.open { display: block; }
      .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        justify-content: flex-start;
      }
      .nav-item { position: relative; }
      .nav-lnk {
        padding: 11px 14px;
        border-radius: 10px;
        justify-content: space-between;
      }


   .navbar-collapse.open .nav-lnk{color:#fff!important;font-size:.95rem;padding:13px 16px;border-radius:12px;} 
   .navbar-collapse.open .nav-lnk:hover,.navbar-collapse.open .nav-lnk.active{background:rgba(255,255,255,.12);}
  #mainNav.nav-scrolled .navbar-collapse.open .nav-lnk{color:#071a52!important;}
  #mainNav.nav-scrolled .navbar-collapse.open .nav-lnk:hover{background:rgba(11,45,122,.07);}
  .nav-list{flex-direction:column;align-items:stretch;gap:4px;}
  .dropdown-menu{position:static!important;transform:none!important;box-shadow:none!important;border:none!important;border-radius:12px!important;padding:4px 0 4px 12px!important;margin:4px 0!important;background:rgba(255,255,255,.08)!important;animation:none!important;}
  #mainNav.nav-scrolled .dropdown-menu{background:rgba(11,45,122,.04)!important;}
  .dropdown-item{padding:10px 14px;margin-bottom:2px;border-radius:10px;color:rgba(255,255,255,.85);}
  #mainNav.nav-scrolled .dropdown-item{color:#2d3a5e;}
  .nav-ctas{width:100%;order:4;margin:0;padding:14px 0 0;border-top:1px solid rgba(255,255,255,.15);margin-top:8px;display:none;}
  .nav-ctas.open{display:flex;}
  #mainNav.nav-scrolled .nav-ctas{border-top-color:var(--c-border);}
  .btn-phone-nav{display:inline-flex!important;flex:1;justify-content:center;color:#fff!important;border-color:rgba(255,255,255,.3)!important;}
  #mainNav.nav-scrolled .btn-phone-nav{color:var(--c-primary)!important;border-color:rgba(11,45,122,.25)!important;}
  .btn-demo{flex:1;justify-content:center;} 
  } 


  

  /* ============== NAVBAR END ========================================= */



  /* ========================= HERO Section ========================= */


    /* ── 1. HERO WRAPPER ── */
    .hs-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,90,160,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,180,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,60,120,0.18) 0%, transparent 60%),
        linear-gradient(160deg, #010d1a 0%, #020e1e 40%, #031525 100%);
      
      overflow: hidden;
      padding: 80px 0 60px;
    }

    /* ── 2. CANVAS BACKGROUND ── */
    #hs-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.65;
    }

    /* ── 3. FLOATING TECH ICONS ── */
    .hs-tech-float {
      position: absolute;
      font-size: 1.4rem;
      color: #00c8ff;
      opacity: 0.12;
      pointer-events: none;
      z-index: 1;
      animation: hsTechFloat 8s ease-in-out infinite;
      filter: drop-shadow(0 0 6px #00c8ff);
    }
    .hs-tech-float:nth-child(1) { top: 12%; left: 6%;  animation-delay: 0s;   font-size: 1.8rem; }
    .hs-tech-float:nth-child(2) { top: 25%; left: 45%; animation-delay: 1.5s; font-size: 1.2rem; opacity: 0.08; }
    .hs-tech-float:nth-child(3) { top: 70%; left: 3%;  animation-delay: 3s;   font-size: 2rem;   opacity: 0.09; }
    .hs-tech-float:nth-child(4) { top: 55%; left: 50%; animation-delay: 2s;   font-size: 1rem;   opacity: 0.07; }
    .hs-tech-float:nth-child(5) { top: 80%; left: 72%; animation-delay: 4s;   font-size: 1.6rem; }
    .hs-tech-float:nth-child(6) { top: 8%;  left: 78%; animation-delay: 0.8s; font-size: 1.3rem; opacity: 0.10; }
    .hs-tech-float:nth-child(7) { top: 40%; left: 88%; animation-delay: 2.5s; font-size: 1.1rem; opacity: 0.08; }

    @keyframes hsTechFloat {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      33%       { transform: translateY(-14px) rotate(5deg); }
      66%       { transform: translateY(8px) rotate(-4deg); }
    }

    /* ── 4. GLOW ORBS ── */
    .hs-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      animation: hsOrbPulse 6s ease-in-out infinite;
    }
    .hs-orb-1 {
      width: 280px; height: 280px;
      left: -80px; top: 30%;
      background: radial-gradient(circle, rgba(0,140,255,0.12) 0%, transparent 70%);
    }
    .hs-orb-2 {
      width: 360px; height: 360px;
      right: -60px; top: 10%;
      background: radial-gradient(circle, rgba(0,200,255,0.09) 0%, transparent 70%);
      animation-delay: 2s;
    }
    .hs-orb-3 {
      width: 200px; height: 200px;
      left: 40%; bottom: 5%;
      background: radial-gradient(circle, rgba(255,198,45,0.07) 0%, transparent 70%);
      animation-delay: 4s;
    }
    @keyframes hsOrbPulse {
      0%, 100% { transform: scale(1);    opacity: 0.8; }
      50%       { transform: scale(1.15); opacity: 1;   }
    }

    /* ── 5. CONTENT COLUMN ── */
    .hs-content {
      position: relative;
      z-index: 10;
    }

    /* ── 6. BADGE ── */
    .hs-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,180,255,0.08);
      border: 1px solid rgba(0,200,255,0.30);
      border-radius: 50px;
      padding: 6px 16px;
      font-family:  sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #00c8ff;
      margin-bottom: 22px;
      position: relative;
      overflow: hidden;
      animation: hsFadeDown 0.7s ease both;
    }
    .hs-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(0,200,255,0.10), transparent);
      animation: hsShimmer 3s linear infinite;
    }
    .hs-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #00c8ff;
      box-shadow: 0 0 6px #00c8ff;
      animation: hsDotPulse 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes hsDotPulse {
      0%, 100% { opacity: 1;   box-shadow: 0 0 6px #00c8ff; }
      50%       { opacity: 0.5; box-shadow: 0 0 12px #00c8ff; }
    }
    @keyframes hsShimmer {
      0%   { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ── 7. HEADING ── */
    .hs-heading {
      font-family:  sans-serif;
      font-size: clamp(1.75rem, 3.5vw, 2.9rem);
      font-weight: 700;
      line-height: 1.22;
      letter-spacing: -0.01em;
      color: #f0f8ff;
      margin-bottom: 28px;
      animation: hsFadeDown 0.7s 0.15s ease both;
    }
    .hs-heading .hs-gold {
      background: linear-gradient(90deg, #ffc62d 0%, #ff9500 60%, #ffd97d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hs-heading .hs-blue {
      background: linear-gradient(90deg, #00c8ff 0%, #0095e8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── 8. STATS GRID ── */
    .hs-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 30px;
      padding: 5px;
      animation: hsFadeDown 0.7s 0.30s ease both;
    }
    .hs-stat-card {
      background: rgba(0,160,220,0.06);
      border: 1px solid rgba(0,200,255,0.18);
      border-radius: 12px;
      padding: 14px 8px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .hs-stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #00c8ff, transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .hs-stat-card:hover { transform: translateY(-4px); border-color: rgba(0,200,255,0.40); box-shadow: 0 8px 28px rgba(0,180,255,0.14); }
    .hs-stat-card:hover::before { opacity: 1; }
    .hs-stat-val {
      font-family:  sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #ffc62d;
      display: block;
      line-height: 1;
    }
    .hs-stat-lbl {
      font-size: 0.65rem;
      font-weight: 500;
      color: #7aa3c0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 5px;
      display: block;
    }

    /* ── 9. CTA BUTTONS ── */
    .hs-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
      animation: hsFadeDown 0.7s 0.45s ease both;
    }
    .hs-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 8px;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      background: linear-gradient(135deg, #0095e8 0%, #006bbf 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(0,149,232,0.35);
    }
    .hs-btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transition: left 0.5s;
    }
    .hs-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,149,232,0.55); color: #fff; }
    .hs-btn-primary:hover::before { left: 100%; }

    .hs-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 8px;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      cursor: pointer;
      background: transparent;
      border: 1.5px solid rgba(0,200,255,0.40);
      color: #00c8ff;
      transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .hs-btn-outline:hover {
      background: rgba(0,200,255,0.08);
      border-color: #00c8ff;
      box-shadow: 0 0 18px rgba(0,200,255,0.20);
      transform: translateY(-2px);
      color: #00c8ff;
    }

    /* ── 10. REVIEW BADGES ── */
    .hs-reviews {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      animation: hsFadeDown 0.7s 0.60s ease both;
    }
    .hs-review-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      color: #f0f8ff;
      transition: border-color 0.3s, background 0.3s;
    }
    .hs-review-badge:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.07); }
    .hs-review-badge .hs-stars { color: #ffc62d; font-size: 0.70rem; letter-spacing: 1px; }
    .hs-ic-google   { color: #ea4335; }
    .hs-ic-facebook { color: #1877f2; }
    .hs-ic-youtube  { color: #ff0000; }

    /* ── 11. VIDEO WRAPPER (glassmorphism card) ── */
    .hs-video-wrap {
      position: relative;
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(5,25,50,0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0,200,255,0.18);
      box-shadow:
        0 0 0 1px rgba(0,200,255,0.10),
        0 8px 40px rgba(0,120,200,0.20),
        0 0 60px rgba(0,150,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);
      animation: hsVideoFloat 7s ease-in-out infinite;
      transition: box-shadow 0.4s, transform 0.4s;
    }
    .hs-video-wrap:hover {
      box-shadow:
        0 0 0 1px rgba(0,200,255,0.25),
        0 16px 60px rgba(0,120,200,0.35),
        0 0 80px rgba(0,150,255,0.15),
        inset 0 1px 0 rgba(255,255,255,0.10);
      transform: translateY(-6px) !important;
    }
    @keyframes hsVideoFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }

    /* Glow rings around the video card */
    .hs-ring {
      position: absolute;
      border-radius: 22px;
      border: 1px solid rgba(0,200,255,0.10);
      pointer-events: none;
      animation: hsRingPulse 4s ease-in-out infinite;
      z-index: -1;
    }
    .hs-ring-1 { inset: -16px; animation-delay: 0s; }
    .hs-ring-2 { inset: -30px; border-color: rgba(0,180,255,0.06); animation-delay: 1s; }
    @keyframes hsRingPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50%       { opacity: 1;   transform: scale(1.02); }
    }

    /* Chrome title bar */
    .hs-chrome {
      background: rgba(0,30,60,0.70);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(0,200,255,0.10);
    }
    .hs-dots { display: flex; gap: 6px; }
    .hs-dot  { width: 10px; height: 10px; border-radius: 50%; }
    .hs-dot-r { background: #ff5f56; }
    .hs-dot-y { background: #febc2e; }
    .hs-dot-g { background: #28c840; }
    .hs-chrome-title {
      font-size: 0.72rem;
      font-weight: 500;
      color: #7aa3c0;
      letter-spacing: 0.08em;
      font-family: 'Exo 2', sans-serif;
    }
    .hs-live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #ff3b3b;
      box-shadow: 0 0 6px #ff3b3b;
      margin-left: auto;
      animation: hsDotPulse 1.5s ease-in-out infinite;
    }

    /* 16:9 iframe container */
    .hs-iframe-box {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }
    .hs-iframe-box iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }

    /* Bottom info bar */
    .hs-info-bar {
      padding: 10px 14px;
      background: rgba(0,20,45,0.70);
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid rgba(0,200,255,0.08);
      flex-wrap: wrap;
    }
    .hs-tag {
      font-size: 0.68rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 50px;
      letter-spacing: 0.06em;
    }
    .hs-tag-demo {
      background: rgba(255,59,59,0.15);
      border: 1px solid rgba(255,59,59,0.35);
      color: #ff7a7a;
    }
    .hs-tag-free {
      background: rgba(40,200,130,0.10);
      border: 1px solid rgba(40,200,130,0.30);
      color: #4dd9a2;
    }
    .hs-info-txt {
      font-size: 0.72rem;
      color: #7aa3c0;
      margin-left: auto;
    }

    .hs-video-mobile {
      display: none;
      margin-bottom: 26px;
    }

    /* ── 13. SCROLL HINT ── */
    .hs-scroll-hint {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: hsFadeDown 1s 1s ease both;
    }
    .hs-scroll-mouse {
      width: 22px; height: 36px;
      border: 2px solid rgba(0,200,255,0.30);
      border-radius: 11px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .hs-scroll-wheel {
      width: 3px; height: 7px;
      background: #00c8ff;
      border-radius: 2px;
      animation: hsScrollWheel 1.8s ease-in-out infinite;
    }
    .hs-scroll-lbl {
      font-size: 0.60rem;
      letter-spacing: 0.14em;
      color: rgba(0,200,255,0.40);
      text-transform: uppercase;
      font-family: 'Orbitron', sans-serif;
    }
    @keyframes hsScrollWheel {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50%       { transform: translateY(5px); opacity: 0.4; }
    }

    /* ── 14. ENTRY ANIMATIONS ── */
    @keyframes hsFadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes hsFadeRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .hs-video-col { animation: hsFadeRight 0.9s 0.4s ease both; }


    /* Tablet & Mobile — ≤ 991px */
    @media (max-width: 991.98px) {

      /* Show the mobile video block (hidden on desktop) */
      .hs-video-mobile { display: block; }

      /* Hide the desktop right-column video */
      .hs-video-col-desktop { display: none !important; }
      .hs-hero { padding: 70px 0 50px; min-height: auto; }

      /* ─── CENTER ALL CONTENT ─── */
      .hs-content {
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      .hs-badge {
        margin-left: auto;
        margin-right: auto;
      }

      .hs-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
      }

      .hs-cta-group { justify-content: center; }
      .hs-reviews { justify-content: center; }
      .hs-video-outer {
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }

    /* Mobile only — ≤ 575px */
    @media (max-width: 575.98px) {
      .hs-heading { font-size: 1.60rem; }

      .hs-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 10px;
      }

    
      .hs-cta-group {
        flex-direction: column;
        align-items: center;
      }
      .hs-btn-primary,
      .hs-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

      .hs-info-bar { flex-direction: column; align-items: flex-start; }
      .hs-info-txt { margin-left: 0; }
    }

    /* =============================================  Hero End ==================================================  */





    /* ============================================================
       SHARED SECTION COMPONENTS
    ============================================================ */
    .s-eyebrow {
      display: inline-block; font-family: var(--f-body); font-weight: 700;
      font-size: 0.7rem; letter-spacing: 1.8px; text-transform: uppercase;
      color: var(--c-accent); background: rgba(232,48,74,.09);
      padding: 5px 16px; border-radius: 50px; margin-bottom: 14px;
    }
    .s-title { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--c-primary); line-height: 1.2; }
    .s-sub { font-size: 1rem; color: var(--c-muted); max-width: 560px; line-height: 1.7; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.vis { opacity: 1; transform: translateY(0); }






/* ====================== PROVEN PATH -> Hero Section ke bad ka Section ==================================== */
   

    /* Proven path 1st section */

    .section-path {
      padding-top: 4rem;
      padding-bottom: 5rem;
      background-color: #f4f4f4;
    }
 
    .section-heading {
      font-size: clamp(1.6rem, 4vw, 3rem);
      color: #000;
      margin-bottom: 0.75rem;
    }
 
    .path-feature {
      max-width: 52rem;
      margin: 40px auto 0;
      position: relative;
    }
 
    /* ── DESKTOP: horizontal row ── */
    .path-feature-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
    }
 
    /* Desktop horizontal connector line */
    .path-feature-full-line {
      width: calc(100% - 3rem);
      height: 2px;
      background-color: rgba(9, 175, 252, 0.4);
      position: absolute;
      top: 4.5rem;
      left: 1.5rem;
      right: 1.5rem;
      z-index: 0;
    }
 
    .path-feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
      position: relative;
      z-index: 1;
      flex: 1;
    }
 
    .path-feature-item-circle {
      background-color: #fff;
      border-radius: 50%;
      margin-bottom: 1.25rem;
      padding: 1.5rem;
      box-shadow: 0 0 24px 12px rgba(171, 171, 171, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .path-feature-item-icon {
      width: 2.875rem;
      height: 2.875rem;
      display: block;
    }
 
    .u-text-dark-grey {
      color: #333;
      font-size: 0.95rem;
      line-height: 1.4;
    }
 
    .join-btn-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 2.5rem;
    }
 
    .btn-join {
      background-color: #2c7a2c;
      color: #fff !important;
      letter-spacing: 0.04em;
      border-radius: 6px;
      padding: 0.85rem 2.5rem;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      transition: background-color 0.2s ease;
      display: inline-block;
    }
 
    .btn-join:hover {
      background-color: #225e22;
    }
 
    /* ════════════════════════════════════
       MOBILE  (max-width: 768px)
    ════════════════════════════════════ */
    @media (max-width: 768px) {
 
      
      .path-feature-wrapper {
        flex-direction: column;
        align-items: center;     
        position: relative;
      }
      .path-feature-full-line {
        display: none;
      }
 
      .path-feature-wrapper::before {
        content: "";
        position: absolute;
        left: calc(50% - 140px + 3.9rem);
        top: 3.9rem;
        height: calc(100% - 7.8rem);
        width: 2px;
        background-color: rgba(9, 175, 252, 0.4);
        z-index: 0;
      }
 
      .path-feature-item {
        width: 280px;
        padding: 1rem 1rem;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
        position: relative;
        z-index: 1;
      }
 
      /* Bigger circle on mobile */
      .path-feature-item-circle {
        margin-bottom: 0;
        padding: 1.4rem;
        flex-shrink: 0;
      }
 
      /* Bigger icon on mobile */
      .path-feature-item-icon {
        width: 3rem;
        height: 3rem;
      }
 
      /* Bigger text on mobile */
      .u-text-dark-grey {
        font-size: 1.1rem;
        font-weight: 500;
      }
    }
 
    @media (max-width: 360px) {
      .path-feature-item {
        width: 240px;
      }
 
      /* Recalculate line for 240px wide items */
      .path-feature-wrapper::before {
        left: calc(50% - 120px + 3.5rem);
      }
 
      .path-feature-item-circle {
        padding: 1.1rem;
      }
 
      .path-feature-item-icon {
        width: 2.4rem;
        height: 2.4rem;
      }
 
      .u-text-dark-grey {
        font-size: 1rem;
      }
    }

/* Proven Path ka second section */

    .courses-section {
      padding: 5rem 0;
      background-color: #f0f2f0;
    }
    .card-animate {
      opacity: 0;
      transform: translateY(-80px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    /* Staggered delays for each card */
    .card-animate:nth-child(1) { transition-delay: 0s;    }
    .card-animate:nth-child(2) { transition-delay: 0.2s;  }
    .card-animate:nth-child(3) { transition-delay: 0.4s;  }
 
    /* When visible — class added by JS */
    .card-animate.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    /* 3D FLIP CARD STRUCTURE */
    .flip-card {
      perspective: 1200px;
      cursor: pointer;
    }
 
    /* Maintain square aspect ratio */
    .flip-card-inner {
      position: relative;
      width: 100%;
      padding-bottom: 100%;   
      transform-style: preserve-3d;
      transition: transform 1.4s cubic-bezier(0.4, 0.2, 0.2, 1);
    }
 
    /* Hover triggers flip */
    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }
 
    /* Both faces — absolute, full size */
    .flip-card-front,
    .flip-card-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 12px;
      overflow: hidden;
    }
 
    /* ── FRONT FACE ── */
    .flip-card-front {
      background-color: #1a1a2e;
    }
 
    /* Background image fills front */
    .flip-card-front img.card-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
 
    .flip-card:hover .flip-card-front img.card-bg {
      transform: scale(1.05);
    }
 
    /* Dark overlay so text is readable */
    .flip-card-front .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.0)  40%,
        rgba(0,0,0,0.65) 100%
      );
    }
 
    /* Inner border/frame effect (as seen in screenshot) */
    .flip-card-front .inner-frame {
      position: absolute;
      inset: 10px;
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 6px;
      pointer-events: none;
    }
 
    /* "New" badge — top right */
    .badge-new {
      position: absolute;
      top: 18px;
      right: 18px;
      background: transparent;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      z-index: 2;
    }
 
    /* Card title — bottom left */
    .card-title-front {
      position: absolute;
      bottom: 22px;
      left: 22px;
      right: 22px;
      z-index: 2;
      font-size: clamp(1.1rem, 2.2vw, 1.6rem);
      font-weight: 700;
      line-height: 1.25;
      color: #fff;
    }
 
    /* First card has yellow title like screenshot */
    .card-title-front.yellow {
      color: #f5c518;
    }
 
    /* ── BACK FACE ── */
    .flip-card-back {
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      color: #fff;
    }
 
    .flip-card-back.back-green {
      background: linear-gradient(135deg, #1a5c1a 0%, #2c7a2c 100%);
    }
 
    .flip-card-back.back-blue {
      background: linear-gradient(135deg, #0d3b6e 0%, #1a6fbf 100%);
    }
 
    .flip-card-back.back-dark {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
 
    .flip-card-back h3 {
      font-size: clamp(1rem, 2vw, 1.4rem);
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
 
    .flip-card-back p {
      font-size: clamp(0.8rem, 1.4vw, 0.95rem);
      opacity: 0.9;
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }
 
    .flip-card-back .btn-back {
      background-color: #fff;
      color: #1a1a2e;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
    }
 
    .flip-card-back .btn-back:hover {
      background-color: #f5c518;
      color: #000;
    }
 
    /* RESPONSIVE */
    @media (max-width: 768px) {
      .card-title-front {
        font-size: 1.2rem;
      }
 
      .flip-card-back h3 {
        font-size: 1.1rem;
      }
 
      .flip-card-back p {
        font-size: 0.85rem;
      }
    }
 
    @media (max-width: 576px) {
      .flip-card-inner {
        padding-bottom: 85%;
      }
    }
 

/* =====================Proven Path End ===================================== */



/* ================================ COURSES Section=============================================== */
   
    .cs-section {
      background: #f0f2f5;
      background-image:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,255,255,0.80) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(210,230,255,0.35) 0%, transparent 60%);
      padding: 70px 0 60px;
      overflow: hidden;
      position: relative;
    }
    .cs-head { text-align: center; margin-bottom: 32px; }
 
    .cs-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1.5px solid #c9d6e8;
      background: rgba(255,255,255,0.80);
      border-radius: 50px;
      padding: 5px 18px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #4b6a99;
      margin-bottom: 18px;
    }
    .cs-pill::before {
      content: '+';
      font-size: .9rem;
      font-weight: 800;
      color: #4b6a99;
    }
 
    /* Main title */
    .cs-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .cs-title .cs-t-orange { color: #d97706; }
    .cs-title .cs-t-blue   {
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
 
    /* Thin underline accent below title */
    .cs-title-line {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
      border-radius: 2px;
      margin: 0 auto 16px;
    }
 
    /* Subtitle */
    .cs-subtitle {
      font-family: 'Manrope', sans-serif;
      font-size: 0.95rem;
      color: #64748b;
      font-weight: 400;
      line-height: 1.65;
      max-width: 420px;
      margin: 0 auto;
    }
 
    /* ── 3. FILTER TABS ── */
    .cs-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
 
    .cs-tab {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 50px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      border: 1.5px solid #d1d5db;
      background: rgba(255,255,255,0.70);
      color: #374151;
      transition: all 0.22s ease;
      user-select: none;
      outline: none;
    }
    .cs-tab:hover {
      background: rgba(255,255,255,0.95);
      border-color: #9ca3af;
      transform: translateY(-1px);
    }
    .cs-tab.active {
      background: linear-gradient(135deg, #1d6fe8 0%, #0ea5e9 100%);
      border-color: transparent;
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(29,111,232,0.35);
    }
    .cs-tab-icon { font-size: 1rem; }
 
    .cs-grid {
      /* display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: start; */

     display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
 align-items: stretch;
    }
 

  /* a.cs-card {
    display: flex;    
    text-decoration: none;
    color: inherit;
    } */

    .course-card1{
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    /* ── 5. INDIVIDUAL CARD ── */
    .cs-card {
      background: #ffffff;
      border-radius: 18px;
      overflow: hidden; 
      box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      isolation: isolate;
      transition: transform 0.38s cubic-bezier(.22,1,.36,1),
                  box-shadow 0.38s cubic-bezier(.22,1,.36,1),
                  border-color 0.38s ease;
      opacity: 0;
      transform: translateY(24px);
      animation: csCardIn 0.55s ease forwards;
      border: 1.5px solid #e8ecf2;
      position: relative;
    }
    .cs-card > *:first-child { border-radius: 16px 16px 0 0; overflow: hidden; }
 
    .cs-card:nth-child(1) { animation-delay: 0.05s; }
    .cs-card:nth-child(2) { animation-delay: 0.13s; }
    .cs-card:nth-child(3) { animation-delay: 0.21s; }
    .cs-card:nth-child(4) { animation-delay: 0.29s; }
 
    @keyframes csCardIn {
      to { opacity:1; transform:translateY(0); }
    }
 
    /* ── PREMIUM HOVER ── */
    .cs-card:hover {
      transform: translateY(-16px);
      box-shadow:
        0 0 0 1.5px rgba(37,99,235,0.22),
        0 32px 60px rgba(37,99,235,0.16),
        0 12px 28px rgba(0,0,0,0.12);
      border-color: rgba(37,99,235,0.28);
    }
 
    .cs-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 17px;
      background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255,255,255,0.18) 50%,
        transparent 70%
      );
      transform: translateX(-100%);
      transition: transform 0s;
      pointer-events: none;
      z-index: 2;
    }
    .cs-card:hover::after {
      transform: translateX(100%);
      transition: transform 0.55s ease;
    }
 
    .cs-banner {
      position: relative;
      height: 130px;   
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Each course gets a gradient */
     .cs-banner-java   { background: linear-gradient(145deg, #2d1a0a 0%, #6b3a1a 50%, #1a0f05 100%); }
    .cs-banner-python { background: linear-gradient(145deg, #0a1628 0%, #1a3a5c 50%, #0a2040 100%); }
    .cs-banner-mern   { background: linear-gradient(145deg, #051420 0%, #0a2a3a 50%, #071828 100%); }
    .cs-banner-dotnet { background: linear-gradient(145deg, #1a0a2e 0%, #2d1050 50%, #120820 100%); }
    .cs-banner-java2  { background: linear-gradient(145deg, #0a1a10 0%, #1a3a20 50%, #051005 100%); }
    .cs-banner-ai     { background: linear-gradient(145deg, #0a0a28 0%, #1a1a50 50%, #050520 100%); }
    .cs-banner-react  { background: linear-gradient(145deg, #051428 0%, #0a2850 50%, #030e1e 100%); }
    .cs-banner-node   { background: linear-gradient(145deg, #0a1a10 0%, #143020 50%, #050f08 100%); } 

    
 

    /* Subtle grid pattern overlay on banner */
     .cs-banner::before {
      content:'';
      position:absolute; inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 28px 28px;
    } 


    /* Tech icon circle in center of banner */
    .cs-icon-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cs-icon-circle {
      width: 68px; height: 68px;
      border-radius: 16px;
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.30);
      transition: transform 0.35s cubic-bezier(.22,1,.36,1),
                  box-shadow 0.35s ease,
                  background 0.35s ease;
    }
    .cs-card:hover .cs-icon-circle {
      transform: scale(1.12) rotate(6deg);
      background: rgba(255,255,255,0.18);
      box-shadow: 0 12px 32px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.25);
    }



 
    /* Badge on top-right of banner */
    .cs-badge {
      position: absolute;
      top: 12px; right: 12px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(10,10,10,0.65);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50px;
      padding: 4px 11px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #ffffff;
    }
    .cs-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
    }
    .cs-badge-red    .cs-badge-dot { background: #ef4444; }
    .cs-badge-orange .cs-badge-dot { background: #f97316; }
    .cs-badge-gold   .cs-badge-dot { background: #eab308; }
    .cs-badge-blue   .cs-badge-dot { background: #3b82f6; }
 
    /* ── 7. CARD BODY ── */
    .cs-body {
      padding: 14px 16px 0;  
      display: flex;
      flex-direction: column;
      /* ****** */
      flex: 1; 
    }
 

    /* Category + rating row */
    .cs-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 5px;
    }
    .cs-category {
      font-family: 'Manrope', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }
    .cs-cat-orange { color: #d97706; }
    .cs-cat-blue   { color: #0ea5e9; }
    .cs-cat-teal   { color: #0d9488; }
    .cs-cat-purple { color: #8b5cf6; }
    .cs-cat-green  { color: #16a34a; }
    .cs-cat-indigo { color: #4f46e5; }
 
    .cs-rating {
      display: flex;
      align-items: center;
      gap: 3px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.70rem;
      font-weight: 600;
      color: #374151;
    }
    .cs-star { color: #f59e0b; font-size: 0.72rem; }
    .cs-rating-count { color: #9ca3af; }
 
    /* Course title */
    .cs-course-title {
      font-family:  sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 5px;
      line-height: 1.3;
      transition: color 0.2s;
    }

    .cs-card:hover .cs-course-title { color: #1d4ed8; }
 
    /* Description — clamped to 2 lines */
    .cs-desc {
      font-family: 'Manrope', sans-serif;
      font-size: 0.78rem;
      color: #64748b;
      line-height: 1.55;
      margin-bottom: 10px;
      display: -webkit-box;
        /* -webkit-line-clamp: 2;   */
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
 
    /* Tech stack tags */
    .cs-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 10px;
    }
    .cs-tag {
      font-family: 'Manrope', sans-serif;
      font-size: 0.66rem;
      font-weight: 600;
      color: #374151;
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      padding: 2px 8px;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    }
    .cs-card:hover .cs-tag {
      background: #eff6ff;
      border-color: #bfdbfe;
      color: #1d4ed8;
    }
    .cs-card:hover .cs-tag:hover {
      transform: translateY(-1px);
      background: #dbeafe;
    }
 
    /* ── 8. STATS ROW ── */
    .cs-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 10px;
      transition: border-color 0.3s, background 0.3s;
    }
    .cs-card:hover .cs-stats {
      background: #f0f7ff;
      border-color: #bfdbfe;
    }
    .cs-stat {
      padding: 8px 6px;
      text-align: center;
      position: relative;
    }
    .cs-stat + .cs-stat::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: #e2e8f0;
    }
    .cs-stat-val {
      font-family:  sans-serif;
      font-size: 0.90rem;
      font-weight: 750;
      color: #0f172a;
      display: block;
      line-height: 1;
    }
    .cs-stat-lbl {
      font-family: 'Manrope', sans-serif;
      font-size: 0.56rem;
      font-weight: 600;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      display: block;
      margin-top: 3px;
    }
 
    /* ── 9. CARD FOOTER ── */
    .cs-footer {
      padding: 0 14px 12px;
      display: flex;
      flex-direction: column;   
      gap: 7px;
      position: relative;
      z-index: 2;
    }
 
    /* WhatsApp button — full width, clean layout */
    .cs-wa-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 16px;
      background: #25D366;
      color: #ffffff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.78rem;
      font-weight: 780;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.22s, box-shadow 0.22s;
      box-shadow: 0 4px 14px rgba(34,197,94,0.28);
    }
    /* Shimmer on WA button */
    .cs-wa-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      transition: left 0.5s ease;
    }
    .cs-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(34,197,94,0.40); color: #fff; }
    .cs-wa-btn:hover::before { left: 150%; }
 
    .cs-wa-icon  { font-size: 1rem; flex-shrink: 0; }
    .cs-wa-text  { flex: 0.82; text-align: center; }
    .cs-wa-arrow { font-size: 0.85rem; flex-shrink: 0; transition: transform 0.2s; }
    .cs-wa-btn:hover .cs-wa-arrow { transform: translateX(3px); }
 
    /* Syllabus link — centered below button */
    .cs-syllabus {
      font-family: 'Manrope', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: #64748b;
      text-decoration: none;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      transition: color 0.2s;
    }
    .cs-syllabus:hover { color: #2563eb; }
 
    /* ── 10. VIEW ALL BUTTON ── */
    .cs-view-all-wrap {
      text-align: center;
      margin-top: 40px;
    }
    .cs-view-all {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 30px;
      background: transparent;
      border: 1.5px solid #cbd5e1;
      border-radius: 50px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: #374151;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.25s ease;
      background: rgba(255,255,255,0.70);
    }
    .cs-view-all:hover {
      background: #ffffff;
      border-color: #94a3b8;
      color: #0f172a;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }
    .cs-view-all-arrow { transition: transform 0.2s; }
    .cs-view-all:hover .cs-view-all-arrow { transform: translateX(4px); }
 
    /* ── 11. TAB CONTENT PANELS ── */
    .cs-panel { display: none; }
    .cs-panel.active { display: block; }
 


    /* ── 12. RESPONSIVE ── */


     @media (max-width: 1199.98px) {
      .cs-grid { grid-template-columns: repeat(3, 1fr); }
      .cs-card:nth-child(4) { display: none; } 
    } 
    
    @media (max-width: 899.98px) {
       .cs-grid { grid-template-columns: repeat(2, 1fr); }
      .cs-card:nth-child(4) { display: flex; } 
       /* .cs-grid { grid-template-columns: repeat(2, 1fr); } */
    }
    @media (max-width: 575.98px) {
       .cs-section { padding: 48px 0 40px; }

      .cs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
      .cs-card:nth-child(4) { display: flex; }
      .cs-banner { height: 130px; } 

      /* .cs-section { padding: 48px 0 40px; }
      .cs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
       .cs-banner { height: 130px; } */
    }


  /* ===================================== COURSES SECTION ====================================  END*/

  /* stats row */
    .stats-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
  }
  .stat-cell {
    flex: 1;
    padding: 10px 6px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .3s;
  }
  .stat-cell:last-child { border-right: none; }
  .course-card:hover .stat-cell { background: var(--surface-2); }
  .stat-val {
    font-family: var(--f-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 3px;
  }
  .stat-key {
    font-size: .6rem;
    color: var(--text-3);
    letter-spacing: .06em;
    text-transform: uppercase;
  }  




  /*================================ CTA Section ========================================= */
  .card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    color: #0a0b10;
    background: var(--c-accent, #fff);
    padding: 10px 22px;
    border-radius: 100px;
    transition: transform .3s var(--ease), box-shadow .3s, filter .3s;
    white-space: nowrap;
  }
  .cta-btn i { font-size: .62rem; transition: transform .3s var(--ease); }
  .cta-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--c-accent, #fff) 40%, transparent);
    color: #0a0b10;
  }
  .cta-btn:hover i { transform: translateX(3px); }

  .cta-link {
    font-family: var(--f-body);
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .3s;
  }
  .cta-link i { font-size: .6rem; }
  .course-card:hover .cta-link { color: var(--text-2); }

  /* ════════════════════════════
     RESPONSIVE
  ════════════════════════════ */
  @media (max-width: 767px) {
    .cards-section { max-width: 420px; }
  }
  @media (max-width: 480px) {
    .card-hero { height: 150px; }
    .card-body-inner { padding: 20px 18px 18px; }
    .card-title { font-size: 1.08rem; }
  }





    /* ============================================================
       STATS BAND
    ============================================================ */
    #stats-band { background: var(--c-primary); padding: 60px 0; position: relative; overflow: hidden; }
    #stats-band::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-box { text-align: center; padding: 20px; position: relative; z-index: 1; }
    .stat-n { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--c-gold); line-height: 1; }
    .stat-l { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; }


.impact-section{
background:#f8f9fb;
}

.impact-title{
font-size:32px;
font-weight:700;
}

.impact-desc{
color:#6c757d;
}

.impact-card{
border-radius:22px;
padding:20px;
color:rgb(237, 232, 232);
box-shadow:6px 6px 0px #0b1b35;
}

.big-card{
background:linear-gradient(135deg,#5b8cff,#2a7bd9);
text-align:center;
}

.big-card h3{
font-size:40px;
font-weight:700;
}

.card-title{
font-size:20px;
font-weight:600;
}

.card-desc{
font-size:14px;
opacity:.9;
}

.small-card{
text-align:center;
padding:35px;
}

.orange{
background:linear-gradient(135deg,#ffb067,#ff8c2a);
}

.red{
background:linear-gradient(135deg,#ff7d7d,#ff4b4b);
}

.small-card h4{
font-size:32px;
font-weight:700;
}

.youtube-card{
background:white;
color:#111;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
box-shadow:6px 6px 0px #0b1b35;
}

.youtube-card h2{
font-size:60px;
font-weight:700;
}

.yt-title{
font-size:24px;
font-weight:600;
}

.yt-title span{
color:red;
}

.yt-desc{
color:#6c757d;
}




    /* ============================================================
       PRICING
    ============================================================ */
    #pricing { padding: 90px 0; background: var(--c-light); }
    .p-card {
      border-radius: 22px; overflow: hidden; height: 100%; display: flex; flex-direction: column;
      border: 2px solid var(--c-border); background: #fff; transition: all .3s;
    }
    .p-card:hover { box-shadow: 0 20px 60px rgba(11,45,122,.12); }
    .p-card.featured { border-color: var(--c-primary); transform: scale(1.025); box-shadow: 0 20px 60px rgba(11,45,122,.18); }
    .p-head { padding: 28px 26px; }
    .p-badge { display: inline-block; font-size: 0.67rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; background: rgba(255,255,255,.22); color: #fff; margin-bottom: 12px; }
    .p-title { font-family: var(--f-display); font-weight: 900; font-size: 1.35rem; color: #fff; margin-bottom: 6px; }
    .p-desc { font-size: 0.84rem; color: rgba(255,255,255,.75); }
    .p-body { padding: 24px 26px; flex: 1; }
    .p-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
    .p-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: #2d3a5e; }
    .p-list li.miss { color: var(--c-muted); }
    .ic-ok { color: #22c55e; }
    .ic-no { color: #ef4444; }
    .p-foot { padding: 0 26px 26px; }
    .btn-p {
      display: block; width: 100%; font-family: var(--f-body); font-weight: 700; font-size: 0.9rem;
      padding: 14px; border-radius: 50px; border: none; text-align: center; transition: all .25s; color: #fff;
    }
    .btn-p-dark { background: var(--c-primary); }
    .btn-p-dark:hover { background: var(--c-accent); box-shadow: 0 8px 24px rgba(232,48,74,.35); transform: translateY(-2px); color: #fff; }
    .btn-p-red  { background: var(--c-accent); }
    .btn-p-red:hover  { background: #c7293f; box-shadow: 0 8px 24px rgba(232,48,74,.35); transform: translateY(-2px); color: #fff; }




/* ==================================WHY US SECTION ======================================= */
   
.wcu-section {
  position: relative;
  padding: 96px 0 108px;
  overflow: hidden;
  background: #f0f4ff;
}

/* Layered background */
.wcu-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at  0% 0%,   rgba(7,26,82,.07)   0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(6,182,212,.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 100% 0%,   rgba(99,102,241,.05)0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

/* Dot grid */
.wcu-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(7,26,82,.07) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none; z-index: 0;
}

.wcu-inner { position: relative; z-index: 1; }

/*HEADER */
.wcu-header { text-align: center; margin-bottom: 60px; }

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #071a52;
  background: rgba(7,26,82,.07);
  border: 1.5px solid rgba(7,26,82,.14);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 20px;
  animation: wcuFadeUp .5s ease both;
}
.wcu-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #071a52, #06b6d4);
  border-radius: 2px; flex-shrink: 0;
}
.wcu-eyebrow::after {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #06b6d4, #071a52);
  border-radius: 2px; flex-shrink: 0;
}

.wcu-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #071a52;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 16px;
  animation: wcuFadeUp .55s .06s ease both;
}
.wcu-title .wcu-hl {
  background: linear-gradient(125deg, #071a52 0%, #1d4ed8 45%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 400;
  color: rgba(7,26,82,.5);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
  animation: wcuFadeUp .55s .12s ease both;
}


/* CARDS GRID */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── CARD ── */
.wcu-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(7,26,82,.07);
  border-radius: 22px;
  padding: 32px 28px 28px;
  overflow: hidden;
  cursor: default;
  box-shadow:
    0 1px 3px rgba(7,26,82,.05),
    0 6px 20px rgba(7,26,82,.07);
  transition:
    transform    .4s cubic-bezier(.22,1,.36,1),
    box-shadow   .4s cubic-bezier(.22,1,.36,1),
    border-color .35s;

  /* scroll reveal default state */
  opacity: 0;
  transform: translateY(32px);
}
.wcu-card.wcu-vis {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .4s cubic-bezier(.22,1,.36,1),
    border-color .35s;
}

/* staggered delays */
.wcu-card:nth-child(1) { transition-delay: .03s; }
.wcu-card:nth-child(2) { transition-delay: .09s; }
.wcu-card:nth-child(3) { transition-delay: .15s; }
.wcu-card:nth-child(4) { transition-delay: .21s; }
.wcu-card:nth-child(5) { transition-delay: .27s; }
.wcu-card:nth-child(6) { transition-delay: .33s; }

.wcu-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(var(--wcu-rgb, 7,26,82),.16);
  box-shadow:
    0 2px 4px rgba(7,26,82,.04),
    0 18px 50px rgba(var(--wcu-rgb,7,26,82),.13),
    0 36px 60px rgba(var(--wcu-rgb,7,26,82),.07);
}

/* Animated gradient border on hover */
.wcu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(var(--wcu-rgb,7,26,82),.0),
    rgba(var(--wcu-rgb,7,26,82),.35),
    rgba(6,182,212,.25),
    rgba(var(--wcu-rgb,7,26,82),.0)
  );
  /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}
.wcu-card:hover::before { opacity: 1; }

/* Corner accent — top right */
.wcu-card::after {
  content: var(--wcu-num, '');
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.8rem; font-weight: 900;
  line-height: 1;
  color: rgba(var(--wcu-rgb, 7,26,82),.045);
  letter-spacing: -.04em;
  pointer-events: none;
  transition: color .4s, transform .4s cubic-bezier(.22,1,.36,1);
}
.wcu-card:hover::after {
  color: rgba(var(--wcu-rgb, 7,26,82),.09);
  transform: scale(1.08) translateY(-2px);
}

/* ── ICON BOX ── */
.wcu-icon-box {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  background: var(--wcu-icon-bg, rgba(7,26,82,.07));
  border: 1.5px solid var(--wcu-icon-border, rgba(7,26,82,.1));
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  flex-shrink: 0;
}
/* Icon shimmer on hover */
.wcu-icon-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.wcu-card:hover .wcu-icon-box {
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(var(--wcu-rgb,7,26,82),.18);
}
.wcu-card:hover .wcu-icon-box::before { opacity: 1; }

/* ── TITLE ── */
.wcu-feat-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem; font-weight: 800;
  color: #071a52;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

/* ── DESC ── */
.wcu-feat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem; font-weight: 400;
  color: rgba(7,26,82,.52);
  line-height: 1.72;
  margin-bottom: 20px;
}

/* ── BOTTOM PILL (stat or tag) ── */
.wcu-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--wcu-accent, #1d4ed8);
  background: var(--wcu-tag-bg, rgba(29,78,216,.07));
  border: 1px solid var(--wcu-tag-border, rgba(29,78,216,.14));
  border-radius: 100px;
  padding: 5px 13px;
  transition: all .3s;
}
.wcu-card:hover .wcu-feat-tag {
  background: var(--wcu-accent, #1d4ed8);
  color: #fff;
  border-color: transparent;
}

/* ═══════════════════════════════════
   BOTTOM TRUST BAR
═══════════════════════════════════ */
.wcu-trust-bar {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border: 1.5px solid rgba(7,26,82,.08);
  border-radius: 18px;
  padding: 22px 32px;
  box-shadow: 0 4px 20px rgba(7,26,82,.07);
  flex-wrap: wrap;
}
.wcu-trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 24px;
  border-right: 1.5px solid rgba(7,26,82,.07);
}
.wcu-trust-item:last-child { border-right: none; }
.wcu-trust-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.1rem; font-weight: 900;
  color: #071a52; line-height: 1;
  background: linear-gradient(125deg, #071a52, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wcu-trust-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; font-weight: 500;
  color: rgba(7,26,82,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/*KEYFRAMES */
@keyframes wcuFadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .wcu-section { padding: 72px 0 86px; }
  .wcu-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .wcu-trust-item { min-width: 120px; padding: 0 16px; }
}
@media (max-width: 575px) {
  .wcu-section { padding: 60px 0 72px; }
  .wcu-title { font-size: 1.85rem; }
  .wcu-grid { grid-template-columns: 1fr; gap: 16px; }
  .wcu-card { padding: 26px 22px 22px; }
  .wcu-trust-bar { padding: 18px 16px; gap: 8px; }
  .wcu-trust-item { min-width: 100px; padding: 0 12px; border-right: none; border-bottom: 1.5px solid rgba(7,26,82,.07); padding-bottom: 12px; margin-bottom: 8px; }
  .wcu-trust-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
}




/* ========================================TESTIMONIALS SECTION ========================================== */
   

  .placement-section {
    background-color: #05365b;
    /* #0d1f2d */
    background-image:
      radial-gradient(circle at 10% 20%, rgba(0, 200, 150, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(0, 150, 200, 0.04) 0%, transparent 50%);
    padding: 70px 0 80px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Grid dots background */
  .placement-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,200,150,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,200,150,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .placement-section .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .placement-section .section-title span {
    /* color: #00c896; */
    color: #e6d53c;
  }

  .placement-section .section-subtitle {
    color: #e2ab2d;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .placement-section .section-rating-text {
    color: #cdd9e5;
    font-size: 0.92rem;
  }

  /* Left Info Card */
  .students-love-card {
    color: #fff;
  }

  .students-love-card h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .students-love-card .community-text {
    font-size: 0.92rem;
    color: #9ab0c4;
    margin-bottom: 24px;
  }

  .students-love-card .community-text span {
    color: #f5c518;
    font-weight: 700;
  }

  .stats-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .stats-box .label {
    font-size: 0.82rem;
    color: #9ab0c4;
    margin-bottom: 8px;
  }

  .avatar-stack {
    display: flex;
    align-items: center;
  }

  .avatar-stack img,
  .avatar-stack .av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #0d1f2d;
    object-fit: cover;
    margin-left: -10px;
  }

  .avatar-stack .av {
    background: #1e3a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #cdd9e5;
    font-weight: 600;
  }

  .avatar-stack .av:first-child { margin-left: 0; }

  .rating-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .rating-badge .star {
    color: #f5c518;
    font-size: 1.3rem;
  }


  .review-btn {
    background: transparent;
    /* border: 1.5px solid #00c896; */
    /* color: #00c896; */
    border: 1.5px solid  #e2ab2d;
    color: #e2ab2d;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .review-btn:hover {
    /* background: #00c896; */
    background-color: #e2ab2d;
    color: #0d1f2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,200,150,0.3);
  }

  /* Video Cards */
  .video-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 420px;
    flex: 1;
  }

  .video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .video-card:hover img {
    transform: scale(1.04);
  }

  /* Dark overlay gradient at bottom */
  .video-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(10, 25, 35, 0.85) 100%
    );
    pointer-events: none;
  }

  .video-card .card-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
  }

  .video-card .card-info .name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .video-card .card-info .course {
    font-size: 0.77rem;
    color: #b0c8d8;
  }

  /* Play Button */
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(245, 197, 24, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
  }

  .video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 28px rgba(245,197,24,0.5);
  }

  /* Nav Arrows */
  .nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5c518;
    border: none;
    color: #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
    z-index: 5;
  }

  .nav-arrow:hover { transform: scale(1.1); }
  .nav-arrow.arrow-disabled { opacity: 0.35; cursor: default; }

  /* Cards slider container */
  .cards-wrapper {
    overflow: hidden;
  }

  .cards-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cards-track .video-card {
    min-width: calc(33.33% - 10px);
  }

  /* Tablet */
  @media (max-width: 991px) {
    .cards-track .video-card {
      min-width: calc(50% - 7px);
    }
    .placement-section .section-title {
      font-size: 1.9rem;
    }
  }

  /* ===== MOBILE ONLY FIXES ===== */
  @media (max-width: 767px) {

    /* Left panel hide */
    .left-info-col {
      display: none !important;
    }

    /* Full width slider */
    .slider-col {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
    }

    /* 1 card at a time, full width */
    .cards-track .video-card {
      min-width: 100%;
      height: 400px;
    }

    .placement-section {
      padding: 50px 0 60px;
    }
  }

  /* ============== testimonial section end =================== */




  /* ====================================== testimonial reviews Section ======================== */
 
    .tv-section {
      background: #ffffff;
      padding: 56px 0 52px;
      overflow: hidden;
    }
 
    /* ── HEADING ── */
    .tv-head {
      text-align: center;
      margin-bottom: 40px;
      padding: 0 12px;
    }
 
    .tv-title {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #202124;
      line-height: 1.3;
      margin: 0;
    }
 
    /* "about us" yellow underline */
    .tv-hl {
      position: relative;
      display: inline-block;
    }
    .tv-hl::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 5px;
      background: #f5a623;
      border-radius: 3px;
      transform: scaleX(1.04);
    }
 

    /* ── ROW WRAPPER ── */
    .tv-row {
      margin-bottom: 1px;
      overflow: hidden;
      /* Fade edges like screenshot */
      -webkit-mask-image: linear-gradient(
        to right, transparent 0%, #000 4%, #000 96%, transparent 100%
      );
      mask-image: linear-gradient(
        to right, transparent 0%, #000 4%, #000 96%, transparent 100%
      );
    }
    .tv-row:last-child { margin-bottom: 0; }
 
    /* ── TRACK ── */
    .tv-track {
      display: flex;
      /* gap set by JS */
      padding: 12px 2px;
      will-change: transform;
    }
    /* Slide animation applied via JS */
    .tv-track.tv-sliding {
      transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    /* ── CARD — wide & short ── */
    .tv-card {
      flex-shrink: 0;
      /* width set by JS */
      background: #fff;
      border-radius: 10px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
      padding: 20px 22px 16px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      cursor: default;
      /* Fixed height — short card */
      height: 240px;
    }
    .tv-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.10), 0 10px 28px rgba(0,0,0,0.09);
      transform: translateY(-3px);
    }
 
    /* ── TOP ROW: avatar + name ── */
    .tv-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .tv-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #e8eaed;
      border: 1.5px solid #e8eaed;
    }
    .tv-name {
      font-family: 'Roboto', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: #202124;
      line-height: 1.2;
    }
 
    /* ── STARS ── */
    .tv-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 10px;
    }
    .tv-star     { font-size: 1.05rem; color: #f5a623; line-height: 1; }
    .tv-star-off { font-size: 1.05rem; color: #dadce0; line-height: 1; }
 
    /* ── REVIEW TEXT ── */
    .tv-text {
      font-family: 'Roboto', sans-serif;
      font-size: 0.84rem;
      color: #5f6368;
      line-height: 1.65;
      flex: 1;
      margin: 0 0 8px;
      overflow: hidden;
      display: -webkit-box;
      /* -webkit-line-clamp: 3; */
      -webkit-box-orient: vertical;
    }
    .tv-text b { color: #202124; font-weight: 500; }
 
    .tv-read-more {
      font-family: 'Roboto', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: #1a73e8;
      text-decoration: none;
    }
    .tv-read-more:hover { text-decoration: underline; }
 
    /* ── BOTTOM: job + company ── */
    .tv-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid #f1f3f4;
    }
    .tv-job {
      font-family: 'Roboto', sans-serif;
      font-size: 0.76rem;
      color: #80868b;
      font-weight: 400;
      line-height: 1.3;
    }
    .tv-job strong {
      display: block;
      color: #3c4043;
      font-weight: 500;
      font-size: 0.80rem;
    }
    .tv-company {
      font-family: 'Roboto', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      color: #3c4043;
    }
    /* Company colour variants */
    .tv-co-affle   { color: #f97316; font-style: italic; font-size: 0.95rem; }
    .tv-co-s2t     { color: #1a73e8; }
    .tv-co-tcs     { color: #003087; }
    .tv-co-wipro   { color: #8b1d1d; }
    .tv-co-infosys { color: #007cc2; }
    .tv-co-flipkart{ color: #1a73e8; }
 
    /* ── MODAL ── */
    .tv-modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.42);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .tv-modal-bg.open { display: flex; }
    .tv-modal-box {
      background: #fff;
      border-radius: 12px;
      max-width: 480px;
      width: 100%;
      padding: 26px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.18);
      position: relative;
      animation: tvMIn 0.22s ease both;
    }
    @keyframes tvMIn {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .tv-modal-close {
      position: absolute;
      top: 12px; right: 12px;
      background: #f1f3f4; border: none;
      width: 28px; height: 28px;
      border-radius: 50%;
      font-size: 0.9rem; color: #5f6368;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .tv-modal-close:hover { background: #e8eaed; color: #202124; }
    .tv-modal-text {
      font-family: 'Roboto', sans-serif;
      font-size: 0.88rem;
      color: #5f6368;
      line-height: 1.70;
      margin-top: 14px;
    }

  /*======================================== testimonial reviews end ========================================= */



  /*============ Recongnized Section =======================*/


/* Section Background */
.bizfy-section {
    padding: 40px 0;
    background-color: #ffffff;

    /* grid background like image */
    /* background-image: 
      linear-gradient(to right, #ffffff 1px, transparent 1px),
      linear-gradient(to bottom, #ffffff 1px, transparent 1px); */

    background-size: 30px 30px;
}

/* Heading Styling */
.powered-text {
    font-weight: 600;
    color: #1f2937;
}

.recognised-text {
    font-weight: 600;
    color: #1f2937;
}


/* Bizfy Logo */
.bizfy-logo img {
    height: 250px;
}

/* Partner Logos */
.partner-logo {
    max-height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Hover Effect */
.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}


/*============ Recongnized Section End =======================*/




/* =====================================COMPANIES MARQUEE =========================================== */


/* ══ SECTION */
    .ch-section {
      background: #ffffff;
      padding: 50px 0 44px;
      overflow: hidden;
      position: relative;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
    }

    /* ══ HEADING ══ */
    .ch-head {
      text-align: center;
      margin-bottom: 36px;
    }

    /* Top label */
    .ch-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #fff5f5;
      border: 1px solid #fecaca;
      border-radius: 50px;
      padding: 5px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: #dc2626;
      margin-bottom: 14px;
    }
    .ch-label-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #dc2626;
      box-shadow: 0 0 6px #dc2626;
      animation: chDot 1.5s ease-in-out infinite;
    }
    @keyframes chDot {
      0%,100% { opacity:1; box-shadow:0 0 5px #dc2626; }
      50%      { opacity:.4; box-shadow:0 0 10px #dc2626; }
    }

    /* Main title */
    .ch-title {
      font-family: 'Exo 2', sans-serif;
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #111827;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .ch-title .ch-red {
      color: #dc2626;
      position: relative;
      display: inline-block;
    }
    .ch-title .ch-red::after {
      content: '';
      position: absolute;
      left: 50%; bottom: -5px;
      transform: translateX(-50%);
      height: 3px;
      border-radius: 3px;
      background: #dc2626;
      animation: chUl 2.5s ease-in-out infinite;
    }
    @keyframes chUl {
      0%,100% { width:60%; opacity:.5; }
      50%      { width:100%; opacity:1; }
    }

    /* Subtitle */
    .ch-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      color: #6b7280;
      font-weight: 400;
      line-height: 1.6;
    }
    .ch-subtitle b {
      color: #374151;
      font-weight: 600;
    }

    /* ══ MARQUEE ROWS ══ */
    .ch-row {
      overflow: hidden;
      margin-bottom: 14px;
     -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
      mask-image:         linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    }
    .ch-row:last-child { margin-bottom: 0; }

    .ch-track {
      display: flex;
      gap: 14px;
      width: max-content;
      will-change: transform;
    }

    /* Row 1 — left scroll, medium speed */
    .ch-s1 { animation: chLeft 32s linear infinite; }
    /* Row 2 — right scroll (reversed), slightly slower */
    .ch-s2 { animation: chRight 38s linear infinite; }

    @keyframes chLeft  { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
    @keyframes chRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

    /* Pause on hover */
    .ch-row:hover .ch-track { animation-play-state: paused; }

    /* ══ LOGO CARD ══ */
    .ch-card {
      flex-shrink: 0;
      width: 190px;
      height: 92px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      /* White bg with visible border + shadow — stands out on white section */
      border: 1.5px solid #e5e7eb;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      cursor: default;
      overflow: hidden;
      position: relative;
    }
    .ch-card:hover {
      transform: translateY(-5px) scale(1.04);
      box-shadow: 0 12px 28px rgba(0,0,0,0.13);
      border-color: #d1d5db;
    }

    /* Coloured card variants */
    .bg-dark2  { background:#111827 !important; border-color:#111827 !important; }
    .bg-blue2  { background:#1d4ed8 !important; border-color:#1d4ed8 !important; }
    .bg-teal2  { background:#0a6670 !important; border-color:#0a6670 !important; }
    .bg-black2 { background:#0f0f0f !important; border-color:#0f0f0f !important; }

    /* ══ LOGO INNER STYLES ══ */
    .lg  { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:10px 14px; gap:3px; }
    .lg-row { display:flex; align-items:center; gap:5px; }

    /* YASH */
    .yash-name  { font-family:'Rajdhani',sans-serif; font-size:2rem; font-weight:700; color:#0033a0; letter-spacing:.04em; line-height:1; }
    .yash-arrow { font-size:1.3rem; color:#0033a0; margin-top:-2px; }
    .yash-sub   { font-size:.52rem; color:#333; font-family:'Inter',sans-serif; }
    .yash-tag   { font-family:'Inter',sans-serif; font-size:.44rem; color:#777; font-style:italic; }

    /* eb */
    .eb-txt { font-family:'Bebas Neue',sans-serif; font-size:3rem; color:#fff; line-height:1; }

    /* sYstango */
    .sys-txt    { font-family:'Inter',sans-serif; font-size:1.45rem; font-weight:400; color:#222; }
    .sys-txt .sy { font-style:italic; font-weight:800; font-size:1.5rem; }

    /* bitcot */
    .btc-txt   { font-family:'Inter',sans-serif; font-size:1.5rem; font-weight:300; color:#111; letter-spacing:-.02em; }
    .btc-txt b { font-weight:800; }

    /* CubexO */
    .cbx-name { font-family:'Inter',sans-serif; font-size:1.45rem; font-weight:700; color:#1b3a5c; }
    .cbx-cube { display:inline-block; width:15px; height:15px; background:#d4eaf7; border:2.5px solid #1b3a5c; border-radius:3px; transform:translateY(3px); }
    .cbx-sub  { font-family:'Inter',sans-serif; font-size:.52rem; color:#5a7a96; font-weight:500; letter-spacing:.05em; }

    /* KSOLVES */
    .ksv-icon  { width:26px; height:30px; background:#dc2626; clip-path:polygon(0 0,70% 0,100% 50%,70% 100%,0 100%); display:flex; align-items:center; justify-content:center; }
    .ksv-inner { width:13px; height:14px; background:#fff; clip-path:polygon(0 0,70% 0,100% 50%,70% 100%,0 100%); }
    .ksv-text  { font-family:'Rajdhani',sans-serif; font-size:1.5rem; font-weight:700; color:#dc2626; letter-spacing:.06em; }
    .ksv-sub   { font-family:'Inter',sans-serif; font-size:.50rem; color:#555; letter-spacing:.06em; }

    /* iTGurus */
    .itg-badge { background:#1d4ed8; color:#fff; font-family:'Rajdhani',sans-serif; font-size:1rem; font-weight:700; padding:2px 7px; border-radius:4px; line-height:1.3; }
    .itg-name  { font-family:'Rajdhani',sans-serif; font-size:1.35rem; font-weight:700; color:#1d4ed8; }
    .itg-sub   { font-family:'Inter',sans-serif; font-size:.50rem; color:#6b7280; font-style:italic; }

    /* Vkaps */
    .vkp-box  { border:2.5px solid #111; border-radius:5px; padding:1px 6px; font-family:'Inter',sans-serif; font-size:1rem; font-weight:700; color:#111; line-height:1.4; }
    .vkp-name { font-family:'Rajdhani',sans-serif; font-size:1.4rem; font-weight:700; color:#111; line-height:1; }
    .vkp-sub  { font-family:'Inter',sans-serif; font-size:.50rem; color:#555; letter-spacing:.06em; }

    /* TechSolvo */
    .tsv-name  { font-family:'Inter',sans-serif; font-size:1.3rem; font-weight:700; color:#111; }
    .tsv-slash { color:#ef4444; font-style:italic; }
    .tsv-sub   { font-family:'Inter',sans-serif; font-size:.52rem; color:#6b7280; }

    /* thoughtwin */
    .thw-name   { font-family:'Inter',sans-serif; font-size:1.25rem; font-weight:400; color:#111; }
    .thw-name b { color:#dc2626; font-weight:800; }

    /* Parkhya */
    .pkh-icon { width:22px; height:22px; border:2.5px solid #5b4e9e; border-radius:4px; display:flex; align-items:center; justify-content:center; }
    .pkh-p    { font-family:'Rajdhani',sans-serif; font-size:.85rem; font-weight:700; color:#5b4e9e; }
    .pkh-name { font-family:'Inter',sans-serif; font-size:.95rem; font-weight:700; color:#5b4e9e; }
    .pkh-sub  { font-family:'Inter',sans-serif; font-size:.48rem; color:#6b7280; }

    /* C{}DES */
    .cds-main  { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:#111; letter-spacing:.06em; line-height:1; }
    .cds-brace { color:#ef4444; }
    .cds-sub   { font-family:'Rajdhani',sans-serif; font-size:.7rem; font-weight:700; color:#374151; letter-spacing:.18em; }

    /* Rising Bharat */
    .rb-the  { font-family:'Inter',sans-serif; font-size:.62rem; font-weight:400; color:rgba(255,255,255,.75); font-style:italic; letter-spacing:.1em; }
    .rb-main { font-family:'Rajdhani',sans-serif; font-size:1.35rem; font-weight:700; color:#fff; line-height:1.1; text-align:center; }

    /* NextDay */
    .nd-circle { width:28px; height:28px; background:#f59e0b; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .nd-ci     { font-family:'Rajdhani',sans-serif; font-size:.72rem; font-weight:700; color:#fff; }
    .nd-name   { font-family:'Rajdhani',sans-serif; font-size:1.45rem; font-weight:700; color:#111; line-height:1; }
    .nd-day    { color:#f59e0b; font-size:1.75rem; }
    .nd-sub    { font-family:'Inter',sans-serif; font-size:.46rem; color:#6b7280; letter-spacing:.08em; }

    /* TECHVALENS dark */
    .tvl-name { font-family:'Rajdhani',sans-serif; font-size:1.5rem; font-weight:700; color:#fff; letter-spacing:.1em; }
    .tvl-sub  { font-family:'Inter',sans-serif; font-size:.52rem; color:rgba(255,255,255,.5); letter-spacing:.14em; }

    /* NCS dark */
    .ncs-name { font-family:'Bebas Neue',sans-serif; font-size:2.8rem; color:#fff; letter-spacing:.04em; line-height:1; }
    .ncs-hat  { color:#ef4444; font-size:1.8rem; vertical-align:top; line-height:1.6; }

    /* MINDIII dark */
    .mdi-play { color:#fff; font-size:1.1rem; }
    .mdi-name { font-family:'Bebas Neue',sans-serif; font-size:1.85rem; color:#fff; letter-spacing:.14em; }

    /* MindCrew */
    .mcr-icon { font-size:1.3rem; }
    .mcr-name { font-family:'Inter',sans-serif; font-size:1.05rem; font-weight:700; color:#f97316; }
    .mcr-sub  { font-family:'Inter',sans-serif; font-size:.50rem; color:#555; }
    .mcr-tag  { font-family:'Inter',sans-serif; font-size:.45rem; color:#888; font-style:italic; }

    /* Lemosys */
    .lem-icon { font-size:.85rem; color:#dc2626; }
    .lem-name { font-family:'Inter',sans-serif; font-size:1.15rem; font-weight:700; color:#0a6670; }
    .lem-sup  { font-size:.62rem; vertical-align:super; font-weight:400; }
    .lem-sub  { font-family:'Inter',sans-serif; font-size:.48rem; color:#6b7280; letter-spacing:.04em; }

    /* ExpertInAsia */
    .eia-icon { font-size:1.1rem; color:#374151; }
    .eia-name { font-family:'Inter',sans-serif; font-size:.98rem; font-weight:400; color:#111; }
    .eia-name b { font-weight:800; font-style:italic; }

    /* DreamWorks */
    .dws-circle { width:28px; height:28px; background:#e8f4fd; border-radius:50%; display:flex; align-items:center; justify-content:center; border:2px solid #2563eb; }
    .dws-s      { font-family:'Inter',sans-serif; font-size:1rem; font-weight:800; color:#2563eb; }
    .dws-name   { font-family:'Inter',sans-serif; font-size:.9rem; font-weight:700; color:#1e3a5f; text-align:center; line-height:1.25; }

    /* DEGREESIT */
    .dgi-icon { width:28px; height:28px; background:#111; border-radius:50%; display:flex; align-items:center; justify-content:center; }
    .dgi-i    { font-size:.75rem; color:#fff; }
    .dgi-name { font-family:'Rajdhani',sans-serif; font-size:1.25rem; font-weight:700; color:#111; letter-spacing:.06em; }
    .dgi-sub  { font-family:'Inter',sans-serif; font-size:.50rem; color:#6b7280; }

    /* MACTOSYS */
    .mac-icon { font-family:'Rajdhani',sans-serif; font-size:1.1rem; font-weight:700; color:#f97316; }
    .mac-name { font-family:'Rajdhani',sans-serif; font-size:1.4rem; font-weight:700; color:#111; letter-spacing:.08em; }

    /* conative */
    .cnv-name { font-family:'Inter',sans-serif; font-size:1.4rem; font-weight:800; color:#1e3a5f; letter-spacing:-.02em; }
    .cnv-sub  { font-family:'Inter',sans-serif; font-size:.44rem; color:#888; letter-spacing:.12em; text-transform:uppercase; }

    /* Infosys BPM */
    .inf-name { font-family:'Inter',sans-serif; font-size:1.35rem; font-weight:700; color:#003087; }
    .inf-bpm  { font-family:'Rajdhani',sans-serif; font-size:.75rem; font-weight:700; color:#003087; letter-spacing:.16em; border-top:2px solid #003087; padding-top:2px; }

    /* Wipro */
    .wip-name { font-family:'Inter',sans-serif; font-size:1.6rem; font-weight:800; color:#8b1d1d; }
    .wip-dot  { display:inline-block; width:9px; height:9px; background:#f59e0b; border-radius:50%; margin-left:3px; margin-bottom:4px; }
    .wip-tag  { font-family:'Inter',sans-serif; font-size:.48rem; color:#888; letter-spacing:.08em; }

    /* TCS */
    .tcs-name { font-family:'Rajdhani',sans-serif; font-size:2rem; font-weight:700; color:#003087; letter-spacing:.1em; line-height:1; }
    .tcs-sub  { font-family:'Inter',sans-serif; font-size:.5rem; color:#4b6a8a; font-style:italic; }

    /* HCLTech */
    .hcl-box  { background:#4d7c0f; border-radius:5px; padding:3px 10px; }
    .hcl-name { font-family:'Inter',sans-serif; font-size:1.25rem; font-weight:900; color:#fff; letter-spacing:.02em; }

    /* Softsages */
    .sft-dot  { width:8px; height:8px; background:#7c3aed; border-radius:50%; }
    .sft-name { font-family:'Inter',sans-serif; font-size:1.15rem; font-weight:700; color:#7c3aed; }
    .sft-sub  { font-family:'Inter',sans-serif; font-size:.52rem; color:#6b7280; }

    /* ══ RESPONSIVE ══ */
    @media (max-width:767px) {
      .ch-section { padding:36px 0 32px; }
      .ch-card    { width:158px; height:80px; border-radius:11px; }
      .ch-track   { gap:10px; }
      .ch-row     { margin-bottom:10px; }
    }
    @media (max-width:479px) {
      .ch-card { width:138px; height:70px; }
    }



    /* ============================================================
       CTA FORM SECTION
    ============================================================ */
    #cta-sec {
      background: radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,90,160,0.22) 0%, transparent 70%),
                      radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,180,255,0.10) 0%, transparent 60%),
                      radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,60,120,0.18) 0%, transparent 60%),
                      linear-gradient(160deg, #010d1a 0%, #020e1e 40%, #031525 100%);
      padding: 90px 15px 0 15px; position: relative; overflow: hidden;
    }
    #cta-sec::before {
      content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%); top: -200px; right: -100px;
    }
    #cta-sec::after {
      content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,201,167,.08) 0%, transparent 70%); bottom: -140px; left: 5%;
    }
    .cta-z { position: relative; z-index: 1; }
    .glass-form {
      background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px; padding: 36px 34px;
      width: 80%;
    }
    .ginput {
      width: 100%; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
      border-radius: 12px; padding: 13px 16px; font-family: var(--f-body); font-size: 0.9rem;
      color: #fff; outline: none; transition: border-color .2s, background .2s;
    }
    .ginput::placeholder { color: white }
    .ginput:focus { border-color: var(--c-gold); background: rgba(255,255,255,.12); }
    .btn-gsub {
      width: 100%; font-family: var(--f-body); font-weight: 700; font-size: 1rem;
      padding: 15px; background: var(--c-accent); color: #fff;
      border: none; border-radius: 12px; transition: all .25s; cursor: pointer;
    }
    .btn-gsub:hover { background: #c7293f; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,48,74,.45); }


    /* ============================================================
       FAQ SECTION
    ============================================================ */
    #faq { padding: 90px 0; }
    .accordion-item { border: 1px solid var(--c-border) !important; border-radius: 14px !important; margin-bottom: 10px; overflow: hidden; }
    .accordion-button {
      font-family: var(--f-display) !important; font-weight: 700 !important; font-size: 0.95rem !important;
      color: var(--c-primary) !important; background: #fff !important;
      padding: 20px 24px !important; box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { background: rgba(11,45,122,.04) !important; }
    .accordion-body { font-size: 0.875rem; color: var(--c-muted); line-height: 1.8; padding: 0 24px 20px !important; }


    /* ============================================================
       FOOTER SECTION
    ============================================================ */
    #footer { 
          background: radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,90,160,0.22) 0%, transparent 70%),
                      radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,180,255,0.10) 0%, transparent 60%),
                      radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,60,120,0.18) 0%, transparent 60%),
                      linear-gradient(160deg, #010d1a 0%, #020e1e 40%, #031525 100%);
          padding: 70px 0 0;
      }

    .f-logo { height: 150px; filter: brightness(10); margin-bottom: 14px;  display: block; }
    .f-desc { font-size: 1rem; color: rgba(255,255,255,.77); line-height: 1.75; max-width: 300px; margin-bottom: 18px; }
    .f-soc { display: flex; gap: 9px; }
    .fsoc-btn {
      width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem; color: rgba(255,255,255,.6); transition: all .2s;
    }
    /* .fsoc-btn:hover { background: var(--c-accent); color: #fff; } */
    .f-head { font-family: var(--f-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
    .f-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
    .f-links a { font-size: 0.9rem; color: rgba(255,255,255,.77); transition: all .2s; display: flex; align-items: center; gap: 6px; }
    .f-links a:hover { color: var(--c-gold); transform: translateX(4px); }
    .f-con { display: flex; flex-direction: column; gap: 13px; }
    .f-con-item { display: flex; gap: 11px; font-size: 0.84rem; color: rgba(255,255,255,.5); }
    .f-con-item i { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
    .f-con-item strong { color: rgba(255, 255, 255, 0.9); display: block; margin-bottom: 1px; font-size: 1rem;}
    .f-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 50px; padding: 18px 0; font-size: 1rem; color: rgba(255,255,255,.77); text-align: center; }

/*     
    .fa-instagram {
  background: linear-gradient(45deg,#feda75,#d62976,#962fbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.fa-facebook-f {
  color: #1877F2;
}

.fa-youtube {
  color: #FF0000;
}

.fa-whatsapp {
  color: #25D366;
}

.fa-instagram {
  color: #E4405F;
}

.fa-linkedin-in {
  color: #0A66C2;
}
.fsoc-btn i {
  font-size: 20px;
  transition: 0.2s;
}

.fsoc-btn:hover i {
  transform: scale(1.1);
}


    /* 
    .brand-logo-box2 {
      width: 60px;
      height: 60px;
      background: #ffffff; 
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
     } 
    .brand-logo-box2 img {
      width: 50px;
      height: 50px;
      object-fit: contain;
    } 
   */



    /* ============================================================
       FLOATING BTNS
    ============================================================ */
    .floater { position: fixed; bottom: 24px; right: 24px; z-index: 1040; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
    .fl-btn {
      width: 48px; height: 48px; border-radius: 50%; border: none;
     
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem; transition: all .25s; box-shadow: 0 6px 18px rgba(0,0,0,.22); cursor: pointer;
    }
    .fl-wa  { background: #25d366 !important;  color: #fff !important;   } 
    .fl-wa:hover  { background: #1aad52; transform: scale(1.1); }
    .fl-call{ background: var(--c-accent); color: #fff; }
    .fl-call:hover{ background: #c7293f; transform: scale(1.1); }
    .fl-top { background: var(--c-primary); color: #fff; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .fl-top.vis { opacity: 1; pointer-events: auto; }

    @media (max-width: 991.98px) {
      .p-card.featured { transform: scale(1); }
      #hero { padding: 90px 0 55px; }
      .hs-item { padding: 0 14px 0 0; margin-right: 14px; }
    }
    @media (max-width: 767.98px) {
      .feat-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { gap: 0; }
      .glass-form { padding: 26px 20px; }
    }

   


/* =============================== Founder Message Section ================================ */

.founder-img-wrapper{
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

/* slider */

.mentor-slider{
overflow:hidden;
position:relative;
width:100%;
}

.mentor-track{
display:flex;
gap:20px;
width:max-content;
animation:scrollMentor 20s linear infinite;
}

.mentor-card{
width:90px;
height:90px;
border-radius:15px;
overflow:hidden;
flex-shrink:0;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.mentor-card img{
width:100%;
height:100%;
object-fit:cover;
}

/* animation */

@keyframes scrollMentor {

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.mentor-section{
background:linear-gradient(135deg,#f8fbff,#eef3ff);
}

.founder-img-wrapper{
position:relative;
padding:0px;
border-radius:20px;
/* background:linear-gradient(135deg,#7daad2,#555e5f); */
/* background: linear-gradient(135deg, #89f7fe, #66a6ff); */
background: linear-gradient(135deg, #1f1c2c, #928dab);
box-shadow:0 20px 60px rgba(0,5,6,0.15);
}

.founder-img{
border-radius:15px;
width:100%;
object-fit:cover;
} 


.founder-text{
color:#555;
line-height:1.7;
font-size:14px;
}

.founder-name{
font-weight:600;
color:#3d74c7;
margin-top:10px;
}

  