* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1,6;
}

.navbar {
    background: linear-gradient(135deg, #1a7e38, #1a7e38);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.logo h1 {
  text-decoration: none; 
  color:white;        
  cursor: pointer;        
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(79,195,247,0.2);
}

.login-btn {
    background: #335413;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.login-btn:hover {
    background-color: #21350c;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header */
header {
    text-align: center;
    padding: 40px;
    margin-top: 70px;
    background: linear-gradient(rgba(19, 72, 28, 0.9), rgba(55, 194, 71, 0.9)), url('https://source.unsplash.com/random/1600x900/?banking,finance') no-repeat center center/cover;
    color: white;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

header h1 {
    font-size: 50px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

header p {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

section h2 {
    color: #1a7e38;
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #335413, #a8ffcf);
    border-radius: 2px;
    animation: underlineGrow 1s ease forwards;
}

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 70px; }
}

section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

section ul {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

section li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

section.visible li {
    opacity: 1;
    transform: translateX(0);
}

section li::before {
    content: '✓';
    color: #335413;
    font-weight: bold;
    position: absolute;
    left: -1.8rem;
    top: 0;
}

section li strong {
    color: #1a7e38;
}

/* Call to Action Links */
section a {
    display: inline-block;
    margin: 0.5rem 1rem 0 0;
    padding: 0.8rem 2rem;
    background: #2a5298;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

section a:hover {
    background: #1e3c72;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 82, 152, 0.4);
}

/* Footer */
.footer {
    background: #1a7e38;
    color: white;
    padding: 3rem 2rem 1rem;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.map-container h4 {
    color: #3afc74;
    margin-bottom: 10px;
}
.map-container iframe {
    padding-top: 1rem;
    width: 100%;
    height: 150px;
    border: 0;
    border-radius: 8px;
    padding-bottom: 1rem;
}

.footer-section h4 {
    color: #3afc74;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-social-links a {
    background: #333;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    transition: 0.3s ease;
}

.footer-social-links a:hover {
    background: #3afc74;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

/*For mobile view*/
@media (max-width: 778px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .balance-cards {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a7e38;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    z-index: 999;
  }

  /* 🔥 THIS IS THE IMPORTANT LINE */
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    width: 100%;
  }
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/money.webp")
                no-repeat center center / cover;
    opacity: 0.25;
    z-index: -1;
}