/* ==============================================
Index Of css
                    
01. Header CSS         11
02. Footer CSS          617
03. Visit site css     242
04. Gallery css        335
04. Visit site         335
=============================================*/
/* ==========================================================================
   NISHU ENTERPRISES - COMPLETE FIX STYLE SHEET
   ========================================================================== */

:root {
    --header-bg: #0e2a52;          /* गहरा नीला (Deep Navy Blue) */
    --primary-blue: #0e2a52;       /* मुख्य ब्रांड रंग */
    --primary-green: #b91c1c;      /* लोगो का लाल रंग (Crimson Red) */
    --highlight-yellow: #46a1dc;   /* लोगो का हल्का नीला (Sky Blue) */
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-navy: #0e2a52;
    --soft-gray: #f8fafc;
    --transition: all 0.3s ease;
}

/* --- Base Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Header & Navigation Fix --- */
/* --- Header & Navigation Fix For Clear Logo --- */
header {
    background: #ffffff; /* लोगो को साफ दिखाने के लिए शुद्ध सफेद बैकग्राउंड */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* हल्का सा शैडो ताकि हेडर अलग दिखे */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid #e2e8f0; /* नीचे एक बारीक बॉर्डर */
}

nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 20px; /* थोड़ा स्पेस बढ़ाया ताकि लोगो खुलकर दिखे */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px; /* लोगो का साइज एकदम परफेक्ट दिखेगा */
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* लिंक्स का रंग अब गहरे नीले (#0e2a52) में बदला है क्योंकि बैकग्राउंड सफेद है */
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #0e2a52; 
    letter-spacing: 0.5px;
    padding: 5px 0;
}

/* होवर करने पर लोगो का लाल रंग (Crimson Red) दिखेगा */
.nav-links a:hover {
    color: #b91c1c; 
}

/* बटन को वैसे ही रखा है ताकि वो हाइलाइट हो */
.btn-post {
    background: #b91c1c;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.2);
    white-space: nowrap;
    border: none;
    display: inline-block;
}

.btn-post:hover {
    background: #0e2a52; /* बटन होवर पर गहरा नीला हो जाएगा */
    transform: translateY(-1px);
}

/* मोबाइल के लिए तीन लाइनों वाला मेनू बटन अब काले/गहरे नीले रंग का होगा */
/* --- Mobile Menu Button Fix --- */
.menu-btn {
    display: none; /* डेस्कटॉप पर छुपा रहेगा */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
    position: relative;
}

