/* About Page Specific Styles */

.page-header {
    background-image: url('../img/about.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 18px;
    opacity: 1;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #17a2b8;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    color: #fff;
}

.stat-box i {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #e9ecef;
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: #17a2b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: #fff;
}

.mv-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 18px;
}

.mv-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 15px;
}

/* Objectives Section */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.objective-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    border-left: 4px solid #17a2b8;
}

.objective-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.obj-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: #17a2b8;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.objective-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
}

.objective-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    color: #fff;
}

.value-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.value-card i {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #17a2b8, #e2e8f0);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #17a2b8;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 3px solid #17a2b8;
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.timeline-year {
    display: inline-block;
    background: #17a2b8;
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Recognition Detail Section */
.recognition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.recog-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.recog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.recog-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
}

.recog-card h4 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.recog-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        left: 0 !important;
        text-align: left;
    }

    .timeline-item::before {
        left: -10px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid,
    .recognition-cards {
        grid-template-columns: 1fr;
    }
}
