/* बेसिक रीसेट और ग्लोबल स्टाइल */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    /* गहरा काला बैकग्राउंड */
    color: #e0e0e0;
    /* हल्का ग्रे टेक्स्ट */
}

.container {
    max-width: 1200px;
    /* कंटेंट के लिए अधिकतम चौड़ाई */
    margin: 0 auto;
    padding: 0 20px;
    /* साइड में थोड़ा स्पेस */
}

/* नेविगेशन बार स्टाइल */
.navbar {
    background-color: #000;
    /* नेविगेशन बार का काला बैकग्राउंड */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
    /* हरे रंग की हल्की शैडो */
    position: sticky;
    /* स्क्रॉल करने पर ऊपर टिका रहेगा */
    top: 0;
    z-index: 1000;
    /* सुनिश्चित करें कि यह दूसरे एलिमेंट्स के ऊपर रहे */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    /* लोगो और लिंक्स को अलग-अलग छोर पर */
    align-items: center;
    /* वर्टिकली सेंटर में */
}

.navbar .logo {
    color: #00ff00;
    /* लोगो का चमकीला हरा रंग */
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    /* होवर पर रंग बदलने के लिए ट्रांज़िशन */
}

.navbar .logo:hover {
    color: #00e600;
    /* होवर पर थोड़ा गहरा हरा */
}

.navbar .nav-links {
    list-style: none;
    /* बुलेट पॉइंट्स हटाएँ */
    margin: 0;
    padding: 0;
    display: flex;
    /* लिंक्स को एक लाइन में दिखाने के लिए */
}

.navbar .nav-links li {
    margin-left: 30px;
    /* लिंक्स के बीच स्पेस */
}

.navbar .nav-links a {
    color: #00cc00;
    /* लिंक का हरा रंग */
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
    /* अंडरलाइन इफेक्ट के लिए */
    transition: color 0.3s ease;
}

.navbar .nav-links a::after {
    /* होवर पर अंडरलाइन इफेक्ट */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #00ff00;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #00ff00;
    /* होवर पर चमकीला हरा */
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

/* मोबाइल के लिए नेविगेशन टॉगल बटन */
.nav-toggle {
    display: none;
    /* डेस्कटॉप पर छुपा हुआ */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    /* यह लिंक्स के ऊपर रहे */
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00ff00;
    /* हरे रंग की बर्गर लाइनें */
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

/* टॉगल बटन के क्लिक होने पर एनिमेशन (JavaScript से होगा) */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        /* मोबाइल पर लिंक्स छुपाएँ */
        flex-direction: column;
        /* वर्टिकल लिस्ट */
        background-color: #000;
        /* मोबाइल मेन्यू का बैकग्राउंड */
        position: absolute;
        top: 70px;
        /* navbar की ऊंचाई के हिसाब से एडजस्ट करें */
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 255, 0, 0.2);
    }

    .navbar .nav-links.active {
        display: flex;
        /* जब एक्टिव हो तो दिखाएँ */
    }

    .navbar .nav-links li {
        margin: 15px 0;
        /* मोबाइल लिंक्स के बीच स्पेस */
    }

    .navbar .nav-links a {
        font-size: 1.2em;
    }

    .nav-toggle {
        display: block;
        /* मोबाइल पर बर्गर आइकन दिखाएँ */
    }
}

/* (पिछले CSS कोड के बाद जोड़ें) */

/* इमेज स्लाइडर सेक्शन */
.image-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
    /* नेविगेशन बार के साथ गैप कम करने के लिए */
    background-color: #0a0a0a;
    /* स्लाइडर सेक्शन का गहरा बैकग्राउंड */
}


.slider-container {
    max-width: 1200px;
    /* यहाँ अधिकतम चौड़ाई सेट करें, उदाहरण के लिए 1200px */
    margin: 0 auto;
    /* कंटेनर को सेंटर में अलाइन करने के लिए */
    position: relative;
    background-color: #000;
    /* स्लाइडर का काला बैकग्राउंड */
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    /* हरे रंग की शैडो */
}

/* स्लाइडर की प्रत्येक इमेज */
.slide img {
    width: 100%;
    /* यह सुनिश्चित करता है कि इमेज कंटेनर की चौड़ाई के हिसाब से हो */
    height: 500px;
    /* इमेज की हाइट फिक्स करें */
    object-fit: cover;
    /* इमेज को कटे बिना कंटेनर में फिट करें */
    display: block;
}