/* बटन की तीनों लाइनें - लोगो के गहरे नीले रंग (#0e2a52) में */
.menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #0e2a52; 
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}
/* --- Responsive Mobile Menu Fix --- */
@media (max-width: 992px) {
    .menu-btn {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    .mobile-booking-wrap {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .nav-links {
        position: absolute;
        top: -1000px;
        left: 0;
        width: 100%;
        background: #ffffff; /* मोबाइल मेनू भी सफेद रहेगा */
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: -1;
        padding-bottom: 15px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        top: 100%;
        opacity: 1;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f1f5f9;
        color: #0e2a52;
    }

}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(rgba(14, 42, 82, 0.85), rgba(14, 42, 82, 0.85)),
        url('https://images.pexels.com/photos/1216589/pexels-photo-1216589.jpeg?auto=compress&w=1300');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1rem;
    opacity: 0.9;
}

.page-banner span {
    color: var(--highlight-yellow);
}

/* --- Hero Slider Layout Fix --- */
.hero {
    position: relative;
    height: 520px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-wrapper {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    z-index: 5;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.s-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 14px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: var(--transition);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-btn:hover {
    background: var(--highlight-yellow);
    color: var(--primary-blue);
}

.prev { left: 25px; }
.next { right: 25px; }



/* --- Section Layout & Cards Fix --- */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.sec-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.sec-title h2 span {
    color: var(--primary-green);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(14, 42, 82, 0.12);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.price {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.loc {
    color: #64748b;
    font-size: 0.9rem;
    margin: 8px 0 15px;
}

/* --- Headline Utility --- */
.headline {
    text-align: center;
    margin-bottom: 40px;
}

.headline h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.headline h3 span {
    color: var(--primary-green);
}

.headline p {
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Testimonials Section --- */
.testimonial-section {
    padding: 60px 20px;
    background: #f1f5f9;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    margin: 10px 0;
    border-bottom: 4px solid var(--primary-green);
}

.testimonial-img {
    width: 70px !important;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid var(--highlight-yellow);
    object-fit: cover;
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-blue) !important;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 20px 20px;
    background: white;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--dark);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(14, 42, 82, 0.08);
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 22px 18px;
    color: #64748b;
    line-height: 1.7;
    display: none;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary-green);
}

/* --- Working Steps Fix --- */
.step-section {
    padding: 20px 20px;
    background: var(--header-bg);
    color: white;
}

.step-section .headline h3 {
    color: white;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.step-wrapper {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border-left: 4px solid var(--highlight-yellow);
    transition: var(--transition);
}

.step-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--highlight-yellow);
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- Stats Counters --- */
/* .about-stats {
    background: var(--header-bg);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin: 2px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box h2 {
    font-size: 2.8rem;
    color: var(--highlight-yellow);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.95rem;
    opacity: 0.85;
} */

/* --- CTA Box Fix --- */
.cta-box {
    background: var(--primary-blue);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 35px;
    background: var(--primary-green);
    color: var(--white) !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
    border: none;
}

.cta-btn:hover {
    background: #991b1b;
    transform: translateY(-2px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    .hero {
        height: 420px;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
    .sec-title h2, .headline h3 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   FOOTER & WHATSAPP DYNAMIC STYLES 
   ========================================================================== */

footer {
    background: #0e2a52; /* लोगो का गहरा नीला रंग (Brand Core Navy Blue) */
    color: #e2e8f0;      /* हल्का साफ़ टेक्स्ट कलर पढ़ने में आसान */
    padding: 70px 20px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 5px solid #b91c1c; /* फ़ुटर के ऊपर लोगो वाली प्रीमियम लाल पट्टी */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* फ़ुटर का लोगो थोड़ा सा बड़ा और साफ़ दिखेगा */
.footer-col img {
    max-height: 75px; 
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9); /* लोगो पीएनजी बैकग्राउंड में चमकेगा */
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

/* हेडिंग के नीचे लाल रंग की छोटी सी स्टाइलिश लाइन */
.footer-col h4::after {
    content: '';
    width: 35px;
    height: 3px;
    background: #b91c1c; /* Crimson Red */
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

/* लिंक पर होवर करने पर लोगो का क्रिमसन रेड और थोड़ा सा राइट शिफ्ट इफ़ेक्ट */
.footer-links a:hover {
    color: #fca5a5; /* लाइट रेड/कोरल इफ़ेक्ट डार्क बैकग्राउंड पर साफ़ दिखने के लिए */
    padding-left: 6px;
}

/* फ़ुटर का सबसे नीचे वाला हिस्सा */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    color: #94a3b8;
}

/* --- WhatsApp Floating Button Fix --- */
.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp i {
    line-height: 1;
}

/* मोबाइल रिस्पॉन्सिव के लिए छोटा सा सुधार */
@media (max-width: 768px) {
    footer {
        padding: 50px 20px 20px;
    }
    .footer-grid {
        gap: 30px;
    }
    .footer-col h4 {
        margin-bottom: 18px;
    }
    .whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

/* ==========================================================================
   ABOUT SECTION - BRAND COLORED THEME
   ========================================================================== */

.section-padding {
    padding: 20px 20px;
    background-color: #ffffff; /* सेक्शन का साफ़ सफ़ेद बैकग्राउंड */
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    /* इमेज के पीछे लोगो वाले लाल रंग (Crimson Red) का प्रीमियम सॉलिड शैडो */
    box-shadow: 20px 20px 0 #b91c1c; 
    transition: all 0.4s ease;
}

.about-img img:hover {
    /* होवर करने पर इमेज थोड़ा सा मूव होगी और शैडो गहरा नीला हो जाएगा */
    transform: translate(5px, 5px);
    box-shadow: 15px 15px 0 #0e2a52; 
}

.about-text {
    flex: 1.2;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #0e2a52; /* मुख्य हेडिंग लोगो के गहरे नीले रंग (Deep Navy Blue) में */
}

.about-text h2 span {
    color: #b91c1c; /* 'Shivbrom City' हाइलाइट होगा लोगो के लाल रंग (Crimson Red) में */
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #475569; /* पढ़ने में आसान स्मूथ ग्रे टेक्स्ट */
    line-height: 1.7;
    text-align: justify;
}

/* --- Features List (Why Choose Us) --- */
.features-list {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.features-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.02rem;
    color: #1e293b; /* डार्क नेवी शेड टेक्स्ट */
}

.features-list li i {
    color: #b91c1c; /* टिक/चेक आइकन का रंग लोगो का लाल (Crimson Red) रहेगा */
    font-size: 1.2rem;
}

/* --- Mission & Vision Cards Fix --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    /* कार्ड के टॉप पर लोगो के गहरे नीले रंग की पट्टी */
    border-top: 5px solid #0e2a52; 
    box-shadow: 0 10px 30px rgba(14, 42, 82, 0.06);
}

.value-card:hover {
    transform: translateY(-8px);
    /* होवर होने पर टॉप बॉर्डर लोगो के लाल रंग में बदल जाएगा */
    border-top-color: #b91c1c; 
    box-shadow: 0 15px 35px rgba(14, 42, 82, 0.12);
}

.value-card i {
    font-size: 3rem;
    color: #b91c1c; /* कार्ड्स के अंदर के मुख्य आइकन्स लाल रंग के */
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #0e2a52; /* कार्ड की हेडिंग गहरा नीला */
    font-weight: 600;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 15px;
    }

    .about-flex {
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-img img {
        /* मोबाइल पर शैडो का साइज थोड़ा छोटा ताकि स्क्रीन से बाहर न जाए */
        box-shadow: 12px 12px 0 #b91c1c;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
}
/* ==========================================================================
   NISHU ENTERPRISES - HP GAS AGENCY PAGE STYLES
   ========================================================================== */

/* --- Quick Actions Grid --- */
.gas-services-container {
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.gas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gas-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(14, 42, 82, 0.03);
    transition: all 0.3s ease;
}

.gas-card:hover {
    transform: translateY(-8px);
    border-color: #b91c1c;
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.1);
}

.gas-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(185, 28, 28, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.gas-card:hover .icon-wrapper {
    background: #b91c1c;
}

.gas-card .icon-wrapper i {
    font-size: 2.2rem;
    color: #b91c1c;
    transition: all 0.3s ease;
}

.gas-card:hover .icon-wrapper i {
    color: #ffffff;
}

.gas-card h3 {
    color: #0e2a52;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.gas-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Action Buttons --- */
.btn-gas {
    display: inline-block;
    background: #0e2a52;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    border: 2px solid #0e2a52;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gas:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}

/* --- Features Layout (Split Section) --- */
.gas-features-section {
    background: #f8fafc;
    padding: 30px 5%;
}

.gas-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gas-features-text h2 {
    color: #0e2a52;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.gas-features-text p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #b91c1c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-details h4 {
    color: #0e2a52;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-details p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- Safety Notice Box --- */
.safety-box {
    background: #fff5f5;
    border-left: 5px solid #b91c1c;
    padding: 30px;
    border-radius: 0 15px 15px 0;
}

.safety-box h4 {
    color: #b91c1c;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-box ul {
    padding-left: 20px;
    color: #475569;
}

.safety-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .gas-features-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-vertical {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(14, 42, 82, 0.12);
    border-color: #b91c1c; /* लोगो का क्रिमसन रेड */
}

/* Image Top Area */
.card-image-top {
    width: 100%;
    height: 220px;
    background: #f8fafc;
    overflow: hidden;
}

.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Area */
.card-content-bottom {
    padding: 25px;
    flex-grow: 1;
}

.card-content-bottom h3 {
    font-size: 1.4rem;
    color: #0e2a52; /* लोगो का गहरा नीला रंग */
    font-weight: 700;
    margin: 0 0 15px 0;
}

.card-content-bottom p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify; /* दोनों तरफ से टेक्स्ट बराबर */
}

/* --- How We Work (Process Section) --- */
.work-section {
    background: #f8fafc;
    padding: 100px 5%;
    text-align: center;
}

.work-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0e2a52;
}

.work-section h2 span {
    color: #b91c1c;
}

.work-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 992px) {
    .work-flow::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: dashed #cbd5e1;
        z-index: 0;
    }
}

.work-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 90px;
    height: 90px;
    background: white;
    border: 4px solid #b91c1c; /* सर्किल बॉर्डर लोगो का क्रिमसन रेड */
    color: #0e2a52; /* नंबर का कलर गहरा नीला */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(14, 42, 82, 0.08);
    transition: all 0.3s ease;
}

.work-step:hover .step-circle {
    background: #0e2a52;
    color: #ffffff;
    border-color: #0e2a52;
}

.work-step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0e2a52;
    font-weight: 600;
}

.work-step p {
    color: #64748b;
    padding: 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
    GALLERY PAGE STYLES
   ========================================================================== */
/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 60px 5% 90px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #b91c1c;
    box-shadow: 0 12px 25px rgba(14, 42, 82, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Overlay Hover Design --- */
.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14, 42, 82, 0.95) 0%, rgba(14, 42, 82, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

.overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: #f1f5f9;
    opacity: 0.9;
}

.overlay p i {
    color: #b91c1c; /* पिन आइकॉन का कलर लाल */
    margin-right: 5px;
}

/* --- Lightbox / Image Popup --- */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 45, 0.95); /* डार्क नेवी ट्रांसपेरेंट बैकग्राउंड */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 45px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-lightbox:hover {
    color: #b91c1c;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */


/* --- Blog Grid --- */
.blog-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* --- Modern Poultry Blog Card --- */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(14, 42, 82, 0.12);
    border-color: #b91c1c;
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #b91c1c; /* डेट बैज अब रेड कलर का होगा */
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.25);
}

.blog-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: #0e2a52; /* नेवी ब्लू ऑथर/कैटेगरी नेम */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.5px;
}

.blog-body h3 {
    font-size: 1.25rem;
    color: #0e2a52;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    height: 55px;
    overflow: hidden;
}

.blog-body p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify; /* पैराग्राफ दोनों तरफ से अलाइन रहेगा */
}

.read-btn {
    margin-top: auto;
    color: #0e2a52;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-btn:hover {
    color: #b91c1c;
    gap: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 40px 20px;
    }
}
/* ==========================================================================
   NISHU ENTERPRISES - CAREERS PAGE STYLES
   ========================================================================= */

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, #0e2a52 0%, #06162d 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.page-banner h1 span {
    color: #b91c1c; /* लोगो का रेड कलर */
}

