*{
    font-family: "Inter", sans-serif;
  }
  
  :root{
    --navy:#0B2341;
    --navy2:#17365D;
    --blue:#1E88E5;
    --blue2:#2AA7FF;
    --muted:#6B7A90;
    --shadow-lg: 0 22px 60px rgba(8, 28, 55, 0.15);
    --shadow-md: 0 14px 35px rgba(8, 28, 55, 0.12);
    --shadow-sm: 0 10px 24px rgba(8, 28, 55, 0.08);
  }
  
  body{
    background: #f8fbff;
  }
  
  /* ✅ TOPBAR */
  .topbar{
    background: linear-gradient(90deg, var(--navy), var(--navy2));
    color: white;
    padding: 10px 0;
    font-size: 14px;
  }
  
  .top-icon{
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
  }
  
  /* ✅ NAVBAR */
  .nav-glass{
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15,45,85,0.08);
  }
  
  .brand-logo{
    width: 115px;
    height: 84px;
    /* object-fit: contain; */
  }
  

  
  .brand-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  
  .brand-title{
    font-size: 16px;
    font-weight: 800;
    color: #0e2b4f;
  }
  
  .brand-sub{
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 2px;
  }
  
  .nav-link{
    font-weight: 600;
    color: #1d3352;
  }
  
  .nav-link:hover{
    color: var(--blue);
  }
  
  .btn-call{
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border: none;
    box-shadow: 0 14px 30px rgba(30,136,229,0.22);
  }
  
  /* ✅ HERO SECTION */
  .hero-section{
    position: relative;
    padding: 70px 0 85px;
    overflow: hidden;
  }
  
  /* Background blobs */
  .hero-section::before,
  .hero-section::after{
    content:"";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.9;
  }
  
  .hero-section::before{
    left: -220px;
    top: -180px;
    background: radial-gradient(circle at 30% 35%, rgba(133,193,233,0.70), rgba(133,193,233,0.0) 60%);
  }
  .hero-section::after{
    right: -260px;
    bottom: -220px;
    background: radial-gradient(circle at 70% 70%, rgba(133,193,233,0.70), rgba(133,193,233,0.0) 60%);
  }
  
  /* Pill */
  .hero-pill{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15,45,85,0.10);
    box-shadow: 0 10px 24px rgba(10,30,60,0.06);
    color: #1C3E66;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .pill-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(30,136,229,0.15);
  }
  
  .hero-title{
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
    color: #122B4C;
  }
  
  .hero-accent{
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-desc{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 560px;
    margin: 16px 0 22px;
  }
  
  .btn-apply{
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border: none;
    box-shadow: 0 14px 30px rgba(30,136,229,0.22);
  }
  
  /* ✅ TRUST BADGES */
  .trust-badge{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15,45,85,0.10);
    box-shadow: 0 10px 24px rgba(10,30,60,0.06);
    font-size: 13px;
    font-weight: 700;
    color: #183258;
  }
  
  .badge-icon{
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(30,136,229,0.12);
    border: 1px solid rgba(30,136,229,0.12);
    color: var(--blue);
  }
  
  /* ✅ RIGHT STATS CARD */
  .stats-card{
    border-radius: 24px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15,45,85,0.10);
    box-shadow: var(--shadow-lg);
    padding: 22px;
  }
  
  .stat-box{
    border-radius: 18px;
    padding: 16px;
    background: rgba(245,250,255,0.85);
    border: 1px solid rgba(15,45,85,0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 86px;
  }
  
  .stat-box.highlight{
    background: rgba(42,167,255,0.10);
    border: 1px solid rgba(42,167,255,0.14);
  }
  
  .stat-icon{
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30,136,229,0.12);
    border: 1px solid rgba(30,136,229,0.14);
    font-weight: 900;
    color: var(--blue);
    flex-shrink: 0;
  }
  
  .stat-title{
    font-weight: 900;
    color: #102A4C;
  }
  
  .stat-sub{
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
  }
  
  /* ✅ PROGRESS */
  .progress-area{
    border-radius: 18px;
    padding: 16px;
    background: rgba(245,250,255,0.85);
    border: 1px solid rgba(15,45,85,0.08);
    box-shadow: var(--shadow-sm);
  }
  
 
  .custom-progress{
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(16,42,76,0.08);
  }
  
  .custom-progress-bar{
    width: 0%;
    height: 100%;
    display: block;
    border-radius: 999px;
    background: linear-gradient(135deg, #1E88E5, #2AA7FF);
    transition: width 1.6s ease-in-out;
  }
  
  
  
  
  /* Floating offer card */
  .offer-card{
    position: absolute;
    left: -35px;
    bottom: -71px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,45,85,0.10);
    box-shadow: var(--shadow-md);
    min-width: 190px;
  }
  
  .offer-icon{
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    box-shadow: 0 14px 28px rgba(30,136,229,0.25);
    color: white;
    font-weight: 900;
  }


  /* ✅ Sticky Navbar Fix */
