/* Global Styles */
:root {
    --primary-color: #aaceee;
    --secondary-color: #00BFFF;
    --font-family: 'Poppins', Arial, sans-serif;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --background-color: white;
    --text-color: #333;
    --white: #fff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    scroll-behavior: smooth;
    background: var(--background-color);
    color: var(--text-color);
}




/* New Header Section */
header {
    display: flex;
    top: -50px;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: var(--white);
    position: relative;
    overflow: hidden;
}



.header-container {
    position: relative;
    text-align: center;
}



.header-center {
    position: relative;
    z-index: 2;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

    .language-switcher select {
        padding: 8px 12px;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: var(--white);
        color: var(--text-color);
        cursor: pointer;
    }

        .language-switcher select:hover {
            border-color: var(--primary-color);
        }

    .cta-button {
        margin-top: 20px;
        padding: 12px 25px;
        font-size: 1.1rem;
        color: var(--white);
        background: var(--primary-color);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 10px; /* Space between buttons */
    }

        .cta-button:last-child {
            margin-right: 0; /* Remove margin for the last button */
        }

        .cta-button:hover {
            background: #fe7768;
            transform: scale(1.05);
        }

    .header-center .logo {
        height: 200px;
        margin-bottom: 0px;
    }

    .header-center .header-text h1 {
        font-size: 2.5rem;
        margin: 0;
        color: #fe7768;
    }

    .header-center .header-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 10px auto 0;
    }

.header-images {
    --box-shadow: 0 position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .header-images img {
        position: absolute;
        width: 450px; /* Adjust size as needed */
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        animation-duration: 1s;
        animation-fill-mode: both;
        animation: sway 6s infinite ease-in-out
    }

    .header-images .image-1 {
        top: -40%;
        left: -40%;
        animation-delay: 0.2s;
    }

    .header-images .image-2 {
        width:500px;
        top: 25%;
        left: -85%;
        animation-delay: 0.4s;
    }

    .header-images .image-3 {
        top: 100%;
        left: -40%;
        animation-delay: 0.6s;
    }

    .header-images .image-4 {
        top: -40%;
        right: -40%;
        animation-delay: 0.8s;
    }

    .header-images .image-5 {
        top: 25%;
        width: 500px;
        right: -85%;
        animation-delay: 1s;
    }

    .header-images .image-6 {
        top: 100%;
        right: -40%;
        animation-delay: 1.2s;
    }

/* Sway Animation */
@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Hide images on mobile devices */
@media (max-width: 768px) {
    .header-images {
        display: none;
    }

    header {
        height: auto; /* Adjust height for mobile */
        padding: 20px 10px; /* Reduce padding */
    }

    .header-center .logo {
        height: 150px; /* Reduce logo size */
    }

    .header-center .header-text h1 {
        font-size: 2rem; /* Reduce heading size */
    }

    .header-center .header-text p {
        font-size: 1rem; /* Reduce paragraph size */
    }

    .cta-button {
        width: 100%; /* Make buttons full width */
        margin: 10px 0; /* Adjust button margins */
    }
}



/* Intro Section */
.intro {
    padding: 40px 15px;
    text-align: center;
    background: var(--white);
}

    .intro h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--primary-color);
        font-weight: 600;
    }

    .intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }
/* Video Container */
.video-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

    .video-container video {
        width: 100%;
        border-radius: 10px;
    }

/* Slider */
.slider {
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

    .slide img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .slide img:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

    .slider button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

    footer a {
        color: var(--white);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        footer a:hover {
            opacity: 0.8;
        }

/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    #overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    #overlay .close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
    }

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

    .contact-form h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-color);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-family);
        font-size: 1rem;
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

.g-recaptcha {
    margin-bottom: 20px;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .submit-button:hover {
        background: #fe7768;
        transform: scale(1.05);
    }

    .submit-button:disabled {
        background: #cccccc;
        cursor: not-allowed;
    }

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
