﻿/* =========================
   PAGE
========================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient( 135deg, #F8F4E9, #F3E8FF, #FFF8E7 );
    color: #333;
}

.about-hero {
    background: linear-gradient(135deg, #667eea, #764ba2);
    text-align: center;
    padding: 100px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

    /* Decorative glow circles */
    .about-hero::before,
    .about-hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        animation: float 6s infinite ease-in-out;
    }

    .about-hero::before {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
    }

    .about-hero::after {
        width: 300px;
        height: 300px;
        bottom: -80px;
        right: -80px;
    }

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-hero p {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: auto;
}

.about-section {
    padding: 60px;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.about-content {
    max-width: 1000px;
    margin: auto;
    line-height: 1.9;
    font-size: 18px;
    color: #333;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.roles-section {
    padding: 60px;
    background: linear-gradient(135deg, #fff7e6, #e6f7ff);
    text-align: center;
}

    .roles-section h2 {
        margin-bottom: 15px;
        font-size: 36px;
        color: #ff6b6b;
    }

.roles-description {
    margin-bottom: 40px;
    color: #555;
    font-size: 18px;
}

.roles-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.role-card {
    background: linear-gradient(135deg, #ffffff, #f9f9ff);
    padding: 30px;
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
    border-top: 5px solid #6c5ce7;
    transition: transform 0.3s ease;
}

    .role-card:hover {
        transform: translateY(-8px);
    }

    .role-card h3 {
        margin-bottom: 15px;
        color: #2d3436;
    }

    .role-card p {
        color: #555;
        line-height: 1.7;
    }

.team-section {
    padding: 60px;
    background: linear-gradient(135deg, #f1f2f6, #ffffff);
}

.team-Container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.team-card {
    width: 300px;
    background: linear-gradient(135deg, #ffffff, #fef9ff);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-bottom: 5px solid #00b894;
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f8f8f8;
}

.team-card h2 {
    margin-bottom: 10px;
    color: #6c5ce7;
}

.team-card h4 {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.5;
}

.team-card p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}