/* About Hero Section */
.about-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.about-hero-content {
    position: absolute;
    z-index: 2;
    padding: 0 5rem;
    color: white;
    flex: 1;
    
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.about-hero-image {
   flex:1;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #ffa500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
/* Core Values Section */
.core-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #ffa500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
/* School Stats Section */
.school-stats {
    padding: 5rem 0;
    background: linear-gradient(rgba(255,165,0,0.6), rgba(255,219,15,0.6)), url(../Kitengela_Ebenezer/arts_humanities_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        height: auto;
    }

    .about-hero-content {
        padding: 3rem 1.5rem;
        text-align: center;
    }

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

    }

/* Modern CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    padding-right: 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #ffa500;
    font-size: 1.2rem;
}

.feature span {
    color: #444;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #ffa500;
    color: white;
}

.primary-btn:hover {
    background: #ffdb0f;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: #ffa500;
    border: 2px solid #ffa500;
}

.secondary-btn:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    color: #ffa500;
    font-size: 1.2rem;
}

.floating-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: #ffa500;
    font-weight: 600;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content {
        padding-right: 0;
    }

    .floating-card {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        text-align: center;
    }
} 