.slide {
    display: none;
    /* डिफ़ॉल्ट रूप से सभी स्लाइड को छुपाएँ */
    position: relative;
    /* स्लाइड टेक्स्ट के लिए */
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* काले रंग का ट्रांसपेरेंट बैकग्राउंड */
    color: #00ff00;
    /* हरे रंग का टेक्स्ट */
    padding: 20px;
    text-align: center;
}

.slide-text h2 {
    margin: 0 0 10px 0;
    font-size: 2em;
    color: #00ff00;
    /* चमकीला हरा */
}

.slide-text p {
    margin: 0;
    font-size: 1.1em;
    color: #b0e0b0;
    /* हल्का हरा */
}

/* स्लाइडर एरोज़ (Previous/Next buttons) */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #00ff00;
    /* हरे रंग के एरोज़ */
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
    /* काले रंग का ट्रांसपेरेंट बैकग्राउंड */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 255, 0, 0.2);
    /* होवर पर हरा ट्रांसपेरेंट बैकग्राउंड */
    color: #fff;
    /* होवर पर सफेद टेक्स्ट */
}

/* स्लाइडर डॉट्स */
.slider-dots {
    text-align: center;
    padding: 15px 0;
    background-color: #111;
    /* डॉट्स सेक्शन का गहरा बैकग्राउंड */
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #555;
    /* डिफ़ॉल्ट डॉट का रंग */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot,
.dot:hover {
    background-color: #00ff00;
    /* एक्टिव और होवर पर हरे डॉट्स */
}

/* फे़ड एनिमेशन */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .slide-text {
        padding: 10px;
        font-size: 0.9em;
    }

    .slide-text h2 {
        font-size: 1.5em;
    }

    .prev,
    .next {
        font-size: 24px;
        padding: 10px;
        margin-top: -15px;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 3px;
    }
}
.content-section {
    padding: 20px 0; /* ऊपर और नीचे पैडिंग */
    background-color: #1a1a1a; /* सेक्शन का गहरा काला बैकग्राउंड */
    color: #e0e0e0; /* टेक्स्ट का हल्का ग्रे रंग */
    text-align: center;
}

.content-box {
    background-color: #000; /* बॉक्स का काला बैकग्राउंड */
    border: 2px solid #00ff00; /* हरे रंग का बॉर्डर */
    border-radius: 10px; /* हल्के गोल कोने */
    padding: 40px;
    margin: 0 auto; /* सेंटर में अलाइन करें */
    max-width: 800px; /* बॉक्स की अधिकतम चौड़ाई */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4); /* हरे रंग की शैडो */
}

.content-box h2 {
    color: #00ff00; /* हेडिंग का चमकीला हरा रंग */
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6); /* हल्की हरे रंग की टेक्स्ट शैडो */
}

.content-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #b0e0b0; /* पैराग्राफ का हल्का हरा रंग */
}

.content-box p:last-child {
    margin-bottom: 0; /* आखिरी पैराग्राफ के नीचे मार्जिन हटाएँ */
}

/* मोबाइल रिस्पॉन्सिवनेस के लिए कंटेंट बॉक्स */
@media (max-width: 100px) {
    .content-section {
        padding: 40px 0;
    }
    .content-box {
        padding: 25px;
        max-width: 90%; /* मोबाइल पर थोड़ा ज़्यादा चौड़ा */
    }
    .content-box h2 {
        font-size: 2em;
    }
    .content-box p {
        font-size: 1em;
    }
}
/* (पिछले CSS कोड के बाद जोड़ें/अपडेट करें) */

/* प्रोडक्ट्स सेक्शन */
/* (पिछले CSS कोड के बाद जोड़ें/अपडेट करें) */

/* प्रोडक्ट्स सेक्शन */
/* (पिछले CSS कोड के बाद जोड़ें/अपडेट करें) */

/* प्रोडक्ट्स सेक्शन */
/* Content Section (Home/About etc.) */
.content-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.content-box {
    background-color: #000;
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 50px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    text-align: center;
}

