/*--------------------------------------------------------------
# About Page Header
--------------------------------------------------------------*/

.page-header {
    /* UPDATED: Changed from 100vh to 60vh */
    height: 60vh;
    min-height: 400px;
    /* Added a minimum height */
    position: relative;
    /* You can change this to a different background image if you want */
    background: url('../images/7.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* REMOVED: margin-top: 70px; */
    /* This content now slides behind the navbar */
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    /* Dark overlay */
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# About Content (Aims, Vision, Mission)
--------------------------------------------------------------*/

.about-extra h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 280px;
    /* Fixed height for uniformity */
    object-fit: cover;
}

.team-card-body {
    padding: 20px;
}

.team-card-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.team-card-body p {
    font-size: 14px;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}


/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 50%;
    /* 2:1 Aspect Ratio */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}