.navbar.sticky-top {
    top: 0;
    z-index: 999;
  }
  
  /* Optional: add shadow when scrolling */
  .nav-scrolled {
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  }
  
  /* ==========================
     Trusted Partners Section
  ========================== */
  .partners-section {
    background: #ffffff;
  }
  
  .partners-title {
    font-weight: 700;
    color: #1e3456;
    font-size: 14px;
    letter-spacing: 0.4px;
  }
  
  .partners-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .partner-pill {
    background: #ffffff;
    border: 1px solid rgba(15, 45, 85, 0.12);
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    color: #5c6f88;
    box-shadow: 0 10px 22px rgba(10,30,60,0.06);
    transition: 0.25s ease;
    min-width: 110px;
    text-align: center;
  }
  
  .partner-pill:hover {
    transform: translateY(-3px);
    color: #1E88E5;
    border-color: rgba(30,136,229,0.25);
    box-shadow: 0 16px 30px rgba(10,30,60,0.10);
  }
  
/* ==========================
   ABOUT SECTION (Exact UI)
========================== */

.about-section{
  background: #ffffff;
}

.about-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1E88E5;
  letter-spacing: 1px;
  font-size: 12px;
}

.badge-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1E88E5;
}

.about-title{
  font-weight: 900;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  color: #102A4C;
}

.about-desc{
  color: #6b7a90;
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
}

/* checklist */
.about-check{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1c3559;
}

.check-icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30,136,229,0.12);
  color: #1E88E5;
  font-weight: 900;
}

.about-line{
  border: 0;
  height: 1px;
  background: rgba(15,45,85,0.12);
}

/* CEO row */
.ceo-row{
  display: flex;
  align-items: center;
  gap: 14px;
}

.ceo-avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eef2f7;
  border: 1px solid rgba(15,45,85,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #102A4C;
  flex-shrink: 0;
}

.ceo-name{
  font-weight: 900;
  color: #102A4C;
}

.ceo-role{
  font-weight: 600;
  color: #6b7a90;
}

/* right card */
.about-card{
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15,45,85,0.10);
  box-shadow: 0 22px 60px rgba(8, 28, 55, 0.10);
  padding: 30px 26px;
}

.count-big{
  font-size: 56px;
  font-weight: 900;
  color: #102A4C;
  line-height: 1;
}

.count-sub{
  color: #6b7a90;
  font-weight: 600;
}

/* mini features inside card */
.mini-feature{
  background: rgba(245,250,255,0.85);
  border-radius: 16px;
  border: 1px solid rgba(15,45,85,0.08);
  text-align: center;
  padding: 18px 10px;
}

.mini-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,136,229,0.12);
  border: 1px solid rgba(30,136,229,0.14);
  font-size: 20px;
}

.mini-title{
  font-weight: 800;
  font-size: 13px;
  color: #102A4C;
}

/* right side list points */
.about-points{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.point-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f0f3f7;
  border: 1px solid rgba(15,45,85,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-title{
  font-weight: 900;
  color: #102A4C;
}

.point-desc{
  color: #6b7a90;
  font-size: 14px;
  line-height: 1.7;
}



/* ✅ Marquee wrapper */
.partners-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  /* ✅ Moving track */
  .partners-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marqueeLeft 18s linear infinite;
  }
  


  .partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}




/* ==========================
   OFFER SECTION
========================== */

.offer-section{
  background: #f7fbff;
}

.offer-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1E88E5;
  letter-spacing: 1px;
  font-size: 12px;
}

.offer-title{
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
  color: #102A4C;
}

.offer-desc{
  color: #6b7a90;
  font-size: 15px;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* cards */
.offer-card-box{
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15,45,85,0.08);
  box-shadow: 0 18px 45px rgba(8, 28, 55, 0.06);
  padding: 28px 24px;
  transition: 0.25s ease;
  min-height: 220px;
}

