/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Logo in Top Left Corner */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    background: #000000;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}

nav a.active {
    color: #f1c40f;
    font-weight: bold;
}

/* About Us Section */
.about-us {
    padding: 40px 20px;
    background: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mission and Vision Section */
.mission-vision {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
    background: #f9f9f9;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.mission, .vision {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 300px;
}

.mission h3, .vision h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.mission p, .vision p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Core Values Section */
.core-values {
    padding: 40px 20px;
    background: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.core-values h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.values-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
    max-width: 300px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.value-card i {
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 10px;
}

.value-card h3 {
    color: #2c3e50;
    margin: 10px 0;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Smaller logo for mobile */
    }

    nav a {
        font-size: 1rem; /* Smaller font for mobile */
        margin: 0 10px;
    }

    .about-content {
        flex-direction: column; /* Stack text and image on mobile */
    }

    .about-image {
        max-width: 100%; /* Full-width image on mobile */
    }

    .mission-vision {
        flex-direction: column; /* Stack mission and vision on mobile */
    }

    .mission, .vision {
        min-width: 100%; /* Full-width cards on mobile */
    }

    .value-card {
        min-width: 100%; /* Full-width cards on mobile */
    }
}