

/* =====================================================
   HERO SECTION – FINAL POLISH
===================================================== */

.hero-section {
  padding-top: 24px;
  /* 🔑 header gap fixed */
  padding-bottom: 70px;
  background-color: #f8f9fa;
}

/* ================= SUBTITLE ================= */
.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #B78471;
  margin-bottom: 6px;
  display: inline-block;
}

/* ================= MAIN TITLE ================= */
.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #003358;
  margin: 4px 0 12px;
}

/* ================= DESCRIPTION ================= */
.hero-description {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin-bottom: 18px;
}

/* ================= BUTTONS ================= */
.hero-actions {
  margin-bottom: 14px;
}

.hero-btn-primary {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #003358;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 22px;
  transition: all 0.25s ease;
}

.hero-btn-primary:hover {
  background-color: #c6a430;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.hero-btn-outline {
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.hero-btn-outline:hover {
  background-color: #D4AF37;
  color: #003358;
}

/* ================= TRUST + CHECKBOX ================= */
.hero-trust {
  max-width: 520px;
}

.hero-checkbox {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.hero-checkbox input {
  accent-color: #D4AF37;
}

/* ================= FORM ================= */
.hero-form {
  display: flex;
  gap: 8px;
}

.hero-input {
  flex: 1;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
}

/* Submit Button */
.hero-btn-submit {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #003358;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.hero-btn-submit:hover {
  background-color: #c6a430;
}

/* ================= IMAGE ================= */
.hero-image {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   RESPONSIVE TUNING
===================================================== */

/* Tablet */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .hero-section {
    padding-top: 20px;
    /* 🔑 more gap removed */
    padding-bottom: 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  /* 🔥 KEY FIX: input & button proportion */
  .hero-form {
    gap: 8px;
  }

  .hero-input {
    flex: 0 0 70%;
    /* ✅ input bigger */
  }

  .hero-btn-submit {
    flex: 0 0 30%;
    /* ✅ button balanced */
    padding: 12px 10px;
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    /* 🔑 horizontal center */
    align-items: center;
    /* 🔑 vertical center */
    text-align: center;
  }

  .hero-btn-outline {
    display: flex;
    /* override inline-flex */
    gap: 8px;
  }

  .hero-image {
    margin-top: 26px;
  }
}

/* ================= STATS SECTION ================= */

/* Use Bootstrap colors but override brand */
.stats-section .bg-primary {
  background-color: #003358 !important;
}

.stats-section .text-warning {
  color: #D4AF37 !important;
}

/* Decorative circles */
.rounded-borders::before,
.rounded-borders::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.rounded-borders::before {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -120px;
}

.rounded-borders::after {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -60px;
}

/* Mobile tuning */
@media (max-width: 575px) {
  .stats-section .display-6 {
    font-size: 1.75rem;
  }
}

/* ================= SERVICES – MODERN FINTECH ================= */

.services-subtitle {
  color: #B78471;
  letter-spacing: 1px;
  font-weight: 600;
}

.services-title {
  color: #003358;
}

/* -------- CARD BASE -------- */
.service-card-modern {
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
  border: 1.5px solid rgba(0, 51, 88, 0.15);
  /* brand navy soft border */
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Inner subtle border effect */
.service-card-modern::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  border: 1px solid rgba(0, 51, 88, 0.08);
  pointer-events: none;
}


/* Soft glow layer */
.service-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(212, 175, 55, 0.25),
      transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

/* -------- ICON -------- */
.service-icon-modern {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #003358, #002244);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 51, 88, 0.35);
  transition: all .45s ease;
}

.service-icon-modern i {
  font-size: 34px;
  color: #D4AF37;
}

/* -------- HOVER ANIMATION -------- */
.service-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border-color: rgba(212, 175, 55, 0.9);
  /* brand gold */
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-card-modern:hover .service-icon-modern {
  background: linear-gradient(135deg, #D4AF37, #c6a430);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.45);
  transform: rotate(-6deg) scale(1.05);
}

.service-card-modern:hover .service-icon-modern i {
  color: #003358;
}

/* Text animation */
.service-card-modern h3,
.service-card-modern p {
  transition: transform .45s ease;
}

.service-card-modern:hover h3 {
  transform: translateY(-3px);
}

/* -------- MOBILE -------- */
@media (max-width: 575px) {
  .service-icon-modern {
    width: 64px;
    height: 64px;
  }

  .service-icon-modern i {
    font-size: 28px;
  }
}

/* =====================================================
   PRICING / SERVICE MODE – PREMIUM FINTECH
===================================================== */

.pricing-subtitle {
  color: #B78471;
  letter-spacing: 1px;
  font-weight: 600;
}

.pricing-title {
  color: #003358;
}

/* -------- CARD -------- */
.pricing-card {
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
  border: 1.5px solid rgba(0, 51, 88, 0.15);
  /* visible normal border */
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Soft inner border */
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(0, 51, 88, 0.08);
  pointer-events: none;
}

/* Hover animation */
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}

/* -------- IMAGE -------- */
.pricing-img {
  max-width: 260px;
  margin-inline: auto;
  transition: transform 0.45s ease;
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

/* Brand blue bold headings */
.pricing-card h3 {
  font-weight: 700 !important;
  /* more bold than fw-bold */
  color: #003358;
  /* brand blue */
  letter-spacing: 0.3px;
}


/* -------- BUTTON -------- */
.pricing-btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #003358;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background-color: #c6a430;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Tablet */
@media (max-width: 991px) {
  .pricing-img {
    max-width: 220px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .pricing-card {
    text-align: center;
  }

  .pricing-img {
    max-width: 200px;
  }
}

/* =====================================================
   FEATURES / CTA SECTION – FINAL PREMIUM CSS
===================================================== */

.features-section {
  background-color: #f8f9fa;
}

/* ---------------- CTA WRAPPER ---------------- */
.feature-cta {
  position: relative;
  background: linear-gradient(135deg, #003358, #002244);
  color: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle gold glow layer */
.feature-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(212, 175, 55, 0.25),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover lift */
.feature-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.feature-cta:hover::before {
  opacity: 1;
}

/* ---------------- TEXT ---------------- */
.feature-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.feature-title span {
  color: #D4AF37;
  /* brand gold highlight */
}

.feature-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 4px;
}

/* ---------------- CTA BUTTON ---------------- */
.feature-btn {
  position: relative;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 10px;
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #003358;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* Shine animation layer */
.feature-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.45),
      transparent 60%);
  transition: left 0.6s ease;
}

/* Hover */
.feature-btn:hover {
  background-color: #c6a430;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
}

/* Shine move */
.feature-btn:hover::after {
  left: 120%;
}

/* Active (click) */
.feature-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Tablet */
@media (max-width: 991px) {
  .feature-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 575px) {

  .feature-cta {
    text-align: center;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-desc {
    font-size: 15px;
  }

  .feature-btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   HOW IT WORKS – FINTECH APP UI (FINAL CSS)
===================================================== */

/* ---- Headings ---- */
.hiw-subtitle {
  color: #B78471;
  letter-spacing: 1px;
  font-weight: 600;
}

.hiw-title {
  color: #003358;
}

/* =====================================================
   MOBILE MOCKUP
===================================================== */
.mobile-mockup {
  width: 320px;
  background: #000;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .45);
}

/* Camera + Speaker */
.mobile-header {
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.camera-dot {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}

.speaker {
  width: 42px;
  height: 5px;
  background: #333;
  border-radius: 4px;
}

/* =====================================================
   MOBILE SCREEN
===================================================== */
.mobile-screen {
  position: relative;
  height: 520px;
  background: #f6f8fb;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   STATUS BAR
===================================================== */
.status-bar {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #000;
  opacity: .75;
  z-index: 12;
}

.status-icons {
  display: flex;
  gap: 6px;
}

.signal,
.wifi,
.battery {
  width: 14px;
  height: 8px;
  background: #003358;
  border-radius: 2px;
  opacity: .6;
}

.status-time {
  color: #003358;
  font-weight: 600;
}

/* =====================================================
   APP LOGO + NAME
===================================================== */
.mobile-logo {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 12;
}

.mobile-logo img {
  height: 24px;
}

.app-name {
  font-size: 14px;
  font-weight: 700;
  color: #003358;
}

/* =====================================================
   SPLASH SCREEN
===================================================== */
.mobile-splash {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all .6s ease;
}

.mobile-splash.active {
  opacity: 1;
  transform: scale(1);
}

.mobile-splash img {
  height: 64px;
  margin-bottom: 12px;
}

.mobile-splash h3 {
  font-weight: 800;
  color: #003358;
}

.mobile-splash p {
  font-size: 14px;
  color: #6c757d;
}

/* =====================================================
   STEP CARD (MOBILE CENTER)
===================================================== */
.mobile-card {
  position: absolute;
  background: #fff;
  padding: 22px 30px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: 800;
  color: #003358;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
  text-align: center;
  opacity: 0;
  transform: scale(.95);
  transition: all .45s ease;
}

.mobile-card.active {
  opacity: 1;
  transform: scale(1);
}

/* =====================================================
   SUCCESS STATE
===================================================== */
.mobile-success {
  position: absolute;
  inset: 0;
  background: linear-gradient(#ffffff, #fdf9ee);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 6;
}

.mobile-success.active {
  opacity: 1;
}

.success-emoji {
  font-size: 36px;
  margin-bottom: 6px;
}

.mobile-success h4 {
  color: #003358;
  font-weight: 800;
}

/* Wallet */
.wallet {
  width: 100px;
  background: #003358;
  border-radius: 10px;
  margin-top: 12px;
  overflow: hidden;
}

.wallet-top {
  height: 20px;
  background: #002244;
}

.wallet-body {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #D4AF37;
  font-size: 20px;
  font-weight: 800;
}

/* Coins */
.coin {
  position: absolute;
  top: -10px;
  font-size: 18px;
  color: #D4AF37;
  animation: coin-fall 1.3s infinite;
}

.coin:nth-child(1) {
  left: 35%;
}

.coin:nth-child(2) {
  left: 50%;
  animation-delay: .3s;
}

.coin:nth-child(3) {
  left: 65%;
  animation-delay: .6s;
}

@keyframes coin-fall {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(110px);
    opacity: 0;
  }
}

/* =====================================================
   RIGHT SIDE STEP CARDS
===================================================== */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-step-card {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 51, 88, .15);
  background: #fff;
  transition: .35s;
}

.hiw-step-card h4 {
  margin: 0;
  font-weight: 700;
  color: #003358;
}

.hiw-step-card p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #6c757d;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(#003358, #002244);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Active */
.hiw-step-card.active {
  background: #fdf9ee;
  border-color: #D4AF37;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.hiw-step-card.active .step-number {
  background: linear-gradient(#D4AF37, #c6a430);
  color: #003358;
}

/* =====================================================
   WHO CAN APPLY – FULL FINTECH STYLE
===================================================== */

.who-apply-section {
  background: #f8f9fb;
  padding: 80px 0;
}

/* Headings */
.who-apply-section .subtitle {
  color: #B78471;
  font-weight: 600;
  letter-spacing: 1px;
}

.who-apply-section h2 {
  color: #003358;
  font-weight: 800;
}

/* ================= SLIDER ================= */

.apply-slider {
  display: flex;
  gap: 20px;
}

/* ================= APPLY CARD ================= */

.apply-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px;
  border: 1.5px solid rgba(0, 51, 88, .12);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: all .35s ease;
  flex: 1;
}

/* Fix brand strip inside rounded card */
.apply-card::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 12px;
  width: 4px;
  height: calc(100% - 24px);
  border-radius: 6px;
  background: linear-gradient(180deg, #003358, #D4AF37);
}


/* Hover */
.apply-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  border-color: #D4AF37;
}

/* ================= BADGE ================= */

.apply-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #003358;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.badge-text {
  font-weight: 700;
  color: #003358;
}

/* ================= COUNT ================= */

.apply-count {
  font-size: 28px;
  font-weight: 800;
  color: #D4AF37;
  margin: 8px 0;
}

/* ================= CARD TEXT ================= */

.apply-card h4 {
  font-weight: 700;
  color: #003358;
}

.apply-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= SLIDER DOTS ================= */

.apply-dots {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  margin: 0 5px;
  display: inline-block;
  cursor: pointer;
  transition: all .3s ease;
}

.dot.active {
  width: 22px;
  border-radius: 20px;
  background: #003358;
}

/* Show dots only on mobile */
@media(max-width:768px) {
  .apply-dots {
    display: block;
  }
}

/* ================= BRAND BUTTON ================= */

.btn-brand {
  background: linear-gradient(135deg, #003358, #002244);
  color: #ffffff;
  border: none;
  /* border-radius: 32px; */
  padding: 14px 44px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 26px rgba(0, 51, 88, 0.35);
}

/* Hover */
.btn-brand:hover {
  background: linear-gradient(135deg, #D4AF37, #c6a430);
  color: #003358;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.45);
}

/* Active (press) */
.btn-brand:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Focus */
.btn-brand:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}


/* ================= IMAGE ================= */

.who-apply-img {
  max-width: 85%;
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(0)
  }
}

/* ================= MOBILE SLIDER ================= */

@media(max-width:768px) {
  .apply-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .apply-card {
    min-width: 90%;
    scroll-snap-align: center;
  }

  .apply-slider::-webkit-scrollbar {
    display: none;
  }
}

/* Headings */
.Emi-calculater .subtitle {
  color: #B78471;
  font-weight: 600;
  letter-spacing: 1px;
}

.Emi-calculater h2 {
  color: #003358;
  font-weight: 800;
}

/* ===============================
   CONTAINER
================================ */
.container {
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   MAIN CALCULATOR CARD
================================ */
.calculator-container {
  display: flex;
  gap: 32px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
  flex-wrap: wrap;
}

/* ===============================
   LEFT / RIGHT SECTIONS
================================ */
.input-section,
.result-section {
  flex: 1;
  min-width: 300px;
}

/* ===============================
   SECTION TITLES
================================ */
.section-title {
  font-size: 18px;
  font-weight: 800;
  color: #003358;
  margin-bottom: 26px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 46px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, #003358, #D4AF37);
}

/* ===============================
   INPUT GROUP
================================ */
.input-group {
  margin-bottom: 36px;
}

/* ===============================
   LABEL ROW (FIXED RIGHT ALIGN)
================================ */
.input-label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.input-label span {
  font-size: 14px;
  color: #6b7280;
}

/* Rightmost values */
.amount-display,
.value-display {
  font-size: 20px;
  font-weight: 800;
  color: #003358;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
}

/* ===============================
   SLIDER
================================ */
.slider {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: #e5ecff;
  appearance: none;
  outline: none;
}

/* Chrome */
.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: #003358;
  border-radius: 50%;
  border: 4px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
  transition: transform .25s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Firefox */
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #003358;
  border-radius: 50%;
  border: 4px solid #ffffff;
}

/* ===============================
   RESULT SECTION
================================ */
.result-section {
  background: linear-gradient(180deg, #fdfefe, #f5f9ff);
  border-radius: 22px;
  padding: 32px;
}

/* ===============================
   EMI RESULT BOX
================================ */
.result-box {
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
  margin-bottom: 32px;
}

.result-box div:first-child {
  font-size: 14px;
  color: #6b7280;
}

.emi-amount {
  font-size: 42px;
  font-weight: 900;
  color: #003358;
  margin-top: 8px;
}

/* ===============================
   DETAILS GRID
================================ */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.detail-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .05);
  transition: transform .3s ease;
}

.detail-item:hover {
  transform: translateY(-4px);
}

.detail-label {
  font-size: 13px;
  color: #6b7280;
}

.detail-value {
  font-size: 20px;
  font-weight: 800;
  color: #003358;
  margin-top: 6px;
}

/* ===============================
   APPLY BUTTON (BRAND)
================================ */
.apply-btn {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #003358, #002746);
  box-shadow: 0 16px 40px rgba(0, 51, 88, .35);
  transition: all .35s ease;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #D4AF37, #003358);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, .45);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:768px) {

  .calculator-container {
    padding: 22px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .amount-display,
  .value-display {
    font-size: 17px;
  }

  .emi-amount {
    font-size: 34px;
  }
}

/* ===============================
   PARTNER SLIDER
================================ */

.partner-section .subtitle {
  color: #B78471;
  font-weight: 600;
  letter-spacing: 1px;
}

.partner-section h2 {
  color: #003358;
  font-weight: 800;
}

.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0 auto 30px;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: partnerScroll 25s linear infinite;
}

/* Pause on hover */
.partner-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Logo Item */
.logo-item {
  flex: 0 0 auto;
  width: 160px;
  height: 80px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo-item img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* Hover effect */
.logo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/* Animation */
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   LOAD MORE BUTTON
================================ */



/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px) {
  .logo-item {
    width: 140px;
    height: 110px;
  }
}

/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section .subtitle {
  color: #B78471;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-section h2 {
  color: #003358;
  font-weight: 800;
}

.testimonial-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}


/* ===============================
   GOOGLE CARD
================================ */

.google-card {
  flex: 0 0 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.google-card img {
  width: 90px;
  margin-bottom: 12px;
}

.google-card h3 {
  font-size: 34px;
  font-weight: 800;
  color: #003358;
}

.google-card .stars {
  color: #fbbc04;
  font-size: 18px;
  margin: 6px 0;
}

.google-card span {
  font-size: 14px;
  color: #6b7280;
}

/* ===============================
   SLIDER
================================ */

.testimonial-slider {
  overflow: hidden;
  flex: 1;
}

.testimonial-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: testimonialScroll 28s linear infinite;
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* ===============================
   TESTIMONIAL CARD
================================ */

.testimonial-card {
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #003358;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.review-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #003358;
  margin: 0;
}

.stars.gold {
  color: #D4AF37;
  font-size: 14px;
}

/* Text */
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* ===============================
   ANIMATION
================================ */

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:991px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .google-card {
    width: 100%;
  }

  .testimonial-card {
    width: 280px;
  }
}

/* ===============================
   FAQ SECTION
================================ */

.faq__v2 {
  background: #f8fafc;
}

.faq__v2 .subtitle {
  color: #B78471;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq__v2 h2 {
  color: #003358;
  font-weight: 800;
}

.faq-content {
  margin-top: 30px;
}

/* ===============================
   ACCORDION BASE
================================ */

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* ===============================
   ACCORDION BUTTON
================================ */

.custom-accordion .accordion-button {
  background: #ffffff;
  font-weight: 700;
  font-size: 16px;
  color: #003358;
  padding: 20px 26px;
  box-shadow: none;
  border: none;
  transition: all .3s ease;
}

/* Remove Bootstrap default icon */
.custom-accordion .accordion-button::after {
  background: none;
  content: "+";
  font-size: 22px;
  font-weight: 800;
  color: #003358;
  transform: rotate(0deg);
  transition: transform .3s ease;
}

/* Active (open) */
.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #fdf9ee, #ffffff);
  color: #003358;
}

/* Change + to − when open */
.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "–";
  transform: rotate(180deg);
  color: #D4AF37;
}

/* Focus fix */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

/* ===============================
   ACCORDION BODY
================================ */

.custom-accordion .accordion-body {
  padding: 22px 26px 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  background: #ffffff;
  border-top: 1px solid #eef2f7;
}

/* ===============================
   HOVER EFFECT
================================ */

.custom-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  transition: .3s ease;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px) {

  .custom-accordion .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }

  .custom-accordion .accordion-body {
    padding: 18px 20px 22px;
    font-size: 14px;
  }
}

