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


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* 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 {
    position: relative;
    top: 6.5px;
}

.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 */


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

.close-menu {
    display: none;
}
/* About Us Section */
.about-us-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff, #f1f7f6);
}

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

.about-us-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #1e3932;
    /* Soft green */
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-us-header p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #555;
}

.about-us-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-us-content>div {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-content>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-us-content h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #1e3932;
    margin-bottom: 1rem;
}

.about-us-content p {
    font-size: clamp(0.9rem, 1.25vw, 1rem);
    color: #555;
    line-height: 1.5;
}

@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;

    }

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

}