/* About Us Page Custom Styles */
:root {
    --primary-color: #14b8a6;
    --primary-soft-color: #5eead4;
    --primary-soft-dark-color: #0f766e;
    --gradient-primary: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    --gradient-hero: linear-gradient(135deg, #14b8a6 0%, #0f766e 50%, #134e4a 100%);
}

/* ===== About Hero (ID-based to avoid global overrides) ===== */
#about-hero {
    /* Match Program hero gradient */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark-color) 100%);
    min-height: 50vh; /* match Program */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#about-hero-container { max-width: 1200px; }
/* Collapse grid to single column to mimic Program hero */
#about-hero-grid { display: block; }
/* Content width like Program's max-w-3xl */
#about-hero-content { position: relative; z-index: 2; max-width: 48rem; }

/* Program-style tag uses global `_bg-primary-soft` utility; no extra overrides here */

#about-hero-title {
    font-weight: 800; /* font-extrabold */
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3rem); /* text-4xl md:text-5xl */
    margin-bottom: 0.75rem; /* mb-3 */
}
#about-hero-subtitle {
    color: rgba(255,255,255,0.9); /* text-white/90 */
    font-size: 1.125rem; /* text-lg */
}
/* Description removed to mirror Program hero; keep style for fallback */
#about-hero-description { color: rgba(255,255,255,0.85); max-width: 600px; display: none; }

#about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

#about-hero-stats .stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

#about-hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#about-hero-stats .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#about-hero-stats .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== Responsive: ID-based hero ===== */
@media (max-width: 1024px) {
    #about-hero-content { max-width: 44rem; }
    #about-hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
    #about-hero { min-height: 60vh; }
    #about-hero-content { max-width: none; margin: 0 auto; text-align: center; }
    #about-hero-title { font-size: clamp(2rem, 7vw, 2.5rem); }
    #about-hero-subtitle { font-size: 1rem; }
    #about-hero-stats { flex-direction: column; align-items: stretch; gap: 1rem; }
    #about-hero-stats .stat-item { padding: 1rem; }
    #about-hero-stats .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    #about-hero-title { font-size: 1.75rem; }
    #about-hero-stats .stat-number { font-size: 1.8rem; }
    #about-hero-stats .stat-label { font-size: 0.9rem; }
}

/* Hero Section Styles */
.hero-about {
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-about::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(15deg);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.stat-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-item:hover .stat-number::after {
    opacity: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-image-placeholder {
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    color: rgba(255,255,255,0.8);
    text-align: center;
    position: relative;
}

.hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.hero-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-image-placeholder .image-specs {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 15px;
    pointer-events: none;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Modern Content Sections */
.content-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Section Odd/Even Styling */
.section-odd {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-even {
    background: linear-gradient(135deg, #fefefe 0%, #f9fafb 100%);
}

/* Animated Background Shapes - Enhanced with More Shapes */
.section-odd::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.15));
    border-radius: 50%;
    animation: floatShape1 20s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.1);
}

.section-odd::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.12));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape2 25s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 30px rgba(15, 118, 110, 0.08);
}

.section-even::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -8%;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(94, 234, 212, 0.1), rgba(94, 234, 212, 0.18));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: floatShape3 18s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 35px rgba(94, 234, 212, 0.12);
}

.section-even::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(19, 78, 74, 0.06), rgba(19, 78, 74, 0.12));
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation: floatShape4 22s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 25px rgba(19, 78, 74, 0.08);
}

/* Additional Shapes for More Dynamic Effect */
.section-odd {
    position: relative;
}

.section-odd:before {
    /* Triangle Shape */
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(20, 184, 166, 0.06);
    animation: triangleFloat 28s ease-in-out infinite;
    z-index: 1;
    filter: blur(1px);
}

.section-even {
    position: relative;
}

