/* ==========================================
   1. BASE RESET & GLOBAL LAYOUT (FIXED FOR OVERFLOW)
   ========================================== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* मोबाइल में दाएं-बाएं स्क्रॉल को पूरी तरह रोकता है */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100%; /* कोई भी एलिमेंट स्क्रीन से बाहर नहीं जाएगा */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    color: #222222;
    line-height: 1.4;
    padding-bottom: 20px;
}

/* लंबे टेक्स्ट, लिंक्स या फोन नंबर को स्क्रीन के अंदर ऑटो-रैप करने के लिए */
p, span, a, h1, h2, h3, h4, h5, h6, div {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.website-wrapper {
    max-width: 1008px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 5px 10px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.content-body {
    margin-top: 27px;
    position: relative;
    z-index: 1;
}

/* ==========================================
   2. TYPOGRAPHY & TEXT CLASSES (UPDATED FOR H-TAG CONTENT VISIBILITY)
   ========================================== */

/* --- Headings (h1 - h6) --- */
h1 {
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

h2 {
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

h3 {
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

h4 {
    color: #cc0000;
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

h5 {
    color: #cc0000;
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

h6 {
    color: #cc0000;
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
    background: transparent;
    border: none;
    line-height: 1.3;
}

/* --- SMART AUTO H-TAG DISPLAY & SEO RULES --- */
/* 1. अगर H टैग के तुरंत बाद पैराग्राफ (<p>) या डिस्क्रिप्शन नहीं है, तो वह यूज़र को नहीं दिखेगा (SEO फ्रेंडली ट्रांसपेरेंट तरीका) */
h1:not(:has(+ p)), 
h2:not(:has(+ p)), 
h3:not(:has(+ p)) {
    color: transparent !important;
    font-size: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. अगर H टैग के तुरंत बाद पैराग్రాफ (<p>) या डिस्क्रिप्शन मौजूद है, तो वह सफ़ेद रंग में साफ़ दिखाई देगा */
h1:has(+ p), 
h2:has(+ p), 
h3:has(+ p) {
    color: #cc0000 !important;
}

/* Mobile (Default) */
h1 { font-size: 15px; }
h2 { font-size: 15px; }
h3 { font-size: 15px; }
h4 { font-size: 15px; }
h5 { font-size: 15px; }
h6 { font-size: 15px; }

/* Tablet */
@media screen and (min-width: 768px) {
h1 { font-size: 18px; }
h2 { font-size: 18px; }
h3 { font-size: 18px; }
h4 { font-size: 18px; }
h5 { font-size: 18px; }
h6 { font-size: 18px; }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    h1 { font-size: 22px; }
    h2 { font-size: 22px; }
    h3 { font-size: 22px; }
    h4 { font-size: 22px; }
    h5 { font-size: 22px; }
    h6 { font-size: 22px; }
}

/* --- .title --- */
/* Mobile (Default) */
.title {
    color: #cc0000;
    font-weight: 700;
    text-decoration: none;
    margin: 1px 1;
    background: transparent;
    border: none;
    line-height: 1.3;
    display: inline-block;
    font-size: 12.5px;
}
.title:hover {
    text-decoration: underline;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .title { font-size: 18px; }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .title { font-size: 28px; }
}

/* --- .top-X-title (Phone/Title Overflow Fixed) --- */
.top-X-title {
    color: black;
    font-size: 10.5px !important; /* मोबाइल में फोन नंबर/टाइटल सही दिखने के लिए एडजस्टेड */
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: 500;
    text-shadow: 1px 1px 3px #ababab;
    text-align: center !important;
    width: 100%;
    margin: 4px 0 !important; /* Upar aur Niche 10px margin */
    padding: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
}
.top-X-title a {
    color: #339BF5 !important;
    text-decoration: none !important;
    display: inline-block;
    word-break: break-all;
}
.top-X-title a:hover {
    color: #1e90ff !important;
    text-decoration: none !important;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .top-X-title { 
        font-size: 20px !important; 
        margin: 15px 0 !important; /* Tablet par upar-niche 15px margin */
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .top-X-title { 
        font-size: 19.5px !important; 
        margin: 20px 0 !important; /* Desktop par upar-niche 20px margin */
    }
}


/* --- .intro-block --- */
/* Mobile (Default) */
.intro-block {
    font-size: 13px;
    font-weight: 300;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .intro-block { margin-bottom: 10px; }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .intro-block { margin-bottom: 12px; }
}

/* --- .intro-text --- */
/* Mobile (Default) */
.intro-text {
    font-size: 11px;
    font-weight: 400;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .intro-text {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.25;
        letter-spacing: normal;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .intro-text {
        font-size: 17px;
        line-height: 1.35;
        letter-spacing: normal;
    }
}


/* ==========================================
   3. HEADER, MARQUEE & NAVBAR
   ========================================== */
.fixed-header-wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1008px;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.top-bar {
    background-color: #000033;
    color: #ffffff;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 16s linear infinite;
}
.marquee-text span {
    color: #ffcc00;
    margin-right: 50px;
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* --- .navbar & .navbar-container --- */
/* =========================================================
   FINAL NAVBAR
   Home 18% | About 17% | Gallery 19% | Services 24% | Contact 22%
   Total = 100%
   ========================================================= */
/* =========================================================
   FINAL NAVBAR + SERVICES DROPDOWN
   Home 18% | About 17% | Gallery 19% | Services 24% | Contact 22%
   ========================================================= */


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    padding: 2px 0;
    box-sizing: border-box;
}


/* =========================================================
   MAIN NAV WIDTH
   ========================================================= */

.navbar > a:nth-child(1) {
    width: 18%;
    flex: 0 0 18%;
}

.navbar > a:nth-child(2) {
    width: 17%;
    flex: 0 0 17%;
}

.navbar > a:nth-child(3) {
    width: 19%;
    flex: 0 0 19%;
}

.navbar > .services-dropdown-wrapper {
    width: 24%;
    flex: 0 0 24%;
}

.navbar > a:last-child {
    width: 22%;
    flex: 0 0 22%;
}


/* =========================================================
   NORMAL NAV LINKS
   ========================================================= */

.navbar > a {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 7px 2px;
    margin: 0;

    color: #ffffff;
    background: transparent;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    text-align: center;

    white-space: nowrap;

    border-radius: 5px;

    box-sizing: border-box;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* =========================================================
   NAV ICON
   ========================================================= */

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 14px;
    min-width: 14px;

    flex: 0 0 14px;

    font-size: 11px;
    line-height: 1;
}


/* =========================================================
   HOVER
   ========================================================= */

.navbar > a:hover,
.services-dropdown-button:hover {
    background-color: rgba(255,255,255,0.18);
    color: #ffcc00;
}


/* =========================================================
   ACTIVE
   ========================================================= */

.navbar > a.active-nav {
    background-color: #ffffff;
    color: #cc0000;
}


/* =========================================================
   SERVICES WRAPPER
   ========================================================= */

.services-dropdown-wrapper {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   SERVICES BUTTON
   ========================================================= */

.services-dropdown-button {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 7px 2px;
    margin: 0;

    color: #ffffff;
    background: transparent;

    border: none;
    outline: none;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;

    border-radius: 5px;

    box-sizing: border-box;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* =========================================================
   SERVICES ACTIVE
   ========================================================= */

.services-dropdown-wrapper.dropdown-active
.services-dropdown-button {
    background-color: #ffffff;
    color: #cc0000;
}


/* =========================================================
   ARROW
   ========================================================= */

.services-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    font-size: 7px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.services-dropdown-wrapper.dropdown-active
.services-arrow {
    transform: rotate(180deg);
}

.page-faq-qsn-toggle:checked ~ .page-faq-qsn-answer {
    display: block;
}

/* =========================================================
   FINAL SERVICES DROPDOWN
   INTERNAL CATEGORIES ALWAYS OPEN
   =========================================================
/* =========================================================
   SERVICES DROPDOWN — FINAL COMPACT CSS
   ========================================================= */


/* =========================================================
   SERVICES WRAPPER
   ========================================================= */

.services-dropdown-wrapper {
    position: relative !important;
    width: 24% !important;
    flex: 0 0 24% !important;

    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}


/* =========================================================
   SERVICES BUTTON
   ========================================================= */

.services-dropdown-button {
    width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    padding: 8px 3px !important;
    margin: 0 !important;

    color: #ffffff !important;
    background: transparent !important;

    border: none !important;
    outline: none !important;

    font-family: Arial, sans-serif !important;

    /* BUTTON TEXT SIZE */
    font-size: 14px !important;

    font-weight: 700 !important;

    text-transform: uppercase !important;
    white-space: nowrap !important;

    cursor: pointer !important;
    border-radius: 5px !important;

    box-sizing: border-box !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease !important;
}


/* BUTTON HOVER */

.services-dropdown-button:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #ffcc00 !important;
}


/* =========================================================
   MAIN ARROW
   ========================================================= */

.services-arrow {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 auto !important;

    font-size: 8px !important;
    line-height: 1 !important;

    transition: transform 0.25s ease !important;
}

.services-dropdown-wrapper.dropdown-active .services-arrow {
    transform: rotate(180deg) !important;
}


/* =========================================================
   MAIN DROPDOWN BOX
   ========================================================= */

.services-dropdown-menu {
    display: none !important;

    position: absolute !important;

    top: calc(100% + 5px) !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: max-content !important;

    max-width: calc(100vw - 16px) !important;

    /* DROPDOWN INNER SPACE */
    padding: 4px !important;

    margin: 0 !important;

    background: #fff9df !important;

    /* DROPDOWN BORDER */
    border: 2px solid #8B5FBF !important;
    border-radius: 10px !important;

    box-shadow:
        0 8px 25px rgba(75, 30, 100, 0.25),
        0 0 12px rgba(123, 63, 191, 0.15) !important;

    z-index: 100000 !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


/* DROPDOWN OPEN */

.services-dropdown-wrapper.dropdown-active
.services-dropdown-menu {
    display: block !important;
}


/* =========================================================
   CATEGORY TITLE — COMPACT & ZERO EXTRA GAP
   ========================================================= */

.services-category-heading {
    display: block !important;

    width: 100% !important;

    /* Upar 3px aur neeche 1px space */
    margin: 3px 0 1px 0 !important;

    /* Upar-niche padding zero */
    padding: 0 4px !important;

    background: transparent !important;

    color: #8B0000 !important;

    font-family: Arial, sans-serif !important;

    font-size: 15px !important;

    font-weight: 700 !important;

    line-height: 1.15 !important;

    text-align: center !important;

    border: none !important;

    box-shadow: none !important;

    cursor: default !important;
    pointer-events: none !important;

    box-sizing: border-box !important;
}


/* FIRST TITLE — TOP SPACE BILKUL BAND */

.services-dropdown-menu .services-category-heading:first-child,
.services-category-heading:first-child {
    margin-top: 1px !important;
}


/* TITLE KE TURANT BAAD WALI SERVICE LIST KA GAP BAND */

.services-category-heading + .services-category-services {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* =========================================================
   CATEGORY SERVICES CONTAINER
   ========================================================= */

.services-category-services {
    display: block !important;

    width: 100% !important;

    height: auto !important;
    max-height: none !important;

    margin: 0 0 1px 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    visibility: visible !important;
    opacity: 1 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   SERVICE LINK
   ========================================================= */

.services-category-services a {
    display: flex !important;

    width: 100% !important;
    min-width: 0 !important;

    align-items: center !important;

    gap: 5px !important;

    margin: 0 !important;

    padding: 3px 5px !important;

    color: #3d245c !important;
    background: transparent !important;

    text-decoration: none !important;

    font-family: Arial, sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    line-height: 1.2 !important;

    text-align: left !important;

    white-space: normal !important;

    overflow-wrap: break-word !important;
    word-break: normal !important;

    box-sizing: border-box !important;

    cursor: pointer !important;

    border: none !important;
}


/* SERVICE HOVER */

.services-category-services a:hover {
    background: #ead8f7 !important;
    color: #5a208a !important;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.services-category-services .service-icon {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;

    flex: 0 0 22px !important;

    font-size: 15px !important;

    line-height: 1 !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   INTERNAL CATEGORY TOGGLE — DISABLED
   ========================================================= */

.services-category-heading input,
.services-category-toggle,
.services-category-input {
    display: none !important;
    pointer-events: none !important;
}


/* INTERNAL ARROWS HIDE */

.services-category-heading .services-arrow,
.services-category-heading .category-arrow,
.services-category-heading .category-chevron,
.services-category-heading .toggle-icon,
.services-category-heading .expand-icon,
.services-category-heading .collapse-icon,
.services-category-heading .plus-icon,
.services-category-heading .minus-icon {
    display: none !important;
}


/* =========================================================
   NEVER HIDE CATEGORY CONTENT
   ========================================================= */

.services-category-services[hidden],
.services-category-services.is-hidden,
.services-category-services.closed,
.services-category-services.collapsed {
    display: block !important;

    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    visibility: visible !important;
    opacity: 1 !important;

    overflow: visible !important;
}


/* =========================================================
   LAST CATEGORY
   ========================================================= */

.services-category-services:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   MOBILE — 0px to 767px
   ========================================================= */

@media screen and (max-width: 767px) {

    .services-dropdown-wrapper {
        position: static !important;
    }

    .services-dropdown-button {
        padding: 6px 1px !important;
        gap: 3px !important;
        font-size: 10px !important;
    }

    .services-dropdown-menu {
        top: 100% !important;
        left: 50vw !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        max-width: calc(100vw - 12px) !important;
        padding: 3px !important;
        border: 2px solid #8B5FBF !important;
        border-radius: 9px !important;
    }

    .services-category-heading {
        margin: 2px 0 2px 0 !important;
        padding: 4 4px !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
    }

    .services-dropdown-menu .services-category-heading:first-child,
    .services-category-heading:first-child {
        margin-top: 1px !important;
    }

    .services-category-services a {
        gap: 3px !important;
        padding: 0px 0px !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
    }

    .services-category-services .service-icon {
        width: 17px !important;
        min-width: 17px !important;
        height: 17px !important;
        flex: 0 0 17px !important;
        font-size: 13px !important;
    }
}


/* =========================================================
   TABLET — 768px to 1023px
   ========================================================= */

@media screen and (min-width: 768px) and (max-width: 1023px) {

    .services-dropdown-wrapper {
        position: static !important;
    }

    .services-dropdown-button {
        padding: 8px 3px !important;
        gap: 4px !important;
        font-size: 14px !important;
    }

    .services-dropdown-menu {
        top: 100% !important;
        left: 50vw !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        max-width: calc(100vw - 20px) !important;
        padding: 4px !important;
        border: 2px solid #8B5FBF !important;
        border-radius: 10px !important;
    }

    .services-category-heading {
        margin: 3px 0 1px 0 !important;
        padding: 0 4px !important;
        font-size: 15px !important;
        line-height: 1.15 !important;
    }

    .services-dropdown-menu .services-category-heading:first-child,
    .services-category-heading:first-child {
        margin-top: 1px !important;
    }

    .services-category-services a {
        gap: 5px !important;
        padding: 3px 5px !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .services-category-services .service-icon {
        width: 20px !important;
        min-width: 20px !important;
        height: 20px !important;
        flex: 0 0 20px !important;
        font-size: 16px !important;
    }
}


/* =========================================================
   DESKTOP — 1024px+
   ========================================================= */

@media screen and (min-width: 1024px) {

    .services-dropdown-wrapper {
        position: relative !important;
    }

    .services-dropdown-button {
        padding: 9px 5px !important;
        gap: 5px !important;
        font-size: 17px !important;
    }

    .services-dropdown-menu {
        top: calc(100% + 5px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        max-width: 500px !important;
        padding: 4px !important;
        border: 2px solid #8B5FBF !important;
        border-radius: 10px !important;
    }

    .services-category-heading {
        margin: 3px 0 1px 0 !important;
        padding: 0 5px !important;
        font-size: 16px !important;
        line-height: 1.15 !important;
    }

    .services-dropdown-menu .services-category-heading:first-child,
    .services-category-heading:first-child {
        margin-top: 1px !important;
    }


    .services-category-services a {
        gap: 6px !important;
        padding: 3px 6px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .services-category-services .service-icon {
        width: 22px !important;
        min-width: 22px !important;
        height: 22px !important;
        flex: 0 0 22px !important;
        font-size: 16px !important;
    }
}


/* =========================================================
   LARGE DESKTOP — 1400px+
   ========================================================= */

@media screen and (min-width: 1400px) {

    .services-dropdown-menu {
        max-width: 600px !important;
    }

    .services-category-heading {
        margin: 4px 0 2px 0 !important;
        padding: 0 6px !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .services-dropdown-menu .services-category-heading:first-child,
    .services-category-heading:first-child {
        margin-top: 1px !important;
    }


    .services-category-services a {
        padding: 4px 7px !important;
        font-size: 15px !important;
    }

    .services-category-services .service-icon {
        width: 24px !important;
        min-width: 24px !important;
        height: 24px !important;
        flex: 0 0 24px !important;
        font-size: 17px !important;
    }
}


/* =========================================================
   LAPTOP / DESKTOP
   ========================================================= */

@media screen and (min-width: 1024px) {

    .navbar {
        padding: 5px 0;
    }

    .navbar > a {
        padding: 10px 5px;
        gap: 6px;
        font-size: 19px;
    }

    .services-dropdown-button {
        padding: 10px 5px;
        gap: 6px;
        font-size: 19px;
    }

    .nav-icon {
        width: 22px;
        min-width: 22px;
        font-size: 17px;
    }

    .services-arrow {
        font-size: 10px;
    }


    /* DESKTOP DROPDOWN */

    .services-dropdown-menu {
        width: 380px;
        max-width: 90vw;

        left: 50%;
        transform: translateX(-50%);

        padding: 7px;
    }


    .services-dropdown-menu a {
        font-size: 16px;

        padding: 12px 15px;

        gap: 10px;

        white-space: nowrap;
    }


    .services-dropdown-menu .service-icon {
        width: 28px;
        min-width: 28px;

        height: 28px;

        font-size: 19px;
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media screen and (min-width: 1400px) {

    .navbar > a {
        padding: 11px 7px;
        font-size: 21px;
    }

    .services-dropdown-button {
        padding: 11px 7px;
        font-size: 21px;
    }

    .nav-icon {
        width: 24px;
        min-width: 24px;
        font-size: 19px;
    }

    .services-dropdown-menu {
        width: 420px;
    }

    .services-dropdown-menu a {
        font-size: 17px;
        padding: 13px 16px;
    }
}

/* =========================================================
   FINAL NAVBAR RED BACKGROUND FIX
   ========================================================= */

.navbar-container {
    width: 100% !important;
    background: #cc0000 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 9999 !important;
    clear: both !important;
    margin-top: 0 !important;
}


/* Navbar itself transparent रहे */
.navbar {
    width: 100% !important;
    background: transparent !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;

    padding: 2px 0 !important;
    margin: 0 !important;

    gap: 0 !important;
    box-sizing: border-box !important;
}


/* Home / About / Gallery / Contact */
.navbar > a {
    color: #ffffff !important;
    background: transparent !important;
}


/* Services */
.services-dropdown-wrapper {
    background: transparent !important;
}

.services-dropdown-button {
    color: #ffffff !important;
    background: transparent !important;
}


/* Icons */
.navbar > a .nav-icon,
.navbar > a i,
.services-dropdown-button .nav-icon,
.services-dropdown-button i,
.services-dropdown-button .services-arrow {
    color: #ffffff !important;
}


/* Hover */
.navbar > a:hover,
.services-dropdown-button:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #ffcc00 !important;
}


/* Active */
.navbar > a.active-nav {
    background: #ffffff !important;
    color: #cc0000 !important;
}

.navbar > a.active-nav .nav-icon,
.navbar > a.active-nav i {
    color: #cc0000 !important;
}

/* =========================================================
   DROPDOWN — EXACT CONTENT WIDTH
   ========================================================= */

.services-dropdown-menu {
    width: max-content !important;

    min-width: unset !important;

    max-width: calc(100vw - 12px) !important;

    box-sizing: border-box !important;
}


/* SERVICE ITEM */

.services-dropdown-menu a {
    width: auto !important;

    padding: 10px 30px 10px 10px !important;

    white-space: nowrap !important;

    box-sizing: border-box !important;
}


/* ICON */

.services-dropdown-menu .service-icon {
    flex: 0 0 23px !important;

    width: 23px !important;

    min-width: 23px !important;

    margin-right: 7px !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    .services-dropdown-menu {
        width: max-content !important;

        min-width: unset !important;

        max-width: calc(70vw - 5px) !important;
    }

    .services-dropdown-menu a {
        width: auto !important;

        padding: 2px 2px 2px 2px !important;

        white-space: nowrap !important;

        font-size: 11px !important;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (min-width: 768px)
and (max-width: 1023px) {

    .services-dropdown-menu {
        width: max-content !important;

        min-width: unset !important;

        max-width: calc(100vw - 20px) !important;
    }

    .services-dropdown-menu a {
        width: auto !important;

        padding: 2px 2px 2px 2px !important;

        white-space: nowrap !important;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media screen and (min-width: 1024px) {

    .services-dropdown-menu {
        width: max-content !important;

        min-width: unset !important;

        max-width: 500px !important;
    }

    .services-dropdown-menu a {
        width: auto !important;

        padding: 3px 3px 3px 3px !important;

        white-space: nowrap !important;
    }
}
/* =========================================================
   DROPDOWN — MOBILE/TABLET EXACT SCREEN CENTER
   Services ke neeche open hoga
   ========================================================= */

@media screen and (max-width: 1023px) {

    .services-dropdown-wrapper {
        position: static !important;
    }

    .services-dropdown-menu {
        position: absolute !important;

        /* Navbar ke neeche */
        top: 100% !important;

        /* Screen ka exact center */
        left: 50vw !important;

        transform: translateX(-50%) !important;

        width: max-content !important;

        min-width: unset !important;

        max-width: calc(100vw - 12px) !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    .services-dropdown-menu {
        top: 100% !important;

        left: 50vw !important;

        transform: translateX(-50%) !important;

        max-width: calc(100vw - 12px) !important;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (min-width: 768px)
and (max-width: 1023px) {

    .services-dropdown-menu {
        top: 100% !important;

        left: 50vw !important;

        transform: translateX(-50%) !important;

        max-width: calc(100vw - 20px) !important;
    }

}

/* ==========================================
   4. HERO SLIDER & ACTION BUTTONS
   ========================================== */
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1008 / 378; 
    overflow: hidden;
    background: #000000;
    z-index: 1;
    clear: both;
    margin-bottom: 0 !important;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

/* --- .top-action-buttons & .top-btn --- */
/* Mobile (Default) */
.top-action-buttons {
    display: flex;
    gap: 6px;
    margin: 0px 0 4px 0;
    width: 100%;
    box-sizing: border-box;
}

.top-btn {
    flex: 1 1 0%;
    width: 100%;
    padding: 9px 4px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    box-sizing: border-box;
    word-break: break-word;
}
.top-btn:active {
    transform: scale(0.97);
}
.top-btn span {
    font-size: 9.5px;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 1px;
}

.btn-top-call { background: linear-gradient(135deg, #0044cc, #002288); }
.btn-top-wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.btn-top-appt { background: linear-gradient(135deg, #ff8c00, #cc6600); }

/* Tablet */
@media screen and (min-width: 768px) {
    .top-action-buttons {
        gap: 12px;
        margin: 8px 0 12px 0;
    }
    .top-btn {
        padding: 12px 8px;
        border-radius: 8px;
        font-size: 13px;
    }
    .top-btn span {
        font-size: 11px;
        margin-top: 3px;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .top-action-buttons {
        gap: 50px;
        margin: 10px 0 14px 0;
        max-width: 1008px;
    }
    .top-btn {
        padding: 10px 8px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
    }
    .top-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.18);
    }
    .top-btn span {
        font-size: 10px;
        margin-top: 3px;
    }
}

/* ==========================================
   5. FEATURE BOX & CARDS
   ========================================== */
/* Mobile (Default) */
.feature-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}

/* =====================================================
   FINAL FEATURE BOX
   PHOTO LEFT + TEXT RIGHT
   ===================================================== */

.feature-box {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 5px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}


/* -----------------------------
   IMAGE
   ----------------------------- */

.feature-img-wrap {
    width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.feature-img-wrap img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 4px !important;
}


/* -----------------------------
   TEXT
   ----------------------------- */

.feature-text-wrap {
    width: 100% !important;
    flex: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}






/* =====================================================
   DESKTOP / TABLET
   ===================================================== */

/* ==========================================
   FEATURE BOX - IMAGE + TEXT
   IMAGE TEXT की HEIGHT के बराबर
   लेकिन IMAGE CROP नहीं होगी
   ========================================== */

@media screen and (min-width: 768px) {

    .feature-box {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 20px !important;
        padding: 10px !important;
    }

    /* IMAGE SIDE */
    .feature-box .feature-img-wrap {
        width: 50% !important;
        flex: 0 0 50% !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .feature-box .feature-img-wrap img {
        width: 100% !important;
        height: auto !important;

        /* IMPORTANT */
        object-fit: contain !important;

        display: block !important;
    }

    /* TEXT SIDE */
    .feature-box .feature-text-wrap {
        width: auto !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
    }

    .feature-box .text-intro {
        width: 100% !important;
    }

    .feature-box .text-intro p {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;

        text-align: justify !important;
        line-height: 1.5 !important;
    }
}


@media screen and (min-width: 768px) {
    .text-intro p {
        font-size: 18px !important;
    }
}

@media screen and (min-width: 1024px) {
    .text-intro p {
        font-size: 20px !important;
    }
}

@media screen and (min-width: 1200px) {
    .text-intro p {
        font-size: 22px !important;
    }
}

/* ==========================================
   6. GALLERY & LIGHTBOX
   ========================================== */
.section-heading {
    color: #cc0000;
    font-size: 15px;
    font-weight: 700;
    margin: 15px 0 8px 0;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
    padding-bottom: 2px;
}

/* --- .gallery-grid --- */
/* Mobile (Default) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
}
.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Tablet */
@media screen and (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .gallery-grid img { height: 160px; }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .gallery-grid img { height: 180px; }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.prev-btn:hover, .next-btn:hover, .close-btn:hover { color: #ffcc00; }

/* ==========================================
   7. ABOUT, PRICING & SERVICES SECTIONS
   ========================================== */
/* About Section */
.about-section {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 14px;
    margin: 15px 0;
    text-align: center;
    width: 100%;
}

.about-section p {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 6px;
}

/* Mobile Large & Small Tablets (480px se bada) */
@media screen and (min-width: 480px) {
    .about-section p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Tablets (768px se bada) */
@media screen and (min-width: 768px) {
    .about-section p {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 8px;
    }
}

/* Desktop & Laptops (1024px se bada) */
@media screen and (min-width: 1024px) {
    .about-section p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

/* Pricing / VIP Consultation Section */
.pricing-section {
    background: #fff8f0;
    border: 1.5px solid #ff9900;
    border-radius: 6px;
    padding: 14px;
    margin: 15px 0;
    text-align: center;
    width: 100%;
}

.lang-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.tab-btn {
    flex: 1;
    background: #e1e1e1;
    border: none;
    padding: 6px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}
.tab-btn.active {
    background: #cc0000;
    color: #ffffff;
}
.lang-content { display: none; }
.lang-content.active { display: block; }

.consultation-card {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 8px 10px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.c-1 { background: #ffffff; border-left: 4px solid #0066cc; }
.c-2 { background: #fdfaf6; border-left: 4px solid #cc0000; }
.c-3 { background: #f4f9f4; border-left: 4px solid #25d366; }
.c-4 { background: #fdf5f5; border-left: 4px solid #990099; }
.c-5 { background: #f0f8ff; border-left: 4px solid #ff8c00; }
.c-6 { background: #fffaf0; border-left: 4px solid #8b0000; }
.c-7 { background: #f5fffa; border-left: 4px solid #2e8b57; }
.c-8 { background: #fff0f5; border-left: 4px solid #c71585; }
.c-9 { background: #fdfefe; border-left: 4px solid #4682b4; }
.c-10 { background: #faf0e6; border-left: 4px solid #d2691e; }

/* ==========================================
   CONSULTATION CARDS (RESPONSIVE STYLES)
   ========================================== */

/* 1. MOBILE SIZE (Default - 767px tak) */
.consultation-info {
    display: flex;
    justify-content: space-between;
    font-size: 9.5px;
    font-weight: 600;
    color: #222;
}

.consultation-info span:last-child {
    color: #cc0000;
    font-size: 13px;
}

.consultation-desc {
    font-size: 10.5px;
    color: #555;
}

.btn-consult-wa {
    background-color: #25d366;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}

/* 2. TABLET SIZE (768px se 1023px tak) */
@media screen and (min-width: 768px) {
    .consultation-info {
        font-size: 15px !important;
    }

    .consultation-info span:last-child {
        font-size: 17px !important;
    }

    .consultation-desc {
        font-size: 13.5px !important;
    }

    .btn-consult-wa {
        font-size: 14px !important;
        padding: 8px 12px;
    }
}

/* 3. DESKTOP SIZE (1024px aur usse badi screens) */
@media screen and (min-width: 1024px) {
    .consultation-info {
        font-size: 22px !important;
    }

    .consultation-info span:last-child {
        font-size: 26px !important;
    }

    .consultation-desc {
        font-size: 18px !important;
    }

    .btn-consult-wa {
        font-size: 20px !important;
        padding: 10px 15px;
    }
}

/* Services Section */
.services-section {
    background: #fffef8;
    border: 1.5px solid #cc0000;
    border-radius: 6px;
    padding: 14px;
    margin: 15px 0;
    text-align: left;
    width: 100%;
}
.services-heading-center {
    text-align: center;
    margin-bottom: 12px;
}

/* Base Style: Mobile (Default / Extra Small Devices) */
.services-heading-center p {
    color: #cc0000;
    font-size: 15px; /* Mobile par thoda chhota */
    font-weight: 700;
}

/* Tablet (768px se bada) */
@media screen and (min-width: 768px) {
    .services-heading-center p {
        font-size: 17px; /* Tablet par medium size */
    }
}

/* Desktop & Laptops (1024px se bada) */
@media screen and (min-width: 1024px) {
    .services-heading-center p {
        font-size: 26px; /* Desktop par aapka original / bada size */
    }
}
.services-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.services-list li {
    padding: 7px 0;
    border-bottom: 1px dashed #eee;
    font-size: 11.5px; /* Mobile size */
    font-weight: 500;
    color: #222;
}

.services-list li span {
    color: #0066cc;
    margin-right: 6px;
    font-size: 11.5px;
}

/* Tablet (768px se bada) */
@media screen and (min-width: 768px) {
    .services-list li,
    .services-list li span {
        font-size: 13.5px !important; /* Tablet size */
        padding: 9px 0;
    }
}

/* Desktop (1024px se bada) */
@media screen and (min-width: 1024px) {
    .services-list li,
    .services-list li span {
        font-size: 20px !important; /* Desktop size (Yahan se badhein) */
        padding: 10px 0;
    }
}

/* ==========================================
   8. FOOTER & SEO LINKS
   ========================================== */
.seo-links-section {
    background: #fafafa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    margin: 20px 0 10px 0;
    text-align: left;
}
/* Base Style (Mobile First) */
.seo-main-title {
    color: #8b0000;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Tablet (Screens 768px aur usse badi) */
@media (min-width: 768px) {
    .seo-main-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Desktop (Screens 1024px aur usse badi) */
@media (min-width: 1024px) {
    .seo-main-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* --- .seo-grid --- */
/* Mobile (Default) */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
/* SEO Links Grid - Clean Code */
.seo-grid a {
    color: #8b0000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block;
    padding: 3px 0;
    transition: color 0.2s;
    word-break: break-word;
}

/* Bullet icon via CSS */
.seo-grid a::before {
    content: "🔹";
    margin-right: 4px;
    font-size: 10px;
}

.seo-grid a:hover {
    color: #cc0000;
    text-decoration: underline;
}
.seo-grid a span {
    color: #0066cc;
    margin-right: 2px;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .seo-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    .seo-grid a { font-size: 10px; }
}

.site-footer-bar {
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    padding: 12px 5px;
    text-align: center;
    font-size: 11px;
    color: #555;
    margin-top: 15px;
    line-height: 1.5;
}
.site-footer-bar div { margin-bottom: 4px; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 10.5px;
    font-weight: 500;
}
.footer-links a {
    color: #333;
    text-decoration: none;
}
.footer-links a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* ==========================================
   9. STICKY BOTTOM BAR & FLOATING CTAS
   ========================================== */

/* --- .smart-sticky-cta --- */
/* Mobile (Default) */
.smart-sticky-cta {
    position: fixed;
    bottom: -70px;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    z-index: 9998;
    transition: bottom 0.3s ease-in-out;
    box-sizing: border-box;
}
.smart-sticky-cta.show-cta { bottom: 0; }

.sticky-cta-btn {
    flex: 1 1 0%;
    margin: 0 3px;
    padding: 6px 4px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    box-sizing: border-box;
    word-break: break-word;
}
.sticky-call { background: linear-gradient(135deg, #0044cc, #002288); }
.sticky-gallery { background: linear-gradient(135deg, #555555, #333333); }
.sticky-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

.sticky-cta-btn span {
    font-size: 9px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 1px;
}

/* Tablet & Desktop (Hide sticky bar) */
@media screen and (min-width: 768px) {
    .smart-sticky-cta { display: none; }
}

/* --- .permanent-appointment-btn --- */
/* Mobile (Default) */
.permanent-appointment-btn {
    position: fixed;
    bottom: 55%;
    right: 15px;
    background-color: #ff9900;
    color: #000000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.permanent-appointment-btn.show-appt {
    opacity: 1;
    visibility: visible;
    animation: fastBounce 1s ease-in-out infinite;
}
.permanent-appointment-btn:hover {
    background-color: #ffaa33;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .permanent-appointment-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .permanent-appointment-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@keyframes fastBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- .news-sub --- */
/* Mobile (Default) */
.news-sub {
    font-size: 9.0px;
    color: #0066cc;
    margin-top: 3px;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 600;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .news-sub { font-size: 11px; }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .news-sub { font-size: 10px; }
}

/* --- .top-text --- */
/* Mobile (Default) */
.top-text {
    font-size: 13px;
    font-weight: 300;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

/* Tablet */
@media screen and (min-width: 768px) {
    .top-text {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.25;
        letter-spacing: normal;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .top-text {
        font-size: 18.5px;
        margin-bottom: 10px;
        line-height: 1.35;
        letter-spacing: normal;
    }
}

.feature-text-wrap {
    width: 100%;
    text-align: left;
}
.feature-text-wrap p {
    font-size: 10px;
    color: #333;
    margin-top: 8px;
    line-height: 1.4;
}

/* स्पेशल जस्टिफाइड क्लास जो मोबाइल, टैबलेट और डेस्कटॉप तीनों पर काम करेगी */
.discription {
    text-align: justify !important;
    text-justify: inter-word;
    text-align-last: left; /* आखिरी लाइन को थोड़ा सुंदर दिखने के लिए */
}

/* ==========================================
   पैराग्राफ (P Tag) के लिए अलग-अलग स्क्रीन साइज
   ========================================== */

/* 1. मोबाइल के लिए (डिफ़ॉल्ट साइज) */
.discription p {
    font-size: 15px !important;  /* मोबाइल पर टेक्स्ट का साइज अपने अनुसार कम-ज्यादा कर सकते हैं */
    text-align: justify !important; /* दोनों तरफ से एकदम बराबर (Justified) सेट करने के लिए */
    line-height: 1.5 !important;
}

/* 2. टैबलेट के लिए (768px या उससे बड़ी स्क्रीन) */
@media screen and (min-width: 768px) {
    .discription p {
        font-size: 16px !important; /* टैबलेट के लिए साइज */
    }
}

/* 3. डेस्कटॉप और लैपटॉप के लिए (1024px या उससे बड़ी स्क्रीन) */
@media screen and (min-width: 1024px) {
    .discription p {
        font-size: 20px !important; /* डेस्कटॉप के लिए साइज */
    }
}


/* ==========================================
   TEXT-INTRO ONLY
   Dusri classes/files par koi effect nahi
   ========================================== */

.text-intro {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    color: inherit;
}

/* Sirf .text-intro ke andar ke paragraph */
.text-intro > p {
    font-size: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
    color: inherit;
}


/* 480px - 767px */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .text-intro {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
}


/* 768px - 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .text-intro {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
}


/* 1024px - 1199px */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .text-intro {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
}


/* 1200px+ */
@media screen and (min-width: 1200px) {
    .text-intro {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }
}

/* ================================
   KAMAKHYA FAQ - CSS
   ================================ */

.page-faq-qsn {
    width: 100%;
    max-width: 100%;
}

/* FAQ Item */
.page-faq-qsn-item {
    width: 100%;
    margin: 0 0 10px 0;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
}

/* Hidden Checkbox */
.page-faq-qsn-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* FAQ H2 */
.page-faq-qsn-item h2.page-faq-qsn-question {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #222222 !important;
    background: #ffffff !important;

    font-family: Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;

    visibility: visible !important;
    opacity: 1 !important;
}

/* Clickable Label */
.page-faq-qsn-label {
    display: flex;

    width: 100%;
    min-height: 60px;

    padding: 15px 20px;

    align-items: center;
    justify-content: space-between;

    color: #222222;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;

    text-align: left;

    cursor: pointer;

    box-sizing: border-box;
}

/* Question Text */
.page-faq-qsn-text {
    flex: 1 1 auto;

    color: #222222 !important;

    font-family: Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;

    text-align: left;
}

/* Plus / Minus Icon */
.page-faq-qsn-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    min-width: 30px;
    height: 30px;

    margin-left: 15px;

    border: 1px solid #7a0000;
    border-radius: 50%;

    background: #ffffff;

    color: #7a0000;

    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    flex-shrink: 0;
}

/* Answer - Closed */
.page-faq-qsn-answer {
    display: none;

    width: 100%;

    padding: 16px 20px 20px;

    border-top: 1px solid #e5e5e5;

    background: #ffffff;

    box-sizing: border-box;
}

/* Answer Text */
.page-faq-qsn-answer p {
    margin: 0 !important;
    padding: 0 !important;

    color: #444444 !important;

    font-family: Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;

    text-align: justify !important;
    text-justify: inter-word;
}

/* ================================
   OPEN STATE
   ================================ */

/* Change + to − */
.page-faq-qsn-toggle:checked ~ h2 .page-faq-qsn-icon {
    font-size: 0;
}

.page-faq-qsn-toggle:checked ~ h2 .page-faq-qsn-icon::after {
    content: "−";
    font-size: 20px;
}

/* Open Question Background */
.page-faq-qsn-toggle:checked ~ h2 .page-faq-qsn-label {
    background: #fafafa;
}


/* ================================
   MOBILE
   ================================ */

@media screen and (max-width: 767px) {

    .page-faq-qsn-item h2.page-faq-qsn-question {
        font-size: 16px !important;
    }

    .page-faq-qsn-label {
        min-height: 55px;
        padding: 14px 15px;
    }

    .page-faq-qsn-text {
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .page-faq-qsn-icon {
        width: 28px;
        min-width: 28px;
        height: 28px;

        margin-left: 10px;

        font-size: 19px;
        line-height: 28px;
    }

    .page-faq-qsn-answer {
        padding: 15px;
    }

    .page-faq-qsn-answer p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }
}


/* ================================
   DESKTOP
   ================================ */

@media screen and (min-width: 1024px) {

    .page-faq-qsn-item h2.page-faq-qsn-question {
        font-size: 20px !important;
    }

    .page-faq-qsn-label {
        min-height: 65px;
        padding: 16px 20px;
    }

    .page-faq-qsn-text {
        font-size: 20px !important;
    }

    .page-faq-qsn-answer p {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }
}

.page-faq-qsn-toggle:checked ~ .page-faq-qsn-answer {
    display: block;
}

/* =========================================
   Div id pricing service top margin
   ========================================= */

html {
    scroll-behavior: smooth;
}

/* Desktop */
[id] {
    scroll-margin-top: 110px;
}

/* Tablet */
@media (max-width: 1024px) {
    [id] {
        scroll-margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    [id] {
        scroll-margin-top: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    [id] {
        scroll-margin-top: 20px;
    }
}
