
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Fredoka', sans-serif;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    top: 30%;
    left: 70%;
    width: 60px;
    height: 60px;
    background: var(--green);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 4s;
}

.shape:nth-child(4) {
    top: 70%;
    left: 20%;
    width: 70px;
    height: 70px;
    background: var(--sky);
    border-radius: 50%;
    animation-delay: 1s;
}

.shape:nth-child(5) {
    top: 20%;
    left: 90%;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(30px) rotate(270deg); }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar a:hover {
    color: var(--yellow);
    transform: translateX(3px);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    padding: 1rem 0;
    transition: all 0.5s;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.25);
}

.navbar-brand {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--red), var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.phone-btn {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(248, 156, 42, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(248, 156, 42, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(237, 28, 36, 0.6); }
}

.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF8F0 50%, #E8F5FF 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--red), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.hero p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    animation: fadeInUp 1s 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1s 0.4s both;
    transition: all 0.3s;
}

.hero-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s;
}

.hero-img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 2;
}

.hero-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: bounce 3s infinite;
}

.deco-1 {
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    box-shadow: 0 20px 40px rgba(248, 156, 42, 0.4);
}

.deco-2 {
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--green), var(--sky));
    box-shadow: 0 20px 40px rgba(57, 181, 74, 0.4);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFE5F1, #FFF8F0);
    border-radius: 25px;
    transition: all 0.4s;
    border: 3px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px rgba(248, 156, 42, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5F1 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--red), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s;
    border: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 156, 42, 0.1) 0%, transparent 70%);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(248, 156, 42, 0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FFE8D8, #FFD4B8);
    color: var(--orange);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #FFE8E8, #FFD0D0);
    color: var(--red);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #E8FFE8, #D0FFD0);
    color: var(--green);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #E8F8FF, #D0ECFF);
    color: var(--sky);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #FFFDE8, #FFFAD0);
    color: #E5C100;
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #FFE8D8, #FFDDC8);
    color: var(--orange);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Program Section */
.program-section {
    padding: 100px 0;
    background: white;
}

.program-card {
    background: linear-gradient(135deg, #FFE5F1, #FFF8F0);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s;
    border: 3px solid transparent;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(248, 156, 42, 0.3);
}

.program-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.6s;
}

.program-card:hover .program-img {
    transform: scale(1.1);
}

.program-content {
    padding: 35px;
}

.program-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.program-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-features li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.program-features li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F5FF, #FFF8F0);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    border: 3px solid transparent;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(248, 156, 42, 0.3);
}

.video-thumb {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    overflow: hidden;
}

.video-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.video-card:hover .video-thumb::before {
    background: rgba(0,0,0,0.5);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--orange);
    color: white;
}

.video-title {
    padding: 25px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFE5F1, #FFF8F0);
    border-radius: 30px;
    padding: 45px 35px;
    transition: all 0.4s;
    border: 3px solid transparent;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(248, 156, 42, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0, #FFE5F1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 156, 42, 0.9), rgba(237, 28, 36, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange), var(--red));
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-cta {
    background: white;
    color: var(--orange);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--red);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    margin-right: 12px;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-5px) rotate(10deg);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    /* color: white; */
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.btn-outline-custom {
    border: 3px solid var(--primary);
    color: var(--primary);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    background: transparent;
    transition: all 0.4s;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(248, 156, 42, 0.5);
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(248, 156, 42, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
}


/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    animation: slideUp 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.video-modal-close:hover {
    transform: rotate(90deg);
    background: var(--orange);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s ease;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--red);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s;
}

.image-modal-close:hover {
    transform: rotate(90deg);
    background: var(--orange);
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 156, 42, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
}

.image-nav:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.image-nav.prev {
    left: 20px;
}

.image-nav.next {
    right: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Video Card Styles */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5F1 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(248, 156, 42, 0.3);
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-btn i {
    font-size: 30px;
    color: var(--red);
    margin-left: 5px;
}

.video-title {
    padding: 20px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 156, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: white;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(248, 156, 42, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--orange);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--orange);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title h2 {
        font-size: 1.8rem;
    }

    .image-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .image-nav.prev {
        left: 10px;
    }

    .image-nav.next {
        right: 10px;
    }
}

/* Teachers Section */
.teachers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5F1 100%);
}

.teacher-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s;
    border: 3px solid transparent;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.teacher-card:hover {
    transform: translateY(-15px);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(248, 156, 42, 0.3);
}

.teacher-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5F1, #FFF8F0);
}

.teacher-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.teacher-card:hover .teacher-img {
    transform: scale(1.1) rotate(5deg);
}

.teacher-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(248, 156, 42, 0.5);
    animation: bounce 2s infinite;
}

.teacher-content {
    padding: 30px 25px;
    text-align: center;
}

.teacher-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Fredoka', sans-serif;
}

.teacher-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.teacher-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.teacher-qualification {
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.teacher-qualification span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.teacher-qualification span i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Responsive for Teachers Section */
@media (max-width: 768px) {
    .teachers-section {
        padding: 60px 0;
    }

    .teacher-name {
        font-size: 1.2rem;
    }

    .teacher-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}