/* --- Root Theme Settings & Reset --- */
:root {
    --primary-maroon: #4A2E35;
    /* Logo Maroon Background */
    --accent-purple: #5D3FD3;
    /* Logo Purple Outline Curve */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F9F6F0;
    /* Warm soft background for contrast */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* --- Buttons Styles --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-call {
    background-color: var(--accent-purple);
    color: var(--text-light);
}

.btn-call:hover {
    background-color: var(--text-light);
    color: var(--primary-maroon);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--accent-purple);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #4a32b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-maroon);
}

/* --- 1. Navbar Layout --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-maroon);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-container .logo-img {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 4px;
}

.nav-menu a {
    color: #E2D4D7;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 4px;
}

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* --- 2. Hero Slider --- */
.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(93, 63, 211, 0.4);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-purple);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* --- Global Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

/* --- 3. About Us Section --- */
.about-section {
    background-color: var(--bg-light);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text .sub-heading {
    color: var(--accent-purple);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin: 10px 0 20px 0;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-maroon);
}

.feature-item i {
    color: var(--accent-purple);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(74, 46, 53, 0.2);
}

/* --- 4. Events Section --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-img {
    position: relative;
    height: 200px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent-purple);
    color: white;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

.event-body {
    padding: 25px;
}

.event-body h3 {
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

/* --- 5. Gallery Section --- */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- 6. Contact Section --- */
.contact-wrapper {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    background-color: var(--primary-maroon);
    color: white;
    padding: 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.info-details {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.contact-form-container {
    flex: 1.3;
    padding: 50px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-purple);
}

.btn-submit {
    background-color: var(--primary-maroon);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--accent-purple);
}

/* --- 7. Footer --- */
.footer {
    background-color: #331F24;
    /* Even deeper shade of logo maroon */
    color: #E2D4D7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3,
.footer-links h4,
.footer-socials h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #E2D4D7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-purple);
}

.social-icons a {
    display: inline-block;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- Responsive Styling (Tablet & Mobile) --- */
@media(max-width: 992px) {

    .about-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media(max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--primary-maroon);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
        /* Hides Call button on tiny headers to prevent clipping */
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }
}

.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    /* Crucial for the animation */
    opacity: 0;
    transition: opacity 1.0s ease-in-out;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* When JS adds this class, it fades in */
.slide.active {
    opacity: 1;
    z-index: 2;
}

.footer-logo img {
    height: 100px !important;
    width: auto;
}

/* --- Gallery Magnifier Popup (Lightbox) --- */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* Stays completely on top of everything else, including navbar */
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(74, 46, 53, 0.95);
    /* Using your primary logo maroon color with opacity */
    backdrop-filter: blur(5px);
    /* Softly blurs the background content */
    align-items: center;
    justify-content: center;
}

/* Lightbox Content (The Enlarged Image) */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Animation scale-up effect */
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When active, show image at full size */
.lightbox.active {
    display: flex;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

/* The Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-purple);
    transform: scale(1.1);
}

/* Change cursor to pointer for gallery images to show they are clickable */
.gallery-item img {
    cursor: pointer;
}

@media(max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        /* Adjust based on your header height */
        left: -100%;
        /* Hides the menu off-screen initially */
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--primary-maroon);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }

    /* This class is injected by the JS on click */
    .nav-menu.active {
        left: 0;
        /* Slides the menu into view */
    }

    .nav-menu a {
        margin: 20px 0;
        font-size: 1.2rem;
        display: block;
        width: auto;
    }

    .menu-toggle {
        display: block;
        /* Ensures the hamburger button is visible on mobile views */
        z-index: 1001;
    }
}

.event-hero {
    background: linear-gradient(rgba(74, 46, 53, 0.85), rgba(74, 46, 53, 0.85)), url('images/event3.jfif') no-repeat center center/cover;
    padding: 120px 0 60px 0;
    text-align: center;
    color: white;
}

.event-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.1rem;
    margin-top: 15px;
    flex-wrap: wrap;
}

.event-meta span i {
    color: var(--accent-purple);
    margin-right: 8px;
}

.event-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content img.main-event-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-content h3 {
    color: var(--primary-maroon);
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
}

.main-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent-purple);
}

.highlight-box h4 {
    font-size: 1.8rem;
    color: var(--primary-maroon);
    margin-bottom: 5px;
}

.sidebar-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    position: sticky;
    top: 110px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 10px;
}

.photo-gallery-title {
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

@media(max-width: 992px) {
    .event-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: relative;
        top: 0;
    }

    .event-hero h1 {
        font-size: 2.2rem;
    }
}

