:root {
    --theme-color: #116E63;
}


/* General Layout */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #0d2d1f;
    color: #fff;
}

a {
    text-decoration: none;
}

header {
    background: linear-gradient(120deg, var(--theme-color), #0d2d1f);
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header h1 {
    color: #f9c349;
    font-size: 2.7rem;
    margin-bottom: 10px;
    font-weight: bold;
}

header p {
    color: #ddd;
    font-size: 1.1rem;
}

/* About Section */
.about {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    color: #f9c349;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

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

/* School Cards */
.schools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
}

.school-card {
    background-color: var(--theme-color);
    border-radius: 15px;
    text-align: center;
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.school-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 15px;
}

.school-card h2 {
    color: #f9c349;
    margin: 10px 0;
    font-size: 1.1rem;
}

.school-card a {
    display: inline-block;
    margin-top: 8px;
    background-color: #f9c349;
    color: #0d2d1f;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;

}

.school-card a:hover {
    background-color: #ffd76f;
}

/* Why Choose Us */
.features {
    background-color: var(--theme-color);
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    color: #f9c349;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background-color: var(--theme-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature h3 {
    color: #f9c349;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #0a1f14;
    padding: 40px 20px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

footer h3 {
    color: #f9c349;
    margin-bottom: 10px;
}

footer a {
    color: #f9c349;
    margin: 0 10px;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}