/* बेसिक रीसेट और फॉन्ट */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
}

/* हेडर कंटेनर स्टाइल्स */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* लोगो स्टाइल (Red/Dark Blue Pest Control थीम) */
.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a252f;
    text-decoration: none;
    text-transform: uppercase;
}

.logo a span {
    color: #e74c3c; /* पेस्ट कंट्रोल के लिए डेंजर/रेड टच */
}

/* नेविगेशन मेनू */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* होवर और एक्टिव स्टेट */
.nav-links a:hover, 
.nav-links a.active {
    color: #e74c3c;
}

/* कॉल बटन स्टाइल */
.call-btn {
    background-color: #27ae60; /* कॉल के लिए हरा रंग (ट्रस्ट और एक्शन) */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.call-btn:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

.call-btn i {
    font-size: 16px;
}

/* रिस्पॉन्सिव डिज़ाइन (मोबाइल के लिए बेसिक सपोर्ट) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 10px;
    }
}









/* हीरो सेक्शन बैकग्राउंड (यहाँ डार्क ओवरले और प्रीमियम लुक दिया है) */
.hero-section {
    position: relative;
    /* अपनी पसंद की कोई भी पेस्ट कंट्रोल बैकग्राउंड इमेज यहाँ लगाएं */
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    color: #ffffff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

/* लेफ्ट साइड - कंटेंट स्टाइल */
.hero-content .sub-title {
    color: #38bdf8; /* स्काई ब्लू टच जो क्लीन फील देता है */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: red; /* ग्रीन कलर - सेफ और पेस्ट फ्री एनवायरनमेंट के लिए */
}

.hero-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* फीचर्स लिस्ट */
.feature-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #f1f5f9;
}

.feature-item i {
    color: #22c55e; /* ग्रीन टिक मार्क्स */
    font-size: 18px;
}

/* बटन्स */
.hero-btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: red;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #16a34a;
}

.btn-secondary {
    border: 2px solid #cbd5e1;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* राइट साइड - फॉर्म स्टाइल (एकदम क्लीन और प्रीमियम मॉडर्न कार्ड) */
.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #334155;
}

.form-container h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 5px;
}

.form-container p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: red;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* सबमिट बटन */
.form-submit-btn {
    width: 100%;
    background-color: red;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: red;
}

/* =================================================== */
/* रेस्पॉन्सिव मीडिया क्वेरी (Responsive Media Query) */
/* =================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr; /* टैबलेट और मोबाइल पर एक के नीचे एक आ जाएगा */
        gap: 40px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}









/* स्टेट्स ग्रिड कंटेनर */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* एक लाइन में 4 कॉलम */
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    max-width: 800px; /* फॉर्म के बाईं तरफ परफेक्ट फिट होने के लिए */
}

/* इंडिविजुअल स्टेट कार्ड स्टाइल (ब्लैक/डार्क थीम विथ मॉडर्न बॉर्डर) */
.stat-card {
    background: rgba(15, 23, 42, 0.6); /* प्रीमियम सेमी-ट्रांसपेरेंट ब्लैक */
    border: 1px solid rgba(255, 255, 255, 0.1); /* हल्का सा बॉर्डर जो चमकता है */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(5px); /* बैकग्राउंड को ब्लर करके रिच लुक देने के लिए */
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 110px;
}

/* होवर इफेक्ट (जब माउस ऊपर जाएगा तो हल्का सा उठेगा) */
.stat-card:hover {
    transform: translateY(-5px);
    border-color: #22c55e; /* होवर पर बॉर्डर का रंग ग्रीन हो जाएगा */
}

/* आइकॉन्स की स्टाइल */
.stat-icon-wrapper i {
    color: #eab308; /* प्रीमियम गोल्ड/येलो कलर */
    font-size: 22px;
    margin-bottom: 8px;
    display: inline-block;
}

/* नंबर/मेन टेक्स्ट स्टाइल */
.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

/* सब-टेक्स्ट/लेबल स्टाइल */
.stat-label {
    font-size: 12px;
    color: #94a3b8; /* हल्का ग्रे कलर जो पढ़ने में आसान हो */
    font-weight: 500;
    line-height: 1.3;
}

/* =================================================== */
/* रेस्पॉन्सिव मीडिया क्वेरी (Responsive for Mobile & Tablets) */
/* =================================================== */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2-2 की दो लाइन बन जाएंगी */
        gap: 12px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr; /* छोटे मोबाइल पर सब एक के नीचे एक आ जाएंगे */
        gap: 10px;
    }
    
    .stat-card {
        min-height: auto;
        padding: 12px;
    }
}













