/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    color: #263238;
    line-height: 1.6;
}

/* Navigation */
/* .navbar {
    background-color: #4caf4f;
    padding: 16px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1440px;
    height: 33px;
    margin: 0 auto;
    padding: 0 144px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 74px;
    width: 68px;
}


.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    color: #263238;
    font-weight: 500;
} */

.navbar {
    background-color: #4caf4f; /* Add your navbar background color */
    width: 100%;
}

.navbar-container {
    max-width: 1440px;
    height: 74px;
    margin: 0 auto;
    padding: 0 144px 0 0; /* No left padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -16px; 
}
.logo img {
    height: 74px;
    width: 68px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #fff; /* Adjust to your color */
    font-size: 16px;
}

.nav-link.active {
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-color: #f5f7fa;
    padding: 106px 144px;
    /* margin-top: 60px; */
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 104px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 76px;
    color: #4d4d4d;
}

.hero-title .highlight {
    color: #4caf4f;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #717171;
}

.btn-primary {
    background-color: #4caf4f;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #388e3b;
}

.hero-illustration img {
    width: 300px;
    height: 300px;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #4caf4f;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #717171;
    max-width: 1440px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 54px;
    max-width: 1152px;
    margin: 0 auto;
    /* padding: 0 144px; */
}

.services-grid-single {
    display: flex;
    justify-content: center;
    max-width: 1152px;
    margin: 0 auto;
    /* padding: 0 144px; */
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 24px 32px;
    box-shadow: 0px 2px 4px rgba(171, 190, 209, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 299px;
    text-align: center;
}

/* .service-text{
    text-align: start;
     align-items: center;
      display: flex;
} */
.service-icon {
    margin-bottom: 8px;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}

.service-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 36px;
    color: #4caf4f;
    margin-bottom: 8px;
}

.service-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #717171;
}

.team-image {
    margin-top: 40px;
}

.team-image img {
    width: 736px;
    height: 494px;
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #f5f7fa;
    padding: 64px 144px;
}

.vision-mission-container {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.vision-box,
.mission-box {
    background-color: #afe2b0;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
.nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #181717;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }
}

.vision-box {
    width: 461px;
}

.mission-box {
    width: 636px;
}

.box-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: white;
    text-align: center;
}

.box-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #455a64;
    text-align: center;
}

/* Goals Section */
.goals-section {
    background-color: #f0f0f0;
    padding: 40px 144px;
}

.goals-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
    margin-top: 16px;
}

.goal-card {
    background: white;
    border-radius: 8px;
    padding: 24px 32px;
    box-shadow: 0px 2px 4px rgba(171, 190, 209, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 299px;
    text-align: center;
}

.goal-icon {
    position: relative;
    width: 65px;
    height: 56px;
    margin-bottom: 8px;
}

.icon-bg {
    position: absolute;
    top: 7px;
    left: 15px;
    width: 50px;
    height: 49px;
    background-color: #e8f5e9;
    border-radius: 18px 5px 10px 5px;
    transform: rotate(180deg);
}


.goal-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    z-index: 1;
}

.icon-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
}

.goal-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #717171;
}

/* Team Section */
.team-section {
    background-color: #f5f7fa;
    padding: 64px 144px;
}

.team-container {
    max-width: 1152px;
    margin: 0 auto;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #4caf4f;
    margin-bottom: 0;
}

.team-role {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #717171;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #717171;
}

.team-bio p {
    margin-bottom: 16px;
}

.team-bio ul {
    list-style-position: inside;
    padding-left: 0;
}

.team-bio li {
    margin-bottom: 4px;
}

/* Contact Section */
.contact-section {
    background-color: #f5f7fa;
    padding: 64px 144px;
}

.contact-container {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    gap: 78px;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 32px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #717171;
}

.form-group input,
.form-group textarea {
    background-color: #d9d9d9;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
}

.form-group input {
    height: 51px;
}

.form-group textarea {
    height: 99px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 32px;
    height: 37px;
}

.contact-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: black;
}

/* Footer */
.footer {
    background-color: #4caf4f;
    padding: 24px 144px;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #f5f7fa;
}

/* About Section */
.About-section--updated {}
.about-section {
    background-color: #e6e6e6;
    padding: 80px 144px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Geometric Shape */
.geometric-shape {
    flex: 0 0 220px;
    width: 220px;
    height: 420px;
    position: relative;
}

.black-box {
    position: absolute;
    right: 0;
    top: 20px;
    width: 58%;
    height: 85%;
    background-color: #000000;
}

.green-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background-color: #4caf4f;
}

/* About Content */
.about-content {
    flex: 1;
    max-width: 720px;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #4caf4f;
    margin-bottom: 16px;
}

.about-text {
    font-size: 14px;
    line-height: 20px;
    color: #717171;
}

.about-text p {
    margin-bottom: 14px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.services-list {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.services-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 4px;
}

.services-list li::before {
    content: "• ";
    color: #717171;
}

/* Responsive tweaks for the About section */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 48px;
    }

    .about-container {
        gap: 24px;
    }

    .geometric-shape {
        flex-basis: 180px;
        width: 180px;
        height: 360px;
    }

    .black-box {
        width: 60%;
        height: 78%;
        top: 16px;
    }

    .green-bar {
        width: 55%;
    }

    .about-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 24px;
    }

    .about-container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 24px;
    }

    .geometric-shape {
        display: none;
    }

    .black-box,
    .green-bar {
        position: relative;
        width: 48%;
        height: 120px;
        display: inline-block;
        vertical-align: middle;
    }

    .black-box {
        margin-left: 40%;
        transform: translateX(-20%);
    }

    .green-bar {
        margin-right: 40%;
        transform: translateX(20%);
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-text,
    .services-list {
        font-size: 15px;
    }
}
.form-message {
  margin-top: 12px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  color: #2e7d32; /* green */
}

.form-message.error {
  color: #c62828; /* red */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-container,
    .hero-section,
    .services-section,
    .vision-mission-section,
    .goals-section,
    .team-section,
    .contact-section,
    .about-section,
    .footer {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-container {
        gap: 48px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        width: 100%;
    }

    .goals-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .service-card,
    .goal-card {
        width: 100%;
        max-width: 400px;
    }

    .team-image img {
        width: 100%;
        height: auto;
    }

    /* Ensure team bio text wraps properly on small screens */
    .team-bio {
        font-size: 15px;
        line-height: 1.6;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        white-space: normal;
    }

    .team-bio p,
    .team-bio ul,
    .team-bio li {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}