* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    color: white;
    padding: 0px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: linear-gradient(90deg, #b0ffb2, #2e7d32); */
    background: #1b4332;
    position: relative;
}

.logo{
    background-color: white;
    padding: 13px 34px;
    border-radius: 52px 0px;
    /* position: absolute;
    top: 20px; */

}

.logo a{
    display:flex;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.site-nav, .top-header{
    display: flex;
    width: 75%;
    justify-content: end;
}

.top-header{
    width: 100%;
    height: 50px;
    backdrop-filter: blur(15px);
    padding: 10px;
    background-color: #4caf50;
}


.site-nav ul, .top-header ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.top-header ul { 
    align-items: center;
}

.site-nav ul li a, .top-header ul li a  {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.top-header ul li a{
    font-size: 15px;
    color: white;
}

.site-nav ul li a:hover, .top-header ul li a:hover {
    color: #95d5b2;;
}

.cta-button {
    background-color: #07a9a1;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 17px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6aded8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 17px;
    color: white;
    cursor: pointer;
}


/* Responsive styles */


@media (max-width: 949px) {
    
    .site-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1b4332;
        display: none;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        width: 100%;
        z-index: 1000;
    }

    .site-nav.active {
        display: flex;
        top: 100%;
    }
    
     .site-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        display: none;
    }

    
    .site-nav ul li .btn-primary{
        padding: 10px 15px;
    }

    .menu-toggle {
        display: block;
    }

    .logo{
        padding: 10px 15px
    }
    
    
}


@media (max-width: 387px) {
    .top-header ul {
        align-items: center;
        padding: 0px;
        margin: 0;
        gap: 15px;
        justify-content: center;
    }

    .top-header ul li a{
        font-size: 12px;
    }
}

