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

}

body {
    font-family: "Inter", sans-serif;
}

/* Navbar Styling */
header {
    background-color: #ffffff;
    /* White background for the navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Logo Styling */
.logo {
    display: flex;
    gap: 3px;
}

.logo img {
    margin-top: 2px;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #3A3A3A;
    /* Neutral text color for the logo */
}

/* Navigation Links */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #3A3A3A;
    /* Neutral text color for default state */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #219753;
    /* Nice green theme on hover */
}

/* Get Started Button */
.btn-get-started {
    padding: 10px 20px;
    background-color: #219753;
    /* Green background */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #4CAF50;
    /* Slightly darker green for hover */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    /* Hidden by default, shown on mobile */
    cursor: pointer;
    width: 24px;
    height: 30px;
}

.close-menu {
    display: none;
}

/* HERO SECTION */
/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
    background-color: #fefefe;
    /* White background for a clean feel */
    min-height: 80vh;
}

.hero .left-side-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-bottom: 10%
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 2.5vw, 2rem);
    line-height: 1.6;
    font-weight: 800;
    color: #264653;
    animation: slide-in 1s ease forwards;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 2rem);
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    font-family: 'Inter', sans-serif;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;

}

.btn-primary {
    background-color: #2a9d8f;

    color: white;

}

.btn-primary a {
    text-decoration: none;
    color: white;
}

.btn-primary:hover {
    background-color: #21867a;
}

.btn-secondary {
    background-color: #e9c46a;

    color: white;
}

.btn-secondary a {
    color: #fff;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #d3a44f;
}

.hero-image {
    flex: 1;
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* Adds a softer feel to the GIF */
}

/* PARTNERSHIP SECTION */
.partnership-section {
    background-color: #f5f7f9;
    /* Soft cream background */
    padding: 50px 20px;
    text-align: center;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.headline {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.bank-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bank-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
    animation: pop-up 0.6s ease forwards;
}

.bank-tagline {
    font-size: 1rem;
    color: #007A33;
    /* Soft green */
    font-weight: 600;
    animation: slide-in 1s ease forwards;
}

/* Animations */
@keyframes pop-up {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slide-in {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* FEATURES SECTION */
.features-section {
    padding: 4rem 2rem;
    background-color: #fff;
    /* Light pastel background */
}

/* Features Header */
.features-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Features Header - Title */
.features-header h2 {
    font-size: 2.5rem;
    color: #1e3932;
    /* Soft green for the title */
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Features Header - Description */
.features-header p {
    font-size: 1.2rem;
    color: #555555;
    /* Darker gray for description */
    margin-bottom: 0;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}


.features-grid .feature-card:nth-child(4) {
    grid-column: span 2;

}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f4f4f4);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.057);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    position: relative;

}


.feature-card:hover {
    transform: translateY(-2px);
    border: 1px;
    background-color: #e0f2f1;

}


.feature-card:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;

    border-radius: 0 0 12px 12px;
}


.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}


.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease-in-out;
}


.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1e3932;

    font-weight: bold;
}


.feature-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}


.feature-card:hover {
    background-color: #e0f2f1;

}



.feature-card button:hover {
    background-color: #3cb371;

    color: white;
    border-color: #3cb371;
}


.feature-card button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.feature-card button:focus {
    outline: none;
}

.feature-card button:active {
    transform: translateY(4px);
}

/* FREQUENTLY ASKED QUESTIONS  */
.faq-section {
    padding: 4rem 2rem;
    background-color: #f1f7f6;

}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #1e3932;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background-color: #fff;
    font-size: 1.2rem;
    color: #1e3932;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e0f2f1;

}

.accordion-content {
    padding: 1.25rem;
    background-color: #fff;
    display: none;
    font-size: 1rem;
    color: #666666;
    border-top: 1px solid #ddd;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-button {
    background-color: #e0f2f1;
}

.accordion-item.active .accordion-button:hover {
    background-color: #c2f0e0;

}

/* CONTACT US SECTION */

.contact-us-section {
    display: flex;
    padding: 4rem 2rem;
    background-color: #f1f7f6;

}

.contact-info-left {
    flex: 1;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    color: #1e3932;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-info-left p {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #1e3932;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-info-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-right iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width:768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 1000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .btn-get-started {
        width: auto;


    }

    .btn-get-started-div {
        position: relative;
        z-index: 3;
        left: 3px;
    }

    .hamburger-menu {
        display: block;

    }


    .hero {
        flex-direction: column;
        padding: 1rem;

        text-align: center;

    }

    .hero-content {
        max-width: 100%;

        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);

    }

    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: clamp(0.1rem, 4vw, 1.0rem);

    }

    .hero-image {
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-image img {
        width: 90%;
        margin: 0;
        border-radius: 12px;

    }


    .features-grid {
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 1.5rem;
        padding-top: 1rem;
    }

    .feature-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;

    }

    .feature-card h3 {
        font-size: 1.25rem;

    }

    .feature-card p {
        font-size: 0.95rem;
        text-align: center;

    }

    .contact-us-section {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .close-menu {
        display: block;
        border: none;
        background: none;
        font-size: 34px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        
    }
}