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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #DCCDBA;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #DCCDBA;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #572e54;
}

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

.whatsapp-btn {
    background: #77a084;
    color: white;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #5d8069;
}

.call-btn {
    background: white;
    color: #572e54;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

.call-btn:hover {
    background: #572e54;
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    margin-top: 90px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DCCDBA;
    padding: 2rem 5%;
}

.hero img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SLIDER */
.slider-section {
    padding: 10rem 0;
    background: #f3ede4;
    overflow: hidden;
}

.slidetext {
    font-size: 2.5rem;
    font-weight: 1000;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.slidetext p {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 1000;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.slides {
    display: flex;
    gap: 30px;
    animation: slideTrain 30s linear infinite;
}

.slide {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.s1 {
    background-image: url('../images/1.png');
}

.s2 {
    background-image: url('../images/2.png');
}

.s3 {
    background-image: url('../images/3.png');
}

.s4 {
    background-image: url('../images/4.png');
}

.s5 {
    background-image: url('../images/5.jpeg');
}

.s6 {
    background-image: url('../images/ChatGPT\ Image\ Jan\ 19\,\ 2026\,\ 04_15_48\ PM.png');
}

@keyframes slideTrain {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ABOUT */
.about {
    padding: 6rem 5%;
    background: #f8f8f8;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    background: #f3ede4;
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
}

.about-img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certificate-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #706d56, #572e54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.about-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid #706d56;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-highlight h3 {
    margin-bottom: 0.5rem;
    color: #572e54;
}

/* VIDEO SECTION */
.video-section {
    padding: 6rem 5%;
    background: #f8f8f8;
    text-align: center;

}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #706d56, #572e54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.video-link-wrapper {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-decoration: none;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-badge {
    background: rgba(255, 0, 0, 0.9);
}

/* PROGRAMS */
.programs {
    padding: 6rem 5%;
    background: #f3ede4;
    text-align: center;
}

.programs h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #706d56, #572e54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: #572e54;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.program-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-features {
    list-style: disc inside;
    margin-bottom: 1.5rem;
    color: #444;
}

.program-features li {
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #706d56;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.primary-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #706d56;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.primary-btn:hover {
    background: #572e54;
}

/* GALLERY */
.gallery {
    padding: 6rem 5%;
    background: #f3ede4;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #706d56, #572e54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* CONTACT - Elegant Redesign */
.contact {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #706d56 0%, #572e54 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.contact>p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.3rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Email Button */
.email-btn {
    background: #EA4335;
    color: white;
}

.email-btn:hover {
    background: #d33828;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Call Button */
.call-btn {
    background: white;
    color: #572e54;
}

.call-btn:hover {
    background: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.5);
}

/* YouTube Button */
.youtube-btn {
    background: #FF0000;
    color: white;
}

.youtube-btn:hover {
    background: #cc0000;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #d87d2a 0%, #ce5830 25%, #c31e38 50%, #b31b5a 75%, #a3157a 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .slidetext {
        font-size: 2rem;
    }

    .slidetext p {
        font-size: 1.2rem;
    }

    .slide {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #DCCDBA;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero {
        margin-top: 70px;
        min-height: 60vh;
    }

    /* Slider */
    .slider-section {
        padding: 5rem 0;
    }

    .slidetext {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .slidetext p {
        font-size: 1rem;
    }

    .slide {
        width: 250px;
        height: 350px;
    }

    /* About */
    .about {
        padding: 4rem 5%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }



    .section-subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }



    /* Programs */
    .programs {
        padding: 4rem 5%;
    }

    .programs h2 {
        font-size: 2rem;
    }

    .programs h3 {
        font-size: 1.8rem;
    }


    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Gallery */
    .gallery {
        padding: 4rem 5%;
    }

    .gallery h2 {
        font-size: 2rem;
    }

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

    /* Contact */
    .contact {
        padding: 4rem 5%;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact>p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .slidetext {
        font-size: 1.2rem;
    }

    .slidetext p {
        font-size: 0.9rem;
    }

    .slide {
        width: 200px;
        height: 300px;
    }

    .about-content h2,
    .programs h2,
    .gallery h2,
    .video-section h2 {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ================= VIDEO - UPDATED ================= */
/* ================= VIDEO - UPDATED ================= */

/* Desktop Version - Text above video, video has overlay */
.video-section {
    padding: 6rem 5%;
    text-align: center;
    background: #f8f8f8;
}

.video-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #333;
}

.video-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    background-image: url('../images/maxresdefault.jpg');
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Desktop overlay on video */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

/* Mobile Version - Text overlaying the video */
@media (max-width: 768px) {
    .video-section {
        padding: 2rem 5% 0;
        position: relative;
        min-height: 550px;
    }

    .video-container {
        position: absolute;
        background-image: url('../images/maxresdefault.jpg');
        top: 35%;
        left: 0;
        width: 100%;
        height: 65%;
        border-radius: 0;
        box-shadow: none;
    }

    .video-container::before {
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .video-container iframe,
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Text at the top on mobile */
    .video-section h2 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: 3;
        color: #333;
        font-size: 1.8rem;
        margin: 0 0 1rem 0;
        padding: 0 1.5rem;
        width: 100%;
        text-shadow: none;
        line-height: 1.3;
    }

    .video-section p {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: 3;
        color: #333;
        font-size: 0.95rem;
        margin: 0;
        padding: 0 1.5rem;
        width: 100%;
        text-shadow: none;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .video-section {
        min-height: 350px;
    }

    .video-section h2 {
        font-size: 1.6rem;
    }

    .video-section p {
        font-size: 0.95rem;
    }
}