* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Helvetica', sans-serif; background: ; padding-top: 10px; }
         header {
            background: white;
            color: black;
            text-align: center;
            font-size: 38px;
            font-weight: bold;
            position: relative; 
            overflow: visible; 
            z-index: 1000;

        }
        .header-content {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            font-size: 20px;
            border-radius: 25px;
            border: none;
            padding: 0.9rem ;
            color: white;
            background: #ff7a3c;
            
        }
 
         nav a {
            color: #666; text-decoration: none; font-size: 18px; font-weight: 700;
            transition: color 0.3s;margin-right: 40px;
        }
        nav a:hover { color: #ff7a3c }
        .hamburger { display: none; font-size: 28px; cursor: pointer; }
        .hero{
            background: linear-gradient(rgba(73, 69, 69, 0.6), rgba(48, 47, 47, 0.6)), url('img/00.png') no-repeat center center/cover;
            box-shadow: 0 4px 8px #ff7a3c  ;
            height: 600px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: 40px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
        }
        .hero h1 {
            font-size: 60px;
            font-weight: 900;
            margin: 0 0 1.5rem;
            line-height: 1;
            color: white;
        }
        .hero p {
            font-size: 1.8rem;
            margin: 0 0 3rem;
            font-weight: 500;
            opacity: 0.9;
            max-width: 500px;
            color: white;
        }
         .about-section {
    padding: 100px 60px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.about-image img {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.about-image img:hover {
    transform: scale(1.01);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about-content p{
    font-size: 18px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #e55f20;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.program{
        padding: 100px 60px;
                    background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);

}
.program-img img {
    width: 100%;
 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);

}
.program-heading{
        font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #e55f20;
    font-size: 60px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    margin-top: 30px;
}
.program p{
   font-size: 20px;
   text-align: center;
}
.program-section {
    padding: 5px 60px;
    background: #fff;
}
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.program-image img {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.program-image img:hover {
    transform: scale(1.01);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.program-content p{
    font-size: 18px;
}
 .gallery {
    padding: 80px 60px;
    background: linear-gradient(160deg,rgba(252, 138, 8, 1) 0%, rgba(250, 250, 250, 1) 60%, rgba(250, 250, 250, 1) 100%, rgba(232, 137, 28, 1) 71%);
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #e55f20;
    font-size: 50px;
    margin: 40px;
}

.swiper {
    width: 100%;
    height: clamp(380px, 65vw, 620px);  
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.swiper-slide img:hover {
    transform: scale(1.06);
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff7a3c !important;
}

.swiper-pagination-bullet-active {
    background: #ff7a3c !important;
}
        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);
        }

        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-heading {
            color: #e55f20;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
        }

        .contact-form {
            max-width: 700px;
            margin: 60px auto 0;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        input, textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #ff7a3c;
            box-shadow: 0 0 0 4px rgba(255,122,60,0.15);
        }

        .btn-submit {
            background: #ff7a3c;
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #e55f20;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(229,95,32,0.3);
        }

        /* Footer */
        footer {
            background: #222;
            color: #ccc;
            padding: 80px 60px 30px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ff7a3c;
            margin-bottom: 20px;
        }

        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .social-links a {
            color: #aaa;
            font-size: 1.6rem;
            margin-right: 20px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: #ff7a3c;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
        }
         /* Responsive adjustments start here */
        @media (max-width: 1024px) {
            .hero {
                height: 500px;
            }
            .hero h1 {
                font-size: 48px;
            }
            .hero p {
                font-size: 1.5rem;
            }
            .about-section, .program, .gallery, footer {
                padding: 60px 30px;
            }
            .program-heading {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }
            .logo {
                font-size: 18px;
                padding: 0.7rem 1.2rem;
            }
            nav {
                width: 100%;
                text-align: center;
            }
            nav a {
                font-size: 16px;
                margin-right: 20px;
                margin-bottom: 10px;
            }

            .hero {
                height: 400px;
                margin-top: 20px;
            }
            .hero h1 {
                font-size: 38px;
            }
            .hero p {
                font-size: 1.3rem;
                max-width: 90%;
            }

            .about-grid, .program-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .about-image img, .program-image img {
                width: 100%;
            }
            .about-section, .program, .program-section, .gallery {
                padding: 50px 20px;
            }
            .program-heading {
                font-size: 38px;
            }
            .program p {
                font-size: 18px;
            }
            .gallery {
                padding: 50px 20px;
            }
            .contact-form {
                padding: 30px;
                margin: 40px 15px 0;
            }
            footer {
                padding: 60px 20px 20px;
            }

        }

        @media (max-width: 480px) {
            .hero {
                height: 222px;
            }
            .hero h1 {
                font-size: 24px;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .logo {
                font-size: 16px;
            }
            nav a {
                font-size: 14px;
                margin-right: 12px;
            }
            h2 {
                font-size: 32px !important;
            }
            .contact-heading {
                font-size: 2.2rem;
            }
            .btn-submit {
                padding: 14px 30px;
                font-size: 16px;
            }
        }
        @media (max-width: 1024px) {
    .swiper {
        height: clamp(360px, 70vw, 540px);
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 20px;
    }
    .gallery h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .swiper {
        height: clamp(380px, 85vw, 520px) !important;  /* ← bigger + important to override */
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 15px;
    }
    .gallery h2 {
        font-size: 32px;
    }
    .swiper {
        height: clamp(340px, 95vw, 480px) !important;  /* almost full width on small phones */
    }
}