/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(0,139,139,0.95), rgba(75,0,130,0.95)), url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&q=80') center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-hero h1 {
    font-size: 3.5em;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    animation: slideIn 1s ease-out forwards;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.highlight {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 500;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-container {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.3s forwards;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-container:hover .feature-image {
    transform: scale(1.02);
}

.text-content {
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.text-content h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Mission Statement Section */
.mission-statement {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,139,139,0.05), rgba(75,0,130,0.05));
    z-index: 1;
}

.mission-statement .container {
    position: relative;
    z-index: 2;
}

.mission-statement h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.cert-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.cert-item:nth-child(1) { animation-delay: 0.3s; }
.cert-item:nth-child(2) { animation-delay: 0.5s; }
.cert-item:nth-child(3) { animation-delay: 0.7s; }

.cert-logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.cert-item:hover .cert-logo {
    transform: scale(1.05);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-logo {
    max-width: 150px;
}

.rating {
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5em;
    letter-spacing: 2px;
}

.score {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--text-color);
}

.label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .mission-statement h2 {
        font-size: 2em;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
} 