/* Global Styles */
:root {
    --primary-color: #FF671F; /* Indian Saffron/Orange - energetic & cultural */
    --secondary-color: #138808; /* Indian Green - subtle accents */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-light-gray: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e65c1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 15px;
    border: none;
}

.btn-block:hover {
    background-color: var(--primary-color);
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 100px; /* Offset for fixed header */
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, #ffffff 60%, #fff5f0 40%); /* Subtle dual tone */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-headline {
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.stats-bar {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 20px 20px 0px rgba(255, 103, 31, 0.1); /* Subtle saffron shadow offset */
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
}

.experience-badge span {
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    color: var(--text-dark);
}

.experience-badge p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.about-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: var(--bg-light-gray);
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.program-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 103, 31, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.link-arrow {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    color: var(--primary-color);
    gap: 10px;
}

/* Transformations */
.transformations {
    padding: 80px 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Optimized for responsiveness */
    gap: 20px;
}

.trans-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
}

.trans-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trans-item:hover img {
    transform: scale(1.05);
}

.trans-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-weight: 600;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #000;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.mute-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.mute-btn:hover {
    background-color: var(--primary-color);
}

/* Gallery - Full Width Grid */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light-gray);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 15px;
    padding: 0 15px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item .overlay i {
    color: var(--white);
    font-size: 2rem;
    background: rgba(255, 103, 31, 0.8);
    padding: 15px;
    border-radius: 50%;
}

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

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light-gray);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.c-item:hover {
    transform: translateX(10px);
    background: #fff5f0;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.c-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.c-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.c-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fafafa;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 103, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #111;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #777;
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 1001; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
    }

    .nav-menu.active { left: 0; }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link { font-size: 1.2rem; }

    .hero-content, .about-wrapper, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        background: var(--bg-white); /* Reset gradient for mobile stack */
        padding-top: 80px;
        text-align: center;
    }

    .hero-text p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .stats-bar { justify-content: center; }
    
    .about-image { order: -1; } /* Image first on mobile */
    .experience-badge { right: 0; left: 0; margin: auto; width: fit-content; bottom: -20px; }
    
    .footer-content { flex-direction: column; text-align: center; }
    
    .gallery-container { grid-template-columns: repeat(2, 1fr); }
    
    .video-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    .stats-bar { flex-direction: column; gap: 20px; }
    .stats-bar .stat-item { border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .gallery-container { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