/* ===============================
   CONTACT SECTION
================================ */
.contact__v2{
  background:#f8fafc;
}

.contact__v2 .subtitle{
  color:#B78471;
  font-weight:600;
  letter-spacing:1px;
}

.contact__v2 h2{
  color:#003358;
  font-weight:800;
}

/* ===============================
   CONTACT CARDS
================================ */
.contact-cards{
  display:grid;
  gap:18px;
}

.contact-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  background:#ffffff;
  border-radius:18px;
  text-decoration:none;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  transition:.3s ease;
}

.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.contact-card span{
  font-size:13px;
  color:#6b7280;
}

.contact-card strong{
  display:block;
  font-size:15px;
  color:#003358;
  font-weight:700;
}

/* Icons */
.contact-card .icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,#003358,#002746);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

/* WhatsApp card */
.contact-card.whatsapp .icon{
  background:linear-gradient(135deg,#25D366,#128C7E);
}

/* ===============================
   FORM
================================ */
.form-wrapper{
  background:#ffffff;
  padding:32px;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.form-wrapper label{
  font-size:14px;
  font-weight:600;
  color:#003358;
}

.form-wrapper .form-control{
  border-radius:14px;
  padding:12px 14px;
}

.form-wrapper .btn-primary{
  margin-top:10px;
  border-radius:30px;
  padding:14px;
  font-weight:700;
  background:linear-gradient(135deg,#003358,#002746);
  border:none;
}