.content-box h2 {
    color: #00ff00;
    font-size: 2.8em;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.content-box p {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #b0e0b0;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Content Section */
@media (max-width: 768px) {
    .content-section {
        padding: 50px 0;
    }
    .content-box {
        padding: 30px;
        max-width: 90%;
    }
    .content-box h2 {
        font-size: 2em;
    }
    .content-box p {
        font-size: 1em;
    }
}
/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Larger min-width for product cards */
    gap: 35px; /* More spacing between cards */
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #1c1c1c;
    border: 1px solid #008000;
    border-radius: 12px; /* Slightly more rounded */
    padding: 0;
    box-shadow: 0 0 18px rgba(0, 255, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-7px); /* More pronounced lift on hover */
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.7); /* Brighter shadow on hover */
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 300px; /* Even larger image height for desktop */
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.4s ease; /* Slower zoom transition */
}

.product-card:hover .product-image-container img {
    transform: scale(1.1); /* More zoom on hover */
}

/* Rating Overlay (on image) */
.rating-overlay {
    position: absolute;
    top: 15px; /* More space from top */
    left: 15px; /* More space from left */
    background-color: rgba(0, 0, 0, 0.8); /* More opaque */
    color: #00ff00;
    padding: 7px 12px;
    border-radius: 8px; /* Rounded corners */
    display: flex;
    align-items: center;
    font-size: 1em;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Shadow for rating */
}

.rating-overlay i {
    margin-right: 6px;
    font-size: 1.2em;
}

.rating-overlay span {
    font-weight: 600;
}

/* Product Info (Name, Price, Description, Buttons) */
.product-info {
    padding: 20px; /* More padding inside product info */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left; /* Align text to left within info box */
}

/* Title and Contact Buttons (Inline) */
.title-and-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-card h3 {
    color: #00ff00;
    font-size: 2em; /* Slightly larger heading */
    margin: 0;
    line-height: 1.2;
    flex-grow: 1; /* Allow title to take available space */
    padding-right: 10px; /* Space before buttons */
}

.contact-buttons-inline {
    display: flex;
    gap: 10px; /* More gap between buttons */
}

.contact-buttons-inline a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Larger button size */
    height: 40px; /* Larger button size */
    border-radius: 50%;
    font-size: 1.4em; /* Larger icon size */
    color: white;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.3); /* Button shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.contact-buttons-inline a:hover {
    transform: scale(1.15); /* More zoom on hover */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.phone-button {
    background-color: #008000;
}

.phone-button:hover {
    background-color: #009900;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1da851;
}

.product-card .price {
    font-size: 1.4em; /* Larger price font */
    font-weight: bold;
    color: #b0e0b0;
    margin: 0 0 12px 0;
}

.product-card .description {
    font-size: 1em; /* Standard description font size */
    color: #b0e0b0;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex-grow: 1;
}


