
        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            background-color: #faf5ee;
        }
        nav {
            width: 50%; /* Narrower width */
            height: 28px;
            margin: 20px auto;
            padding: 15px; /* Reduced padding */
            display: flex;
            justify-content: space-around;
            align-items: center;
            position: fixed; /* Keep navbar fixed */
            top: 15px; /* Adjust position */
            left: 50%;
            transform: translateX(-50%); /* Center navbar horizontally */
            z-index: 1; /* Keep navbar on top */
        }
        nav a {
            text-decoration: none;
            color: #faf5ee;
            font-size: 14px; /* Smaller font */
            font-weight: 300; /* Thin font weight */
            transition: color 0.3s;
            text-transform: uppercase;
        }
        nav a:hover {
            color: #faf5ee; 
            text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8); /* White glow effect */
        }
        
        
        .image-section {
            position: fixed; /* Keeps it in place */
            top: 0;
            left: 0;
            width: 100%; /* Full width */
            height: 100vh; /* Full viewport height */
            background: url('assets/images/mt.jpg') no-repeat center center;
            background-size: cover; /* Ensures it covers the whole section */
            box-shadow: 
                inset 0px 50px 50px rgba(0, 0, 0, 0.5), 
                inset 0px -50px 50px rgba(0, 0, 0, 0.5);
            z-index: -1; /* Keeps it behind content */
        }

        /* Black overlay */
        .image-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Adjust transparency here */
        }

        /* Centered logo */
        .logo {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px; /* Adjust as needed */
            height: auto;
        }
        .content {
            margin-top: 35%; /* Offset to start below the fixed image */
            margin-bottom: -60px;
            background-color: #faf5ee;
            color: #1d503a;
            padding: 50px 10px;
            text-align: center;
            font-family:Arial, Helvetica, sans-serif;
            font:bold;
            font-size: 35px; /* Minimal font size for content */
            position: relative;
            z-index: 2; /* Content above the image */
                /* Glow Effect */
                box-shadow: 0 0 20px #fffbe0;; /*Slight green glow */
        }

 

    .rotating-section {
    background-color: #faf5ee;
    padding: 70px 0px; /* Reduced padding for tighter spacing */
    position: relative;
    overflow: hidden;
    z-index: 2; /* Keep above other sections */
    display: flex; /* Flexbox for side-by-side layout */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Align the content vertically */
    gap: 30px; /* Add spacing between the image and text */
}

.rotating-container {
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between text and image */
}

.offer-image {
    order: 1; /* Ensure the image comes first */
    flex: 1; /* Allow the image to take up equal space */
    text-align: left; /* Align image container to the left */
    position: absolute;
}

.offer-image img {
    width: 300px; /* Set image width */
    max-width: 100%; /* Ensure it remains responsive */
    border-radius: 10px; /* Optional: Rounded corners */
}