/* About Us Main Background */
.about-section {
    background-color: #0b1329; 
    padding: 80px 20px;
    color: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 50px;
    align-items: center;
}

/* Image Box Style */
.about-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Text Style */
.about-tag {
    color: #22c55e; 
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-text-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-content h2 span {
    color: #38bdf8; 
}

.about-para {
    font-size: 16px;
    color: #cbd5e1; 
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Features Grid Box */
.about-features-box {
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: #eab308; 
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-item span {
    font-size: 15px;
    color: #f1f5f9;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; 
        gap: 35px;
    }
    
    .about-text-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-features-box {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 12px;
    }

    .about-feature-item span {
        font-size: 14px;
    }
}







/* =================================================== */
/* मोबाइल व्यू: [लोगो] ----------- [सिर्फ कॉल आइकन] [टॉगल मेनू] */
/* =================================================== */

/* कंप्यूटर स्क्रीन पर तीन लाइनों वाला बटन छिपा रहेगा */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    gap: 5px;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #1a252f;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* मोबाइल और टैबलेट व्यू (992px से नीचे) */
@media (max-width: 992px) {
    .container {
        padding: 10px 15px;
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important; /* लोगो लेफ्ट में और बाकी दोनों राइट में */
        align-items: center !important;
        width: 100%;
    }

    .logo img {
        height: 52px; /* मोबाइल पर लोगो का परफेक्ट साइज */
        display: block;
    }

    /* राइट साइड का एक्शन ब्लॉक - यह दोनों बटन्स को एक सीधी लाइन में रखेगा */
    .header-action {
        display: flex !important;
        flex-direction: row !important; /* सीधा ऑर्डर: पहले कॉल आइकन फिर टॉगल मेनू */
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 15px; /* कॉल आइकन और टॉगल मेनू के बीच की परफेक्ट दूरी */
        margin-left: auto; /* लोगो से बची हुई जगह को धक्का देकर राइट कोने में ले जाएगा */
    }

    /* कॉल आइकन की स्टाइल (यह अब टॉगल मेनू के लेफ्ट में रहेगा) */
    .call-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%; /* एकदम गोल आइकन */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #27ae60; /* ग्रीन बैकग्राउंड */
        color: white;
        text-decoration: none;
    }

    /* मोबाइल पर नंबर छिपा रहेगा */
    .call-btn span {
        display: none !important;
    }

    .call-btn i {
        font-size: 18px;
        margin: 0;
    }

    /* टॉगल मेनू बटन (यह अब कॉल आइकन के ठीक राइट साइड में रहेगा) */
    .menu-toggle {
        display: flex;
        margin: 0;
    }

    /* मोबाइल मेनू ड्रॉपडाउन स्टाइल */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 350px; 
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid #f1f5f9;
        color: #34495e;
        font-size: 16px;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* क्रॉस (X) एनीमेशन */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* बहुत छोटे मोबाइल के लिए (480px से नीचे) */
@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
    .call-btn {
        width: 38px;
        height: 38px;
    }
    .call-btn i {
        font-size: 16px;
    }
    .header-action {
        gap: 10px;
    }
}








/* =================================================== */
/* Services Section CSS */
/* =================================================== */

.services-section {
    background-color: #0f172a; /* हल्का डार्क शेड ताकि अबाउट सेक्शन से थोड़ा अलग दिखे */
    padding: 80px 20px;
    color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* सेक्शन हेडर स्टाइल */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-tag {
    color: #27ae60; /* वही आपका हरा थीम कलर */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.services-header h2 span {
    color: #38bdf8; /* स्काई ब्लू हाइलाइट */
}

.services-header p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ग्रिड लेआउट (कंप्यूटर पर 4 कार्ड एक लाइन में दिखेंगे) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* इंडिविजुअल सर्विस कार्ड */
.service-card {
    background: #1e293b; /* कार्ड का प्रीमियम बैकग्राउंड */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* होवर करने पर कार्ड ऊपर उठेगा */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.2); /* हल्का ग्रीन ग्लो */
    border-color: rgba(39, 174, 96, 0.3);
}

/* कार्ड इमेज */
.service-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img {
    transform: scale(1.1); /* होवर पर इमेज थोड़ी ज़ूम होगी */
}

/* कार्ड का टेक्स्ट एरिया */
.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f8fafc;
}

.service-info p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 80px; /* सभी कार्ड्स का टेक्स्ट बराबर रखने के लिए */
    overflow: hidden;
}

