* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Styles */
section {
    padding: 3rem 0;
    border-top: 2px solid #f0f0f0;
}

section h2 {
    font-size: 2.5rem;
    color: #ff9500;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* About Us Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    margin-top: 1rem;
    border-radius: 12px;
    padding: 12px 27px;
}

.about-text h3 {
    color: #ff9500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Vision & Mission Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border: 2px solid #ff9500;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.2);
}

.card h3 {
    color: #ff9500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #333;
    font-size: 0.95rem;
}

/* Core Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    background-color: #f9f9f9;
    border-left: 4px solid #ff9500;
    padding: 1.5rem;
    border-radius: 5px;
}

.value-item h4 {
    color: #ff9500;
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #f9f9f9;
    border-top: 4px solid #ff9500;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.team-member img {
width: 100%;
}
.team-member:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-member p {
    color: #ff9500;
    font-size: 0.9rem;
    font-weight: 500;
}

/* footer {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: #ff9500;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
} */
.about-image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    outline: 1px solid white;
    outline-offset: -10px;
    outline-color: orange;
    outline-style: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #fff;
        width: 100%;
        padding: 1rem;
        border-top: 2px solid #ff9500;
    }
}
