﻿body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f7f6;
}

.hero {
    background: linear-gradient(180deg, #0f3d35, #0b2f29);
    color: white;
    position: relative;
    overflow: hidden;
}

.navbar {
    background: transparent;
}

.nav-link {
    color: #cfd8dc !important;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-sub {
    color: #b0bec5;
}

.email-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

    .email-box input {
        border: none;
        outline: none;
        padding: 12px;
        flex: 1;
    }

    .email-box button {
        background: #0f3d35;
        color: white;
        border: none;
        padding: 0 20px;
    }

.card-image {
    max-width: 500px;
    margin-top: 60px;
}

.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

    .floating-icons div {
        background: white;
        color: #0f3d35;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

.offcanvas {
    background: linear-gradient(180deg, #0f3d35, #0b2f29);
}

.features {
    background: linear-gradient(180deg, #0f3d35, #0b2f29);
    position: relative;
    margin-top: -80px;
    padding-top: 120px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}


.feature-box {
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(144, 238, 144, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #b6ff9e;
}

.banking {
    background: #f5f7f6;
}

/* LEFT ITEMS */
.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .feature-item i {
        font-size: 22px;
        color: #0f3d35;
        margin-top: 4px;
    }

    .feature-item h6 {
        margin: 0;
        font-weight: 600;
    }

    .feature-item p {
        margin: 5px 0 0;
        font-size: 14px;
        color: #6c757d;
    }

    /* ACTIVE STATE */
    .feature-item.active {
        background: #dfeac7;
        border-left: 4px solid #0f3d35;
    }

/* IMAGE BOX */
.image-box {
    background: #e9eceb;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 991px) {
    .feature-item {
        border-left: none;
        border-radius: 10px;
    }

        .feature-item.active {
            border-left: none;
        }
}

.control {
    background: #f5f7f6;
}

/* Mockup container (grey rounded box behind image) */
.mockup-box {
    background: #e9eceb;
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
}

/* Typography spacing */
.control h2 {
    font-size: 2.3rem;
}

.control p {
    max-width: 500px;
}

section + section {
    margin-top: 80px;
    background: #f5f7f6;
}

/* MOBILE */
@media (max-width: 991px) {
    .control h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .control p {
        text-align: center;
        margin: auto;
    }

    .mockup-box {
        padding: 25px;
    }
}

.footer {
    background: linear-gradient(180deg, #0f3d35, #1c5a4e);
    color: white;
    padding: 70px 0 40px;
}

    .footer a {
        color: #d6e4df;
        text-decoration: none;
        font-size: 14px;
    }

        .footer a:hover {
            color: #ffffff;
        }

    .footer h6 {
        font-weight: 600;
        margin-bottom: 18px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    color: #cfd8dc;
}

/* FIXED NAVBAR DEFAULT */
.navbar-transparent {
    background: transparent;
    transition: all 0.3s ease;
}

/* WHEN USER SCROLLS */
.navbar-scrolled {
    background: white !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    /* Change text color when white */
    .navbar-scrolled .nav-link {
        color: #0f3d35 !important;
    }

    .navbar-scrolled .navbar-brand {
        color: #0f3d35 !important;
    }

/* push hero down because navbar fixed */
.hero {
    padding-top: 100px;
}

/* ACCOUNT BUTTON DEFAULT */
.account-btn {
    background: white;
    color: #0f3d35;
    border: none;
    transition: all 0.3s ease;
}

    .account-btn:hover {
        background: #0b2f29;
        color: white;
    }

.navbar-scrolled .account-btn {
    background: #0f3d35;
    color: white;
}

    .navbar-scrolled .account-btn:hover {
        background: #0b2f29;
        color: white;
    }

/* MENU BUTTON DEFAULT (transparent navbar) */
.menu-btn {
    color: white;
}

/* WHEN NAVBAR TURNS WHITE */
.navbar-scrolled .menu-btn {
    color: #0f3d35;
}

/* FULL HEIGHT SECTION */
.auth-section {
    height: 100vh;
}

    /* REMOVE PADDING GAP */
    .auth-section .row {
        height: 100%;
    }

/* LEFT IMAGE FULL */
.auth-image {
    height: 100vh;
    overflow: hidden;
}

.auth-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE FULL HEIGHT CENTER */
.col-lg-6.d-flex {
    height: 100vh;
}

/* MOBILE */
@media (max-width: 991px) {
    .auth-image {
        display: none;
    }

    .col-lg-6.d-flex {
        height: auto;
        padding: 40px 20px;
    }

    .auth-section {
        height: auto;
    }
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.auth-title {
    font-weight: 700;
    color: #0f3d35;
}

.auth-sub {
    color: #6c757d;
}

.auth-btn {
    background: #0f3d35;
    color: white;
    padding: 12px;
    border-radius: 999px;
    border: none;
}

    .auth-btn:hover {
        background: #0b2f29;
    }

/* IMAGE CONTAINER */
.auth-image {
    position: relative;
    overflow: hidden;
}

/* QUOTE BOX */
.quote-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

/* TEXT */
.quote-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.quote-author {
    opacity: 0.8;
}

/* ANIMATION */
.fade-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STRONGER IMAGE TINT */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(15, 61, 53, 0.6), rgba(11, 47, 41, 0.85) );
    z-index: 1;
}

/* BANK BRAND (TOP LEFT) */
.bank-brand {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
    color: white;
}

.bank-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bank-sub {
    font-size: 14px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* ENSURE QUOTE ABOVE OVERLAY */
.quote-box {
    z-index: 2;
}

/* Center the quote + title */
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
}

    /* Center text inside */
    .centered-text h2,
    .centered-text p,
    .centered-text small {
        text-align: center;
    }

    /* Optional spacing */
    .centered-text .bank-sub {
        margin-bottom: 20px;
    }