

/* ############################## ABOUT SECTION ######################*/

.about-hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 80px 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}
@font-face {
    font-family: 'PoppinsAboutOnly';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2') format('woff2');
    unicode-range: U+0000-00FF;
  }
.about-content p {
    text-align: justify;
    font-family: 'PoppinsAboutOnly', sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mission-vision p {
    text-align: justify;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: #3498db;
    font-size: 24px;
    margin-top: 0;
}

.card i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.team-section {
    margin: 80px 0;
    padding: 0 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.team-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    place-items: center;
}

.team-card {
    width: 400px;
    height: 470px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-img {
    opacity: 0.9;
}

.team-info {
    padding: 25px 20px;
    position: relative;
}

.team-info h3 {
    margin: 10px 0 5px;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
}

.team-info p {
    color: #7f8c8d;
    margin: 5px 0 15px;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.team-info p::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
}


.stats-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 80px 30px;
    margin: 80px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 50px;
    margin: 0;
    font-weight: 700;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}


/* ############################## RESPONSIVE ######################*/

@media (max-width: 768px) {

    .about-hero {
        padding: 60px 30px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {


    .about-hero {
        padding: 40px 20px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-content {
        padding: 0 20px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
}