.offer-card-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 28, 55, 0.10);
  border-color: rgba(30,136,229,0.18);
}

.offer-icon-box{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(30,136,229,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(30,136,229,0.14);
}

.offer-card-title{
  font-weight: 900;
  color: #102A4C;
  margin-bottom: 10px;
}

.offer-card-text{
  color: #6b7a90;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ✅ Call For More Info Button */
.offer-call-title{
  font-weight: 600;
  color: #6b7a90;
  font-size: 14px;
}

.offer-call-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  background:#1E88E5;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(11, 35, 65, 0.25);
  transition: 0.25s ease;
}

.offer-call-btn:hover{
  transform: translateY(-3px);
  background: #102a4c;
  color: #ffffff;
}

.offer-call-btn .call-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}



/* ==========================
   STATS STRIP SECTION
========================== */
.stats-strip{
  background: #19365c;
  padding: 70px 0;
}

.stats-title{
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.stats-subtitle{
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.stats-btn{
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: #2aa7ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.stats-btn:hover{
  background: #1E88E5;
  transform: translateY(-2px);
  color: #ffffff;
}

.stat-item{
  text-align: center;
}

.stat-number{
  font-size: 38px;
  font-weight: 900;
  color: #2aa7ff;
  margin-bottom: 6px;
}

.stat-label{
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}



/* ==========================
   FINANCIAL CALCULATOR SECTION
========================== */
.calc-section{
  background: #ffffff;
}

.calc-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1E88E5;
  letter-spacing: 1px;
  font-size: 12px;
}

.calc-title{
  font-weight: 900;
  font-size: clamp(28px, 3vw, 46px);
  color: #102A4C;
}

.calc-desc{
  color: #6b7a90;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Tabs */
.calc-tabs{
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(15,45,85,0.08);
}

.calc-tab{
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  background: transparent;
  color: #102A4C;
  cursor: pointer;
  transition: 0.25s ease;
}

.calc-tab.active{
  background: #102A4C;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16,42,76,0.18);
}

.calc-card{
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15,45,85,0.10);
  box-shadow: 0 22px 60px rgba(8, 28, 55, 0.08);
  padding: 30px;
}

/* Tab content show/hide */
.calc-tab-content{
  display: none;
}
.calc-tab-content.active{
  display: block;
}

/* Sliders */
.slider-group{
  margin-bottom: 30px;
}

.slider-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #102A4C;
  font-weight: 700;
  margin-bottom: 10px;
}

.slider-foot{
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7a90;
  margin-top: 8px;
}

.calc-slider{
  width: 100%;
  accent-color: #1E88E5;
}

/* Result boxes */
.calc-result-box{
  background: rgba(245,250,255,0.9);
  border-radius: 18px;
  border: 1px solid rgba(15,45,85,0.08);
  padding: 22px;
}

.result-title{
  font-weight: 700;
  color: #6b7a90;
  font-size: 14px;
}

.result-value{
  font-size: 46px;
  font-weight: 900;
  color: #102A4C;
  margin-top: 6px;
}

.calc-mini-box{
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15,45,85,0.10);
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(8, 28, 55, 0.06);
}

.mini-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #102A4C;
  font-weight: 700;
}

.mini-blue{
  color: #1E88E5;
}

/* Bar */
.calc-bar{
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(16,42,76,0.10);
  overflow: hidden;
}

