﻿/* ================= GLOBAL ================= */

/*body {
    margin: 0;
    font-family: Segoe UI;
    background: #f5f7fa;
}

.container {
    width: 90%;
    margin: auto;
}*/

/* ================= HEADER ================= */

/*.header {
    background: #0b1e3c;
    padding: 15px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}*/

/* ================= NAVIGATION ================= */

/*.nav {
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}*/

/* ================= MEGA DROPDOWN ================= */

/*.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 420px;

    background: #f4f4f4;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);

    display: none;
    flex-direction: column;
    gap: 22px;

    z-index: 99999;
}

.mega-menu.active {
    display: flex;
}

.mega-item h4 {
    margin: 0;
    font-size: 16px;
    color: #1c2b4a;
}

.mega-item p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.mega-item:hover {
    background: white;
    border-radius: 12px;
    padding: 10px;
    transition: 0.2s ease;
}*/

/* ================= BUTTONS ================= */

/*.btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}*/

/* ================= HERO ================= */

/*.hero {
    background: linear-gradient(135deg, #0b1e3c 0%, #132f63 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}*/

/* LEFT */

/*.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.hero-content .highlight {
    color: #ff2c2c;
}

.hero-subtext {
    font-size: 22px;
    color: #cbd6f0;
    margin-top: 30px;
}*/

/* RIGHT IMAGE */

/*.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: calc(100% + 80px);
    max-width: none;
    height: auto;

    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;

    margin-right: -80px;

    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.45);
}*/

/* ================= BANKING SECTION ================= */

/*.banking-section {
    background: white;
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #0b1e3c;
    font-size: 14px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    color: #1c2b4a;
    margin-top: 10px;
}

.banking-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 60px;
    align-items: center;
}

.banking-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banking-center {
    text-align: center;
}

.banking-center img {
    max-width: 380px;
    width: 100%;
}*/

/* CARDS */

/*.bank-card {
    background: #f4f6f9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bank-card h4 {
    margin-bottom: 10px;
    color: #0b1e3c;
}

.bank-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}*/

/* ================= RESPONSIVE ================= */

/*@media(max-width:1100px) {
    .banking-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banking-col {
        align-items: center;
    }

    .banking-center {
        margin: 40px 0;
    }
}*/
/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: Segoe UI;
    background: #f5f7fa;
}

.container {
    width: 90%;
    margin: auto;
}

/* ================= HEADER ================= */

.header {
    background: #0b1e3c;
    padding: 15px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 9999;
}

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.logo img {
    height: 45px;
}


.nav-list a.active {
    color: #ff2c2c;
    font-weight: 600;
    position: relative;
}

    .nav-list a.active::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ff2c2c;
    }

/* Parent active (Collections / Payments) */
.mega-dropdown.active-parent > a {
    color: #ff2c2c;
    font-weight: 600;
}
/* ================= NAVIGATION ================= */

.nav {
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-list li {
        position: relative;
    }

    .nav-list a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        cursor: pointer;
    }

/* ================= MEGA DROPDOWN ================= */

.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 420px;
    background: #f4f4f4;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    gap: 22px;
    z-index: 99999;
}

    .mega-menu.active {
        display: flex;
    }

.mega-item h4 {
    margin: 0;
    font-size: 16px;
    color: #1c2b4a;
}
.mega-item a {
    margin: 0;
    font-size: 16px;
    color: #1c2b4a;
}

.mega-item p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.mega-item:hover {
    background: white;
    border-radius: 12px;
    padding: 10px;
    transition: 0.2s ease;
}

/* ================= BUTTONS ================= */

.btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #0b1e3c 0%, #132f63 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

    .hero .container {
        width: 90%;
        max-width: 1400px;
        margin: auto;
    }

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */

.hero-content {
    flex: 1;
    max-width: 650px;
}

    .hero-content h1 {
        font-size: 80px;
        font-weight: 700;
        line-height: 1.1;
        color: #ffffff;
    }

    .hero-content .highlight {
        color: #ff2c2c;
    }

.hero-subtext {
    font-size: 22px;
    color: #cbd6f0;
    margin-top: 30px;
}

/* RIGHT IMAGE */

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

    .hero-image img {
        width: calc(100% + 80px);
        max-width: none;
        height: auto;
        border-top-left-radius: 32px;
        border-bottom-left-radius: 32px;
        margin-right: -80px;
        box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.45);
    }

/* ================= BANKING SECTION ================= */

.banking-section {
    background: white;
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

    .section-title span {
        color: #0b1e3c;
        font-size: 14px;
        font-weight: 600;
    }

    .section-title h2 {
        font-size: 42px;
        color: #1c2b4a;
        margin-top: 10px;
    }

.banking-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 60px;
    align-items: center;
}

.banking-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banking-center {
    text-align: center;
}

    .banking-center img {
        max-width: 380px;
        width: 100%;
    }

/* CARDS */

.bank-card {
    background: #f4f6f9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

    .bank-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .bank-card h4 {
        margin-bottom: 10px;
        color: #0b1e3c;
    }

    .bank-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

/* ================= FOOTER ================= */

.sf-footer {
    background: linear-gradient(135deg, #0b1e3c 0%, #132f63 100%);
    color: #ffffff;
    padding: 80px 0 25px;
    font-family: Segoe UI;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 32% 22% 22% 22%;
    gap: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 24px;
    color: #cbd6f0;
}

.footer-links h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

    .footer-links h4::after {
        content: "";
        width: 35px;
        height: 2px;
        background: #ff2c2c;
        display: block;
        margin-top: 6px;
    }

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: #cbd6f0;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: #ff2c2c;
                padding-left: 6px;
            }

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cbd6f0;
}

.footer-contact a {
    color: #cbd6f0;
    text-decoration: none;
}

    .footer-contact a:hover {
        color: #ff2c2c;
    }

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #cbd6f0;
}
/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Large Desktop */
@media (max-width:1400px) {
    .hero-content h1 {
        font-size: 65px;
    }
}

/* Laptop */
@media (max-width:1200px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-subtext {
        font-size: 20px;
    }

    .banking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .banking-col {
        align-items: center;
    }

    .banking-center {
        margin: 30px 0;
    }

    .hero-flex {
        gap: 40px;
    }
}

/* Tablet */
@media (max-width:991px) {

    /* Header Nav */
    .nav-list {
        gap: 25px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 42px;
        }

    .hero-subtext {
        font-size: 18px;
    }

    .hero-image {
        justify-content: center;
    }

        .hero-image img {
            width: 100%;
            margin: 0;
            border-radius: 20px;
        }

    /* Banking */
    .banking-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile Large */
@media (max-width:768px) {

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        background: #0b1e3c;
        padding: 20px;
        border-radius: 10px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 15px;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .bank-card {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after {
        margin: 6px auto;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    body {
        font-size: 14px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .bank-card {
        padding: 15px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}