﻿.about-hero {
    background-position: center;
    background-attachment: fixed;
}

.stats-bar p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: #e9ecef;
    }

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.facility-card {
    height: 300px;
    overflow: hidden;
}

    .facility-card img {
        transition: transform 0.5s;
        height: 100%;
        object-fit: cover;
    }

    .facility-card:hover img {
        transform: scale(1.05);
    }

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.facility-card:hover .facility-overlay {
    transform: translateY(0);
}

.cert-grid {
    background: rgba(0,0,0,0.2);
}

.project-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

    .project-list li:last-child {
        border-bottom: none;
    }