#rotating-text {
    font-size: 50px; /* Adjust size for better alignment */
    font-weight: bold;
    color:#1d503a;
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduce letter spacing */
    margin-top: 150px; /* Remove default margin */
    flex: 1; /* Allow text to take up equal space */
    text-align: left; /* Align text to the left */
    order: 2; /* Ensure the text comes second */
}

        
        
        .image-hover-section {
            background-color: #faf5ee;
            position: relative;
            display: flex;
            justify-content: space-around;
            padding-bottom: 100px ;
            z-index: 1;
        }
        
        .image-item {
            position: relative;
            width: 30%; /* Adjust the width of each image container */
            text-align: center;
        }
        
        .image-item img {
            width: 100%; /* Make the image fill the container */
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            transition: opacity 0.3s ease; /* Smooth transition on hover */
        }
        
        .image-text {
            position: absolute;
            bottom: 10px; /* Position the text above the image */
            left: 50%;
            transform: translateX(-50%);
            color: rgb(255, 255, 255);
            font-size: 20px;
            font-weight: bold;
            transition: opacity 0.3s ease;
        }
    
        
        .image-item:hover .image-text {
            opacity: 0; /* Hide the text when hovering over the image */
        }
        
        
        .client-section {
            width: 100%;
            overflow: hidden;
            background-color: #faf5ee;
            padding: 2rem 0;
          }
          
          .logo-track {
            display: flex;
            padding-left: 0%;
            width: max-content;
            animation: scrollLeft 70s linear infinite;
          }
          
          .logo-circle {
            flex: 0 0 auto;
            width: 170px;
            margin: 0 20px;
            text-align: center;

          }
          
          .logo-circle img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: contain;
            padding: 10px;
            background-color: white;
            /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
          }
          
          .logo-circle p {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color:#1d503a; 
          }
          
          @keyframes scrollLeft {
            0% {
              transform: translateX(0);
            }
            100% {
              transform: translateX(-50%);
            }
          }

        .slideshow-section {
            padding-top: 40px;
            padding-bottom: 100px;
            background-color: #faf5ee;
            /*padding: 30px 20px;*/
            text-align: center;
            position: relative;
            z-index: 3;
        }
        
        .slideshow-container {
            width: 90%;
            max-width: 2000px;
            margin: 0 auto;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
            position: relative;
        }
        
        .slide {
            display: none; /* Initially hide all slides */
            width: 100%;
            height: 450px;
            
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-container {
            background-color: #faf5ee;
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 10% 100px;
            align-items: center;
          }
          
          .youtube-video {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            z-index: 3;
          }
        
        /*.video-container {
            
            padding: 10px;
            border-radius: 0px;
            width: fit-content;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow for style
        }*/

        .footer {
            background-color: #1d503a; 
            padding: 40px 40px;
            text-align: center;
            position: relative;
        }
        
        .footer-text {
            font-size: 24px;
            color: #faf5ee;
            margin-bottom: 10px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .footer-text-2{
            font-size: 14px;
            color: #faf5ee;
            margin-bottom: 10px;
            text-transform: none;
        }
        
        .footer-icons {
            display: flex;
            justify-content: center;
            gap: 150px; /* Space between icons */
        }
        
        .footer-icons img {
            width: 25px; /* Icon size */
            height: 25px;
            transition: transform 0.3s ease; /* Smooth hover effect */
        }
        
        .footer-icons img:hover {
            transform: scale(1.2); /* Enlarge icon on hover */
            filter: drop-shadow(0 0 20px white); /* White glow effect */
        
        }

        .footer-icons-2 {
            display: flex;
            justify-content: center;
            gap: 40px; /* Space between icons */
        }
        
        .footer-icons-2 img {
            width: 15px; /* Icon size */
            height: 15px;
            transition: transform 0.3s ease; /* Smooth hover effect */
        }
        
        .footer-icons-2 img:hover {
            transform: scale(1.2); /* Enlarge icon on hover */
        }
        .footer-text-2 a {
            color: white;
            text-decoration: none; /* Optional: Removes underline */
        }

        
/* ===========================
   MOBILE STYLES (≤768px)
=========================== */
@media (max-width: 768px) {
    nav {
        width: 90%;
        height: auto;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        font-size: 12px;
    }

    .logo {
        width: 100px;
        top: 35%;
    }

    .content {
        font-size: 22px;
        padding: 100px 15px;
        margin-top: 90%;
    }

    .rotating-section {
        flex-direction: column;
        padding: 0px 5px;
        text-align: center;
    }

    .rotating-container {
        flex-direction: column;
        margin-top: 10;
        gap: 20px;
    }

    .offer-image {
        position: static;
        order: 0;
        text-align: center;
    }

    .offer-image img {
        width: 50%;
        max-width: 300px;
        height: auto;
    }

    #rotating-text {
        font-size: 26px;
        margin-top: 0;
        text-align: center;
        order: 1;
    }

    .image-hover-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px 60px;
    }

    .image-item {
        width: 90%;
        margin-bottom: 30px;
    }

    .client-section {
        padding: 1rem 0;
    }

    .logo-circle {
        width: 100px;
        margin: 0 10px;
    }

    .logo-circle img {
        width: 70px;
        height: 70px;
    }

    .video-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .slideshow-section {
        padding: 20px 10px 50px;
    }

    .slide {
        height: auto;
    }

    .slide img {
        height: auto;
        max-height: 250px;
    }

    .footer {
        padding: 25px 15px;
    }

    .footer-text {
        font-size: 18px;
    }

    .footer-text-2 {
        font-size: 12px;
    }

    .footer-icons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-icons img {
        width: 20px;
        height: 20px;
    }

    .footer-icons-2 {
        gap: 15px;
    }

    .footer-icons-2 img {
        width: 12px;
        height: 12px;
    }
}