.section-even:before {
    /* Hexagon Shape */
    content: '';
    position: absolute;
    top: 5%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: rgba(94, 234, 212, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexagonSpin 24s linear infinite;
    z-index: 1;
    filter: blur(0.5px);
}

/* Ensure content is above shapes */
.content-section .container {
    position: relative;
    z-index: 2;
}

/* Additional Shape Styles - Mission Section (Odd) */
.shape-blob-1 {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.15));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: morphBlob 16s ease-in-out infinite;
    z-index: 1;
    filter: blur(1px);
}

.shape-diamond-1 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(15, 118, 110, 0.1), rgba(15, 118, 110, 0.18));
    transform: rotate(45deg);
    animation: diamondRotate 20s linear infinite;
    z-index: 1;
    box-shadow: 0 0 20px rgba(15, 118, 110, 0.1);
}

.shape-wave-1 {
    position: absolute;
    top: 60%;
    right: 8%;
    width: 100px;
    height: 50px;
    background: rgba(20, 184, 166, 0.06);
    border-radius: 50px 50px 0 0;
    animation: waveFloat 14s ease-in-out infinite;
    z-index: 1;
}

/* Additional Shape Styles - Why Choose Us Section (Even) */
.shape-star-1 {
    position: absolute;
    top: 25%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: rgba(94, 234, 212, 0.1);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starTwinkle 18s ease-in-out infinite;
    z-index: 1;
}

.shape-circle-pulse-1 {
    position: absolute;
    bottom: 30%;
    right: 12%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.12), rgba(94, 234, 212, 0.04));
    border-radius: 50%;
    animation: circlePulse 12s ease-in-out infinite;
    z-index: 1;
}

.shape-polygon-1 {
    position: absolute;
    top: 70%;
    left: 25%;
    width: 70px;
    height: 70px;
    background: rgba(19, 78, 74, 0.08);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: polygonSpin 22s linear infinite;
    z-index: 1;
}

/* Additional Shape Styles - Values Section (Odd) */
.shape-spiral-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: conic-gradient(from 0deg, rgba(20, 184, 166, 0.02), rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0.02));
    border-radius: 50%;
    animation: spiralRotate 30s linear infinite;
    z-index: 1;
}

.shape-cross-1 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: rgba(15, 118, 110, 0.08);
    clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
    animation: crossFloat 26s ease-in-out infinite;
    z-index: 1;
}

.shape-blob-2 {
    position: absolute;
    top: 50%;
    left: 3%;
    width: 110px;
    height: 110px;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.06), rgba(20, 184, 166, 0.12));
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: blobMorph 19s ease-in-out infinite;
    z-index: 1;
}

/* Additional Shape Styles - CTA Section (Even) */
.shape-ring-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 8px solid rgba(94, 234, 212, 0.1);
    border-radius: 50%;
    animation: ringPulse 15s ease-in-out infinite;
    z-index: 1;
}

.shape-arrow-1 {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid rgba(19, 78, 74, 0.08);
    animation: arrowBounce 17s ease-in-out infinite;
    z-index: 1;
}

.shape-heart-1 {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 70px;
    height: 70px;
    background: rgba(94, 234, 212, 0.08);
    transform: rotate(-45deg);
    animation: heartBeat 21s ease-in-out infinite;
    z-index: 1;
}

.shape-heart-1::before,
.shape-heart-1::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(94, 234, 212, 0.08);
    border-radius: 50%;
}

.shape-heart-1::before {
    top: -35px;
    left: 0;
}

.shape-heart-1::after {
    top: 0;
    left: 35px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 30px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-description {
    color: #6b7280;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

/* Keyframe Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
    }
    50% {
        text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Floating Shape Animations */
@keyframes floatShape1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -20px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, -40px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-40px, 20px) rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes floatShape2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% { 
        transform: translate(-25px, 30px) rotate(120deg) scale(1.15);
        opacity: 0.7;
    }
    66% { 
        transform: translate(40px, -15px) rotate(240deg) scale(0.85);
        opacity: 0.3;
    }
}

