/* General styles */
body {
    font-family: Arial, sans-serif;
    width:100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #e9c48dbb;
    overflow-x: hidden;
    /* Hide horizontal scrollbar */
    overflow-y: auto;
    /* Allow vertical scrolling */
    background-image: url('img/gravel2.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Makes the background image static */

}

/*Disabling horizontal scrolling in smaller screens*/
head,
body {
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: rgb(195, 181, 155);
    /* Your specified color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    /* White text for contrast */
    font-size: 24px;
    font-weight: bold;
    margin-left: 5px;
}

.logo img {
    height: 170px;
    width: 400px;
    margin-top: 2.5rem;
    margin-left: -40px;
}

/* General styles for navigation bar*/
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a:hover {
    color: #000;
    /* Slightly lighter shade of your color for hover effect */
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    /* White text */
    font-size: 18px;
    padding: 5px 0;
    position: relative;
}

/* Hover Effect: Adds an underline */
nav ul li a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #000;
    /* Underline color */
    transition: width 0.3s ease;
}

/* Ensure hover effect works smoothly */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

/*underlines the services link in the services page*/
nav ul li a.active-page {
    color: rgb(12, 139, 0) !important;
}

nav ul li a.active-page::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: rgb(12, 139, 0);
    /* Same as text color */
    transition: width 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgb(195, 181, 155);
        z-index: 1000;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav.active {
        display: block;
    }

    .logo img {
        height: 100px;
        width: 280px;

    }
}


/* Footer Section Styling */
.footer-section {
    background-color: rgb(195, 181, 155);
    padding: 10px 0;
    display: 20px;
    /* Make the footer columns grow horizontally */
    width: 100%;
    margin-left: 0;
    margin-top: -30px;
}

/* Style the footer container */
.footer-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Style the footer columns */
.footer-column {
    flex: 1;
    /* Make each column occupy 1/4th of the available space */
    padding: 10px;
    text-align: left;
    margin-left: 0;
    margin-bottom: 20px;
}

/* Style the footer headings (h6) */
.footer-column h6 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #5c471b;
}

/* Style the footer links */
.footer-column ul {
    list-style: none;
    padding: 0;

}

.footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-column ul li a {
    text-decoration: none;
    color: #5c471b;

}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration-line: underline;
}

/* Style the social links */
.social-links {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.social-links li {
    margin-right: 0px;
    margin-bottom: 5px;
}

.social-links li a {
    color: #333;
}

.social-links li a i {
    font-size: 20px;
    margin-left: -15px;
}

/* Style the feedback form */
.footer-column form {
    margin-top: 10px;
}

.footer-column form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    resize: none;
}

.footer-column form button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.footer-column form button:hover {
    background-color: #0067cc;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        text-align: left;
    }

    .footer-column {
        margin-left: 20px;
    }
    
     .social-links li a i {
        margin-left: 5px;
    }
}


/* ------END OF HEADER AND FOOTER STYLING THAT SHOULD BE SIMILAR IN ALL WEB PAGES------  */




/* Hero Section */
.hero {
    height: auto;
    /* Allow height to adjust based on content */
    min-height: 500px;
    /* Set a minimum height */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0px;
    /* Reduced padding */
    width: 100%;
    /* Ensure it takes full width */
    margin-left: 0;
    /* Remove negative margin */
    overflow: hidden;
    /* Prevent overflow */
}

.hero h1 {
    color: rgb(116, 85, 28);
    font-size: 56px;
    margin: 20px 0;
}

.hero p {
    font-size: 18px;
    color: #5c471b;
    margin: 10px 0;
}

