/* ===== About Page CSS ===== */

/* Hero */
.about-hero {
    background:
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e3a5f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(249, 115, 22, 0.25) 2px, transparent 2px),
        radial-gradient(circle, rgba(13, 148, 136, 0.2) 2px, transparent 2px),
        radial-gradient(circle, rgba(251, 191, 36, 0.2) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    background-position: 0 0, 30px 30px, 60px 15px;
    pointer-events: none;
    animation: aboutDotsFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes aboutDotsFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

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


.about-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: #fbbf24;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Stats */
.about-stats {
    background: #fff;
    padding: 50px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Story */
.about-story {
    padding: 80px 20px;
    background: #f8fafc;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.story-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-content {
    flex: 2;
    min-width: 300px;
}

.story-content h2 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.story-content h2 i {
    color: #3b82f6;
    margin-right: 10px;
}

.story-content p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values */
.about-values {
    padding: 80px 20px;
    background: #fff;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 2rem;
    color: #1e3a5f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
}

.value-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team */
.about-team {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 2rem;
    color: #fff;
}

.team-header h2 i {
    color: #fbbf24;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-photo {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.member-photo:hover img {
    border-color: #fbbf24;
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.member-social a {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .title {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.member-info .quote {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: italic;
}

/* CTA */
.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a5f 100%);
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-cta .btn {
    background: #fbbf24;
    color: #1e3a5f;
    border: none;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

    .stat-num {
        font-size: 2rem;
    }
}