@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.about-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1a33 0%, #1a2a4f 50%, #0f1a33 100%);
    position: relative;
    overflow-x: hidden;
    padding: 40px 0;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,215,0,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.about-header {
    background: linear-gradient(135deg, #0f1a33 0%, #1a2a4f 100%);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.logo-about {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: 'Mj_Casablanca', 'Vazirmatn', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #ffd700;
    position: relative;
    z-index: 2;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-icon i {
    font-size: 24px;
    color: #0f1a33;
}

.stat-box {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffd700;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1a33;
    font-family: 'Mj_Casablanca', monospace;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(-5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #ffd700;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    color: #0f1a33;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    color: #0f1a33;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .about-header {
        padding: 30px 20px;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        margin: 0 auto;
    }
}