/* About Page Styles */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 200px;
    background: url('/images/about/team.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 40, 58, 0.85), rgba(89, 169, 234, 0.7));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-family: 'Yeseva One', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

/* Main Section */
.about-section {
    padding: 80px 0;
    background: rgb(237, 241, 245);
    position: relative;
    overflow: hidden;
}

.about-section .arc {
    position: absolute;
    top: -450px;
    left: -350px;
    width: 750px;
    height: 750px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.about-section .circle-1 {
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(200, 215, 230, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

/* Intro Section */
.about-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.2rem;
    color: #25283a;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Mission & Vision */
.about-mission-vision {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #59A9EA, #4a94d1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.about-card-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.about-card h3 {
    font-family: 'Yeseva One', serif;
    font-size: 1.6rem;
    color: #25283a;
    margin-bottom: 15px;
}

.about-card p {
    color: #555;
    line-height: 1.8;
}

/* Values Section */
.about-values {
    position: relative;
    z-index: 1;
}

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

.about-values-header h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2.2rem;
    color: #25283a;
    margin-bottom: 15px;
}

.about-values-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(89, 169, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-item-icon i {
    font-size: 1.5rem;
    color: #59A9EA;
}

.value-item h4 {
    font-family: 'Yeseva One', serif;
    font-size: 1.1rem;
    color: #25283a;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #25283a, #3a3d52);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 80px;
    color: #fff;
}

.about-cta h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #59A9EA, #4a94d1);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(89, 169, 234, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        order: -1;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-intro-content h2 {
        font-size: 1.8rem;
    }

    .about-cta {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 150px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
