@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    min-height: 100vh;
}

header {
    width: 100%;
    background-color: #98D7C2;
    padding: 10px 0;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
}

.logo {
    width: 8.5rem; /* Size of the logo */
    height: auto; /* Maintain aspect ratio */
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

nav ul li {
    margin: 0 20px;
    font-weight: 300;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

nav ul li a.active, nav ul li a:hover {
    background: #2E765E;
    padding: .6rem .6rem;
    border-radius: 5px;
    color: #fff;
}

.btn{
    padding: .75rem 2.2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    background: #2E765E;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;

}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.content {
    margin-top: 20px; /* Adjust the margin as needed */
    padding: 0 2%;
    width: 100%;
}

.main-video {
    width: 100%;
    height: auto;
}

/* Add this at the end of your existing CSS */
@media (max-width: 1139px) {
    nav {
        padding: 0 5%;
    }

    .nav_links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #e8f5e9;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav_links.active {
        display: flex;
    }

    .nav_links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Happy Clients Section */

h2 {
    text-align: center;
    margin-bottom: 0; /* Removed bottom margin */
    padding-bottom: 20px; /* Added padding for slight spacing */
    margin-top: 25px; /* Removed top margin to reduce space between heading and navbar */
    font-size: xx-large;
}

.gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
}

.gallery {
    width: 100%;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-top: 0; /* Removed padding above the gallery */
}

.gallery div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 20px;
    padding: 10px;
    flex: none;
}

.gallery div img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.gallery::-webkit-scrollbar {
    display: none;
}

#backBtn, #nextBtn {
    width: 50px;
    cursor: pointer;
    margin: 0 20px; /* Adjusted margin for better spacing */
}

.gallery div img:hover {
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery div {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    #backBtn, #nextBtn {
        width: 40px;
        margin: 0 10px; /* Adjusted margin for better spacing on smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery div {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }

    #backBtn, #nextBtn {
        width: 30px;
        margin: 0 5px; /* Adjusted margin for better spacing on very small screens */
    }
}


/* Client Videos Section */
.h2 {
    font-size: xx-large;
    margin-bottom: 30px;
}

.video-section {
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow videos to wrap on smaller screens */
    width: 100%;
    padding: 10px; /* Add some padding to prevent the video from touching the edges */
    box-sizing: border-box;
}

.main-video {
    width: 100%;
    max-width: 300px; /* Set a maximum width for the first video */
    height: auto;
    object-fit: cover;
    margin: 10px; /* Add margin to separate the videos */
}

.main2-video {
    width: 100%;
    max-width: 250px; /* Set a maximum width for the second video */
    height: auto;
    object-fit: cover;
    margin: 10px; /* Add margin to separate the videos */
}

/* Responsive Design */

@media (max-width: 768px) {
    .main-video, .main2-video {
        max-width: 100%; /* Ensure both videos take full width on very small screens */
    }
}


/* Empowering section */
.empowering {
    padding: 50px 20px;
    background-color: #e8f5e9;
    text-align: center;
    width: 100vw; /* Ensure it covers the full viewport width */
    margin-left: calc(50% - 50vw); /* Center align the full width background */
    margin-bottom: 20px;

}

.empowering-content {
    max-width: 1000px;
    margin: 0 auto;
}

.empowering h2 {
    font-size: 32px;
    margin-bottom: 20px;
    white-space: normal; /* Allow the text to wrap normally */
     
}

.empowering p {
    font-size: 18px;
    margin-bottom: 20px;
}

.start-journey-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2E765E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.start-journey-btn:hover {
    background-color: #25584E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empowering h2 {
        font-size: 28px;
    }

    .empowering p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .empowering h2 {
        font-size: 24px;
    }

    .empowering p {
        font-size: 14px;
    }

    .start-journey-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Footer section */
.footer {
    background-color: #1A4314;
    color: white;
    padding: 40px 20px;
    width: 100vw; /* Ensure it covers the full viewport width */
    margin-left: calc(50% - 50vw); /* Center align the full width background */
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1;
    margin: 40px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.quick-links, .contact-info {
    list-style: none;
    padding: 0;
}

.quick-links li, .contact-info li {
    margin-bottom: 10px;
}

.quick-links a, .contact-info a {
    color: white;
    text-decoration: none;
}

.quick-links a:hover, .contact-info a:hover {
    text-decoration: underline;
}

.contact-info a {
    display: inline-block;
    margin-right: 10px;
}

.contact-info i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #98D7C2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

 