/* Contact Us Section */
.contact-main {
    padding-top: 100px;
    background: #e9f2f3;
}

/* Contact Container */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* Left Side - Content */
.contact-content {
    flex: 1;
    max-width: 50%;
}

.contact-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 18px;
    color: #1e1919;
    margin-bottom: 20px;
}
/* Right Side - Image */
.contact-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.contact-image img {
    width: 100%;
    border-radius: 70px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-content, .contact-image {
        max-width: 100%;
    }

    .contact-image img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .contact-image img {
        width: 100%;
    }
}
/* Wrapper to center the content */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Contact Form Container */
.container {
    display: flex;
    flex-wrap: wrap;
    background: url("../img/form.png") no-repeat center center/cover,
                linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    height: 70vh;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out forwards;
}

/* Contact Info */
.contact-info {
    width: 40%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-right: 20px;
}
.contact-info h2 {
    margin-bottom: 15px;
}
.contact-info p {
    margin-bottom: 10px;
}
.social-links {
    margin-top: 15px;
}
.social-links a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}
.social-links a:hover {
    color: #ff6600;
}

/* Contact Form */
.contact-form {
    width: 55%;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Input Fields */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    transition: 0.3s;
    font-size: 16px;
}
.contact-form input:focus, .contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid #6e8efb;
    transform: scale(1.02);
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #6e8efb;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}
.contact-form button:hover {
    background: #5a6fe1;
}
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        width: 90%;
        padding: 20px;
    }
    .contact-info, .contact-form {
        width: 100%;
        padding: 10px;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