/* बुक बटन लिंक */
.service-link {
    color: #27ae60;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.service-link:hover {
    color: #2ecc71;
}

/* =================================================== */
/* मोबाइल और टैबलेट के लिए मीडिया क्वेरी */
/* =================================================== */

@media (max-width: 1024px) {
    /* टैबलेट पर एक लाइन में 2 कार्ड दिखेंगे */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    /* मोबाइल पर सारे कार्ड एक के नीचे एक सुंदर सिंगल लाइन में आ जाएंगे */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-info p {
        height: auto; /* मोबाइल पर टेक्स्ट अपनी जगह खुद ले लेगा */
    }
}












/* =================================================== */
/* Why Choose Us Section CSS */
/* =================================================== */

.why-choose-section {
    background-color: #0b1329; /* आपकी वेबसाइट का प्राइमरी डार्क कलर */
    padding: 80px 20px;
    color: #ffffff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* लेफ्ट साइड इमेज स्टाइल */
.why-choose-img {
    flex: 1;
    position: relative;
}

.why-choose-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* एक्सपीरियंस बैच जो इमेज के ऊपर तैरता हुआ दिखेगा */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #27ae60; /* थीम ग्रीन */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.experience-badge p {
    font-size: 12px;
    font-weight: 500;
    color: #e0e0e0;
}

/* राइट साइड कंटेंट स्टाइल */
.why-choose-content {
    flex: 1;
}

.why-choose-content .sub-heading {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.why-choose-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-choose-content h2 span {
    color: #38bdf8;
}

.why-choose-content .section-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* खूबियों की लिस्ट */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* गोल आइकन बॉक्स */
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #27ae60;
    font-size: 20px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* =================================================== */
/* मोबाइल और टैबलेट के लिए मीडिया क्वेरी */
/* =================================================== */

@media (max-width: 992px) {
    .why-choose-wrapper {
        flex-direction: column; /* टैबलेट और मोबाइल पर ऊपर-नीचे हो जाएगा */
        gap: 40px;
    }
    
    .why-choose-img {
        width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 15px;
    }
    
    .why-choose-content h2 {
        font-size: 28px;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .experience-badge h3 {
        font-size: 24px;
    }
}








/* =================================================== */
/* Testimonials & Reviews Section CSS */
/* =================================================== */

.reviews-section {
    background-color: #0f172a; /* हल्का डार्क बैकग्राउंड */
    padding: 80px 20px;
    color: #ffffff;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-tag {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.reviews-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.reviews-header h2 span {
    color: #38bdf8;
}

.reviews-header p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ट्रस्ट बैज (गूगल/जस्टडायल रेटिंग्स शोकेस) */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-stars i {
    color: #f1c40f; /* गोल्डन स्टार कलर */
    font-size: 14px;
}

.badge-item p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* रिव्यूज ग्रिड (कंप्यूटर पर 3 कार्ड्स एक लाइन में) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #f1c40f;
    font-size: 14px;
    margin-right: 2px;
}

.review-text {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

/* यूजर प्रोफाइल नीचे सेट करने के लिए */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

/* बिना किसी इमेज के नाम के पहले अक्षर का गोल अवतार (100% सेफ तरीका) */
.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 2px 0;
}

.reviewer-info span {
    font-size: 12px;
    color: #64748b;
}

/* =================================================== */
/* मोबाइल और टैबलेट के लिए मीडिया क्वेरी */
/* =================================================== */

@media (max-width: 992px) {
    /* टैबलेट पर 2 कार्ड एक लाइन में */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 15px;
    }
    .reviews-header h2 {
        font-size: 28px;
    }
    .trust-badges {
        gap: 15px;
        margin-bottom: 35px;
    }
}

@media (max-width: 600px) {
    /* मोबाइल पर एक के नीचे एक सिंगल कार्ड */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}







/* =================================================== */
/* Footer Section CSS */
/* =================================================== */

.main-footer {
    background-color: #0b1329; /* गहरा डार्क थीम बैकग्राउंड */
    padding: 70px 20px 0 20px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 4 कॉलम का ग्रिड लेआउट */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.8fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* हेडिंग के नीचे छोटी हरी लाइन */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #27ae60;
}

/* पहला कॉलम (कंपनी इन्फो) */
.about-col .footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-col .footer-logo span {
    color: #27ae60;
}