/* Mobile Responsive Product Section */
@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .product-image-container {
        height: px; /* Adjusted height for mobile */
    }
    .rating-overlay {
        font-size: 0.9em;
        padding: 5px 10px;
        top: 10px;
        left: 10px;
    }
    .product-info {
        padding: 15px;
    }
    .title-and-contact {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    .product-card h3 {
        font-size: 1.8em;
        margin-bottom: 5px;
        padding-right: 0; /* Remove padding-right on mobile */
    }
    .contact-buttons-inline {
        width: 100%;
        justify-content: flex-start;
        margin-top: 5px;
    }
    .contact-buttons-inline a {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .product-card .price {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    .product-card .description {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
}
/* (पिछले CSS कोड के बाद जोड़ें) */

/* इंफॉर्मेशन सेक्शन */
.info-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* गहरा काला बैकग्राउंड */
    color: #e0e0e0; /* हल्का ग्रे टेक्स्ट */
    text-align: center;
}

.info-section .section-title {
    color: #00ff00; /* हरे रंग का टाइटल */
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.intro-paragraph {
    max-width: 900px; /* पैराग्राफ की अधिकतम चौड़ाई */
    margin: 0 auto 20px auto; /* सेंटर में अलाइन करें और नीचे मार्जिन */
    font-size: 1.1em;
    line-height: 1.8;
    color: #b0e0b0; /* हल्का हरा टेक्स्ट */
}

.intro-paragraph:last-child {
    margin-bottom: 0; /* आखिरी पैराग्राफ का बॉटम मार्जिन हटाएँ */
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
    }
    .info-section .section-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }
    .intro-paragraph {
        font-size: 1em;
        padding: 0 15px; /* मोबाइल पर साइड पैडिंग */
    }
}
.table-title {
    color: #00ff00; /* हरा टाइटल */
    font-size: 2.2em;
    margin-top: 60px; /* पैराग्राफ से ऊपर स्पेस */
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.table-responsive {
    overflow-x: auto; /* हॉरिजॉन्टल स्क्रॉलिंग के लिए */
    margin-bottom: 50px; /* टेबल के नीचे स्पेस */
}

table {
    width: 100%; /* टेबल की पूरी चौड़ाई */
    border-collapse: collapse; /* सेल बॉर्डर्स को मर्ज करें */
    margin: 0 auto;
    max-width: 1000px; /* डेस्कटॉप पर अधिकतम चौड़ाई */
    background-color: #000; /* टेबल का गहरा काला बैकग्राउंड */
    border: 1px solid #00ff00; /* हरे रंग का मुख्य बॉर्डर */
    border-radius: 10px; /* हल्के गोल कोने */
    overflow: hidden; /* ताकि गोल कोने सही दिखें */
}

table th,
table td {
    padding: 15px;
    border: 1px solid #004d00; /* हरे रंग का पतला बॉर्डर */
    text-align: left;
    white-space: nowrap; /* टेक्स्ट को एक लाइन में रखने के लिए */
}

table th {
    background-color: #003300; /* हरे रंग का हेडर बैकग्राउंड */
    color: #00ff00; /* हरे रंग का हेडर टेक्स्ट */
    font-weight: bold;
    text-transform: uppercase;
}

table tr:nth-child(even) {
    background-color: #050505; /* वैकल्पिक पंक्तियों के लिए हल्का काला */
}

table tr:hover {
    background-color: #101010; /* होवर पर थोड़ा गहरा */
}

table td {
    color: #b0e0b0; /* हल्के हरे रंग का सेल टेक्स्ट */
}

table tfoot {
    background-color: #003300; /* फुटर का हरा बैकग्राउंड */
    font-weight: bold;
}

table tfoot td {
    color: #00ff00; /* फुटर टेक्स्ट का चमकीला हरा रंग */
    font-size: 1.1em;
}

/* मोबाइल रिस्पॉन्सिवनेस के लिए टेबल */
@media (max-width: 768px) {
    .table-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    table {
        font-size: 0.9em; /* मोबाइल पर फॉन्ट साइज़ कम करें */
    }
    table th,
    table td {
        padding: 10px;
    }
}
.reviews-section {
    padding: 80px 0;
    background-color: #050505; /* बहुत गहरा काला बैकग्राउंड */
    color: #e0e0e0;
    text-align: center;
}

.reviews-section .section-title {
    color: #00ff00;
    font-size: 3em;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.review-wrapper {
    max-width: 800px; /* रिव्यू कंटेनर की अधिकतम चौड़ाई */
    margin: auto;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    display: flex; /* फ्लेक्सबॉक्स का उपयोग करें */
    flex-direction: column; /* एलिमेंट्स को वर्टिकल स्टैक करें */
    align-items: center; /* हॉरिजॉन्टली सेंटर करें */
    overflow: hidden; /* ताकि रिव्यू बाहर न दिखें जब वे स्लाइड कर रहे हों */
    position: relative; /* एरोज़ के लिए */
    min-height: 400px; /* कुल रैपर की न्यूनतम ऊंचाई */
    justify-content: space-between; /* एरोज़ और डिस्प्ले एरिया के बीच स्पेस */
}

.review-nav-arrow {
    background-color: rgba(0, 0, 0, 0.6);
    color: #00ff00;
    font-size: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%; /* एरोज़ पूरी चौड़ाई लें */
    text-align: center;
    user-select: none;
    z-index: 10; /* एरोज़ को ऊपर रखें */
}

.review-nav-arrow:hover {
    background-color: rgba(0, 255, 0, 0.2);
    color: #fff;
}

.arrow-up {
    border-radius: 10px 10px 0 0; /* ऊपर के कोने गोल */
}
.arrow-down {
    border-radius: 0 0 10px 10px; /* नीचे के कोने गोल */
}

.review-display-area {
    width: 100%;
    flex-grow: 1; /* उपलब्ध स्पेस को भरें */
    overflow: hidden; /* रिव्यू-स्लाइड्स के मूवमेंट को छिपाने के लिए */
    position: relative;
}

.review-slide-vertical {
    padding: 30px 40px; /* रिव्यू कंटेंट के लिए पैडिंग */
    text-align: center;
    box-sizing: border-box; /* पैडिंग को चौड़ाई में शामिल करें */
    position: absolute; /* सभी स्लाइड्स को एब्सोल्यूट पोज़िशन दें */
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.8s ease-in-out, opacity 0.5s ease; /* स्लाइडिंग और फे़ड के लिए ट्रांज़िशन */
    display: flex; /* रिव्यू कंटेंट को वर्टिकली सेंटर करने के लिए */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* कंटेनर की पूरी ऊंचाई लें */
}

.review-text {
    font-size: 1.4em;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 10px;
}

.reviewer-rating {
    color: #00ff00;
    font-size: 1.2em;
}

.reviewer-rating .fas,
.reviewer-rating .far,
.reviewer-rating .fas-half-alt {
    margin: 0 2px;
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    .reviews-section .section-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .review-wrapper {
        padding: 0;
        min-height: 350px;
    }
    .review-slide-vertical {
        padding: 20px 30px;
    }
    .review-text {
        font-size: 1.1em;
    }
    .reviewer-name {
        font-size: 1em;
    }
    .reviewer-rating {
        font-size: 1em;
    }
    .review-nav-arrow {
        font-size: 24px;
        padding: 8px 15px;
    }
}
.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* गहरा काला बैकग्राउंड */
    color: #e0e0e0;
    text-align: center;
}

.faq-section .section-title {
    color: #00ff00;
    font-size: 3em;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* FAQ आइटम्स के लिए टेक्स्ट को बाईं ओर अलाइन करें */
}

.faq-item {
    background-color: #1c1c1c; /* FAQ आइटम का गहरा बैकग्राउंड */
    border: 1px solid #008000;
    border-radius: 8px;
    margin-bottom: 15px; /* आइटम के बीच स्पेस */
    overflow: hidden; /* ताकि आंसर छिप सके */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.faq-question {
    display: flex; /* प्रश्न और आइकन को एक लाइन में रखने के लिए */
    justify-content: space-between; /* प्रश्न और आइकन को अलग-अलग छोर पर */
    align-items: center; /* वर्टिकली सेंटर में अलाइन करें */
    width: 100%;
    background-color: #003300; /* हरे रंग का बटन बैकग्राउंड */
    color: #00ff00; /* हरे रंग का प्रश्न टेक्स्ट */
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #004d00; /* होवर पर थोड़ा गहरा हरा */
}

.faq-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease; /* आइकन के घूमने के लिए */
}

.faq-question.active .faq-icon {
    transform: rotate(45deg); /* जब एक्टिव हो तो प्लस को क्रॉस में बदलें */
}

.faq-answer {
    background-color: #0d0d0d; /* उत्तर का बहुत गहरा बैकग्राउंड */
    color: #b0e0b0; /* हल्का हरा टेक्स्ट */
    padding: 0 25px; /* उत्तर के लिए पैडिंग */
    max-height: 0; /* डिफ़ॉल्ट रूप से छुपा हुआ */
    overflow: hidden; /* जब max-height 0 हो तो कंटेंट को छिपाएँ */
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* स्लाइडिंग इफेक्ट */
}

.faq-answer p {
    padding-bottom: 20px; /* पैराग्राफ के नीचे पैडिंग ताकि आंसर के साथ जुड़े */
    margin: 0; /* पैराग्राफ का डिफ़ॉल्ट मार्जिन हटाएँ */
    line-height: 1.6;
}

/* जब faq-question एक्टिव हो, तब faq-answer को दिखाएँ */
.faq-question.active + .faq-answer {
    max-height: 200px; /* उत्तर के लिए अधिकतम ऊंचाई (ज़रूरत के अनुसार बढ़ाएँ) */
    padding: 15px 25px; /* जब एक्टिव हो तो पैडिंग दें */
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .section-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .faq-container {
        padding: 0 15px; /* मोबाइल पर साइड पैडिंग */
    }
    .faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .faq-icon {
        font-size: 1.2em;
    }
    .faq-answer p {
        font-size: 0.9em;
        padding-bottom: 15px;
    }
    .faq-question.active + .faq-answer {
        padding: 10px 20px;
    }
}
.additional-info-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* गहरा काला बैकग्राउंड */
    color: #e0e0e0;
    text-align: center;
}

.additional-info-section .section-title {
    color: #00ff00;
    font-size: 3em;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.section-description {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: #b0e0b0;
}

.inline-link {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #39FF14; /* चमकीला हरा */
    text-decoration: underline;
}

/* कोटेशन ब्लॉक */
.highlight-quote {
    background-color: #0d0d0d;
    border-left: 5px solid #00ff00;
    padding: 20px 30px;
    margin: 40px auto;
    max-width: 800px;
    font-style: italic;
    font-size: 1.3em;
    color: #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    text-align: left;
}

.highlight-quote cite {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-size: 0.9em;
    color: #00ff00;
    font-style: normal;
}

/* लिस्ट्स कंटेनर */
.lists-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
    flex-wrap: wrap; /* मोबाइल पर रैप करें */
}

.list-column {
    flex: 1;
    min-width: 280px; /* लिस्ट कॉलम की न्यूनतम चौड़ाई */
    background-color: #0d0d0d;
    border: 1px solid #008000;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    text-align: left;
}

.list-column h3 {
    color: #00ff00;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.styled-list {
    list-style: none; /* डिफ़ॉल्ट बुलेट्स हटाएँ */
    padding: 0;
    margin: 0;
}

.styled-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #004d00; /* डैशड बॉर्डर */
    color: #b0e0b0;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: "\2022"; /* यूनिकोड बुलेट */
    color: #00ff00;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    font-size: 1.2em;
}

