/* About Page Styles */

/* Hero Section */
.about-hero {
    background: url(../images/slider.jpg);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #003a7a);
    opacity: 0.9;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

/* Timeline */
.timeline {
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -54px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

/* Achievement Cards */
.achievement-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-number {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Leadership Section */
.leadership-img {
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.card:hover .leadership-img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -34px;
    }
    
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
}
