/* Default: Desktop */
.desktop-header {
  display: block;
}

.mobile-header {
  display: none;
  
}

/* Mobile only */
@media (max-width: 991.98px) {
  .desktop-header {
    display: none !important;
  }

  .mobile-header {
    margin-top: -3%;
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  header,
  .layout-navbar,
  .mobile-header {
    display: block !important;
    position: sticky;
    top: 0;
    z-index: 9999;
  }
}

/* .home-fixed, */
.home-fixed body {
  overflow-y: scroll !important;
  overflow-x: hidden;
  touch-action: none;
} 
/* all li is open on mobile */
@media (max-width: 991px) {
 
    .navbar-nav .mega-dropdown > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding-top: 0;
    }

    /* Remove toggle arrow on mobile */
    .navbar-nav .dropdown-toggle::after {
        display: none;
    }
}
.tracking-bottom{
  margin-bottom: 20%;
}

/* Wrapper */
.hero-animation-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.theme-colors-fincrif-mobile{
    --bs-text-opacity: 1;
  --fincrif-rgb: 1, 2, 162;       /* #0102a2 */
   color: rgba(var(--fincrif-rgb), var(--bs-text-opacity)) !important;
  font-weight: 700 !important;
  font-size: 1.05 !important;

}

.theme-colors-fincrif {
  --bs-text-opacity: 1;
  --fincrif-rgb: 1, 2, 162;       /* #0102a2 */
   color: rgba(var(--fincrif-rgb), var(--bs-text-opacity)) !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
}

.theme-colors-secondary {
  --bs-text-opacity: 1;
  --secondary-rgb: 130, 165, 34;  /* #82a522 */
  color: rgba(var(--secondary-rgb), var(--bs-text-opacity)) !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
}

.nav-section-title{
  text-align: center; 
   font-weight: 700;
   color: #0e118e;
}
.loan-nav{
     margin-left: -14px;
    margin-right: -20px;
}

/* Responsive tuning */
@media (max-width: 992px) {
  .hero-dashboard-img {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-dashboard-img {
    width: 95%;
  }
}

.landing-hero-btn {
  padding-top: 28px; /* space for span */
}

/* Hero section fix */
#landingHero {
  overflow: hidden;
}

/* Feature tiles */
.fcw-tiles {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fcw-tiles .tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9ff;
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fcw-tiles .ti {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fcw-tiles .tc strong {
  display: block;
  font-size: 14px;
}

.fcw-tiles .tc span {
  font-size: 12px;
  color: #6c757d;
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
}

.dropdown-menu .dropdown-item i { 
  font-size: 16px;
}



/* Mobile Instant Loan Button */
.instant-loan-btn {
    position: relative;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    background: #fff;
    border-radius: 999px;
    text-decoration: none;
    z-index: 1;
    white-space: nowrap;
}

/* Gradient animated border */
.instant-loan-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #7c3aed,
        #2563eb,
        #06b6d4,
        #7c3aed
    );
    background-size: 300% 100%;
    animation: gradientMove 3s linear infinite;
    z-index: -1;
}

/* Inner white layer */
.instant-loan-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 999px;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Slight tap feedback */
.instant-loan-btn:active {
    transform: scale(0.96);
}


/* Hide by default (desktop) */
.mobile-install-loan-btn {
    display: none;
}

/* Show only on mobile */
@media (max-width: 991.98px) {
    .mobile-install-loan {
        font-size: 11px;
        padding: 6px 10px;
        border-radius: 6px;
        white-space: nowrap;
    }
}

/* =====================================================
   MOBILE ONLY: SHOW BOTTOM MENU & HIDE FOOTER
===================================================== */
@media (max-width: 768px) {

  /* Hide full footer on mobile */
  /* footer.landing-footer {
    display: none !important;
  } */

  /* Prevent content hiding behind bottom menu */
   body {
    padding-bottom: 20%; /* match bottom menu height */
  }

  /* ================= MOBILE BOTTOM NAV ================= */
  .appBottomMenu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    display: flex;
    justify-content: space-around;
    align-items: center;

    height: 72px;
    padding: 6px 4px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  }
  .footer-register{
    margin-top:41%;
  }
  .appBottomMenu .item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #444;
  }

  .appBottomMenu .item .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    padding: 6px 0;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .appBottomMenu svg {
    height: 22px;
    width: 22px;
  }

  .appBottomMenu strong {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
  }

  /* Active item */
  .appBottomMenu .item.active .col {
    color: #0b3eac;
  }

  /* ================= CENTER HOME BUTTON ================= */
  .appBottomMenu .item:nth-child(3) .col {
    transform: translateY(-18px);
  }

  .appBottomMenu .item:nth-child(3) img {
    margin-top:42%;
    background: #fff;
    border-radius: 50%;
    /* padding: 8px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  /* ================= LOAN CTA BUTTON ================= */
  .appBottomMenu .item.loan-cta {
     top: -10px;
    position: relative;
  }

  .appBottomMenu .item.loan-cta .loan-cta-content {
    margin-left: 11%;
    margin-top: 12%;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    border-radius: 14px;

    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;

    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
  }

  .appBottomMenu .item.loan-cta svg {
    fill: #fff;
    height: 22px;
  }

  /* Pulse animation */
  @keyframes loanPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  .appBottomMenu .item.loan-cta.nudge .loan-cta-content {
    animation: loanPulse 1.4s ease-in-out 2;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .appBottomMenu .item.loan-cta.nudge .loan-cta-content {
      animation: none;
    }
  }
}

/* header background colors */
.home-page .navbar {
  background: transparent;
  box-shadow: none;
}

/* All other pages header background */
.inner-page .navbar {
  background: linear-gradient(180deg, #f3efff 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}
  
/* Header Apply Button – 3D style */
.navbar .btn.btn-primary {
  background: linear-gradient(180deg, #6f6cff, #5a56e9);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;

  /* 3D depth */
  box-shadow:
    0 6px 0 #4b47d6,
    0 10px 18px rgba(90, 86, 233, 0.35);

  transition: all 0.15s ease-in-out;
}

/* Hover – lift up */
.navbar .btn.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #4b47d6,
    0 14px 22px rgba(90, 86, 233, 0.45);
}

/* Click – pressed */
.navbar .btn.btn-primary:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #4b47d6,
    0 6px 10px rgba(90, 86, 233, 0.25);
}

/******* mobile menu *******************/
/* ===============================
   MOBILE CLICK DROPDOWN
================================ */

   .firstSection{
    margin-top:6%;
  }

 .fcHero-modern-fincrit{
    background: #fff;
    padding: 17px;
    margin-top: 0;
    margin-bottom: 16px;
 }
 .cart-roi {
  margin: -3% 0;
}
 .fcCard{
  margin-top:1%;
  margin-left:1%;
  margin-right:1%
 }
 .bank-heading-space{
 line-height: 2.25rem;
 }
.mobile-firstSection {
  margin-top:20% !important
}
/* Hide on tablet & desktop */