.policy-hero {
    background: linear-gradient(rgba(74, 46, 53, 0.9), rgba(74, 46, 53, 0.9)), url('images/slider1.jfif') no-repeat center center/cover;
    padding: 140px 0 60px 0;
    text-align: center;
    color: white;
}

.policy-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.policy-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.policy-card h2 {
    color: var(--primary-maroon);
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h2 i {
    color: var(--accent-purple);
    font-size: 1.3rem;
}

.policy-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-card ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: square;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-card {
        padding: 25px 20px;
    }
}

.terms-hero {
    background: linear-gradient(rgba(74, 46, 53, 0.9), rgba(74, 46, 53, 0.9)), url('images/slider1.jfif') no-repeat center center/cover;
    padding: 140px 0 60px 0;
    text-align: center;
    color: white;
}

.terms-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.terms-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.terms-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.terms-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.terms-card h2 {
    color: var(--primary-maroon);
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-card h2 i {
    color: var(--accent-purple);
    font-size: 1.3rem;
}

.terms-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-card ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: square;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.2rem;
    }

    .terms-card {
        padding: 25px 20px;
    }
}

/* वीडियो सेक्शन का मुख्य लेआउट */
.video-section {
    background-color: #fcf8f2;
    /* ऑफ-व्हाइट बैकग्राउंड */
    padding: 60px 20px;
    font-family: sans-serif;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    /* आपकी पसंद के अनुसार लेफ्ट अलाइनमेंट */
}

/* हेडर स्टाइल */
.video-header h2 {
    color: #4a2828;
    /* डार्क ब्राउन */
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-header p {
    color: #6d5252;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 700px;
}

/* वर्टिकल वीडियो बॉक्स के लिए खास सेटिंग्स */
.video-wrapper.vertical-video {
    position: relative;
    width: 100%;
    max-width: 360px;
    /* वर्टिकल वीडियो को सुंदर दिखाने के लिए चौड़ाई सीमित की है */
    margin: 0;
    /* लेफ्ट अलाइन रखने के लिए */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 35px rgba(74, 40, 40, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.7);
    /* ग्लास बॉर्डर */
}

.video-wrapper.vertical-video video {
    width: 100%;
    display: block;
    border-radius: 12px;
    aspect-ratio: 9 / 16;
    /* मोबाइल/वर्टिकल वीडियो का परफेक्ट रेशियो */
    object-fit: cover;
}

/* प्ले बटन ओवरले */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 40, 40, 0.45);
    /* थीम बेस्ड ट्रांसपेरेंट डार्क लेयर */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(74, 40, 40, 0.25);
}

/* कॉल बटन थीम से मैच करता हुआ पल्सिंग प्ले बटन */
.play-btn {
    background: #6f3b93;
    /* पर्पल/वॉइलेट थीम बटन कलर */
    border: none;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(111, 59, 147, 0.7);
    animation: pulsePlay 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #5d317c;
}

/* आपके कांटेक्ट बटन जैसा पल्स एनीमेशन */
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 59, 147, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(111, 59, 147, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 59, 147, 0);
    }
}

/* वीडियो प्ले होने पर ओवरले गायब करने के लिए */
.video-wrapper.is-playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* मोबाइल रिस्पॉन्सिवनेस */
@media (max-width: 768px) {
    .video-header h2 {
        font-size: 1.6rem;
    }

    .video-wrapper.vertical-video {
        max-width: 100%;
        /* मोबाइल स्क्रीन पर पूरी चौड़ाई ले लेगा */
    }

    .play-btn {
        width: 65px;
        height: 65px;
    }
}

/* वीडियो सेक्शन स्टाइलिंग */
.video-section {
    background-color: #fcf8f2;
    /* आपके पेज का लाइट ऑफ-व्हाइट बैकग्राउंड */
    padding: 60px 20px;
    font-family: sans-serif;
    /* या जो भी फॉन्ट आप हिंदी के लिए यूज़ कर रहे हैं */
}

.video-container {
    max-width: 900px;
    /* वीडियो की चौड़ाई को सिन्गल व्यू के लिए ऑप्टिमाइज्ड रखा है */
    margin: 0 auto;
    text-align: left;
    /* आपकी प्रेफरेंस के अनुसार लेफ्ट अलाइनमेंट */
}

/* हेडर स्टाइलिंग */
.video-header h2 {
    color: #4a2828;
    /* आपके हेडर का डार्क ब्राउन कलर */
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-header p {
    color: #6d5252;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* वीडियो बॉक्स और ग्लास-इफेक्ट बॉर्डर */
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(74, 40, 40, 0.15);
    /* थीम बेस्ड शैडो */
    border: 4px solid rgba(255, 255, 255, 0.6);
    /* हल्का ग्लास लुक */
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    /* स्टैंडर्ड वीडियो रेशियो */
    object-fit: cover;
}

/* प्ले बटन ओवरले */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 40, 40, 0.4);
    /* डार्क ब्राउन ट्रांसपेरेंट शेड */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(74, 40, 40, 0.2);
}

