
/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 150px 0 28px; 
    background-color: var(--color-dark-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Background Image & Gradient Overlay */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a cool parallax effect when scrolling */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich Navy to Green gradient overlay */
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.92) 0%, rgba(26, 43, 60, 0.85) 50%, rgba(46, 204, 113, 0.4) 100%);
    z-index: 2;
}

/* Floating Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    filter: blur(40px);
    z-index: 2;
    animation: floatUpDown 6s infinite ease-in-out;
}
.hero-shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -50px; right: -50px; animation-delay: 2s; }

/* Title Styling */
.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 30px;
}

/* --- Frosted Glass Breadcrumb --- */
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Creates the frosted glass look */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-breadcrumb li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.custom-breadcrumb a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: var(--color-primary); /* Turns EVS green on hover */
}

.custom-breadcrumb .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.custom-breadcrumb .current {
    color: var(--color-primary); /* The current page is highlighted in Green */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .inner-page-hero {
        padding: 160px 0 80px;
    }
    .inner-page-title {
        font-size: 42px;
       
    }
    .custom-breadcrumb {
        padding: 10px 20px;
    }
    .custom-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .inner-page-hero {
        padding: 150px 0 25px; /* Clears mobile navbar */
    }
    .inner-page-title {
        font-size: 32px;
        margin-top: 50px;
    }
    .custom-breadcrumb {
        padding: 10px 15px;
        flex-wrap: wrap; /* Allows breadcrumbs to wrap if they get too long on tiny phones */
        justify-content: center;
        gap: 5px;
        border-radius: 12px; /* Less pill-like, more box-like on phones to save space */
    }
    .custom-breadcrumb .separator {
        margin: 0 5px;
    }
}
/* ====================================================
   DOMESTIC BIOGAS HERO SECTION
   ==================================================== */
.domestic-hero-banner {
    position: relative;
    padding: 40px 0 80px;
    /* Replace this URL with your wide village/plant background image */
    background: linear-gradient(to right, rgba(26, 43, 60, 0.85), rgba(26, 43, 60, 0.4)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.badge-glass {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-white {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

.hero-subtitle-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
}

/* ====================================================
   DOMESTIC 3-COLUMN VISUAL CARDS
   ==================================================== */
.domestic-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8fafc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domestic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.domestic-card .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Card 1: Composite Overlap --- */
.composite-card {
    background-color: #fff;
}
.composite-card .main-img {
    height: 75%;
    margin-top: 25%; /* Leaves room for logo at top */
    border-radius: 0 0 12px 12px;
}
.floating-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 5px 15px;
    border-radius: 5px;
}
.overlap-img-wrapper {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 55%;
    height: 55%;
    border: 6px solid var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.1);
}
.overlap-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Card 2: Orange Stats Card --- */
.stats-card {
    /* Cool orange gradient like the screenshot */
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.stats-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Optional: Add a subtle pattern overlay here */
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
}
.floating-stat-box {
    position: relative;
    background: var(--color-white);
    padding: 30px 25px;
    border-radius: 12px;
    z-index: 2;
    text-align: left;
}
.stat-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark-navy);
    line-height: 1.3;
}
.stat-desc {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* --- Card 3: Impact Card with Circular Inset --- */
.top-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary);
    color: white;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.circle-inset {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--color-white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.circle-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .hero-title-white { font-size: 38px; }
    .domestic-card { height: 300px; }
}

@media (max-width: 767px) {
    .domestic-hero-banner { padding: 130px 0 80px; }
    .hero-title-white { font-size: 32px; }
    .domestic-card { height: 350px; margin-bottom: 20px; }
    /* Fix overlap sizing on very small screens */
    .overlap-img-wrapper { width: 65%; height: 60%; }
}

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
}
/* ====================================================
   HOW IT WORKS & VIDEO THUMBNAIL
   ==================================================== */
.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 20px;
}