.hero button {
    background-color: rgb(195, 181, 155);
    /* Light brown button background */
    color: #fff;
    /* White text */
    padding: 15px 25px;
    /* Button padding */
    border: none;
    font-size: 16px;
    /* Button font size */
    cursor: pointer;
    border-radius: 20px;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero button:hover {
    background-color: #d1c6a1;
    color: #000;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height for desktop view */
    overflow: hidden;
    /* Hide overflow */
    margin-top: 0;
    /* Remove negative margin */
    margin-left: 0px;
}

.slide {
    flex: 0 0 100%;
    /* Each slide takes 100% of the container's width */
    width: 100%;
    height: 600px;
    /* Ensure slides fill the container height */
    display: flex;
    /* Ensures images align horizontally */
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.slide img {
    max-width: 100%;
    /*max-height: 100%;*/
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    /* Ensure images fill the container */
    /*object-fit: cover;*/
    /* Maintain aspect ratio while covering the container */
}


.slide video {
    /*max-height: 100%;*/
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin:auto;
}


.overlay-text {
    position: absolute;
    top: 30%;
    left: 10%;
    color: white;
    font-size: 2rem;
    background: rgba(165, 165, 165, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    animation: slideInText 1s ease forwards;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);



}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Navigation Buttons for Slideshow */
.navpic {
    transform: translateY(-100%);
    /* Position buttons above the slideshow */
    z-index: 10;
    /* Ensure buttons are above the images */
    margin-bottom: -30px;
    /* Adjust vertical position */
}

.navpic button {
    background-color: rgb(236, 211, 164);
    /* Light brown button background */
    color: rgb(167, 93, 93);
    /* Dark brown text */
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 20px;
    margin: 8px;
    /* Space between buttons */
    margin-top: -20px;
    /* Adjust vertical position */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

.navpic button:hover {
    background-color: rgba(228, 141, 59, 0.8);
    /* Darker shade on hover */
}


@media (max-width: 768px) {
    .overlay-text {
        font-size: 1.2rem;
        left: 5%;
        top: 25%;
        padding: 6px 12px;
    }
}




/* Legal Section */
.legal-section {
    padding: 40px 20px;
    /* Add padding around the section */
    background-color: #e9c48dbb;
    /* Light brown background */
    text-align: center;
    /* Center-align content */
    margin-top: -50px;
}

.legal-section h1 {
    color: rgb(116, 85, 28);
    /* Dark brown heading color */
    font-size: 56px;
    /* Large font size for desktop */
    margin: 20px 0;
    /* Adjust margins */
}

.legal-section p {
    font-size: 18px;
    /* Medium font size for desktop */
    color: #5c471b;
    /* Dark brown paragraph text */
    margin: 10px 0;
    /* Adjust margins */
}

.legal-section button {
    background-color: rgb(195, 181, 155);
    /* Light brown button background */
    color: #fff;
    /* White text */
    padding: 15px 25px;
    /* Button padding */
    border: none;
    font-size: 16px;
    /* Button font size */
    cursor: pointer;
    border-radius: 20px;
    /* Rounded corners */
    margin-top: 30px;
    /* Space above the button */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
}

.legal-section button:hover {
    background-color: #d1c6a1;
    /* Lighter shade on hover */
    color: #000;
    /* Darker text on hover */
}

/* Info Boxes Section */
.info-boxes {
    display: flex;
    justify-content: space-between;
    /* Space out the boxes evenly */
    align-items: center;
    /* Center align content vertically */
    padding: 40px 20px;
    /* Add padding around the section */
    background-color: transparent;
    /* Transparent background */
}

/* Individual Box Styling */
.box {
    flex: 1;
    /* Ensure boxes are of equal width */
    margin: 0 10px;
    /* Add spacing between the boxes */
    padding: 20px;
    text-align: center;
    /* Center the text inside each box */
    background-color: rgba(255, 255, 255, 0.205);
    /* Semi-transparent background */
    color: #fff;
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

.box h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5c471b;
    /* Dark brown heading text */
}

.box p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #5c471b;
    /* Dark brown paragraph text */
}

/* Hover Effects for the Boxes */
.box:hover {
    transform: translateY(-5px);
    /* Slight upward movement */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* More prominent shadow on hover */
}

/* Responsiveness for Smaller Screens */
@media (max-width: 768px) {
    .hero {
        margin-right: 0;
        /* Remove negative margin */
        padding: 20px 0px;
        /* Adjust padding for smaller screens */
    }

    .hero h1 {
        font-size: 42px;
        /* Reduce font size for smaller screens */
    }

    .hero p {
        font-size: 16px;
        /* Reduce font size for smaller screens */
    }

    .slideshow-container {
        width: 100vw;           /* Full viewport width */
        margin-left: calc(-50vw + 50%); /* Center-align if parent has padding */
        height: 300px;          /* Adjusted height for mobile */
        overflow: visible;      /* Allow content to be fully visible */
        position: relative;
    }

   .slide {
    width: 100% !important;
    max-width: 100vw;
    height: auto; /* Let height adjust naturally */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .slide img,
  .slide video {
    max-width: 100%;
    width: 100%;
    height: auto; /* Preserve aspect ratio */
    display: block;
    margin: 0 auto;
    
  }

  /* If you are using a container for the media */
  .slide-media {
    width: 100%;
  }
    
    
    /* Fix for overlay text positioning */
    .overlay-text {
        left: 5%;
        right: 5%;
        width: 90%;            /* Constrain width with margins */
        font-size: 1.2rem;
        text-align: center;    /* Center text for better mobile display */
    }
    
    

    .legal-section {
        margin-top: -200px;
    }

    .legal-section h1 {
        font-size: 42px;
        /* Reduce font size for smaller screens */
    }

    .legal-section p {
        font-size: 16px;
        /* Reduce font size for smaller screens */
    }

    .info-boxes {
        flex-direction: column;
        /* Stack boxes vertically */
        align-items: center;
        /* Center align vertically stacked boxes */
        margin-bottom: -65px;
        /* Adjust margin */
    }

    .box {
        width: 90%;
        /* Reduce width for better spacing */
        margin: 10px 0;
        /* Adjust margin for stacked layout */
    }
}




/*styling for about section*/
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 20px;
}

.content {
    flex: 1;
    padding-right: 20px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.learn-btn {
    background-color: rgb(195, 181, 155);
    /* Light brown button background */
    color: #fff;
    /* White text */
    padding: 15px 25px;
    /* Button padding */
    border: none;
    font-size: 16px;
    /* Button font size */
    cursor: pointer;
    border-radius: 20px;
    /* Rounded corners */
    margin-top: 30px;
    /* Space above the button */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-btn:hover {
    background-color: #d1c6a1;
    /* Lighter shade on hover */
    color: #000;
    /* Darker text on hover */
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        /* Stack content vertically */
        padding: 30px;
        /* Reduce padding for smaller screens */
        gap: 10px;
        /* Reduce gap between elements */
        margin-left: -20px;
    }

    .content {
        padding-right: 0;
        /* Remove right padding */
        text-align: center;
        /* Center-align text */
        order: 1;
        /* Ensure content appears first */
    }

    .image {
        order: 2;
        /* Ensure image appears after content */
        margin-top: 20px;
        /* Add spacing between content and image */
    }
}





/*mission and vision section*/

.mission-vision-section {
    background-color: #e9c48dbb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
}

.image-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.image-container .image1 {
    max-width: 400px;
    /* Larger size for Image 1 */
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    /* Send Image 1 to the back */
}

.image-container .image2 {
    height: 250px;
    width: 200px;
    /* Smaller size for Image 2 */
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50px;
    /* Adjust overlap */
    left: 50px;
    /* Adjust horizontal positioning */
    z-index: 2;
    /* Bring Image 2 to the front */
    margin-left: 16rem;
    top: -20px;
    margin-top: 3rem;

}

.content {
    flex: 1;
    padding-left: 20px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(116, 85, 28);
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    color: #5c471b;
}

/* Mobile Responsiveness for mission vision section*/
@media (max-width: 768px) {
    .mission-vision-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .content {
        order: 1;
        /* Keep content first */
        width: 90%;
        padding-left: 0;
    }

    .image-container {
        order: 2;
        /* Move images below content */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
        margin-top: 20px;
        /* Add space above images */
    }

    .image-container .image1 {
        max-width: 80%;
        margin-left: -20px;
    }

    .image-container .image2 {
        height: 140px;
        width: 120px;
        left: auto;
        margin-top: 4rem;
        margin-left: 220px;
    }
}



/* customization of the Legal Section */
.Legal {
    height: auto;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.Legal h2 {
    color: rgb(116, 85, 28);
    font-size: 45px;
    margin-bottom: 10px;
}

.Legal p {
    font-size: 18px;
    color: #5c471b;
    margin-top: 20px;
    margin-bottom: 60px;
}

.legalcontainer {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    justify-content: space-evenly;
    /* Ensure all cards fit on the same row */
    align-items: stretch;
    /* Ensure all cards have equal height */
    margin: 0 auto;
    /* Center container within its parent */
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.card {
    background-color: rgba(255, 255, 255, 0.205);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    color: #856728;
    font-family: monospace;
    /*find a suitable font for the heading*/
    font-size: 1.5em;
    margin: 15px 0;
}

.card p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #050505;
    font-size: 1em;
    padding: 0 15px 20px;
    line-height: 1.5;
    flex-grow: 1;
    /* Ensure all paragraphs expand equally */
}

.card:hover {
    transform: translateY(-5px);
    /* Slight upward movement */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* More prominent shadow on hover */
}

.explore-button {
    background-color: rgb(195, 181, 155);
    /* Light brown button background */
    color: #fff;
    /* White text */
    padding: 15px 25px;
    /* Button padding */
    border: none;
    font-size: 16px;
    /* Button font size */
    cursor: pointer;
    border-radius: 20px;
    /* Rounded corners */
    margin-top: 30px;
    /* Space above the button */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
}

.explore-button:hover {
    background-color: #d1c6a1;
    /* Lighter shade on hover */
    color: #000;
    /* Darker text on hover */
}

/* responsivness for legal section */
@media (max-width: 1024px) {
    .legalcontainer {
        flex-wrap: wrap;
        /* Allow wrapping */
        justify-content: center;
        /* Center the cards */
    }

    .card {
        width: 45%;
        /* Ensure two cards per row */
    }
}

@media (max-width: 768px) {
    .legalcontainer {
        flex-direction: column;
        /* Stack all cards in a single column */
        align-items: center;
    }

    .card {
        width: 82%;
        /* Take up most of the screen width for readability */
    }
}





/*Our gallery section*/
.gallery-section {
    background-color: #e9c48dbb;
    text-align: center;
    padding: 20px;
}

.gallery-section h4 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #5c471b;
}

.description-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.description-container p {
    font-size: 1.2em;
    margin: 0;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.image-container {
    position: relative;
    width: 400px;
    /* size of images*/
    height: 300px;
    /* size of images*/
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-section .explore-button {
    background-color: #9dc3ec;
    color: #5c471b;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;

}

.gallery-section .explore-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    color: #ffffff;
    font-weight: bold;
}

.gallery-section .explore-button:active {
    background-color: #165194d0;
    transform: scale(0.98);
}

@media (max-width: 1024px) {
    .gallery {
        flex-wrap: wrap;
        /* Allow images to wrap */
        justify-content: center;
    }

    .image-container {
        width: 45%;
        /* Display two images per row */
        height: auto;
    }
}

@media (max-width: 768px) {
    .description-container {
        flex-direction: column;
        text-align: center;
    }

    .gallery {
        flex-direction: column;
        /* Stack images in a single column */
        align-items: center;
    }

    .image-container {
        width: 90%;
        /* Make images take up most of the screen width */
    }

    .gallery-section h4 {
        font-size: 32px;
        /* Reduce heading size */
    }

    .description-container p {
        font-size: 1em;
        /* Adjust paragraph font size */
    }

    .gallery-section .explore-button {
        width: 80%;
        /* Adjust button width */
    }
}






/*styling of the FAQ section*/
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #e9c48dbb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.faq-section h5 {
    text-align: center;
    color: #5c471b;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question p {
    font-size: 18px;
    margin: 0;
    color: #9b632f;
}

.toggle-btn {
    font-size: 24px;
    font-weight: bold;
    color: #5c471b;
    cursor: pointer;
    transition: transform 0.2s;
}

.toggle-btn.active {
    transform: rotate(45deg);
    /* Rotate "+" into "×" */
}

.faq-answer {
    display: none;
    /* Hide answers by default */
    margin-top: 10px;
    padding-left: 20px;
    color: #2b2a2a;
    font-size: 16px;
    line-height: 1.5;
}




/* This section styles the Yonga Odhiambo background image */
.YO-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    z-index: 1;
}

/* ✅ Background image layer (acts like video background) */
.YO-section::before {
    content: '';
    position: absolute;
    /* keeps background static while scrolling */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('img/videoframe_8280.png');
    /* replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: zoomEffect 3s infinite alternate ease-in-out;
    /* optional zoom */
}

/* ✅ Optional overlay to improve text contrast */
.YO-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* ✅ Zoom animation effect (optional, remove if you want a pure static image) */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* ✅ Branding Text Styling */
.large-YO {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 200px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 50px;
    bottom: 0;
    opacity: 0.07;
    z-index: 1;
}

/* Responsive control */
@media (min-width: 768px) {
    .large-YO {
        display: flex;
    }
}

/*survey*/
/* Popup Styles */
.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.popup-content {
    background-color: rgb(236, 211, 164);
    padding: 20px;
    border-radius: 8px;
    width: 600px;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #000;
}

#surveyContent label {
    display: block;
    /* Ensure labels are on their own line */
    margin-bottom: 10px;
    /* Add spacing between questions */
    font-weight: bold;
    /* Make questions stand out */
    color: rgb(116, 85, 28);
}

#surveyContent input {
    width: 95%;
    /* Make input fields full width */
    padding: 8px;
    /* Add padding for better appearance */
    margin-bottom: 15px;
    /* Add spacing between inputs */
}

#surveyContent button {
    background-color: rgb(116, 85, 28);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#surveyContent button:hover {
    background-color: green;
}