@font-face {
    font-family: "Avenir Roman";
    src: url("fonts/Avenir-Roman.woff2") format("woff2"),
         url("fonts/Avenir-Roman.woff") format("woff"),
         url("fonts/Avenir-Roman.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Avenir Roman", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Full Page Scrollability */
html, body {
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto; /* Enables full-page scrolling */
    background: #f8f8f8;
}

/* Main Layout */
.container {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
}

/* Left Section (Text Content) */
.left-section {
    width: 30%;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    overflow-y: auto; /* Allows scrolling */
}

/* Logo */
.logo-container {
    margin-top: 80px; /* Adjusted for better alignment */
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container img {
    width: 60%;
    max-width: 260px;
    height: auto;
}

/* Text Content */
.text-content {
    margin-top: 180px; /* Ensures space below the logo */
    width: 62%;
}

.text-content p {
    font-size: 18px;  
    color: #333;
    line-height: 1.4;
    font-weight: normal;
}

/* Contact Section */
.contact-container {
    margin-top: auto;
    margin-bottom: 20px;
    text-align: center;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Right Section (Video Background) */
.right-section {
    width: 70%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
}

.right-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🛠️ Ensuring Both Sections Scroll Together */
.left-section, .right-section {
    height: auto;
    min-height: 100vh;
    overflow-y: auto; /* Allows vertical scrolling for both */
}

/* Hide Scrollbars for Clean Look */
.left-section::-webkit-scrollbar,
.right-section::-webkit-scrollbar {
    display: none;
}

/* 🖥️ Responsive Design */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .logo-container {
        margin-top: 40px;
    }

 

    .contact-container {
        margin-bottom: 10px;
    }

    .right-section {
        width: 100%;
        height: 50vh;
    }

    .right-section video {
        height: 100%;
    }
}

/* Mobile Devices (600px and below) */
@media (max-width: 600px) {
    .left-section {
        padding: 20px;
        height: auto;
        width: 100%;
    }

    .logo-container img {
        width: 60%;
        max-width: 280px;
    }

    .text-content {
        margin-top: 15px;
    }

    .text-content p {
        font-size: 13px;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    .social-icons a img {
        width: 28px;
        height: 28px;
    }

    .contact-container {
        margin-bottom: 10px;
    }

    .right-section {
        height: 40vh;
        width: 100%;
    }
}

/* 4K Screens (Ultra HD - 2560px and above) */
@media (min-width: 2560px) {
    .left-section {
        padding: 80px;
    }

    .text-content p {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    .social-icons a img {
        width: 40px;
        height: 40px;
    }
}