.styled-list ol li::before {
    content: counter(list-item) "."; /* ऑर्डर्ड लिस्ट के लिए नंबर्स */
    counter-increment: list-item;
    color: #00ff00;
    font-weight: bold;
    display: inline-block;
    width: auto;
    margin-right: 0.5em;
    font-size: 1.2em;
}


/* डिफिनिशन लिस्ट */
.definition-list-title {
    color: #00ff00;
    font-size: 2.2em;
    margin-top: 50px;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    text-align: center;
}

.styled-definition-list {
    max-width: 900px;
    margin: 0 auto 50px auto;
    background-color: #0d0d0d;
    border: 1px solid #008000;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    text-align: left;
}

.styled-definition-list dt {
    font-weight: bold;
    color: #00ff00;
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 5px;
}

.styled-definition-list dt:first-of-type {
    margin-top: 0;
}

.styled-definition-list dd {
    margin-left: 20px;
    color: #b0e0b0;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* प्रोग्रेस बार */
.progress-title {
    color: #00ff00;
    font-size: 2.2em;
    margin-top: 50px;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    text-align: center;
}

.progress-bar-container {
    background-color: #333;
    border-radius: 10px;
    margin: 0 auto 50px auto;
    height: 30px;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    border: 1px solid #00ff00;
    box-shadow: inset 0 0 5px rgba(0, 255, 0, 0.5);
}

.progress-bar {
    height: 100%;
    background-color: #00ff00; /* ग्रीन प्रोग्रेस */
    border-radius: 10px;
    text-align: right;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    font-size: 0.9em;
    transition: width 1s ease-out; /* एनिमेशन के लिए */
    position: relative;
}

.progress-bar::after {
    content: attr(data-label); /* डेटा-लेबल से टेक्स्ट दिखाएँ */
    position: absolute;
    top: 0;
    right: 10px; /* दाहिनी ओर थोड़ा स्पेस */
    color: #000; /* टेक्स्ट का रंग काला */
    text-shadow: none; /* टेक्स्ट शैडो हटाएँ */
}

/* सेक्शन बटन */
.section-buttons {
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px; /* बटनों के बीच स्पेस */
    flex-wrap: wrap; /* मोबाइल पर रैप करें */
}

.call-to-action-button {
    display: inline-block;
    background-color: #00ff00;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #00ff00;
}

.call-to-action-button:hover {
    background-color: #39FF14; /* चमकीला हरा */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.5);
}

.secondary-button {
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
}

.secondary-button:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: #39FF14;
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .additional-info-section {
        padding: 40px 0;
    }
    .additional-info-section .section-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .section-description {
        font-size: 1em;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .highlight-quote {
        font-size: 1.1em;
        padding: 15px 20px;
        margin: 30px auto;
    }
    .lists-container {
        flex-direction: column; /* मोबाइल पर लिस्ट्स को स्टैक करें */
        gap: 20px;
        margin: 30px auto;
    }
    .list-column {
        min-width: unset; /* न्यूनतम चौड़ाई हटा दें */
        padding: 20px;
    }
    .list-column h3 {
        font-size: 1.4em;
    }
    .styled-list li {
        font-size: 0.95em;
        padding: 6px 0;
    }
    .definition-list-title, .progress-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    .styled-definition-list {
        padding: 20px;
        margin: 0 auto 40px auto;
    }
    .styled-definition-list dt {
        font-size: 1.1em;
    }
    .styled-definition-list dd {
        font-size: 0.9em;
    }
    .progress-bar-container {
        height: 25px;
        margin-bottom: 40px;
    }
    .progress-bar {
        line-height: 25px;
        font-size: 0.8em;
    }
    .progress-bar::after {
        right: 8px;
    }
    .section-buttons {
        flex-direction: column; /* मोबाइल पर बटन को स्टैक करें */
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .call-to-action-button {
        width: 80%; /* मोबाइल पर बटन की चौड़ाई बढ़ाएँ */
        max-width: 300px;
        font-size: 1em;
        padding: 12px 25px;
    }
}
.footer {
    background-color: #000; /* गहरा काला फुटर */
    color: #b0e0b0; /* हल्का हरा टेक्स्ट */
    padding: 60px 0 20px 0;
    font-size: 0.95em;
    border-top: 2px solid #00ff00; /* ऊपर हरा बॉर्डर */
}

.footer .container {
    max-width: 1200px; /* कंटेनर की चौड़ाई */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* मोबाइल पर कॉलम को रैप करें */
    justify-content: space-between;
    gap: 30px; /* कॉलम के बीच स्पेस */
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* कॉलम की न्यूनतम चौड़ाई */
    padding: 10px;
}

.footer-column h3 {
    color: #00ff00;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* सोशल लिंक्स */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #00ff00;
    font-size: 1.8em;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #39FF14;
    transform: translateY(-3px);
}

/* त्वरित लिंक्स और संपर्क जानकारी लिस्ट */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b0e0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ff00;
    text-decoration: underline;
}

.footer-column p i {
    margin-right: 10px;
    color: #00ff00;
    width: 20px; /* आइकॉन को अलाइन करें */
    text-align: center;
}

/* न्यूज़लेटर फॉर्म */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    padding: 12px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-size: 1em;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: #777;
}

