#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: var(--primary);
    overflow: hidden;
    max-width: 100vw;
}

.about-hero .video-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.about-hero .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(1.3);
    animation: subtleMove 20s linear infinite;
}

.about-story,
.mission-vision,
.director-section,
.cta-section,
.achievements,
.footer {
    position: relative;
    z-index: 1;
}
.about-story::before,
.mission-vision::before,
.director-section::before,
.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.95;
    z-index: -1;
}

.about-hero {
    padding: 160px 0 80px;
    color: var(--lighter);
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-hero .page-title {
    color: var(--lighter);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.about-story {
    padding: 100px 0;
    background: transparent;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--darker);
    position: relative;
    padding-bottom: 15px;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
}

.story-text strong {
    color: var(--primary);
    font-weight: 600;
}

.story-image {
    width: 100%;
    height: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.building-image:hover {
    transform: scale(1.05);
}

.mission-vision {
    padding: 100px 0;
    background: transparent;
}

.mission-vision::before {
    background: var(--primary-dark);
    opacity: 0.95;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: ctaPulse 6s linear infinite;
    z-index: -1;
    overflow: hidden;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    background: var(--lighter);
    position: relative;
    z-index: 2;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-card.mission {
    border-top: 4px solid var(--primary);
}

.mv-card.vision {
    border-top: 4px solid var(--primary);
}

.mv-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--darker);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Director Section */
.director-section {
    padding: 100px 0;
    background: transparent;
}

.director-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--lighter);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.director-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.director-photo:hover {
    transform: scale(1.2);
}

.director-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.director-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.director-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    line-height: 1.6;
}

.director-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

.director-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.director-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.director-contact i {
    color: var(--primary);
    width: 20px;
    font-size: 1rem;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--lighter);
    text-align: center;
    position: relative;
    overflow: hidden; /* Needed for animation */
    z-index: 2;
}

/* Rotating Radial Animation Layer */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: ctaPulse 6s linear infinite;
    pointer-events: none; /* Keeps buttons clickable */
    z-index: -1;
    overflow: hidden;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}
/* Content Styles */
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--lighter);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* Achievements */
.achievements {
    padding: 100px 0;
    background: transparent;
}

.achievements::before {
    background: var(--light);
    opacity: 0.95;
}

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

.achievement {
    text-align: center;
    padding: 2rem;
    background: var(--lighter);
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.achievement h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.achievement p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .story-content {
        gap: 3rem;
    }
    
    .achievements-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        height: 350px;
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .director-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .director-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 60px;
    }
    
    .about-hero .page-title {
        font-size: 2.5rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .mv-card {
        padding: 2rem;
    }
    
    .director-card {
        padding: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .achievement {
        padding: 1.5rem;
    }
    
    .achievement h3 {
        font-size: 2rem;
    }
}