
body {
    margin: 0;
    padding: 0;
    /* font-family: 'Segoe UI', sans-serif; */
    height: 100vh;
    transition: all 0.5s ease-in-out;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;


    background: rgba(0, 0, 0, 0.134);
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    animation: fadeIn 1s ease-in-out;
}


.contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.contact-info h2,
.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #00c3ff;
}

.contact-form {
    flex: 1.5;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form h2 {
    color: white;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: black;
    transition: 0.3s;
}


.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    transform: scale(1.03);
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 8px #00c3ff;
    outline: none;
}


textarea {
    height: 120px;
    resize: vertical;
}


.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    background-color: #ffffff2f;
    backdrop-filter: blur(10px);
}



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(7, 6, 6);
    height: 80px;
    position: sticky;
    top: 0px;
    z-index: 99;
}
.logo img{
    height: 100px;
    width: 100px;
}
.ul ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;

}
.ul ul li{
    list-style: none;
    /* border-bottom: 2px solid rgb(255, 10, 10); */

}
.ul ul li a{
    text-decoration: none;
    font-size: 1.2em;
    color: rgb(188, 188, 188);
    text-transform: capitalize;
    border-bottom: 3px solid rgb(255, 0, 0);
    padding-bottom: 3px;
    display: block;
    width: 0%;
    transition: all 0.5s linear;
}
.ul ul li a:hover{
    color: rgb(255, 255, 255);
    border-bottom: 3px solid rgb(255, 0, 0);
    width: 100%;

}
.login button{
    padding: 8px 15px;
    margin-right: 50px;
    font-size: 1em;
    font-weight: 600;
    color: aliceblue;
    background-color: red;
    border: none;
    border-radius: 5px;
    transition: all 0.2s linear;
}
.login button a{
    color: aliceblue;
    text-decoration: none;
    
}
.login button:hover{
    background-color: rgba(255, 255, 255, 0.2);
}









@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        margin: 20px;
    }
}