 :root {
      --primary: #0A6EFF;
      --primary-dark: #0952C7;
      --primary-light: #4B8EFF;
      --secondary: #0A1628;
      --accent: #00D4AA;
      --teal: #00B8A9;
      --teal-light: #E6F7F5;
      --gradient-main: linear-gradient(135deg, #0A6EFF 0%, #00B8A9 100%);
      --gradient-glow: linear-gradient(135deg, rgba(10, 110, 255, 0.12) 0%, rgba(0, 184, 169, 0.10) 100%);
      --card-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
      --border-radius: 24px;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --bg-light: #f0f7ff;
      --bg-card: #ffffff;
    }
    
    html, body{
      width:100%;
      max-width:100%;
      overflow-x:hidden;
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body{
    background:
        linear-gradient(rgba(10,110,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,110,255,.045) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(10,110,255,.12), transparent 30%),
        radial-gradient(circle at 95% 45%, rgba(0,184,169,.10), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%) !important;
    background-size:32px 32px, 32px 32px, auto, auto, auto !important;
    background-attachment:fixed;
    }
    
    .hero-section,
    .section-alt,
    .section-white,
    .trust-strip-custom{
        background:transparent !important;
    }
    
    .header-custom{
        background:rgba(255,255,255,.92) !important;
    }
    
    footer,
    .footer-custom{
        background:#0A1628 !important;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #e8ecf5; }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    .display-1-custom {
      font-size: 3.8rem;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }
    @media (max-width: 768px) { .display-1-custom { font-size: 2.4rem; } }

    .text-gradient {
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-badge {
      display: inline-block;
      background: rgba(10, 110, 255, 0.10);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.8rem;
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-weight: 800;
      font-size: 2.5rem;
      letter-spacing: -0.02em;
    }
    @media (max-width: 768px) { .section-title { font-size: 1.8rem; } }

    .btn-primary-custom {
      background: var(--gradient-main);
      border: none;
      color: white;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 60px;
      transition: var(--transition);
      box-shadow: 0 8px 30px rgba(10, 110, 255, 0.25);
    }
    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(10, 110, 255, 0.35);
      color: white;
    }

    .btn-outline-custom {
      border: 2px solid var(--primary);
      color: var(--primary);
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 60px;
      transition: var(--transition);
      background: transparent;
    }
    .btn-outline-custom:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }

    .text-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .text-animate.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .text-animate:nth-child(1) { transition-delay: 0.05s; }
    .text-animate:nth-child(2) { transition-delay: 0.15s; }
    .text-animate:nth-child(3) { transition-delay: 0.25s; }
    .text-animate:nth-child(4) { transition-delay: 0.35s; }
    .text-animate:nth-child(5) { transition-delay: 0.45s; }
    .text-animate:nth-child(6) { transition-delay: 0.55s; }
    .text-animate:nth-child(7) { transition-delay: 0.65s; }
    .text-animate:nth-child(8) { transition-delay: 0.75s; }
    .text-animate:nth-child(9) { transition-delay: 0.85s; }
    .text-animate:nth-child(10) { transition-delay: 0.95s; }

    .float-badge {
      animation: floatBadge 3s ease-in-out infinite;
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
    }

    .banner-slider{
  position: relative;
  width: 112%;
  margin-left: -4%;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 24px;
  overflow: hidden !important;
}

.banner-slider .slides-wrapper{
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden !important;
  border-radius: 24px;
}

.banner-slider .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.banner-slider .slide.active{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.banner-slider .slide.exit{
  opacity: 0;
  transform: translateX(-30px);
  z-index: 1;
}

.banner-slider .slide img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center right;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10,22,40,.10);
}