@keyframes floatShape3 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    30% { 
        transform: translate(-35px, -25px) rotate(108deg) scale(1.2);
        opacity: 0.8;
    }
    60% { 
        transform: translate(20px, 35px) rotate(216deg) scale(0.9);
        opacity: 0.4;
    }
    90% { 
        transform: translate(15px, -10px) rotate(324deg) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes floatShape4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    40% { 
        transform: translate(30px, -30px) rotate(144deg) scale(1.25);
        opacity: 0.7;
    }
    80% { 
        transform: translate(-20px, 25px) rotate(288deg) scale(0.8);
        opacity: 0.3;
    }
}

/* Enhanced Shape Animations */
@keyframes triangleFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
        filter: blur(1px) hue-rotate(0deg);
    }
    25% { 
        transform: translate(-20px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.8;
        filter: blur(0.5px) hue-rotate(90deg);
    }
    50% { 
        transform: translate(25px, -15px) rotate(180deg) scale(0.8);
        opacity: 0.4;
        filter: blur(2px) hue-rotate(180deg);
    }
    75% { 
        transform: translate(-10px, 20px) rotate(270deg) scale(1.1);
        opacity: 0.7;
        filter: blur(1px) hue-rotate(270deg);
    }
}

@keyframes hexagonSpin {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(1.3);
        opacity: 0.9;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        border-radius: 40% 60% 70% 30% / 25% 75% 25% 75%;
        transform: translate(-15px, -20px) rotate(90deg) scale(1.1);
        opacity: 0.9;
    }
    50% {
        border-radius: 75% 25% 25% 75% / 60% 40% 60% 40%;
        transform: translate(20px, -10px) rotate(180deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        border-radius: 30% 70% 40% 60% / 45% 55% 35% 65%;
        transform: translate(-10px, 15px) rotate(270deg) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes diamondRotate {
    0% { 
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(225deg) scale(1.2);
        opacity: 0.9;
    }
    100% { 
        transform: rotate(405deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0) scaleX(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scaleX(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scaleX(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) scaleX(1.1);
        opacity: 0.7;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
        filter: brightness(1);
    }
    25% {
        transform: scale(1.3) rotate(72deg);
        opacity: 1;
        filter: brightness(1.5);
    }
    50% {
        transform: scale(0.8) rotate(144deg);
        opacity: 0.4;
        filter: brightness(0.8);
    }
    75% {
        transform: scale(1.1) rotate(216deg);
        opacity: 0.9;
        filter: brightness(1.2);
    }
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.4);
    }
    50% {
        transform: scale(1.4);
        opacity: 0.9;
        box-shadow: 0 0 0 20px rgba(94, 234, 212, 0);
    }
}

@keyframes polygonSpin {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: rotate(120deg) scale(1.2);
        opacity: 0.8;
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
        opacity: 0.5;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes spiralRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

@keyframes crossFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-15px, -25px) rotate(45deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -10px) rotate(90deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-10px, 15px) rotate(135deg) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        transform: translate(-20px, -15px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        border-radius: 30% 70% 60% 40% / 30% 70% 30% 70%;
        transform: translate(15px, -25px) scale(0.8);
        opacity: 0.4;
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        border-width: 8px;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
        border-width: 4px;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(15px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-10px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateX(8px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: rotate(-45deg) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: rotate(-45deg) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: rotate(-45deg) scale(1.1);
        opacity: 0.8;
    }
}

/* Animation Classes */
.stat-number.counting {
    animation: countUp 0.6s ease-out, glow 2s ease-in-out infinite;
}

.stat-item.pulse-animation {
    animation: pulse 0.6s ease-in-out;
}

.stat-number.shimmer-effect {
    background: linear-gradient(90deg, #ffffff 25%, #e0f2fe 50%, #ffffff 75%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-about {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
    }
    
    .hero-image-placeholder i {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.fade-in-delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}