/* कॉल बटन थीम से मैच करता हुआ पल्सिंग प्ले बटन */
.play-btn {
    background: #6f3b93;
    /* आपके 'कॉल करें' बटन का पर्पल/वॉइलेट शेड */
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(111, 59, 147, 0.7);
    animation: pulsePlay 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #5d317c;
    /* होवर पर थोड़ा गहरा */
}

/* प्ले बटन के लिए पल्स एनीमेशन (जैसा आपके कांटेक्ट बटन्स पर है) */
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 59, 147, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(111, 59, 147, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 59, 147, 0);
    }
}

/* वीडियो प्ले होने पर ओवरले छुपाने के लिए */
.video-wrapper.is-playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* मोबाइल रिस्पॉन्सिवनेस */
@media (max-width: 768px) {
    .video-header h2 {
        font-size: 1.6rem;
    }

    .play-btn {
        width: 65px;
        height: 65px;
    }
}

/* कॉन्टैक्ट पेज स्पेसिफिक सीएसएस */
.contact-page-section {
    background-color: #fcf8f2;
    /* ऑफ-व्हाइट बैकग्राउंड */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* लेफ्ट इनफार्मेशन कॉलम */
.contact-info-column {
    text-align: left;
}

.contact-info-column h3 {
    color: #4a2828;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-desc {
    color: #6d5252;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.info-links-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    background: rgba(111, 59, 147, 0.1);
    /* पर्पल बटन का लाइट रिफ्लेक्शन */
    color: #6f3b93;
    /* पर्पल थीम कलर */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: #4a2828;
    font-size: 1.15rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.info-text p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.info-text p a {
    color: #6f3b93;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text p a:hover {
    color: #4a2828;
}

.contact-social-block {
    margin-top: 40px;
    border-top: 1px solid rgba(74, 40, 40, 0.1);
    padding-top: 25px;
}

.contact-social-block h4 {
    color: #4a2828;
    margin-bottom: 15px;
}

/* राइट फॉर्म कॉलम मॉडिफिकेशन */
.contact-page-card {
    background: #fff;
    padding: 35px !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(74, 40, 40, 0.08) !important;
    border: 1px solid rgba(74, 40, 40, 0.05);
}

.contact-page-card h3 {
    color: #4a2828;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    text-align: left;
    color: #4a2828;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #dcd0c0 !important;
    border-radius: 6px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6f3b93 !important;
    box-shadow: 0 0 0 3px rgba(111, 59, 147, 0.15);
    outline: none;
}

/* मोबाइल रिस्पॉन्सिवनेस */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-card {
        padding: 25px !important;
    }
}

/* अबाउट पेज मुख्य स्टाइलिंग */
.about-page-section {
    background-color: #fcf8f2;
    /* ऑफ-व्हाइट बैकग्राउंड */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text-column {
    text-align: left;
}

.about-text-column h3 {
    color: #4a2828;
    /* डार्क ब्राउन */
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-lead {
    font-size: 1.2rem;
    color: #4a2828;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text-column p {
    color: #6d5252;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* इमेज स्टाइलिंग */
.about-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(74, 40, 40, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    /* ग्लास लुक बॉर्डर */
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* मिशन और विजन सेक्शन (लाइट ब्राउन बैकग्राउंड) */
.mission-vision-section {
    background-color: #f5ede1;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(74, 40, 40, 0.05);
    text-align: left;
    border: 1px solid rgba(74, 40, 40, 0.05);
}

.card-icon {
    color: #6f3b93;
    /* पर्पल थीम कलर */
    font-size: 2rem;
    margin-bottom: 15px;
}

.mission-card h4 {
    color: #4a2828;
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.mission-card p {
    color: #6d5252;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* कोर वर्क सेवा सेक्शन */
.core-work-section {
    background-color: #fcf8f2;
}

.section-title {
    color: #4a2828;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-list-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-block-item {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(74, 40, 40, 0.03);
    align-items: flex-start;
    text-align: left;
}

.service-icon {
    background: rgba(111, 59, 147, 0.1);
    color: #6f3b93;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-content h4 {
    color: #4a2828;
    font-size: 1.25rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.service-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* मोबाइल रिस्पॉन्सिवनेस */
@media (max-width: 991px) {

    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text-column h3 {
        font-size: 1.8rem;
    }
}