.newsletter-form input[type="email"]:focus {
    border-color: #39FF14;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.newsletter-form button[type="submit"] {
    background-color: #00ff00;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-form button[type="submit"]:hover {
    background-color: #39FF14;
    transform: translateY(-2px);
}

/* फुटर बॉटम - कॉपीराइट और कानूनी लिंक्स */
.footer-bottom {
    border-top: 1px solid #004d00; /* फुटर कंटेंट और कॉपीराइट के बीच पतली लाइन */
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column; /* मोबाइल पर स्टैक करें */
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin-bottom: 10px; /* मोबाइल पर गैप के लिए */
    color: #888; /* हल्का ग्रे कॉपीराइट टेक्स्ट */
}

.footer-bottom .footer-legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom .footer-legal-links a:hover {
    color: #00ff00;
    text-decoration: underline;
}

/* मोबाइल रिस्पॉन्सिवनेस (मीडिया क्वेरी) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-column {
        min-width: unset;
        width: 100%;
        text-align: center; /* मोबाइल पर कॉलम सेंटर करें */
        padding: 0 15px;
    }
    .footer-column h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    .social-links a {
        font-size: 1.5em;
        margin: 0 10px;
    }
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-column ul li {
        margin-bottom: 8px;
    }
    .newsletter-form {
        width: 80%;
        max-width: 300px;
        margin: 20px auto 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        margin-top: 20px;
        padding-top: 15px;
    }
    .footer-bottom p {
        margin-bottom: 8px;
        font-size: 0.85em;
    }
    .footer-bottom .footer-legal-links a {
        font-size: 0.85em;
        margin: 0 8px;
    }
}
/* अगर आप Font Awesome आइकनों का उपयोग कर रहे हैं तो यह भी जोड़ें */
/*
.prev .fas, .next .fas {
    vertical-align: middle;
}
*/