@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%;
}



/* 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;
    }
}

/* 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: 28px;
    margin-bottom: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.underline-style {
    text-decoration: none; /* Remove default underline */
    position: relative; /* Create pseudo-element */
    margin-top: 20px;
}

.about-text p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .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;
    }
}





/* 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;
    }
}

/* Video Section */

.video-section {
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */

@media (max-width: 768px) {
    .nav_links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f9f9f9;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        text-align: center;
        z-index: 1;
        transition: transform 0.3s ease-in-out;
        transform: scaleY(0);
        transform-origin: top;
    }

    .nav_links.active {
        transform: scaleY(1);
    }

    .nav_links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Qualification section */
.qualification {
    padding: 50px 0;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.qualification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Adjust padding on the sides */
}

.qualification-text {
    max-width: 800px;
    text-align: left;
    padding-left: 10px; /* Reduce padding on the left side */
}

.qualification-photo img {
    width: 100%;
    height: auto;
    display: block; /* Ensures there is no extra space at the bottom of the image */
    margin-top: 140px;
    border-radius: 10px;
}



.qualification-text p {
    font-size: 18px; /* Increase font size of paragraph text */
    margin-bottom: 20px;
}

.qualification-text ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    text-align: justify; /* Justify content inside each li */
}

.qualification-text ul li {
    list-style-type: disc; /* Add bullets to list items */
    margin-bottom: 10px;
    font-size: 15px;
}

.about-heading {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    font-size: xx-large;
}

.about-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2E765E;
    position: absolute;
    bottom: -4px;
    left: 0;
}

/* Responsive Styles */
@media screen and (min-width: 1050px) {
    .qualification-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .qualification-text {
        width: 60%;
        margin-right: 20px;
        text-align: left;
        padding-left: 20px; /* Adjust padding for larger screens */
    }

    .qualification-photo {
        width: 35%;
    }
}

@media screen and (max-width: 768px) {
    .qualification-text {
        width: 100%;
        margin-right: 0;
        padding-left: 0; /* Reset padding for smaller screens */
    }

    .qualification-photo {
        width: 100%;
    }

    .qualification-photo img {
        margin-top: 20px;
    }

}

/* 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;
    }
}