.about-col p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* सोशल मीडिया बटन्स */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #27ae60;
    color: #ffffff;
    border-color: #27ae60;
    transform: translateY(-3px);
}

/* लिंक्स वाले कॉलम्स (Column 2 & 3) */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col ul a i {
    font-size: 10px;
    color: #64748b;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #27ae60;
    transform: translateX(5px);
}

.footer-col ul a:hover i {
    color: #27ae60;
}

/* कांटेक्ट इन्फो कॉलम (Column 4) */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #27ae60;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item a, .contact-item p {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    line-height: 1.5;
    margin: 0;
}

.contact-item a:hover {
    color: #27ae60;
}

/* सबसे निचली पट्टी (Copyright Bar) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    background-color: #090f1f;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* =================================================== */
/* मोबाइल और टैबलेट रिस्पॉन्सिवनेस */
/* =================================================== */

@media (max-width: 1024px) {
    /* टैबलेट स्क्रीन पर 2-2 कॉलम की दो लाइन बन जाएंगी */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    /* मोबाइल स्क्रीन पर सारे कॉलम एक के नीचे एक आ जाएंगे */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .main-footer {
        padding: 50px 15px 0 15px;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}









/* =================================================== */
/* Floating WhatsApp Button CSS */
/* =================================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* व्हाट्सएप्प का ऑफिशियल ग्रीन कलर */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000; /* यह नंबर सबसे बड़ा है ताकि बटन हर सेक्शन के ऊपर दिखे */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* बटन के चारों तरफ घूमने वाला हल्का सा पल्स एनीमेशन (कस्टमर को अट्रैक्ट करने के लिए) */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

/* होवर करने पर बटन थोड़ा बड़ा होगा और घूमेगा */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #ffffff;
}

/* आइकन का साइज परफेक्ट रखने के लिए */
.whatsapp-float i {
    margin: 0;
}

/* 'Chat Karein' टूलटिप टेक्स्ट (सिर्फ कंप्यूटर स्क्रीन पर दिखेगा) */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1e293b;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* पल्स एनीमेशन का लॉजिक */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* =================================================== */
/* मोबाइल स्क्रीन के लिए छोटा सा बदलाव */
/* =================================================== */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px; /* मोबाइल पर नीचे से थोड़ी कम दूरी */
        right: 20px;  /* मोबाइल पर राइट से थोड़ी कम दूरी */
        font-size: 30px;
    }
    
    /* मोबाइल पर टूलटिप को बंद कर देते हैं क्योंकि वहाँ माउस होवर नहीं होता */
    .whatsapp-tooltip {
        display: none !important;
    }
}









/* =================================================== */
/* Termite Treatment Page CSS */
/* =================================================== */

/* 1. Termite Hero Section */
.termite-hero {
    background: linear-gradient(rgba(11, 19, 41, 0.85), rgba(11, 19, 41, 0.95)), 
                url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px 20px;
    text-align: center;
    color: #ffffff;
}

.termite-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.termite-hero .badge-tag {
    background-color: rgba(39, 174, 96, 0.15);
    border: 1px solid #27ae60;
    color: #27ae60;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.termite-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.termite-hero h1 span {
    color: #38bdf8;
}

.termite-hero p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Call to Action Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-main {
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-main:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

.cta-btn-sub {
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.cta-btn-sub:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

/* 2. Termite Process Section */
.termite-process {
    background-color: #0f172a;
    padding: 80px 20px;
    color: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-header h2 span {
    color: #38bdf8;
}

.process-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.process-card .icon-box i {
    color: #38bdf8;
    font-size: 22px;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f8fafc;
}

.process-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 3. Pre & Post Construction Section */
.termite-types {
    background-color: #0b1329;
    padding: 80px 20px;
    color: #ffffff;
}

.types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.types-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.types-content {
    flex: 1.2;
}

.types-image {
    flex: 0.8;
}

.types-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.types-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.types-content h2 span {
    color: #27ae60;
}

.types-content .main-p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 16px;
}

.type-item {
    margin-bottom: 20px;
}

.type-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-item h4 i {
    color: #27ae60;
}

.type-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    padding-left: 26px;
}

.type-item-note {
    background-color: rgba(241, 196, 15, 0.05);
    border-left: 4px solid #f1c40f;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.type-item-note p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.type-item-note strong {
    color: #f1c40f;
}

/* =================================================== */
/* Responsive Media Queries */
/* =================================================== */

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr; /* टैबलेट और मोबाइल पर प्रोसेस एक के नीचे एक हो जाएंगे */
        gap: 20px;
    }
    
    .types-wrapper {
        flex-direction: column; /* इमेज नीचे खिसक जाएगी */
        gap: 40px;
    }
    
    .types-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .termite-hero h1 {
        font-size: 30px;
    }
    .termite-hero p {
        font-size: 15px;
    }
    .process-header h2, .types-content h2 {
        font-size: 26px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .cta-btn-main, .cta-btn-sub {
        justify-content: center;
        width: 100%;
    }
}








