/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #f5fdf7;
    color: #355e3b;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-around;
    padding: 20px 10%;
    background: #d6f5d6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .welcome-title {
    flex-grow: 1;
    text-align: center;
}

.image-container-about{
    display: flex;
    flex-direction: row;
}
.logo img {
    width: 30%;
}

.navbar {
    width: 100%; /* Ensure navbar takes full width */
}

.menu {
    display: flex;
    justify-content: space-evenly; 
    width: 100%; 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.menu a {
    color: #355e3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 15px; /* Add equal padding around each link */
    white-space: nowrap; /* Prevent text wrapping */
}

.menu a:hover {
    color: #6ab04c;
}

/* For mobile menu (hamburger) */
.menu-toggle {
    display: none; /* Hide checkbox */
}

.menu-icon {
    display: none; /* Initially hidden for desktop */
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}


/* Hero Section */
#hero {
    background: linear-gradient(to bottom right, #d6f5d6, #f5fdf7);
    text-align: center;
    padding: 100px 10%;
}

#hero h1 {
    font-size: 3rem;
    color: #2e7d32;
}

#hero p {
    margin-top: 20px;
    font-size: 1.4rem;
    color: #4caf50;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #6ab04c;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.btn:hover {
    background: #4caf50;
}

/* Main Section */
main {
    padding: 40px;
}

/* About Section */
.about {
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about h2 {
    font-size: 2rem;
    color: #4e2a84;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Mission, Vision, and Values Section */
.mission {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.mission .misvis {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* Mission Card */
.mission-card, .vision-card, .values-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1; /* Ensures the card takes equal space */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.mission-card:hover, .vision-card:hover, .values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.mission-card h3, .vision-card h3, .values-card h3 {
    font-size: 1.75rem;
    color: #4e2a84;
    margin-bottom: 15px;
}

.mission-card p, .vision-card p, .values-card p {
    font-size: 1rem;
    color: #555;
}

/* Values Section */
.values {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.values h3 {
    font-size: 1.75rem;
    color: #4e2a84;
    margin-bottom: 15px;
}

.values p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Values List Styling */
.values p ul {
    list-style: none;
    padding-left: 0;
}

.values p ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

.values p ul li::before {
    content: '✔️';
    margin-right: 10px;
    color: #6ab04c;
}


/* Services Section - Updated for 3-column cards */
.services {
    margin-top: 40px;
    padding: 0 5%;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: #4e2a84;
    margin-bottom: 30px;
}

.services > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offerings-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.offer-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card-content {
    padding: 20px;
}

.offer-card h4 {
    font-size: 1.3rem;
    color: #6ab04c;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.learn{
    text-align: center;
}
.learn p{
    margin-bottom: 20px;
}
.learn a {
    background: #6ab04c;
    color: #ffffff;
    border: none;
    padding: 10px;
    margin-top: 30px;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
}

.learn a:hover {
    background: #4caf50;
}

/* Footer */
footer {
    margin-top: 50px;
    background: #d6f5d6;
    padding: 20px;
    font-size: 0.9rem;
    color: #355e3b;
}

.footer a{
    text-decoration: none;
    color: #4caf50;
    font-weight: bolder;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}

footer .footer-bottom {
    text-align: center;
}
