/* About Page Hero Styles */
.about-hero {
    position: relative;
    min-height: 60vh;
    box-sizing: border-box;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    padding-top: 100px;
    padding-bottom: 110px;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
}

.about-hero .hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    padding-top: 70px;
}

.about-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* Was a white-to-#f0f0f0 gradient clipped to the text, which made the
       tagline read as off-white rather than white. Solid white now. */
    color: #ffffff;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.about-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.about-hero .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.about-hero .hero-scroll-indicator {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    margin: 0 auto;
    text-align: center;
    animation: bounce 2s infinite;
}

.about-hero .hero-scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.about-hero .hero-scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.about-hero .hero-cta .btn-primary {
    background: linear-gradient(90deg, #3498db 0%, #217dbb 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(52,152,219,0.18);
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.about-hero .hero-cta .btn-primary:hover, .about-hero .hero-cta .btn-primary:focus {
    background: linear-gradient(90deg, #217dbb 0%, #3498db 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(52,152,219,0.22);
    text-decoration: none;
}
.about-hero .hero-cta .btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 18px rgba(52,152,219,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.about-hero .hero-cta .btn-secondary:hover, .about-hero .hero-cta .btn-secondary:focus {
    background: #fff;
    color: #217dbb;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(52,152,219,0.16);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .about-hero .hero-content {
        padding-top: 50px;
    }

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

    .about-hero .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .about-hero .hero-cta .btn {
        width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
} 