/* --- Section Design --- */
.careers-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #0e2a52;
    font-weight: 700;
    margin-bottom: 45px;
    font-size: 2.2rem;
}

/* --- Job Row (Premium Brand Design) --- */
.job-row {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(14, 42, 82, 0.03);
    transition: all 0.3s ease;
}

.job-row:hover {
    transform: translateX(5px);
    border-color: #b91c1c;
    box-shadow: 0 10px 25px rgba(14, 42, 82, 0.08);
}

.job-row h4 {
    color: #0e2a52 !important;
    font-weight: 700 !important;
    margin-bottom: 8px;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
}

.job-row p.text-muted {
    color: #64748b !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.job-row i {
    color: #b91c1c; /* आइकॉन्स अब ब्रांड रेड कलर के होंगे */
    margin-right: 6px;
}

/* --- Action Buttons --- */
.btn-apply-job {
    background: #0e2a52;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px; /* मॉडर्न पिल शेप */
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0e2a52;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(14, 42, 82, 0.15);
}

.btn-apply-job:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

/* --- Custom Modal Popup --- */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 45, 0.8); /* गहरा नेवी ट्रांसपेरेंट मास्क */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.custom-modal-overlay.active {
    display: flex;
}

.custom-modal-content {
    background: #fff;
    width: 90%;
    max-width: 520px;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(-40px);
    transition: 0.3s ease-out;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.custom-modal-overlay.active .custom-modal-content {
    transform: translateY(0);
}

.modal-custom-header {
    background: #0e2a52; /* मोडल हेडर ब्रांड नेवी ब्लू */
    color: #fff;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-custom-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.close-modal-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: #b91c1c;
}

.modal-custom-body {
    padding: 30px;
}

/* --- Form Fields --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0e2a52;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #0e2a52;
    box-shadow: 0 0 0 3px rgba(14, 42, 82, 0.1);
}

/* Responsive Table/Grid Break */
@media (max-width: 768px) {
    .job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }
    .btn-apply-job {
        width: 100%;
        text-align: center;
    }
}
/* ==========================================================================
   NISHU ENTERPRISES - CONTACT PAGE STYLES
   ========================================================================== */

