/* Hero Section */
.about-hero {
    height: 300px;
    
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.about-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #fff;
}

/* Team Section */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    height: 280px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}
/* Main Content */
main {
    padding: 50px 20px;
    margin-top: 60px; /* Offset for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2, h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

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

.container1, .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h3 {
    font-size: 2rem;
    color: #333;
}

h5 {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}
/* Media Queries */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        color: #fff;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .about-hero {
        height: 300px;
    }

    .about-hero h2 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}