* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
}

body {
    margin: 0;
    padding: 0;
    background-color: #333;
    color: white;
    height: 100vh;
    


}
header {
    width: 100%;
    position: fixed;
    top:0;
    left:0;
    min-height: 70px;
    z-index: 1000;
    transition: background 0.3s ease;
    background: transparent;
    

    
     
}

html {
    scroll-behavior: smooth;
}
nav{
   padding:0;
   margin:0;
   z-index: inherit;
   background-color: #333;
}


nav ul {
    list-style-type: none;
    margin: 10px;
    padding: 10px;
    justify-content: space-around;
    gap: 15px;
    display: flex;




}

nav ul li {
    margin: 0;
    padding: 0;

}

nav ul li a {
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    font-size: 1.3rem;
    text-align: center;
    


}

/* Hover effect */
nav ul li a:hover {
    background: #00c8ff41;
    


}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 120px;
    font-size: 3rem;
    opacity:60%;
    
    

}


.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    gap: 20px;
    padding:40px;
    border-radius:10px;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.5);
    background: #222222a1;
    width:700px;
    
}

.contact-form button{
    padding:10px 30px;
    border-radius:15px;
    border:none;
    background-color: #00c8ff;
    color:rgba(255, 255, 255, 0.555);
    font-weight:bold;
    cursor:pointer;
    font-size:1.2rem;
}
input[type = 'text'],input[type = 'email'],textarea{
    width:500px;
    padding:20px;
    border-radius:15px;
    border:none;
    background-color: #333;
    color:white;
    margin:10px;
    transition:all 0.3s ease;
}
input[type = 'text']:focus,input[type = 'email']:focus,textarea:focus{
    outline:none;
    box-shadow: 0 0 10px #00c8ff;
    background-color: #444;
}
footer{
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 -10px 30px 0,0,0,0.0;
    margin-top:10px;
}
footer p{
    opacity: 0.8;
}
@media screen and (max-width: 768px){
    .contact-form{
        width:85%;
    }
    input[type = 'text'],input[type = 'email'],textarea{
        width:85%;
        
        
    }
    .contact {
        margin: 80px 20px;
        font-size: 2rem;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        background-color: #333;
    }
.navLinks {
    position: absolute;
    top:40px;
    margin:0;
    flex-direction: column;
    width: 100%;
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
    
}
.navLinks.active {
    display: flex;
    top:0px;
    position: relative;
    transition: all 0.3s ease;
    
}

@keyframes FadeIn {
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
    
}
    .hamburger{
        display: flex;
        flex-direction: column;
        gap:6px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top:10px;
        z-index: 2000;
        
    }
     .hamburger span{
       width:28px;
       height:3px;
       background-color: white;
       border-radius: 2px;
        transition: all 0.3s ease;
        
       
    }
    .hamburger.active span:first-child{
    
        transform: rotate(48deg) translate(7px, 7px);
    }
    .hamburger.active span:nth-child(2){
    
        opacity: 0;
    }
    .hamburger.active span:last-child{
        transform: rotate(-48deg) translate(6px, -6px);
    }
    
  
}

