/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

body {
    background-color: #030712;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* HERO SECTION */
.about-hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #030712 70%);
    overflow: hidden;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.about-title span.cyan-text {
    color: #38bdf8;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

/* ABOUT SECTION (Who We Are) */
.who-we-are {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: rgba(15, 23, 42, 0.2);
}

.who-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.who-text h2 {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

.who-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.who-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.who-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
    animation: float 6s ease-in-out infinite;
}

.scroll-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* STATS COUNTER */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-box .counter {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

.stat-box span.label {
    font-size: 1.1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PROGRESS TIMELINE */
.timeline-section {
    padding: 80px 10%;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: rgba(56, 189, 248, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0f172a;
    border: 4px solid #38bdf8;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px #38bdf8;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 25px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
}

.timeline-date {
    color: #38bdf8;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h3 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ACHIEVEMENTS GRID */
.achievements-section {
    padding: 80px 10%;
    background: linear-gradient(180deg, #030712 0%, #0f172a 100%);
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(56, 189, 248, 0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.achievement-card:hover::before {
    left: 150%;
}

.achievement-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-10px);
}

.ac-icon {
    font-size: 3rem;
    color: #fbd38d; /* Gold tint for achievements */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(251, 211, 141, 0.4));
}

.achievement-card h3 {
    font-size: 1.4rem;
    color: #f8fafc;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .who-we-are {
        flex-direction: column;
        text-align: center;
    }
    .timeline::after { left: 31px; }
    .timeline-item {
        width: 100%; padding-left: 70px; padding-right: 25px;
    }
    .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
    .timeline-item.left::after, .timeline-item.right::after { left: 21px; }
    .stats-section {
        flex-direction: column; gap: 40px;
    }
}