/* =================================================== */
/* Sahi Se Designed: Premium About Us Page CSS */
/* =================================================== */

/* 1. About Hero Section */
.about-hero-premium {
    background: url('https://images.unsplash.com/photo-1549643276-fdf2fab574f5?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    background: linear-gradient(rgba(11, 19, 41, 0.85), rgba(11, 19, 41, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px 20px;
}

.about-hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.about-hero-content .p-tag {
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(39, 174, 96, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.about-hero-content h1 span {
    color: #38bdf8;
}

.about-hero-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 2. Detailed Story Section */
.story-premium-section {
    background-color: #0b1329; /* Primary Dark Background */
    padding: 90px 20px;
    color: #ffffff;
}

.story-premium-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-premium-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-left-content {
    flex: 1.2;
}

.section-badge {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.story-left-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.story-left-content h2 span {
    color: #38bdf8;
}

.highlight-p {
    font-size: 17px;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 15px;
}

.main-text {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Inner Mini Features Layout */
.about-mini-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-feat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mini-feat i {
    color: #27ae60;
    font-size: 18px;
    margin-top: 3px;
}

.mini-feat h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
}

.mini-feat p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* Right Side Image handling */
.story-right-image {
    flex: 0.8;
}

.img-wrapper {
    position: relative;
    width: 100%;
}

.img-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    display: block;
}

/* Floating element over image */
.floating-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #27ae60;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    text-align: center;
}

.floating-stat-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.floating-stat-card p {
    font-size: 12px;
    color: #e2f0d9;
    margin: 0;
    font-weight: 500;
}

/* 3. Standards / Core Values Section */
.standards-section {
    background-color: #0f172a; /* Secondary Dark Background */
    padding: 80px 20px;
    color: #ffffff;
}

.standards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.standards-header {
    text-align: center;
    margin-bottom: 50px;
}

.standards-header h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.standards-header h2 span {
    color: #27ae60;
}

.standards-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.standard-card {
    background-color: #1e293b;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
}

.s-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(56, 189, 248, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.s-icon-box i {
    color: #38bdf8;
    font-size: 22px;
}

.standard-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 12px;
}

.standard-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* =================================================== */
/* Responsive Media Queries */
/* =================================================== */

@media (max-width: 992px) {
    .story-premium-row {
        flex-direction: column;
        gap: 50px;
    }
    .story-right-image {
        width: 100%;
        max-width: 450px;
        margin-top: 20px;
    }
    .floating-stat-card {
        bottom: 10px;
        left: 10px;
    }
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-hero-premium {
        min-height: 320px;
    }
    .about-hero-content h1 {
        font-size: 30px;
    }
    .story-left-content h2, .standards-header h2 {
        font-size: 26px;
    }
}






/* =================================================== */
/* Gallery Page CSS */
/* =================================================== */

/* 1. Gallery Hero Banner */
.gallery-hero {
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-overlay {
    background: linear-gradient(rgba(11, 19, 41, 0.88), rgba(11, 19, 41, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px 20px;
}

.gallery-hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.gallery-hero-content .g-tag {
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(39, 174, 96, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.gallery-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.gallery-hero-content h1 span {
    color: #38bdf8;
}

.gallery-hero-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 2. Gallery Grid Layout */
.gallery-grid-section {
    background-color: #0b1329; /* Primary Dark Background */
    padding: 80px 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img-box {
    width: 100%;
    height: 250px;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover Effect: Card overlay details */
.gallery-hover-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 19, 41, 0.9), rgba(39, 174, 96, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-hover-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-hover-card p {
    color: #38bdf8;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

/* Hover states */
.gallery-item:hover .gallery-img-box img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-hover-card {
    opacity: 1;
}

.gallery-item:hover .gallery-hover-card h4,
.gallery-item:hover .gallery-hover-card p {
    transform: translateY(0);
}

/* Gallery Bottom CTA block */
.gallery-cta {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-cta h3 {
    font-size: 24px;
    color: #f8fafc;
    margin-bottom: 10px;
}

.gallery-cta p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 25px;
}

.gallery-call-btn {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: background 0.2s;
}

.gallery-call-btn:hover {
    background-color: #219653;
}

/* =================================================== */
/* Responsive Media Queries */
/* =================================================== */

@media (max-width: 992px) {
    /* टैबलेट पर 2 कॉलम */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    /* मोबाइल पर 1 कॉलम */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-img-box {
        height: 220px;
    }
    .gallery-hero h1 {
        font-size: 28px;
    }
    .gallery-cta {
        padding: 30px 15px;
    }
    .gallery-cta h3 {
        font-size: 20px;
    }
}








/* =================================================== */
/* Contact Us Page CSS */
/* =================================================== */

/* 1. Contact Hero Banner */
.contact-hero {
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    background: linear-gradient(rgba(11, 19, 41, 0.9), rgba(11, 19, 41, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px 20px;
}

.contact-hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.contact-hero-content .c-tag {
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(39, 174, 96, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.contact-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact-hero-content h1 span {
    color: #38bdf8;
}

.contact-hero-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 2. Main Contact Layout */
.contact-main-section {
    background-color: #0b1329; /* Primary Dark Background */
    padding: 80px 20px;
    color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Left side details block */
.contact-info-box {
    flex: 1;
}

.info-badge {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-info-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-box h2 span {
    color: #38bdf8;
}

.info-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #27ae60;
    font-size: 18px;
}

.info-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 5px;
}

.info-text a {
    font-size: 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.info-text a:hover {
    color: #27ae60;
}

.info-text p {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
}

.info-text .sub-p {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.info-text .area-span {
    font-size: 13px;
    color: #94a3b8;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}

/* Right side Form Box style */
.contact-form-box {
    flex: 1;
    background-color: #1e293b; /* Secondary Box Dark Background */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 6px;
}

.contact-form-box p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Actual Form Elements Styling */
.actual-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #0b1329;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus state: Select or input box handles clicks brilliantly */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #27ae60;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.2);
}

.form-group select option {
    background-color: #1e293b;
    color: #fff;
}

.form-submit-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    transition: background 0.2s, transform 0.2s;
}

.form-submit-btn:hover {
    background-color: #219653;
    transform: translateY(-1px);
}

/* =================================================== */
/* Responsive Media Queries */
/* =================================================== */

@media (max-width: 992px) {
    /* टैबलेट और मोबाइल पर फॉर्म और डिटेल्स ऊपर-नीचे सेट हो जाएंगे */
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .contact-info-box, .contact-form-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 28px;
    }
    .contact-info-box h2 {
        font-size: 26px;
    }
    .contact-form-box {
        padding: 30px 20px;
    }
}








/* =================================================== */
/* Pricing Section Table CSS */
/* =================================================== */

.pricing-section {
    background-color: #0f172a; /* हल्का डार्क बैकग्राउंड */
    padding: 80px 20px;
    color: #ffffff;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-tag {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.pricing-header h2 span {
    color: #38bdf8;
}

.pricing-header p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto 0 auto;
}

/* टेबल को मोबाइल पर स्क्रॉल-एबल बनाने के लिए wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: #1e293b; /* टेबल का डार्क बैकग्राउंड */
    min-width: 650px; /* मोबाइल पर कटने से बचाने के लिए न्यूनतम चौड़ाई */
}

.pricing-table th {
    background-color: #0b1329;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #cbd5e1;
}

/* कैटेगरी हेडिंग वाली रो (जैसे Cockroach Control पट्टी) */
.pricing-table .category-row td {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(39, 174, 96, 0.2);
}

.pricing-table .category-row i {
    margin-right: 8px;
}

/* प्राइस का हरा और बोल्ड टेक्स्ट */
.price-text {
    color: #27ae60;
    font-weight: 700;
    font-size: 16px;
}

/* टेबल रो पर हल्का होवर इफेक्ट */
.pricing-table tbody tr:not(.category-row):hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* प्राइसिंग फुटर नोट और बटन */
.pricing-footer-note {
    margin-top: 35px;
    text-align: center;
}

.pricing-footer-note p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-footer-note p i {
    color: #38bdf8;
    margin-right: 5px;
}

.book-now-btn {
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: background 0.2s, transform 0.2s;
}

.book-now-btn:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

/* =================================================== */
/* मोबाइल रिस्पॉन्सिवनेस */
/* =================================================== */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 15px;
    }
    .pricing-header h2 {
        font-size: 28px;
    }
}