@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;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.nav_links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.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: 20px;
    }

    .hamburger {
        display: flex;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Adjust styles for services section */
.services {
    padding: 40px 0;
}

.services-heading {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: x-large;
}

.services-heading h2 {
    color: rgb(14, 13, 13);
    text-decoration: underline;
    font-weight: 450;
    
}

.services-bg {
    background-color: #2E765E;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw; /* Ensure it covers the full viewport width */
    margin-left: calc(50% - 50vw); /* Center align the full width background */
    padding: 40px 40px;
}

.service-card {
    width: calc(32% - 40px); /* Adjust as needed */
    margin: 15px;
    background-color: #98D7C2;
    color: rgb(45, 38, 38);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
}

.services-card:hover{
    background-color: black;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    font-size: 16px;
    
}

/* Styling for icon font and image icon */
.service-card i,
.service-card img.service-icon {
    font-size: 2rem;
    color: #2E765E;
    margin-bottom: 15px;
}

.service-card img.service-icon {
    width: 50px; /* Adjust size as needed */
    height: auto;
    display: block; /* Ensures the image acts like a block-level element */
    margin: 0 auto 15px auto; /* Centers the image horizontally and adds margin-bottom */
}

@media (max-width: 1190px) {
    .service-card {
        width: calc(50% - 40px); /* Adjust as needed */
    }
}

@media (max-width: 720px) {
    .service-card {
        width: calc(100% - 40px); /* Adjust as needed */
    }

    .service-card img.service-icon {
        width: 40px; /* Adjust size for smaller screens */
        margin-bottom: 10px; /* Adjust margin for smaller screens */
    }
}

@media (max-width: 480px) {

    .service-card img.service-icon {
        width: 30px; /* Adjust size for smaller screens */
        margin-bottom: 8px; /* Adjust margin for smaller screens */
    }
}

/* About section */
.about {
    padding: 60px 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    flex-wrap: wrap;
    gap: 60px;
}

.about-photo {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 2;
    padding: 20px;
    text-align: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2E765E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.read-more-btn:hover {
    background-color: #25584E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }

    .about-text {
        padding: 10px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
    }

    .read-more-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* 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;
    }
}

 