/* General Reset */
body, ul, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Section Styling */
.section {
    padding: 4rem 2rem;
    color: #25303d;
    text-align: center;
}

/* History Section */
.history {
    background: linear-gradient(135deg, #2a50aa, #25303d); /* Yellow to Dark Brown Gradient */
    color: white;
}

.history-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.history-content p {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}

.history-content img {
    flex: 1;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Mission and Philosophy */
.mission-philosophy {
    background: #F5F5F5;
}

.mission-philosophy .mission-philosophy-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
   
}

.mission-philosophy .content {
    flex: 1; 
    max-width: 50%;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-philosophy .content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2a50aa; /* Yellow */
}

.mission-philosophy .content p {
    font-size: 1.1rem;
    color: #25303d;
}

/* Core Values Section */
.core-values {
    background: linear-gradient(135deg, #25303d, #2a50aa); /* Dark Brown to Yellow Gradient */
    color: white;
}

.core-values .values-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.core-values .value-card {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.core-values .value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.core-values .value-card p {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .history-content,
    .mission-philosophy .mission-philosophy-grid,
    .core-values .values-grid {
        flex-direction: column;
    }

    .history-content img {
        margin-top: 1rem;
    }
}