.video-thumbnail-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}
.mb-0 {
    margin-bottom: 2rem !important;
}
/* Frosted Glass Play Button */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.play-button-overlay i {
    color: white;
    font-size: 28px;
    margin-left: 6px; /* Visually centers the triangle play icon */
    transition: color 0.3s ease;
}

.video-thumbnail-wrapper:hover .play-button-overlay {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.15); /* Zooms the button slightly */
}

/* ====================================================
   BENEFITS OF DOMESTIC BIOGAS SECTION
   ==================================================== */
.domestic-benefits-section {
    position: relative;
    padding: 70px 0;
    /* Deep green gradient overlay on top of a subtle leaf/farm background */
    background: linear-gradient(rgba(24, 66, 42, 0.92), rgba(24, 66, 42, 0.95)), 
                url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&q=80') center/cover fixed;
}

.benefit-item {
    padding: 0 15px;
}

.benefit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3); /* Dashed border matching your screenshot */
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.benefit-icon i {
    font-size: 38px;
    color: var(--color-white);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--color-dark-navy);
    border-color: var(--color-primary);
    border-style: solid; /* Solidifies the border on hover */
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.benefit-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ====================================================
   STEP-BY-STEP PROCESS SECTION (THEMED)
   ==================================================== */
   /* --- Constrain the Heading Width --- */
.step-process-section .main-heading-dark {
    max-width: 1000px; /* Forces the heading to wrap onto the second line */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* --- Control the Image Height --- */
.step-image-frame img {
    height: 450px; 
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Make the image even shorter on mobile screens */
@media (max-width: 767px) {
    .step-image-frame img {
        height: 300px; 
    }
}
.step-image-frame {
    padding: 15px;
    background-color: var(--color-white);
    border: 1px solid #eaeeee;
    border-radius: 8px;
}

.step-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 55px;
    border-left: 3px solid var(--color-primary); /* EVS Green Line */
}

.step-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.step-text {
    font-size: 14.5px;
    color: #6c757d;
    line-height: 1.8;
}

/* ====================================================
   EXPERT CTA BANNER (THEMED)
   ==================================================== */
.expert-cta-banner {
    position: relative;
    padding: 90px 0;
    /* Dark Navy Gradient Overlay */
    background: linear-gradient(to right, rgba(26, 43, 60, 0.95) 0%, rgba(26, 43, 60, 0.7) 100%), 
                url('../image/bg2.png') center/cover no-repeat;
    background-attachment: fixed;
}

.btn-navy-action {
    background-color: var(--color-primary); /* EVS Green Button */
    color: var(--color-white);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-navy-action:hover {
    background-color: var(--color-dark-navy); /* Turns Navy on Hover */
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 43, 60, 0.3);
}

/* ====================================================
   CUSTOM DYNAMIC FAQ SECTION (THEMED)
   ==================================================== */
.evs-accordion {
    border-top: 1px solid #eaeeee;
}

.evs-faq-item {
    border-bottom: 1px solid #eaeeee;
    background-color: var(--color-white);
}

.evs-faq-btn {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-navy);
    padding: 22px 10px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* The open state styles */
.evs-faq-item.active .evs-faq-btn {
    color: var(--color-primary); /* Turns Green when open */
}

.evs-faq-btn .icon {
    font-size: 14px;
    transition: transform 0.4s ease;
    color: #6c757d;
}

.evs-faq-item.active .evs-faq-btn .icon {
    transform: rotate(45deg); /* Spins the plus into an X */
    color: var(--color-primary);
}

/* Smooth expanding content */
.evs-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.evs-faq-content p {
    font-size: 14.5px;
    color: #6c757d;
    line-height: 1.8;
    padding: 0 10px 25px 10px;
    margin: 0;
}

/* Floating Graphic */
.theme-abstract-icon {
    display: inline-block;
    animation: floatUpDown 4s infinite ease-in-out;
}



.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}