/* --- Main Layout Wrapper --- */
.contact-wrapper {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Info Cards Grid --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    border-color: #b91c1c;
    box-shadow: 0 12px 30px rgba(14, 42, 82, 0.08);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.2rem;
    color: #b91c1c; /* ब्रांड रेड आइकन */
    margin-bottom: 18px;
}

.info-card h4 {
    color: #0e2a52;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.info-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Form & Map Main Section --- */
.contact-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: stretch;
}

/* --- Form Container --- */
.form-container {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(14, 42, 82, 0.06);
    border: 1px solid #f1f5f9;
}

.form-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0e2a52;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-form-col {
    flex: 1;
    min-width: 220px;
}

.form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0e2a52;
    font-size: 0.9rem;
}

.contact-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-input:focus {
    border-color: #0e2a52 !important;
    box-shadow: 0 0 0 4px rgba(14, 42, 82, 0.1) !important;
}

/* --- Button Submit --- */
.btn-submit {
    width: 100%;
    background: #0e2a52;
    color: white !important;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(14, 42, 82, 0.15);
}

.btn-submit:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

/* --- Map Container --- */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 10px 30px rgba(14, 42, 82, 0.05);
    border: 1px solid #e2e8f0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px;
    }

    .map-container {
        min-height: 380px;
    }
}
