 /* ---------------------------
     Palette (from provided logo)
     - Only these main colors are used.
     --------------------------- */
  :root{
    --navy: #08345e;      /* deep navy (primary) */
    --navy-100: rgba(8,52,94,0.06);
    --orange: #f68b1e;    /* bright orange (accent) */
    --white: #ffffff;
    --muted: #e4eaf7;
    --glass: rgba(255,255,255,0.7);
  }

  /* ---------- Reset & layout ---------- */
  *{box-sizing:border-box}
  body{
    margin:0;
    font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, var(--muted) 0%, #ffffff 90%);
    color:#10202b;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    padding-bottom:30px; /* space for bottom nav */
  }
    .container{
    padding:0 18px;
  }


  /* ---------- Top bar ---------- */
  header.appbar{
    position: sticky;  /* no sticky */
    top: 0;
    z-index: 1000; 
    backdrop-filter: blur(6px);
  }
  /* Navigation Bar */
  .nav {
  margin-left: auto;
  }

  .nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
  align-items: center;
  }

  .nav-list a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  }

  .nav-list a:hover {
  color: var(--orange);
  }

  /* Dropdowns */
  .dropdown {
  position: relative;
  }

  .dropdown-menu {
  position: absolute;   /* stays under parent li */
  top: 100%; 
  left: 0;
  background: #fff;
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(8,52,94,0.1);
  display: none;
  z-index: 9999; 
  }

  .dropdown-menu li {
  list-style: none;
  }

  .dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--navy);
  }

  .dropdown-menu a:hover {
  background: var(--navy-100);
  color: var(--orange);
  }

  .dropdown:hover .dropdown-menu {
  display: block;
  }

  .appbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease; /* smooth slide effect */
  }

  .appbar.hide {
    transform: translateY(-100%); /* slide navbar up */
  }

  .appbar .row{
    display:flex;
    gap:12px;
    align-items:center;
    background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.85));
    border-radius:14px;
    padding:10px;
    border:1px solid var(--navy-100);
    box-shadow: 0 6px 22px rgba(8,52,94,0.06);
  }
  .logo{
    width:48px;
    height:48px;
    border-radius:50%;
    background:white;
    color:var(--white);
    display:grid;
    place-items:center;
    font-weight:700;
    font-size:20px;
  }
  .brand{
    flex:1;
  }

  .logo-navy {
  color: var(--navy);      /* deep navy from logo */
  font-weight: 700;
  font-size:16px
  }

  .logo-orange {
  color: var(--orange);    /* bright orange from logo */
  font-weight: 700;
  font-size:16px
  }

  .brand .sub
  {
    font-size:12px;
    color:#5a6d7a
  }

  .search{
    display:none;
  }
  @media(min-width:720px){ .search{display:block;width:340px} }

  /* Attractive Sign In Button */
  .btn-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), #ff8400);
    color: #fff;
    border: none;
    padding: 8px 8px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
  }

  .btn-signin:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(246,139,30,0.35);
  }

  .btn-signin .avatar {
    width: 100%;
    border-radius: 50%;
    background: var(--white);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
  }

  .btn-signin .text {
    white-space: nowrap;
  }



  /* Mobile menu toggle button */
  .menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
  }


  /* Hide nav in mobile by default */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      margin-left: auto;
    }

    .nav {
      position: absolute;
      top: 70px;
      right: 10px;
      background: #fff;
      border: 1px solid var(--navy-100);
      border-radius: 10px;
      width: 240px;
      box-shadow: 0 6px 18px rgba(8,52,94,0.1);
      display: none; /* hidden by default */
      flex-direction: column;
      padding: 10px 0;
    }

    .nav.show {
      display: flex; /* show on toggle */
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a, .btn-signin {
      display: flex;
      width: 100%;
      text-align: left;
      padding: 10px 16px;
    }
    .btn-signin
    {
      width: 90%;
    }

    /* Dropdown in mobile expands under parent */
    .dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      padding-left: 16px;
    }

    .dropdown:hover .dropdown-menu {
      display: none; /* disable hover for mobile */
    }

    .dropdown.open .dropdown-menu {
      display: block; /* open by click */
    }
    .btn-signin .avatar {
    width: 15%;
    flex-direction: row;
  }
}


  /* ---------- Hero / Balance card ---------- */
  .hero{
    overflow: hidden;
    margin-top:18px;
    position:relative;
    width: 100%;
  }

  /* decorative blurred shapes (use palette only) */
  .glow{
    position:absolute;
    pointer-events:none;
    filter: blur(46px);
    opacity:0.22;
    border-radius:50%;
  }
  .glow.left{
    left:-80px;
    top:-40px;
    background: radial-gradient(circle at 30% 30%, var(--orange), transparent 60%);
    animation: glowMove 6s ease-in-out infinite;
  }
  .glow.right{
    right:-60px;
    bottom:-40px;
    background: radial-gradient(circle at 70% 70%, var(--navy), transparent 55%);
    animation: glowMove 6s ease-in-out infinite;
  }

  .card{
    position:relative;
    display: flex;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border-radius:18px;
    padding:20px;
    border:1px solid var(--navy-100);
    box-shadow: 0 10px 30px rgba(8,52,94,0.06);
    overflow:hidden;
    opacity: 0;
    transform: translateY(50px);
  }

  .card.show {
    animation: fadeUp 1s ease forwards;
  }


  .card .top{
    display:flex;
    width: 100%;
    gap:12px;
    align-items:center;
  }
  .pill{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    background: linear-gradient(90deg, rgba(8,52,94,0.07), rgba(246,139,30,0.06));
    color:var(--navy);
    border:1px solid var(--navy-100);
    opacity: 0;
    transform: translateX(-30px);
  }

  .pill.show {
    animation: slideInLeft 1s ease forwards;
  }
  .greeting
  {
    font-size:22px;
    font-weight:700;
    color:black;
    margin-top:8px;
    opacity: 0;
    transform: translateX(30px);
  }

  .greeting.show {
    animation: slideInRight 1s ease forwards;
  }
  .subtext
  {
    font-size:14px;
    color:#4e555a;
    margin-top:6px;
    opacity: 0;
    transform: translateY(20px);
  }

  .subtext.show {
    animation: fadeUp 1.2s ease forwards;
  }

  .p1-row{
    display:flex;
    align-items:end;
    gap:12px;
    margin-top:20px;
    opacity: 0;
    transform: scale(0.9);
  }

  .p1-row.show {
    animation: zoomIn 1s ease forwards;
  }

  .p1{
    font-size:14px;
    color:#4e555a;
    margin-top:4px
  }
  .add-money{
    margin-left:auto;
    background:linear-gradient(180deg,var(--orange),#d66f00);
    color:#fff;
    border:none;
    padding:10px 14px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
    box-shadow: 0 8px 24px rgba(246,139,30,0.16);
    transition:transform .28s ease, box-shadow .28s ease;
    animation: pulse 2s infinite;
  }
  .add-money:hover
  {
    transform:translateY(-3px); 
    box-shadow: 0 18px 40px rgba(246,139,30,0.22);
  }

  /* Quick actions */
  .quick-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top:30px;
    margin-right: 5px;
  }
  @media(min-width:720px)
  { 
    .quick-grid
    {
        grid-template-columns:repeat(4,1fr)
    } 
  }


