﻿body {
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    height: 30vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
    }

.hero-content {
    position: relative;
    color: #fff;
}

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .hero-content span {
        color: #0094ff; /* Sky Blue */
    }

    .hero-content p {
        margin-top: 10px;
        font-size: 1.05rem;
    }

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and below */
@media (max-width: 992px) {
    /* Hero */
    .hero {
        height: 50vh;
    }

    .story .container,
    .mission-vision .container {
        flex-direction: column;
        text-align: center;
    }

    .story-image {
        height: 300px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    /* Hero */
    .hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .story .container {
        gap: 20px;
    }

    .card {
        padding: 20px;
    }

    .stats {
        padding: 30px 10px;
    }

    .team-member {
        width: 150px;
        height: 150px;
    }
}