/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ===== Header ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #0b3d91;
    text-decoration: none;
}

.logo-coil {
    color: #0b3d91;
}

.logo-ards {
    color: #ff6b3c;
}

.logo2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
}

.logo2 .logo-coil {
    color: #ffffff;
}

.logo2 .logo-ards {
    color: #ff6b3c;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #0b3d91;
    color: #fff;
}

.btn-sm {
    background: #0b3d91;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-sm:hover {
    background: #ff6b3c;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    border-radius: 2px;
}

/* ===== Hero ===== */
.finance-hero {
    background: url('../images/finance-hero.png') center/cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    color: #fff;
}

.finance-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 145, 0.6);
}

.finance-hero .container {
    position: relative;
    z-index: 2;
}

.finance-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.finance-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Finance Info ===== */
.finance-info {
    padding: 4rem 2rem;
    text-align: center;
}

.finance-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.finance-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Bank Logos ===== */
.banks-section {
    padding: 4rem 2rem;
    text-align: center;
}

.banks-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0b3d91;
}

.banks-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banks-logos img {
    width: 100px;
    /* Uniform width */
    height: 100px;
    /* Uniform height */
    border-radius: 50%;
    /* Makes it a circle */
    object-fit: cover;
    /* Ensures proper cropping */
    border: 3px solid #0b3d91;
    /* Elegant border */
    padding: 5px;
    /* Optional inner spacing */
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.banks-logos img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ===== Footer ===== */
.footer {
    background: #0b3d91;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.footer a {
    color: #ff6b3c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.footer .footer-col h4 {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        background: #fff;
        width: 200px;
        padding: 1rem;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}