body {
    padding-top: 80px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(46, 125, 50, 0.95) 100%), 
                url('../images/students.jpg') center/cover;
    padding: 120px 0 100px;
    color: white;
    position: relative;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD54F;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.about-hero p {
    font-size: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    color: #1B5E20;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FFD54F 0%, #1B5E20 100%);
    border-radius: 10px;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid #FFD54F;
}

.mission-vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.3);
}

.mission-vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.mission-vision-card:hover .mission-vision-icon {
    transform: rotateY(360deg);
}

.mission-vision-card h3 {
    color: #1B5E20;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Values Section */
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 94, 32, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1B5E20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    font-weight: bold;
}

.value-card h5 {
    color: #1B5E20;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.3);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD54F;
    font-size: 5rem;
    font-weight: bold;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h5 {
    color: #1B5E20;
    font-weight: 800;
    margin-bottom: 10px;
}

.team-info p {
    color: #FFD54F;
    font-weight: 600;
    margin-bottom: 0;
}

/* Stats Section */
.stats-box {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    padding: 80px 0;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD54F;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #1B5E20;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    font-weight: bold;
    padding: 18px 50px;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 94, 32, 0.4);
}

/* Video Section Styles */
.video-section {
    width: 100%;
    position: relative;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
    pointer-events: none;
}

#aboutVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: auto;
}

.video-controls-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 1000;
}

.video-control-btn {
    position: absolute;
    bottom: 30px;
    background: rgba(27, 94, 32, 0.95);
    color: #FFD54F;
    border: 3px solid #FFD54F;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    pointer-events: auto;
    z-index: 1001;
}

.video-control-btn:hover {
    background: rgba(27, 94, 32, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 213, 79, 0.8);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn i {
    font-size: 1.2rem;
}

.play-pause-btn {
    right: 180px;
}

.mute-btn {
    right: 30px;
}

.video-control-btn.muted {
    background: rgba(220, 53, 69, 0.95);
}

.video-control-btn.unmuted {
    background: rgba(46, 125, 50, 0.95);
}

.video-control-btn.paused {
    background: rgba(255, 213, 79, 0.95);
    color: #1B5E20;
    border-color: #1B5E20;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-vision-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .mission-vision-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-box {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .video-container {
        height: 40vh;
        max-height: 350px;
    }
    
    .video-controls-wrapper {
        height: 80px;
    }
    
    .video-control-btn {
        bottom: 20px;
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .video-control-btn span {
        display: none;
    }
    
    .video-control-btn i {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .play-pause-btn {
        right: 85px;
    }
    
    .mute-btn {
        right: 20px;
    }
}

@media (max-width: 400px) {
    .video-container {
        height: 35vh;
        max-height: 300px;
    }
    
    .video-control-btn {
        bottom: 15px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .video-control-btn i {
        font-size: 1.2rem;
    }
    
    .play-pause-btn {
        right: 75px;
    }
    
    .mute-btn {
        right: 15px;
    }
}