.slider-dots{
  position: absolute;
  bottom: 18px;
  right: 45px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active{
  background: #fff;
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 1199px){
  .banner-slider{
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 991px){
  .banner-slider .slides-wrapper{
    height: 430px;
  }

  .banner-slider .slide img{
     width: 100%;
      height: 100%;
      object-fit: cover !important;
      object-position: center;
      }
    }
    .slider-dots .dot.active {
      background: white;
      width: 28px;
      border-radius: 10px;
    }

    /* ===== HEADER - UPDATED ===== */
    .header-custom {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(10, 22, 40, 0.05);
      padding: 0.6rem 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      border-bottom: 1px solid rgba(10, 110, 255, 0.08);
    }
    .header-custom .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .header-custom .brand-logo {
      height: 59px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(10, 110, 255, 0.15));
    }
    .header-custom .brand-text {
      font-weight: 800;
      font-size: 1.5rem;
      color: #0A1628;
      letter-spacing: -0.5px;
      line-height: 1;
    }
    .header-custom .brand-text .tagline {
      font-weight: 400;
      font-size: 0.65rem;
      color: #94a3b8;
      display: block;
      letter-spacing: 0.5px;
      margin-top: -2px;
    }
    .header-custom .nav-links {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      padding: 6px 8px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(10, 110, 255, 0.10);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .80), 0 8px 30px rgba(10, 110, 255, 0.06);
      border-radius: 999px;
    }
    .header-custom .nav-links a {
      font-weight: 500;
      color: #1e293b;
      padding: 0.35rem 0.9rem;
      font-size: 0.82rem;
      border-radius: 999px;
      transition: var(--transition);
      text-decoration: none;
      background: transparent;
    }
    .header-custom .nav-links a:hover {
      color: var(--primary);
      background: rgba(10, 110, 255, 0.08);
    }
    .header-custom .nav-links a.active {
      color: white;
      font-weight: 600;
      background: var(--gradient-main);
      box-shadow: 0 4px 12px rgba(10, 110, 255, 0.25);
    }
    .header-custom .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .header-custom .btn-login {
      font-weight: 600;
      color: var(--primary);
      padding: 0.35rem 1.2rem;
      border-radius: 999px;
      border: 1.5px solid var(--primary);
      background: transparent;
      transition: var(--transition);
      text-decoration: none;
      font-size: 0.82rem;
    }
    .header-custom .btn-login:hover {
      background: var(--primary);
      color: white;
    }
    .header-custom .btn-getstarted {
      font-weight: 600;
      color: white;
      padding: 0.35rem 1.5rem;
      border-radius: 999px;
      background: var(--gradient-main);
      border: none;
      transition: var(--transition);
      text-decoration: none;
      font-size: 0.82rem;
      box-shadow: 0 4px 15px rgba(10, 110, 255, 0.2);
    }
    .header-custom .btn-getstarted:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(10, 110, 255, 0.3);
      color: white;
    }
    .header-custom .menu-toggle {
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #0A1628;
      padding: 0.2rem 0.5rem;
      cursor: pointer;
      display: none;
    }
    @media (max-width: 991px) {
      .header-custom .menu-toggle { display: block; }
      .header-custom .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 0.2rem;
        border-radius: 16px;
        background: white;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      }
      .header-custom .nav-links.open { display: flex; }
      .header-custom .nav-links a {
        width: 100%;
        padding: 0.6rem 1rem;
        border-radius: 12px;
        text-align: center;
      }
      .header-custom .nav-links a.active {
        background: var(--gradient-main);
        color: white;
      }
      .header-custom .header-actions { display: none; }
      .header-custom .header-actions.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 0.5rem 0;
      }
      .header-custom .header-actions.mobile-open .btn-login,
      .header-custom .header-actions.mobile-open .btn-getstarted {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        border-radius: 999px;
      }
      .header-custom .nav-wrap { flex-wrap: wrap; }
      body { padding-top: 70px; }
    }
    @media (max-width: 576px) {
      .header-custom .brand-text { font-size: 1.2rem; }
      .header-custom .brand-logo { height: 38px; }
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .nav-links-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex: 1;
      justify-content: center;
    }
    @media (max-width: 991px) {
      .nav-links-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0.5rem 0;
      }
      .nav-wrap .header-actions { display: none; }
      .nav-wrap .header-actions.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
      }
    }

    /* ===== HERO - UPDATED ===== */
    .hero-section{
      padding: 3rem 0 2rem;
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 85px);
    }
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10, 110, 255, 0.07) 0%, transparent 70%);
      top: -200px;
      right: -100px;
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 184, 169, 0.05) 0%, transparent 70%);
      bottom: -100px;
      left: -100px;
      pointer-events: none;
    }

    .feature-card-custom {
      background: var(--bg-card);
      padding: 2rem 1.5rem;
      border-radius: var(--border-radius);
      border: 1px solid #eef2f6;
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    }
    .feature-card-custom:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
      box-shadow: var(--card-shadow);
    }
    .feature-card-custom .icon-wrap {
      width: 56px;
      height: 56px;
      background: var(--gradient-glow);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    /* ===== ATTRACTIVE SERVICES GRID ===== */
    .service-grid-modern {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .service-card-modern {
      background: var(--bg-card);
      border-radius: var(--border-radius);
      padding: 1.8rem 1.2rem;
      text-align: center;
      border: 1px solid #eef2f6;
      transition: var(--transition);
      text-decoration: none;
      color: #0A1628;
      display: block;
      height: 100%;
      box-shadow: 0 4px 16px rgba(0,0,0,0.02);
      position: relative;
      overflow: hidden;
    }

    .service-card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-main);
      opacity: 0;
      transition: var(--transition);
    }

    .service-card-modern:hover::before {
      opacity: 1;
    }

    .service-card-modern:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 50px rgba(10, 110, 255, 0.12);
      color: #0A1628;
    }

    .service-card-modern .icon-box {
      width: 64px;
      height: 64px;
      background: var(--gradient-glow);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin: 0 auto 0.8rem;
      transition: var(--transition);
    }

    .service-card-modern:hover .icon-box {
      background: var(--gradient-main);
      color: white;
      transform: scale(1.05) rotate(-5deg);
    }

    .service-card-modern .service-name {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
      transition: var(--transition);
    }

    .service-card-modern:hover .service-name {
      color: var(--primary);
    }

    .service-card-modern .service-desc {
      font-size: 0.8rem;
      color: #94a3b8;
      font-weight: 400;
      line-height: 1.5;
    }

    .service-card-modern .service-cta {
      display: inline-block;
      margin-top: 0.8rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
      transition: var(--transition);
      padding: 0.3rem 0;
      position: relative;
    }

    .service-card-modern .service-cta::after {
      content: '→';
      display: inline-block;
      margin-left: 4px;
      transition: var(--transition);
    }

    .service-card-modern:hover .service-cta {
      color: var(--primary-dark);
    }

    .service-card-modern:hover .service-cta::after {
      transform: translateX(6px);
    }

    .service-card-modern .service-tag {
      display: inline-block;
      background: rgba(10, 110, 255, 0.06);
      color: var(--primary);
      font-size: 0.6rem;
      font-weight: 600;
      padding: 0.2rem 0.8rem;
      border-radius: 40px;
      letter-spacing: 0.3px;
      margin-bottom: 0.5rem;
    }

    .bharat-connect-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #0A1628;
      color: white;
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .bharat-connect-badge i { color: #00D4AA; font-size: 0.9rem; }

    .trust-strip-custom {
      /*background: var(--bg-card);*/
      padding: 2rem 0;
      border-top: 1px solid #eef2f6;
      border-bottom: 1px solid #eef2f6;
    }
    .trust-item-custom {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .trust-item-custom i { font-size: 1.8rem; color: var(--primary); }

    .footer-custom {
      background: #0A1628;
      color: rgba(255, 255, 255, 0.7);
      padding: 3rem 0 1.5rem;
    }
    .footer-custom a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-custom a:hover { color: white; }
    .footer-custom .brand {
      color: white;
      font-weight: 900;
      font-size: 1.6rem;
    }
    .footer-custom .brand i { color: var(--primary); }

    .stat-card {
      text-align: center;
      padding: 1.5rem;
      background: var(--bg-card);
      border-radius: var(--border-radius);
      border: 1px solid #eef2f6;
      transition: var(--transition);
    }
    .stat-card:hover {
      border-color: var(--primary);
      box-shadow: var(--card-shadow);
    }
    .stat-card .number {
      font-size: 2.8rem;
      font-weight: 900;
      color: #0A1628;
    }
    .stat-card .label { color: #64748b; font-weight: 500; }

    .modern-feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.6rem 1.2rem;
      background: var(--bg-card);
      border-radius: 50px;
      border: 1px solid #eef2f6;
      font-weight: 600;
      font-size: 0.85rem;
      color: #0A1628;
      transition: var(--transition);
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }
    .modern-feature-pill:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 25px rgba(10, 110, 255, 0.08);
      transform: translateY(-2px);
    }
    .modern-feature-pill i { color: var(--primary); font-size: 1.1rem; }

    .security-badge-modern {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.5rem 1rem;
      background: rgba(10, 110, 255, 0.06);
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--primary);
    }

    .section-alt {
      /*background: var(--bg-light);*/
    }
    .section-white {
      /*background: var(--bg-card);*/
    }

    @media (max-width: 576px) {
      .hero-section { padding: 1.5rem 0; }
      .stat-card .number { font-size: 2rem; }
      .service-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
      .service-card-modern { padding: 1rem 0.8rem; }
      .service-card-modern .icon-box { width: 48px; height: 48px; font-size: 1.4rem; }
      .modern-feature-pill { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
    }
    @media (max-width: 400px) {
      .service-grid-modern { grid-template-columns: 1fr 1fr; }
    }
    
    .nav-wrap{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:1rem;
}

.nav-links-wrapper{
    display:contents;
}

.header-custom .nav-links{
    justify-self:center;
}

.header-custom .header-actions{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(10,110,255,0.24) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    background-position: right 90px top 150px;
    mask-image: radial-gradient(circle at 86% 28%, black 0 12%, transparent 25%);
    -webkit-mask-image: radial-gradient(circle at 86% 28%, black 0 12%, transparent 25%);
}

.header-custom,
section,
footer {
    position: relative;
    z-index: 1;
}