/* *{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins,sans-serif;
    text-decoration: none;
}
body{
    overflow-x: hidden;
    background: rgb(46, 46, 46);
}
.contactLable{
    font-size:   24px;
    font-weight: 500;
    color: black;
}
contact-me-body{
    background: rgb(234, 233, 233);
}
.contact-logo-text{
    font-size:   24px;
    font-weight: bold;
    color: rgb(5, 1, 91);
}
.contactLable{
    font-size:   18px;
    font-weight: bold;
    color: rgb(87, 86, 86);
}.wrapper{
    padding-top: 5%;
    align-items: center;
    justify-content: center;
}
.contact-form {
    width: 75vw; 
    max-width: 500px;
    min-width: 300px;  
    margin: 0 auto; 
    padding: 20px;
    border: 2px solid #c5c5c5bd; 
    border-radius: 10px;
    background-color: #d8d6d6; 
    box-shadow: 20px 3px 10px rgba(0, 0, 0, 0.1); 
} */

body {
    background: url('/images/contact_me.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-container {
    display: flex;
    width: 60%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.left-section {
    background: url('/images/contact_me.png') no-repeat center center fixed;
    width: 50%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.upload-box {
    width: 100%;
    padding: 20px;
    border: 2px dashed #007bff;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.upload-box:hover {
    background: #e9ecef;
}

.right-section {
    width: 60%;
    padding: 30px;
}

.contact-logo-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 10px;
}

.btn-primary {
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
}

.btn-primary:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        width: 90%;
    }

    .left-section, .right-section {
        width: 100%;
    }
}
.modal-content {
    background-color: white;
    color: red;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    margin: 15% auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}