:root {
    --bs-primary: #00237C;
    --bs-primary-rgb: 0, 35, 124;
}


.btn-primary {
    background-color: #00237C;
    border-color: #00237C;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #001a5c;
    border-color: #001a5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* Custom hamburger box */
.custom-toggler {
    border: 2px solid #6b6b6b;
    border-radius: 10px;
    padding: 6px 10px;
}

/* Remove Bootstrap default focus shadow */
.custom-toggler:focus {
    box-shadow: none;
}

/* Hamburger icon color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.gradient-divider {
    border: none;
    height: 1px;
    width: 100%;

    background: radial-gradient(17755.13% 50% at 50% 50%,
            var(--transparancy-20, #E4E4E4) 0%,
            var(--transparancy-10, #F9F9F9) 100%);

    margin: 0;
}


section {
    padding: 80px 0;
    scroll-margin-top: 130px;
}


body {
   font-family: "Pathway Extreme", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* 
h1 {
  font-size: 20px;
  font-weight: 700; 
}

h2 {
  font-size: 18px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

h4 {
  font-size: 14px;
  font-weight: 500;
}

h5 {
  font-size: 12px;
  font-weight: 500;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
} */

/* NAV PILL */
.nav-pill-custom {
    background: #201A16;
    border-radius: 40px;
    padding: 9px;
    gap: 30px;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* NAV LINKS */
.nav-pill-custom .nav-link {
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.35s ease;
}

/* ACTIVE */
.nav-pill-custom .nav-link.active {
    background: #fff;
    color: #111 !important;
    font-weight: 500;
}

/* HOVER EFFECT */
.nav-pill-custom .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ACTIVE */
.nav-pill-custom .nav-link.active {
    background: #fff;
    color: #111 !important;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.85);
}


/*  Hero Section START*/

/* HERO BACKGROUND */
.hero-section {
    background: radial-gradient(circle at right center,
            #fff 0%, );
    /* position: relative;
    overflow-x: hidden; */
}

/* TEXT */
.hero-tagline {
    color: #00237C;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: normal;
}

.hero-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-desc {
    color: #696664;
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

/* IMAGE WRAPPER */
.hero-images {
    width: 100%;
    max-width: 420px;
}



/* CARD BASE */
.hero-card {
    /* background: #fff; */
    border-radius: 22px;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12); */
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT BELOW IMAGE */
.hero-card-text {
    padding: 12px 14px;
    color: #201A16;
}



.hero-card-text strong {
    font-weight: 700;
    display: block;
    font-size: 16px;
}

.hero-card-text small {
    color: #817F7E;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

/* BIG CARD */
.hero-card-lg {
    width: 100%;
}

/* SMALL CARD */
.hero-card-sm {
    width: 260px;
    position: absolute;
    right: -128px;
    bottom: -63px;
}

/* =======================  LOGO SECTION  START ===================== */
.logos-section {
    background: linear-gradient(90deg,
            var(--transparancy-10, #F9F9F9) 0%,
            var(--primary-10, #FCFDFE) 100%);
    padding: 20px 0;
    overflow: hidden;
    /* 🔥 IMPORTANT */
}

/* MARQUEE WINDOW */
.logos-marquee {
    width: 100%;
    overflow: hidden;
}

/* MOVING TRACK */
.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-logos 35s linear infinite;
}

/* LOGOS */
.logos-track img {
    max-height: 70px;
    width: auto;
    opacity: 0.85;
    flex-shrink: 0;
}

/* HOVER PAUSE (optional but 🔥) */
.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ========================= Logo section End ======================= */

/* Hero Section End */

/* /* =========================== Bankin section start ==================== */
.banking-section {
    background: linear-gradient(180deg,
            #FCFAFF 0%,
            var(--transparancy-10, #FFF) 100%);
    padding-top: 80px !important;
    padding-bottom: 80px !important;

}


/* Card */
.bank-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--transparancy-20, #E4E4E4);
    background: var(--transparancy-0, #FFF);
}

/* Icon */
.bank-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.bank-content h6 {
    margin-bottom: 8px;
    color: #201A16;
    font-style: normal;
}

.bank-content p {
    margin: 0;
    color: #504D4A;
    font-style: normal;
    font-weight: 400;
}

/* ============================== Baking section END ========================== */


/* ============================== success section START ========================== */


/* Item */
.success-item {
    max-width: 320px;
}

/* Icon round */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--transparancy-20, #E4E4E4);
    background: var(--transparancy-10, #F9F9F9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG inside */
.icon-circle svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

/* Text */
.success-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================== success section END ========================== */


/* ============================== About - Why Choose Us section START ========================== */
/* SECTION BACKGROUND */
.why-section {
    background: #2B2B2B;
    color: #fff;
}

/* PROFILE CARD */
.profile-card-dark {
    color: #fff;
}

.profile-card-dark img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.profile-card-dark p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* RIGHT BOX */
.why-box-dark {
    background: var(--transparancy-100, #201A16);
    border-radius: 20px;
    padding: 32px;
}

/* WHY ITEM */
.why-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.why-item h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--transparancy-20, #E4E4E4);
}

/* ICON */
.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 60px;
    border: 1px solid var(--transparancy-80, #504D4A);
    background: var(--transparancy-80, #504D4A);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-text {
    color: var(--transparancy-60, #817F7E);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* ============================== About - Why Choose Us section END ========================== */


/* CONTACT SECTION START  */

/* Contact Card */
.contact-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--transparancy-20, #E4E4E4);
    background: var(--transparancy-10, #F9F9F9);
}

/* Inputs */
.contact-card .form-control {
    border-radius: 8px;
    padding: 12px 14px;
}

/* Right links */
.contact-link {
    color: #00237C;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    font-style: normal;
}

/* Divider */
#contact hr {
    border: none;
    height: 1px;
    background: #eee;
}

/* Testimonial */
.testimonial {
    position: relative;
    max-width: 420px;
}

/* SVG behind content */
.testimonial .quote-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
    opacity: 0.5;
    /* subtle */
}

/* Text above SVG */
.testimonial p,
.testimonial .testimonial-author {
    position: relative;
    z-index: 1;
}

/* Author right aligned */
.testimonial-author {
    display: block;
    text-align: right;
    font-weight: 600;
}

.contact-text {
    color: var(--transparancy-90, #383330);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    /* line-height: normal6 */
}

/* CONTACT SECTION END */


.dark-footer {
    background: #111;
    color: #aaa;
}

/* UI polish */
.footer-ui {
    font-size: 14px;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .3s ease, color .3s ease;
}

/* subtle hover effect */
.footer-ui:hover {
    background: #151515;
    color: #ddd;
}

/* ================= Media Query =============*/


/* MOBILE */
@media (max-width: 991px) {
    .nav-pill-custom {
        background: transparent;
        padding: 0;
    }

    .nav-pill-custom .nav-link {
        color: #111 !important;
    }

    .nav-pill-custom .nav-link.active {
        background: #111;
        color: #fff !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-images {
        max-width: 320px;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-card-sm {
        position: absolute;
        width: 100%;
        margin-top: 16px;
    }

    .hero-section {
        position: relative !important;
        overflow-x: hidden !important;
    }

    .why-box-dark {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .logos-track {
        gap: 32px;
        animation-duration: 25s;
    }

    .logos-track img {
        max-height: 60px !important;
    }

    .bank-card {
        gap: 16px;
        padding: 20px;
    }

    .success-item {
        max-width: 100%;
        text-align: center;
    }

    .icon-circle {
        margin: 0 auto;
    }

    .contact-card {
        padding: 20px;
    }


}


@media (max-width: 576px) {

    .hero-card-sm {
        position: static;
        left: auto;
        bottom: auto;
        margin-top: 16px;
        width: 80%;
    }

    .hero-card-lg {
        width: 80%;
    }

    /* section spacing */
    .hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* center text block */
    .hero-section .col-lg-6:first-child {
        text-align: left;
    }

    /* tagline */
    .hero-tagline {
        font-size: 13px;
    }

    /* title */
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    /* description */
    .hero-desc {
        font-size: 14px;
        font-weight: 500;
        margin-left: auto;
        margin-right: auto;
    }

    /* CTA button */
    .hero-section .btn {
        width: 100%;
        max-width: 260px;
    }

    /* images stack */
    .hero-images {
        max-width: 320px;
        margin: 30px auto 0;
    }

}