/* About Page Styles */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 188, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(38, 198, 218, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.85) 0%, rgba(26, 54, 93, 0.9) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-description {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* About Content */
.about-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(0,188,212,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    z-index: 1;
}

.about-content .container {
    position: relative;
    z-index: 2;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.about-intro h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    position: relative;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300&q=80');
    background-size: cover;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mv-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 188, 212, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}




.mv-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.mv-card:hover .mv-icon::before {
    left: 100%;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.mv-card p {
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Our Work */
.our-work {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.our-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20 Q10 10 20 20 T40 20" fill="none" stroke="rgba(0,188,212,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    z-index: 1;
}

.our-work .container {
    position: relative;
    z-index: 2;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.work-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 188, 212, 0.2), transparent);
    z-index: 2;
}

.work-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.work-image:hover img {
    transform: scale(1.05);
}

.work-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.1);
}

.work-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.work-features {
    list-style: none;
}

.work-features li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.work-features li:hover {
    transform: translateX(10px);
    background: rgba(0, 188, 212, 0.1);
}

.work-features i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
    height: 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 188, 212, 0.3);
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=200&h=200&q=80');
    background-size: cover;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.6s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.2);
    border-color: var(--primary-color);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
    text-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

.service-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-info h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Goals */
.goals {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.goals::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300&q=80');
    background-size: cover;
    border-radius: 50%;
    opacity: 0.1;
    transform: translateY(-50%);
    z-index: 1;
}

.goals .container {
    position: relative;
    z-index: 2;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.goal-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 188, 212, 0.1);
    border: 2px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.goal-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: url('https://images.unsplash.com/photo-1553729459-efe14ef6055d?ixlib=rb-4.0.3&auto=format&fit=crop&w=60&h=60&q=80');
    background-size: cover;
    border-radius: 50%;
    opacity: 0.1;
}



.goal-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-size: 2.2rem;
    position: relative;
    overflow: hidden;
}

.goal-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.goal-card:hover .goal-icon::before {
    left: 100%;
}

.goal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.goal-card p {
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* About Hero Mobile */
    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .about-hero .hero-description {
        font-size: 1.1rem;
    }

    .about-hero .hero-content {
        padding: 1rem;
    }

    /* About Content Mobile */
    .about-intro {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

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

    .about-intro p {
        font-size: 1rem;
    }

    /* Mission & Vision Mobile */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        padding: 2.5rem 2rem;
    }

    .mv-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }

    .mv-card p {
        font-size: 1rem;
    }

    /* Our Work Mobile */
    .work-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-text {
        padding: 2rem;
    }

    .work-text p {
        font-size: 1rem;
    }

    .work-features li {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Services Mobile */
    .service-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }

    .service-number {
        min-width: auto;
        font-size: 2.5rem;
    }

    .service-info h4 {
        font-size: 1.2rem;
    }

    .service-info p {
        font-size: 1rem;
    }

    /* Goals Mobile */
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .goal-card {
        padding: 2.5rem 2rem;
    }

    .goal-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .goal-card h3 {
        font-size: 1.3rem;
    }

    .goal-card p {
        font-size: 1rem;
    }

    /* Statistics Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .about-intro {
        padding: 2rem 1.5rem;
    }

    .mv-card {
        padding: 2rem 1.5rem;
    }

    .work-text {
        padding: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .goal-card {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem;
    }
}
