/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
}

/* Parallax Video Section */
.parallax-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 3rem;
}
/* SVG Overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensure it sits above the video */
    cursor: pointer;
}
/* Full-Screen Video Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-video {
    width: 80%;
    height: auto; /* Adjust height based on the video's aspect ratio */
    max-width: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
/* Content Section */
.content-section {
    padding: 170px 10px;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333; /* Ensure consistent background color */
}

.navbar .logo {
    height: 90px; /* Ensure consistent logo height */
}

.navbar .navbar-links {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar .navbar-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 30px;
    font-size: 1.2em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.navbar .navbar-links a:hover {
    opacity: 1;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 10px;
    background: #333333dd;
    color: #fff;
    text-align: center;
}

.footer i {
    margin-right: 10px;
}

.footer p {
    margin: 0;
}

/* Social Media Icons */
.social-media-icons {
    position: fixed;
    top: 550px; /* Position above WhatsApp icon */
    right: 37px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.social-icon {
    margin-bottom: 6px;
    font-size: 2em;
    color: #fff;
    text-decoration: none;
}

.social-icon:hover {
    color: #010203;
}

.facebook-icon {
    color: #6b7046;
    opacity: 0.7;
}

.instagram-icon {
    color: #6b7046;
    opacity: 0.7;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 57px;
    height: 57px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-icon img {
    width: 27px;
    height: 27px;
}

.content-section {
    opacity: 0; /* Initially hide the content section */
    transition: opacity 1.5s ease-in; /* Duration and timing function for the fade-in effect */
}

.content-section.fade-in {
    opacity: 1; /* Make the content section visible */
}