.qa {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 4px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--navy-100);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(8, 52, 94, 0.06);
  transition: transform .6s ease, box-shadow .6s ease;
  opacity: 0;
}

.quick-grid .qa {
  opacity: 0;
  transform: translateY(40px);
}
.quick-grid .qa.show {
  animation: fadeUp 1.8s ease forwards;
}


.qa:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(8, 52, 94, 0.486);
}

.qa .icon {
  width: 30%; height: 62px;
  border-radius: 14px;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .6s ease, rotate .6s ease;
}
.qa:hover .icon {
  transform: rotate(-6deg) scale(1.1);
}

.qa .icon img {
  width: 90%;
  object-fit: contain;
}

.qa .label {
  font-weight: 700;
  color: var(--orange);
  font-size: 15px;
}
.qa .small {
  font-size: 12px;
  color: #596a73;
}

/* Extra animation: pulse on hover */
.qa:hover .label {
  color: var(--navy);
}



  /* ---------- Right panel (UPI / QR) ---------- */
  .right-panel{
    margin-top:18px;
    border-radius:12px;
    border:1px solid var(--navy-100);
    padding:14px;
    background:linear-gradient(180deg, #fff, rgba(255,255,255,0.92));
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
  }

  .right-panel.show {
    animation: slideInRight 1.5s ease forwards;
  }

  .right-panel .row
  {
    display:flex;
    gap:8px;
  }
  .input{
    flex:1;
    padding:10px;
    border-radius:10px;
    border:1px solid var(--navy-100);
    outline:none;
  }
  .pay-btn{
    background:var(--navy);
    color:var(--white);
    padding:5px 7px;
    border-radius:10px;
    text-decoration: none;
    border:none;
    cursor:pointer;
    font-weight:500;
    margin-top: 20px;
  }
    .pay-btn1{
    background:var(--orange);
    color:var(--white);
    padding:5px 7px;
    border-radius:10px;
    text-decoration: none;
    border:none;
    cursor:pointer;
    font-weight:500;
    margin-top: 20px;
  }
  .qr{
    margin-top:10px;
    height:138px;
    border-radius:10px;
    border:1px dashed var(--navy-100);
    display:grid;place-items:center;background:linear-gradient(180deg, #fbfbfb, #fff);
    font-size:12px;color:#5a6d7a;
  }


  /* Mobile responsive adjustments */
@media (max-width: 768px) {
  .card {
    flex-direction: column;  
  }

  .card .top {
    flex-direction: column;
    align-items: stretch;
  }

  .p1-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .p1-row .add-money {
    margin-left: 0;   /* button aligns below text */
    width: 90%;
    text-align: center;
  }

  .quick-grid {
    grid-template-columns: repeat(1, 1fr);
    gap:5px;
    margin-top: 20px;
  }

  .qa {
    padding: 5px;
  }

}


/* ========= Animations ========= */

/* Fade in with upward motion */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Fade in with downward motion */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scale + fade in */
@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Slide in from left */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Slide in from right */
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Pulse effect */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Glow animation for decorative circles */
@keyframes glowMove {
  0% { transform: scale(1) translate(0,0); opacity:0.2; }
  50% { transform: scale(1.2) translate(20px, -10px); opacity:0.35; }
  100% { transform: scale(1) translate(0,0); opacity:0.2; }
}

  /* Promo Grid */
  .promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
  @media(min-width:900px) {
    .promo-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .promo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    padding: 20px;
    min-height: 260px;
    display: flex;
    align-items: center;
    box-shadow: 0 12px 28px rgba(8,52,94,0.25);
  }

  .promo .bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0e2b57 0%, #3b63a8 80%, #5177b9 100%);
    z-index: 0;
  }

  .promo .stars {
    position: absolute;
    left: 20%;
    top: 4%;
    z-index: 1;
  }
  .promo .star {
    color: #f9931f;
    font-size: 1.6rem;
    position: absolute;
    animation: twinkle 3s infinite alternate;
  }
  .promo .star:nth-child(2) {
    top: 40px;
    left: 30px;
    font-size: 1.2rem;
    animation-delay: 1s;
  }
  @keyframes twinkle {
    from { opacity: 1; }
    to { opacity: 0.6; transform: scale(1.1);}
  }

  .promo-content {
    position: relative;
    align-items: center;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  .promo-text {
    flex: 1;
    width: 60%;
  }

  .promo-text h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
  }
  .promo-text p {
    margin: 0 0 14px;
    font-size: 14px;
  }
  .promo-btn {
    background: #f9931f;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
  }
  .promo-btn:hover {
    background: #e78013;
  }

  .promo-img img {
    width: 120px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }



  @media(max-width: 768px) {
    .promo-grid {
      display: flex;              
      gap: 16px;
      overflow-x: auto;           
      padding-bottom: 10px;
    }

    .promo {
      flex: 0 0 80%;              
      scroll-snap-align: start;   
      min-width: 260px;           
    }
    .promo-content {
      flex-direction: row;         
      align-items: center;         
      justify-content: space-between;
      gap: 12px;                   
    }

    .promo-dots {
      display: flex;
      justify-content: center;
      margin-top: 12px;
      gap: 8px;
    }

    .promo-dots .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ccc;   
      transition: background 0.3s ease;
    }

    .promo-dots .dot.active {
      background: #f9931f;  
    }

    .promo-text h3 {
      font-size: 16px;
    }
    .promo-text p {
      margin: 0 0 14px;
      font-size: 13px;
    }
    .promo-span
    {
      display: block;
    }
    .promo-btn {
      padding: 5px 8px;
      font-size: 10px;
      font-weight:500;
    }
    .promo-img img {
      width: 100px;                
      flex-shrink: 0; 
    }

  }


  /* ---------- Services grid ---------- */
  .section1 {
    margin-top:22px;
    padding:20px 20px 15px 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fdfdfd, #e7eefd);
  }

  .section .hdr {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:5px;
  }

  .svc-grid {
    display:grid;
    margin-top: 30px;
    margin-left: 25px;
    padding: 0px 25px 0px 25px;
    width: 100%;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
  }

  @media(max-width:768px) {
    .svc-grid {
      grid-template-columns:repeat(3,1fr);
      margin-left: 15px;
      padding: 0px 0px 0px 0px;
    }
  }

  /* ---------- Service Card Styles ---------- */
  .svc {
    padding: 10px 0px;
    width: 85%;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
  }

  .svc.animate {
    animation: fadeUp .6s ease forwards;
  }

  .svc.animate:nth-child(1){animation-delay:.1s}
  .svc.animate:nth-child(2){animation-delay:.2s}
  .svc.animate:nth-child(3){animation-delay:.3s}
  .svc.animate:nth-child(4){animation-delay:.4s}
  .svc.animate:nth-child(5){animation-delay:.5s}
  .svc.animate:nth-child(6){animation-delay:.6s}
  .svc.animate:nth-child(7){animation-delay:.7s}
  .svc.animate:nth-child(8){animation-delay:.8s}

  /* Gradient border glow */
  .svc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, #4a6cf7, #3ad29f, #ff6c22);
    -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 .3s ease;
  }
  .svc:hover::before 
  {
    opacity: 1; 
  }

  /* Hover lift effect */
  .svc:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 24px rgba(40, 90, 180, 0.15);
  }

  /* Icon box */
  .svc .ico {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    /*background: linear-gradient(135deg, #f5f8ff, #eef3ff);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);*/
    transition: all .3s ease;
  }
  .svc:hover .ico {
    background: linear-gradient(135deg, #e4ebff, #dce6ff);
    transform: scale(1.1);
  }

  /* Icon images */
  .svc .ico img {
    width: 100%;
    object-fit: contain;
    transition: transform .3s ease;
  }
  .svc:hover .ico img {
    transform: rotate(-10deg) scale(1.08);
  }

  /* Card text */
  .svc .label {
    font-weight:600;
    color:var(--navy);
    font-size:15px;
    margin-top:6px;
  }
  .svc .meta {
    font-size:14px;
    color:var(--navy);
    margin-top:3px;
    letter-spacing:.3px;
  }

  /* ---------- Banner under services ---------- */
  .banner {
    margin-top:22px;
    background: linear-gradient(135deg, #fdfdfd, #f5f9ff);
    border-radius:16px;
    padding:20px 24px;
    align-items:center;
    justify-content:center;
    display:flex;
    border:1px solid rgba(8,52,94,0.08);
    box-shadow:0 10px 22px rgba(8,52,94,0.06);
    overflow:hidden;
    position:relative;
  }

  .banner-content {
    display:flex;
    align-items:center;
    width: 100%;
    gap:18px;
    color:var(--navy);
    text-align:left;
  }

  .banner-icon {
    width:90px;
    height:90px;
    border-radius:50%;
    padding-bottom: 10px;
    place-items:center;
    background:linear-gradient(135deg, var(--navy), #767ff7);
    display:grid;
    place-items:center;
    font-size:40px;
    font-weight:700;
    color:#fff;
    flex-shrink:0;
    animation: pulse 2s infinite;
    box-shadow:0 8px 18px rgba(30, 88, 246, 0.25);
  }

  .banner-text h4 {
    margin:0;
    font-size:18px;
    font-weight:800;
    color:var(--navy);
  }

  .banner-text p {
    margin:6px 0 12px;
    font-size:14px;
    line-height:1.5;
    color:#37495a;
  }

  .banner-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(246,139,30,0.25);
    transition: all .25s ease;
  }
  .banner-btn:hover {
    background:#e67600;
    transform: translateY(-2px);
  }

  /* ---------- Animations ---------- */
  @keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }





  /*New Sub-Banners*/
  .sub-banner {
    width: 100%;
    background: white;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 10px 20px rgba(12, 24, 60, 0.08);
    padding:18px;
    margin-top: 20px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items:center;
    box-sizing:border-box;
    border: 1px solid rgba(11,102,255,0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .sub-banner.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .sub-banner-left 
  { 
    padding: 12px 8px; 
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .sub-banner-left h1 
  { 
    margin:0 0 12px 0; 
    font-size:28px; 
    color: #071233; 
  }

  .sub-banner-left  p 
  { 
    margin:0 0 16px 0; 
    color: var(--navy); 
    font-size:15px; 
  }

  .sub-btn-row 
  {
      display:flex; 
      gap:12px; 
      flex-wrap:wrap; 
      margin-top:12px; 
  }
  .sub-btn-row .btn {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(246,139,30,0.35);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 10px 40px 14px 40px;
    text-decoration: none;
    font-size: 1.17rem;
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
  }

  .sub-banner.animate .sub-banner-left, .sub-banner.animate .video-card {
    opacity: 1;
    transform: translateX(0);
  }

  .video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(11,102,255,0.06);
    box-shadow:0 6px 20px rgba(11,102,255,0.08);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .video-card video {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover; /* ensures video fills box without distortion */
    border-radius:12px;
  }

  @media (max-width: 980px){
    .sub-banner { grid-template-columns: 1fr; }
    h1 { font-size:22px; }
    .video-card { order:-1; }
  }

  /* ---------- Offers cards ---------- */
  .section {
    margin-top:22px;
    padding:20px 20px 15px 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fdfdfd93, #e1e8fd);
  }
  .offers
  {
    display:grid;
    grid-template-columns:repeat(1,1fr);
    animation: zoomPulse 2.5s ease-in-out infinite;
    border-radius:14px;
    transition: transform 0.3s ease;
    gap:10px;
  }
  @media(min-width:720px)
  {
    .offers{grid-template-columns:repeat(3,1fr)}
  }

  .offer{
    border-radius:14px;
    padding:14px;
    border:1px solid var(--navy-100);
    background-color: white;
  }
  .offer h4
  {
    color:var(--navy);
    margin:0;
    font-size:15px;
    font-weight:800;
  }
  .offer p
  {
    margin:6px 0 0;
    color:#556970;
    font-size:13px;
  }

  @media(max-width: 768px) {
    .offers {
      grid-template-columns: repeat(3, 1fr);
    }

    .offers {
      display: flex;                      
      gap: 12px;
      overflow-x: auto;                   
      scroll-snap-type: x mandatory;      
      -webkit-overflow-scrolling: touch;  
      padding-bottom: 12px;
    }

    .offer {
      flex: 0 0 80%;                      
      scroll-snap-align: start;
      min-width: 260px;                   
    }

    
    .offers::-webkit-scrollbar {
      display: none;
    }
  }

  @keyframes zoomPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05); 
    }
  }

  /*About*/
  .about{
    background-color: white;
    border-radius: 15px;
    margin: 20px 0px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .about.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .about-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 30px;
    background-image: url('./ASSETS/About\ banner1.png');
    background-size:cover;
    background-color: white;
    border-radius: 15px;
    height: 550px;
  }

  .about-content {
    margin-top: 15px;
    flex: 1;
    max-width: 48%;
  }

  .about-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--navy);
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
    color:#110350;
    margin-bottom: 14px;
    text-align: justify;
    margin-bottom: 50px;
  }

  .aboutbtn{
      background-color: var(--orange);
      color:white;
      padding: 10px 10px 10px 10px;
      text-decoration: none;
      border-radius: 10px;
      font-size: 1.2rem;
      border: none;
  }
  @media (max-width: 768px) {
    .about-flow {
      position: relative;  /* needed for overlay */
      flex-direction: column;
      background-image: url(https://img.freepik.com/premium-photo/social-connection-business-communication-network-contacts-blue-background-3d-render_188237-726.jpg?semt=ais_hybrid&w=740&q=80); 
      background-size: cover;
      background-position: center;
      height: auto;
      z-index: 1;
    }

    .about-flow::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(231, 231, 231, 0.24); /* 👈 adjust opacity here */
      border-radius: inherit;          /* match container shape */
      z-index: -1;                     /* behind text */
    }
    .about_parahidden{
      display: none; 
    }

    .about-content {
      max-width: 100%;              /* full width for text */
      margin-bottom: 15px;
      text-align: center;
    }

    .about-image {
      width: 100%;
      height: auto;
    }

    .about-content h1 {
      margin-bottom: 10px;
      color: white;
      font-size:1.5rem;             /* readable on mobile */
    }

    .about-content p {
      margin-bottom: 8px;
      color: white;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .aboutbtn {
      font-size: 0.8rem;
      padding: 8px 14px;
    }
  }



  .partner-section {
    background: linear-gradient(135deg, #f3f5ff, #eff4ff);
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 5px;
    padding-bottom: 25px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .partner-section.animate {
    opacity: 1;
    transform: scale(1);
  }

  .partner-header h2 {
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .partner-header p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #444;
  }

  .partner-services {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin:0px 10px 0px 10px;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
    max-width: 300px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  }

  .icon-wrap {
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    color: #fff;
  }
  /*

  .icon-money { background: linear-gradient(135deg, #ff8a2b, #ff6a00); }
  .icon-aeps { background: linear-gradient(135deg, #0b66ff, #0052cc); }
  .icon-bbps { background: linear-gradient(135deg, #14b866, #0d9a55); }*/

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #071233;
  }

  .service-card p {
    font-size: 15px;
    color: #666;
  }

  .partner-cta {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .btn--partner {
    background: linear-gradient(130deg,  #347C56);
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease;
  }

  .btn--partner:hover {
    background: linear-gradient(90deg, #ff8a2b, #ff6a00);
  }


  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    animation: slideDown 0.4s ease forwards;
  }

  .modal-content h2 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--navy);
  }

  .close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .modal-content input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  .btn--submit {
    width: 100%;
    background-color: #0d2c4f;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }

  .btn--submit:hover {
    background-color: #1c82ad;
  }

  /* Animations */

  @keyframes slideDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }

  @keyframes fadeInBackdrop {
    0% { background-color: rgba(0,0,0,0); }
    100% { background-color: rgba(0,0,0,0.6); }
  }

  @keyframes slideUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-50px); opacity: 0; }
  }

  @keyframes fadeOutBackdrop {
    0% { background-color: rgba(0,0,0,0.6); }
    100% { background-color: rgba(0,0,0,0); }
  }



  /* Footer */
.site-footer {
  border-top: 2px solid rgba(8,52,94,0.1);
  padding: 10px 10px;
  font-size: 14px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  color: var(--navy);
  font-weight: 700;
  font-size:16px

}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-text {
  color: var(--orange);
  font-size:16px ;
  font-weight: 700;
}

.social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background 0.2s ease;
}

.social:hover {
  background: var(--orange);
}

/* 📱 Mobile view */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;   /* stack items */
    text-align: center;       /* center text */
    gap: 12px;                /* spacing between items */
  }

  .footer-right {
    justify-content: center;
  }
  .social {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: background 0.2s ease;
  }
  
  .follow-text {
    color: var(--orange);
    font-size:15px ;
    font-weight: 700;
  }
}

  /* ---------- small helpers ---------- */
  .flex{display:flex}
  .space{height:14px}
  .muted{color:#6a7b84;font-size:13px}