/* About Page Styles */

/* CSS Variables */
:root {
    --light-sky-blue: #87CEEB;
    --pale-pastel-pink: #F8BBD9;
    --soft-mint-green: #B8E6B8;
    --light-peach-orange: #FFCBA4;
    --gentle-lavender-purple: #DDA0DD;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #2c3e50;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--light-sky-blue) 0%, var(--pale-pastel-pink) 50%, var(--soft-mint-green) 100%);
    color: var(--white);
    padding: 100px 0;
    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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.8s ease-out;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.about-hero img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    animation: slideInRight 0.8s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

.about-hero img:hover {
    transform: scale(1.05);
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--pale-pastel-pink));
    border-radius: 2px;
}

.our-story .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.our-story p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: var(--light-gray);
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--soft-mint-green));
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pale-pastel-pink), var(--light-peach-orange));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-sky-blue), var(--pale-pastel-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
    animation: pulse 2s infinite;
}

.mission-card h3,
.vision-card h3 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background: var(--white);
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-mint-green), var(--light-peach-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(184, 230, 184, 0.3);
}

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

.value-card p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gentle-lavender-purple), var(--light-sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(221, 160, 221, 0.3);
}

.feature-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-sky-blue), var(--pale-pastel-pink), var(--soft-mint-green));
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    margin-bottom: 25px;
    position: relative;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.team-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--light-sky-blue);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--light-sky-blue) 0%, var(--pale-pastel-pink) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::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 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    pointer-events: none;
}

.contact-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-cta .btn-light {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.contact-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--light-gray);
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .our-story,
    .mission-vision,
    .our-values,
    .why-choose,
    .team-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-cta h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-cta .btn-light {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .our-story,
    .mission-vision,
    .our-values,
    .why-choose,
    .team-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .value-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .team-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .contact-cta {
        padding: 50px 0;
        text-align: center;
    }
    
    .contact-cta h3 {
        font-size: 24px;
    }
    
    .contact-cta p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .mission-card,
    .vision-card,
    .value-card,
    .team-card {
        padding: 25px 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .card-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .team-image img {
        width: 100px;
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .about-hero,
    .contact-cta {
        background: white !important;
        color: black !important;
    }
    
    .card-icon,
    .value-icon,
    .feature-icon {
        background: #ccc !important;
    }
}