
/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 180px 0 60px;  
    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: 15px;
}

/* --- 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: 180px 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 60px; 
    }
    .inner-page-title {
        font-size: 32px;
        margin-top: 50px;
    }
    .custom-breadcrumb {
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        border-radius: 12px; 
    }
    .custom-breadcrumb .separator {
        margin: 0 5px;
    }
}
/* ====================================================
   EPC CBG PROJECT & INFORMATION SECTION
   ==================================================== */

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; 
    z-index: 10;
}

/* --- Contact Form Styling --- */
.info-form-box {
    border-top: 5px solid var(--color-primary); 
    border-radius: 8px;
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark-navy);
}

.custom-input {
    font-size: 14.5px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15); /* Green glow on focus */
    outline: none;
}

/* Captcha Styling (Matching the screenshot) */
.captcha-code {
    background-color: #900000; /* Dark Red from screenshot */
    color: #ffffff;
    font-weight: bold;
    font-family: monospace;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    letter-spacing: 2px;
}

/* Navy Form Submit Button */
.btn-navy-submit {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-navy-submit:hover {
    background-color: var(--color-primary); /* Turns Green on Hover */
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* --- Brochure Button Styling --- */
.btn-download-brochure {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-download-brochure:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- Right Column Image Styling --- */
.cbg-main-img-wrapper {
    position: relative;
    transform: translateZ(0); /* Hardware acceleration */
}

.cbg-main-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cbg-main-img-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Custom Numbered List for Benefits --- */
.evs-numbered-benefits {
    padding-left: 20px;
}

.evs-numbered-benefits li {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 5px;
}

.evs-numbered-benefits li strong {
    color: var(--color-dark-navy);
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
 
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
    .cbg-main-img-wrapper img {
        height: 300px !important;
    }
}

/* ====================================================
   DIVERSE FEEDSTOCK CAPABILITIES GRID
   ==================================================== */
   .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
}
.feedstock-capabilities-section {
    position: relative;
}

.feedstock-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeeee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Lift Effect for the entire card */
.feedstock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 43, 60, 0.08) !important;
}

/* --- Image Wrapping & Optimization --- */
.feedstock-img-wrapper {
    height: 160px; 
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
}

.feedstock-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the images flawlessly */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Zoom Image on Hover */
.feedstock-card:hover .feedstock-img-wrapper img {
    transform: scale(1.1);
}

/* --- Label Styling below the image --- */
.feedstock-label {
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark-navy);
    background-color: var(--color-white);
    transition: color 0.3s ease, background-color 0.3s ease;
    margin: 0;
    flex-grow: 1; /* Pushes the label to fill remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid transparent;
}

/* Highlight the label with EVS Green on hover */
.feedstock-card:hover .feedstock-label {
    color: var(--color-white);
    background-color: var(--color-primary); /* EVS Green */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 767px) {
    .feedstock-img-wrapper {
        height: 140px; /* Slightly shorter images on mobile */
    }
    .feedstock-label {
        font-size: 14px;
        padding: 12px 5px;
    }
}

/* ====================================================
   EPC FRAMEWORK CARDS STYLING
   ==================================================== */
.epc-card-stack {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Spacing between cards */
}

.epc-step-card {
    background-color: #ffffff;
    border: 1px solid #eaeeee;
    border-left: 4px solid var(--color-primary); /* EVS Green Accent Border */
    border-radius: 8px;
    padding: 22px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

/* Hover Lift & Color Shift */
.epc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(26, 43, 60, 0.08);
    border-left-color: var(--color-dark-navy); /* Shifts to Navy on hover */
}

/* The big stylised number on the left */
.epc-step-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.epc-step-card:hover .epc-step-number {
    color: var(--color-dark-navy);
}

/* Card Text Content */
.epc-step-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.epc-step-content p {
    font-size: 14.5px;
    color: #555555;
    margin: 0;
    line-height: 1.7;
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 767px) {
    .epc-step-card {
        padding: 18px;
        gap: 15px;
        flex-direction: column; /* Stacks the number above the text on small phones */
    }
    .epc-step-number {
        font-size: 24px;
        margin-bottom: -5px;
    }
}
/* ====================================================
   COMPREHENSIVE EPC MODEL & GREEN FUTURE SECTION
   ==================================================== */

/* --- Custom Numbered List for Left Column --- */
.evs-numbered-list {
    counter-reset: epc-counter;
    list-style: none;
    padding-left: 0;
}

.evs-numbered-list > li {
    position: relative;
    padding-left: 35px; /* Room for the number */
    margin-bottom: 25px;
}

.evs-numbered-list > li::before {
    counter-increment: epc-counter;
    content: counter(epc-counter) ".";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary); /* EVS Green Number */
}

.evs-numbered-list strong {
    font-size: 17px;
    color: var(--color-dark-navy);
    display: block;
    margin-bottom: 8px;
}

.evs-numbered-list p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

/* --- Custom Bullet List for Right Column --- */
.evs-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evs-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

/* The Custom EVS Green Bullet Point */
.evs-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary); /* Starts EVS Green */
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
}

/* Bullet turns Navy on hover */
.evs-bullet-list li:hover::before {
    transform: scale(1.3);
    background-color: var(--color-dark-navy);
    box-shadow: 0 0 0 3px rgba(26, 43, 60, 0.15);
}

.evs-bullet-list li strong {
    color: var(--color-dark-navy);
}

/* --- Table Image Styling --- */
.table-img-wrapper {
    background-color: #f8fafc;
    border-color: #eaeeee !important;
}

.table-hover-effect {
    transition: transform 0.4s ease;
}

.table-img-wrapper:hover .table-hover-effect {
    transform: scale(1.02); /* Slight zoom when hovering over the table */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .evs-numbered-list > li {
        margin-bottom: 20px;
    }
    .main-heading-dark {
        font-size: 24px !important;
    }
}

/* ====================================================
   GOVERNMENT INITIATIVES & FAQ SECTION
   ==================================================== */

/* --- Bullet List (Rephrased) --- */
.evs-bullet-list {
    list-style: none;
    padding-left: 0;
}

.evs-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.evs-bullet-list li::before {
    content: '■'; /* Square bullet matching 'White Category' theme */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--color-primary); /* EVS Green */
}

.evs-bullet-list li strong {
    color: var(--color-dark-navy);
}

/* --- Numbered Industry List --- */
.evs-numbered-industry-list {
    counter-reset: industry-counter;
    list-style: none;
    padding-left: 0;
}

.evs-numbered-industry-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    transition: transform 0.3s ease; /* Subtle animation */
}

.evs-numbered-industry-list li:hover {
    transform: translateX(5px); /* Soft indentation on hover */
}

.evs-numbered-industry-list li::before {
    counter-increment: industry-counter;
    content: counter(industry-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary); /* EVS Green Number */
}

.evs-numbered-industry-list li strong {
    color: var(--color-dark-navy);
}

/* --- FAQ Blocks --- */
.faq-block {
    background-color: #f8fafc; /* Very soft navy/grey background */
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-block:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* --- Informational Image Wrapper (Left-aligned) --- */
.informational-img-wrapper {
    position: relative;
    border-color: #eaeeee !important;
}
.informational-img-wrapper img {
    transition: transform 0.5s ease;
}
.informational-img-wrapper:hover img {
    transform: scale(1.05); /* Soft zoom animation */
}

/* ====================================================
   ANIMATION UTILITIES 
   ==================================================== */
/* If you don't already have these classes from previous sections */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.delay-100 {
    animation-delay: 0.2s;
}

.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}