/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.containerHeader {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 85px;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

/* Contact Page Layout */
.contact-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    height: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Left Side: Video / Image */
.contact-media {
    width: 50%;
    position: relative;
}

.bg-video, .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Side: Contact Content */
.contact-content {
    width: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1f4068;
}

.contact-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-btn {
    background: #0047cc;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #0033a0;
}

/* Contact Form Popup */
.contact-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Show popup when active */
.contact-form-overlay.active {
    display: flex;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 50px;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #333;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.send-btn {
    background: #0047cc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
}

.send-btn:hover {
    background: #0033a0;
}

.close-btn {
    background: #ff3333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
}

.close-btn:hover {
    background: #d72f2f;
}


/* PopUp Contact form */

/* Toast Notification Styling */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.toast-message {
    background-color: #0047cc;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}






/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }
    .contact-media {
        width: 100%;
        height: 250px;
    }
    .contact-content {
        width: 100%;
    }
}
