/* ==========================================
   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 --- */
.navbar-container {
    background: #cc0000;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    clear: both;
    margin-top: 0;
}

/* Mobile (Default) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2px 2px;
    width: 100%;
    box-sizing: border-box;
}
.navbar a {
    flex: 1;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 6px;
    margin: 2px 2px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffcc00;
}
.navbar a.active-nav {
    background-color: #ffffff;
    color: #cc0000;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

/* Tablet */
@media screen and (min-width: 768px) {
    .navbar {
        justify-content: center;
        gap: 6px;
        padding: 8px 12px;
    }
    .navbar a {
        flex: 0 1 auto;
        padding: 8px 12px;
        font-size: 16px;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .navbar {
        justify-content: center;
        gap: 10px;
        padding: 8px 15px;
    }
    .navbar a {
        flex: 0 1 auto;
        padding: 8px 24px;
        font-size: 22px;
        letter-spacing: 0.5px;
    }
}

/* ==========================================
   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;
    }
}

