body {
    background-color: #fff;
    color: #090909;
    padding-top: 70px;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

li, a, button {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2%;
    background-color: #3f9d00;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    height: 75px;
    width: auto;
    cursor: pointer;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    display: inline-block;
    padding: 0 20px;
}

.nav-list li a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px; 
    width: 0;
    height: 2px;
    background: #52ffa6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-list li a:hover{
    color: #c4ffda;
}

.nav-list li a:hover::after {
    width: 100%;
}

.hero-image {
    justify-content: center;
    align-items: center;
    height: 70vh;
    min-height: 450px;
    max-height: 650px;
}

.hero-image img {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 15px;
    object-fit: cover;
}
.image img {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 30px;
}



.hero-text {
    position: absolute;
    max-width: 600px;
    color: #ffffff;
    width: 100%;
    display: block;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}


.hero-text h1 {
    font-size: clamp(36px, 5vw, 46px);
    line-height: 1.1;
    margin-bottom: 20px;
}


.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
    background-color: #52ffa6;
    border: none;
    padding: 10px 10px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px;
    position: absolute;
    margin-left: 40%;


}

.hero-button:hover {
    transition: 1s;
    cursor: pointer;
    background-color: #014e27;

}

.cards-section {
    padding: 80px 8%;
    background-color: #f4faf5;
    text-align: center;
}

.cards-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #1f3d1f;
}

/* CARD GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* INDIVIDUAL CARD */
.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2e5e2e;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
.about-content {
    padding: 40px 30px;
    text-align: left;
}
.about-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2e5e2e;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}