/*Contact Form*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;

}
html{
    font-size: 72.5%;
}
body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    font-family:"Mulish",sans-serif;
    background-color: #000000;
}
.header_nav {
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%; /* Adjust padding here if needed */
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    filter: drop-shadow(10px);
}
.contact{
    height:100vh;
    display:flex;
    align-items: center;
    justify-content: space-evenly;
}
.contactl{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contactlt h2{
font-weight: 600;
color: #66fcf1;
font-size: 40px;
margin-bottom: 5px;

}
.contactlt hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #66fcf1;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height:50px;
    border:none;
    outline:none;
    padding-left:25px;
    font-weight:500;
    color:#666;
    border-radius: 50px;
    
}
.contact-inputs textarea{
    height: 140px;
    padding-top:15px;
    border-radius:20px;
}
.contact-inputs:focus{
    border:2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: lightgray;
}
.contact-inputs button1{
   /* display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color:#fff;
    gap:10px;
    border:none;
    border-radius:50px;
    background:linear-gradient(2700deg,#ff994f,fa6d86);
    cursor: pointer;
    z-index: 100;
   */
   display: inline-block;
    padding: 1rem 2.8rem;
    background-color: rgb(255, 255, 255);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #66fcf1;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #66fcf1;
    transition: 0.3s ease;
    cursor: pointer; 

}
.right-contact img{
   width: 750px;
}
@media(max-width:800px){
    .contact-inputs{
        width:80vw;
    }
    .right-contact{
        display: none;
    }
        
    
}
nav a {
    font-size: 1.8rem; /* Adjust font-size as desired */
    color: #ffffff;
    margin-left: 4rem; /* Adjust margin if needed */
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
    color: #66fcf1;
    border-bottom: 3px solid #66fcf1;
}
@media(max-width: 995px) {
    /* Styling the nav */
    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Initially hide it off-screen */
        width: 60%; /* Adjusted width for better visibility */
        height: 100vh; /* Full-screen height for better interaction */
        border-left: 3px solid #66fcf1;
        padding: 2rem 1rem;
        background-color: #000000; /* Background color for better contrast */
        transition: right 0.3s ease-in-out; /* Smooth slide-in effect */
        z-index: 1000; /* Ensure it appears on top */
    }

    /* Display the nav when active */
    nav.active {
        right: 0; /* Slide into view */
    }

    /* Styling for links */
    nav a {
        display: block;
        font-size: 2rem;
        margin: 2rem 0;
        color: #ffffff;
        text-align: left;
        padding: 0.5rem 1rem;
        transition: background-color 0.3s, transform 0.3s;
        border-radius: 0.5rem;
    }

    /* Link hover effect */
    nav a:hover,
    nav a.active {
        /*background-color: #66fcf1;*/
        color: #66fcf1;
        transform: translateX(10px);
    }

    /* Optional button or icon for toggling menu */
    .menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 3rem;
        color: #66fcf1;
        background-color: #000000;
        cursor: pointer;
        z-index: 1100;
    }
}
