  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #FFF4E6;
            color: #333;
        }


header {
    width: 100%;
    background-image: linear-gradient(to right, rgb(53, 10, 53), rgb(21, 21, 148));;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 0; ;
    display: flex;
    justify-content: space-between;
    align-items: center;
   /*  background-image: linear-gradient(to right, rgb(53, 10, 53), rgb(21, 21, 148));; */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    animation: fadeInDown 1s ease-in-out;
    color: wheat;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}


.nav-links a.active {
  color: #ffcc00;
  font-weight: bold;
  border-bottom: 2px solid #facc15;
}


/* Hamburger Menu (Mobile Only) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
    margin-right: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #003366;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.open {
        max-height: 500px; /* Arbitrary large number */
    }

    .nav-links li {
        padding: 1rem 0;
    }
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}








        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgb(53, 10, 53), rgb(21, 21, 148));
            background-image: url('bg.jpg');
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 0px 0px 0px 1000px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(53, 10, 53, 0.95), rgba(21, 21, 148, 0.95));
        }

        .hero h1 {
            font-size: 3.5rem;
            color: white;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Main Content */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Section Styling */
        .section {
            margin-bottom: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: rgb(21, 21, 148);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .section-title h3 {
            font-size: 1.5rem;
            color: #CC5500;
            font-weight: 400;
        }

        /* Account Cards Container */
        .accounts-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* Account Card */
        .account-card {
            background: wheat;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 380px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .account-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            border-color: #FFCC00;
            background: #F5DEB3;
        }

        .bank-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            overflow: hidden;
        }

        .bank-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .account-info {
            margin-top: 20px;
            text-transform: uppercase;
        }

        .account-info p {
            margin: 12px 0;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .account-info strong {
            color: #CC5500;
            display: inline-block;
            min-width: 140px;
            text-align: left;
        }

        .account-info .value {
            color: #333;
            font-weight: 600;
        }

        /* HIDDEN THIRD CARD - Uncomment to add third local account */
        .account-card.hidden {
            display: none;
        }
        
        /* Remove the comment tags around .account-card.hidden to show the third card
        .account-card.hidden {
            display: flex;
            flex-direction: column;
        }
        */

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
                text-align: center;
            }

            .hero {
                border-radius: 0px 0px 0px 300px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title h3 {
                font-size: 1.2rem;
            }

            .accounts-container {
                gap: 30px;
            }

            .account-card {
                width: 100%;
                max-width: 400px;
            }
        }
        /* Responsive Design */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
                text-align: center;
            }

            .hero {
                border-radius: 0px 0px 0px 300px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title h3 {
                font-size: 1.2rem;
            }

            .accounts-container {
                gap: 30px;
            }

            .account-card {
                width: 100%;
                max-width: 400px;
            }
        }





        footer {
    background-color: #002244;
    color: white;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.footer-section p {
    margin: 0.5rem 0;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}