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


body{
    max-width: 1100px;
    margin: 0px auto;
    font-family: sans-serif;
    line-height: 1.5;
    background-color: #111;
    color:#fff
   
}

html{
 font-size: 1rem;
scroll-behavior: smooth;
}

nav{
    position: sticky;
    top: 0px;
}

.nav-container{
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin: 0 auto;
    border-radius: 32px;
   background-color: rgba(0, 0, 0, 1.8);
   
    
}

.nav-container img{
    width: 150px;
    height: auto;
}

.navlinks{
    display: flex;
    gap: 50px;
    margin: 0  auto;
}

.navlinks a{
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    transition: 0.3s all ease-in-out;
    
}

.navlinks a:hover{
    color: #08e77f;
}


/* Hamburger Styling */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

header{
    position: sticky;
    top: 0px;
    z-index: 999;
}

.contact-text{
    margin: 60px auto;
    margin-bottom: 20px;
    text-align: center;
}

h2{
    font-size: 2rem;
     color: #08e77f;
}

.contact-container{
    width: 350px;
    background-color: rgb(48, 47, 47);
    padding: 20px;
    margin: 60px auto;
    margin-bottom: 0px;
    justify-content: space-between;
    text-align: center;
    
}

.contact-container input{
    outline: none;
    padding: 12px 38px;
    margin-top: 10px;
    width: 100%;
   
   
}

.contact-container input:hover, .contact-container textarea:hover{
     border: 2px solid #08e77f;

}


.input-control .error {
    color: #ff0000;
    font-size: 1rem;
}


.contact-container textarea{
    outline: none;
    padding: 16px 35px;
    margin-top: 10px;
    width: 100%;
    font-size: 1rem;
    
}

.contact-container button{
    width: 100%;
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    background-color: #08e77f;
    transition: 0.2s step-end;
}

.contact-container button:hover{
    background-color: #fff;
}


/* Footer */

.footer-container{
    margin-top: 60px;
    background-color: rgba(248, 244, 244, 0.1);
    padding: 10px;
}

.footer-container img{
    width: 300px;
    height: auto;
    margin-left: 400px;
   
}

.footer-links-container{
    margin: 20px auto;
    justify-content: center;
    align-content: center;
}

.footer-links,.social-links{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 40px;
    justify-content: center;
}

.footer-links a{
    text-decoration: none;
    color: #fff;
}

h4{
    font-size: 1.5rem;
    text-align: center;
    
}

.social-links svg{
    color: #fff;
    width: 50px;
    height: auto;
    
}

.social-links svg:hover{
    color: darkblue;
    background-color: #fff;
}



    @media (min-width: 320px) and (max-width: 480px){
        /* body */
    body{
    max-width: 480px;
    overflow-x: hidden;
    overflow-y: auto;
}

html{
    font-size: 1rem;

}


/* Hamburger menu */

    .hamburger { display: flex; }

    .navlinks {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: black;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    .navlinks.active {
        display: flex; /* Show when 'active' class is toggled */
    }



.contact-container{
    width: 300px;
    
}

.footer-container img{
    width: 100%;
    height: auto;
    margin: 0 auto;
   
}

    }