.contact-section {
    background-color: #f9f3e4; /* Matches your theme */
    color: #5a3921;
    padding: 70px 0;
}

.contact-box {
    display: flex;
    width: 90%;
    max-width: 1000px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-video {
    flex: 0.4; /* 40% width */
    min-width: 40%;
}

.video-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 0.6; /* 60% width */
    min-width: 60%;
    padding: 30px; /* Increased padding */
}


/* Form Field Styling */
.form-control {
    border: 2px solid #c49a6c;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #a57b54;
    box-shadow: 0 0 5px rgba(164, 123, 84, 0.5);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }
    .dis-none{
        display:none;
    }

    .contact-video, .contact-form {
        min-width: 100%;
    }

    .video-fluid {
        height: 250px;
    }
}
