/* About Page Styles */

.about-hero {
    background: linear-gradient(-10deg, var(--color-primary-dark), #54a3f2);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: white;
}

.about-hero h1 i {
    color: var(--color-accent-cyan);
    margin-right: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 60px 0;
    background: var(--color-bg-light);
}

.about-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    color: var(--color-primary-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section h2 i {
    margin-right: 10px;
}

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

.about-img-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-cyan), #ffffff);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-cyan), #ffffff);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-cyan), #97ccf4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Service Cards */
.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 217, 246, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-cyan), #33d9f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: var(--color-primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.service-list li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--color-accent-cyan);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #e0e0e0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #eefcff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
}

.feature-card h5 {
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary-dark), #1a3c5e);
    border-radius: 15px;
    padding: 50px 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: 0 5px 15px rgba(51, 217, 246, 0.15);
}

.value-card h4 {
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card h4 i {
    margin-right: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(-10deg, var(--color-primary-dark), #1763ae);
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 30px 25px;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 85px 0 40px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

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

    .about-section {
        padding: 20px 15px;
    }

    .about-section h2 {
        font-size: 1.25rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.2rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .service-card,
    .feature-card,
    .value-card {
        padding: 20px;
    }

    .stats-section {
        padding: 30px 20px;
    }
}