.calc-bar-fill{
  height: 100%;
  width: 60%;
  background: linear-gradient(135deg, #102A4C, #1E88E5);
  border-radius: 999px;
  transition: width 0.5s ease;
}

.calc-legend{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #102A4C;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.dot.dark{ background:#102A4C; }
.dot.blue{ background:#1E88E5; }


/* =====================================
   Trusted Partners (Service Partners)
===================================== */
.service-partners-section{
  background: #ffffff;
}

.section-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1E88E5;
  letter-spacing: 1px;
  font-size: 12px;
}

.section-title{
  font-weight: 900;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
  color: #102A4C;
}

.section-desc{
  color: #6b7a90;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Card */
.partner-card{
  background: #ffffff;
  border: 1px solid rgba(15,45,85,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(8, 28, 55, 0.06);
  min-height: 220px;
}

.partner-title{
  font-weight: 900;
  color: #102A4C;
  margin-bottom: 4px;
}

.partner-sub{
  color: #6b7a90;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Pills container */
.partner-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Pill link */
.partner-pill-link{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  color: #102A4C;
  background: rgba(15,45,85,0.05);
  border: 1px solid rgba(15,45,85,0.12);
  text-decoration: none;
  transition: 0.25s ease;
}

.partner-pill-link span{
  opacity: 0.7;
  font-size: 12px;
}

.partner-pill-link:hover{
  transform: translateY(-2px);
  border-color: rgba(30,136,229,0.25);
  color: #1E88E5;
  background: rgba(30,136,229,0.08);
}

/* Blue style pills */
.partner-pill-link.blue{
  background: rgba(30,136,229,0.10);
  border-color: rgba(30,136,229,0.20);
  color: #1E88E5;
}

.partner-pill-link.blue:hover{
  background: rgba(30,136,229,0.14);
  border-color: rgba(30,136,229,0.30);
}

/* Optional: cards that look more "blue focused" */
.partner-card.active-blue .partner-title{
  color: #1E88E5;
}


/* ================================
   Download App Section
================================ */
.download-app-section{
  background: #ffffff;
}

.download-app-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 40px;
  border: 1px solid rgba(15,45,85,0.10);
  box-shadow: 0 20px 50px rgba(8, 28, 55, 0.08);
}

/* pill */
.download-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,45,85,0.06);
  border: 1px solid rgba(15,45,85,0.08);
  font-weight: 800;
  color: #102A4C;
  font-size: 13px;
}

.download-pill-icon{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,136,229,0.12);
}

/* text */
.download-title{
  font-weight: 900;
  color: #102A4C;
  font-size: clamp(26px, 2.6vw, 40px);
  margin: 0;
}

.download-desc{
  color: #6b7a90;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

/* buttons */
.store-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  background: #102A4C;
  color: #ffffff;
  transition: 0.25s ease;
}

.store-btn:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}

.store-icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* qr */
.qr-box{
  width: 160px;
  height: 160px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15,45,85,0.10);
  box-shadow: 0 16px 35px rgba(8, 28, 55, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}

.qr-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-text{
  font-size: 13px;
  font-weight: 600;
  color: #6b7a90;
}









/* ===========================
   Footer
=========================== */
.site-footer {
  background: #17365D;
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-subtitle {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
}

/* Logo box */
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #2AA7FF;
  transform: translateX(3px);
}

/* Official info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.info-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(42, 167, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.social-btn:hover {
  background: rgba(42, 167, 255, 0.3);
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

/* responsive padding */
@media (max-width: 576px){
  .download-app-card{
    padding: 28px 18px;
  }
}



  /* ✅ Animation: Right → Left */
  @keyframes marqueeLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* ✅ Pause on hover (nice UX) */
  .partners-marquee:hover .partners-track {
    animation-play-state: paused;
  }
  


  
  /* Responsive improvements */
  @media (max-width: 576px) {
    .partner-pill {
      width: 100%;
      min-width: unset;
    }
  }
  
  
  /* ✅ Responsive Fixes */
  @media (max-width: 991px){
    .offer-card{
      left: 10px;
    }
  }
  
  @media (max-width: 576px){
    .hero-section{
      padding: 48px 0 70px;
    }
    .offer-card{
      position: static;
      margin-top: 14px;
    }
  }
  
  .offer-card{
    animation: waveFloat 3s ease-in-out infinite;
    transform-origin: center;
  }
  
  @keyframes waveFloat {
    0%{
      transform: translateY(0px) rotate(0deg);
    }
    50%{
      transform: translateY(-10px) rotate(1deg);
    }
    100%{
      transform: translateY(0px) rotate(0deg);
    }
  }
  
  


  /* ===========================
   LOAD ANIMATIONS (Hero)
=========================== */

/* base hidden state */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(0);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* left comes from left */
.animate-left {
  animation-name: slideFromLeft;
}

/* right comes from right */
.animate-right {
  animation-name: slideFromRight;
}

/* delay right side slightly for smooth effect */
.animate-right {
  animation-delay: 0.2s;
}

/* keyframes */
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* ===========================
   Progress Bar Smooth Transition
=========================== */
.custom-progress-bar {
  width: 0%;
  transition: width 1.6s ease-in-out;
}

