/* ================= HERO ================= */

.about-hero{
    padding:150px 20px 80px;
    text-align:center;
    background:#111;
    animation:fadeIn 1.2s ease-in-out;
}

.about-hero h1{
    font-size:50px;
    color:gold;
    margin-bottom:15px;
    text-shadow:0 0 15px gold;
}

.about-hero p{
    font-size:18px;
    color:#ccc;
}

/* ================= ABOUT CONTENT ================= */

.about-content{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    padding:60px 20px;
}

.about-box{
    background:#1a1a1a;
    padding:30px;
    width:300px;
    border:1px solid gold;
    border-radius:8px;
    transition:0.4s;
    animation:slideUp 1s ease;
}

.about-box h2{
    color:gold;
    margin-bottom:15px;
}

.about-box p,
.about-box li{
    color:#ddd;
    line-height:1.6;
}

.about-box ul{
    list-style:none;
    padding:0;
}

/* Hover Effect */
.about-box:hover{
    transform:translateY(-10px);
    background:gold;
    box-shadow:0 0 20px gold;
}

.about-box:hover h2,
.about-box:hover p,
.about-box:hover li{
    color:black;
}

/* ================= STATS ================= */

.stats-section{
    display:flex;
    justify-content:center;
    gap:60px;
    padding:80px 20px;
    background:black;
    text-align:center;
    flex-wrap:wrap;
}

.stat-box h2{
    font-size:40px;
    color:gold;
    animation:pulse 2s infinite;
}

.stat-box p{
    color:#ccc;
}

/* ================= CTA ================= */

.cta-section{
    padding:80px 20px;
    text-align:center;
    background:linear-gradient(45deg, gold, #d4af37);
    color:black;
}

.cta-section h2{
    margin-bottom:20px;
}

.cta-section .btn{
    background:black;
    color:gold;
}

.cta-section .btn:hover{
    background:white;
    color:black;
}

/* ================= ANIMATIONS ================= */

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

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

@keyframes pulse{
    0%{text-shadow:0 0 5px gold;}
    50%{text-shadow:0 0 20px gold;}
    100%{text-shadow:0 0 5px gold;}
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .about-content,
    .stats-section{
        flex-direction:column;
        align-items:center;
    }

    .about-hero h1{
        font-size:32px;
    }
}