/* --- Custom Variables and Font --- */
:root {
    /* Primary brand color for Egreendust elements */
    --green-dust: #0c9c4c; 
    /* Light background color used for the 'About' section */
    --page-bg: #f7f9fb;    
    /* Darker green background color for the 'Services' section and headers */
    --dark-green-bg: #032115; 
}

/* Apply the custom font family and background color globally/for the section */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--page-bg); 
}

/* --- Tailwind Custom Class Definitions --- */

/* Defines the color for text-green-dust */


/* Defines the color for border-green-dust and bg-green-dust */
.border-green-dust {
    border-color: var(--green-dust);
}

.bg-green-dust {
    background-color: var(--green-dust);
}


/* --- Styles for the rest of your original index.html content --- */

/* Styles for the top green bar */
.greenbar {
    background-color: var(--green-dust);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.greenbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.greenbar-right a {
    color: white;
    margin-left: 10px;
}

/* Styles for the Info Row (Logo and Navbar) */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
}
.logo a {
    display: inline-block;
    line-height: 0;
}

.my-lists {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-items {
    margin: 0 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.list-items:hover, .list-items.active {
    color: var(--green-dust);
}

/* --- HERO SLIDER Styles --- */
.hero-slider {
    position: relative;
    height: 450px; /* Adjust height as needed */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 10;
    color: white;
}

.content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.content h1 span {
    border-bottom: 3px solid var(--green-dust);
    padding-bottom: 5px;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--green-dust);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #087f3e; /* Slightly darker green */
}

.arrows div {
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    text-align: center;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    padding: 08px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: background 0.3s;
}

.arrows div:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* --- About Egreendust Section Styles (Light Background Version) --- */

#about {
    /* Use the light background color to separate it from the dark service section */
    background-color: var(--page-bg); 
    /* Use explicit padding to override utility classes and ensure a proper gap */
    padding: 80px; 
    padding-bottom: 80px; 
    color: #333; /* Default dark text color for the section */
}

/* Adjust Section Title to match the image format */
#about h2 {
    font-size: 38px;
    font-weight: 300; /* Lighter font weight for "About" */
    text-align: left; /* Aligned left for the new layout */
    margin-bottom: 10px;
    color: #333; /* Dark color for the title */
    line-height: 1;
}

#about h2 .text-green-dust {
    font-weight: 700; /* Bold font weight for "Egreendust" */
}


/* Remove the old subtitle styles as it's not present in the new image format */
/* #about p.text-xl { ... } */

/* Container for the image and text block */
#about > div > div {
    display: flex;
    align-items: center; /* Vertically centers the image and text */
    gap: 3rem; 
}

/* The left text content box - DELETED STYLES AS IT'S NOW JUST THE TEXT */
/* #about .p-6.bg-white { ... } */


/* The new image wrapper */
.about-image-wrapper {
    /* Styles to contain the banner2.jpg image */
    max-height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); 
    flex: 1 1 50%; 
}
.about-image-wrapper img {
    /* Ensures image covers the container */
    object-fit: cover;
}


/* Paragraph text inside the new text area */
#about .p-6 p {
    color: #4a4a4a; 
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 1.5rem; /* Standard paragraph spacing */
}

/* Blockquote style - NOT PRESENT IN NEW LAYOUT */
/* #about .border-l-4 { ... } */

/* Right side stats grid container - DELETED STYLES */
/* #about .grid.grid-cols-2 { ... } */

/* Individual Stat Boxes - DELETED STYLES */
/* #about .p-6.bg-white.rounded-2xl.shadow-md { ... } */


/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
    #about > div > div {
        flex-direction: column;
    }
    #about .mb-10.lg\:mb-0 {
        margin-bottom: 2.5rem; 
    }
    /* Adjust text alignment for mobile */
    #about h2 {
        text-align: center;
    }
}





/* --- Services Section (used for .our-service-wrapper) --- */
.bg-black-b {
    background-color: #0c4da2; /* Dark green/teal background */
    color: white;
}

.section-padding {
    padding: 80px 0;
}

/* Service Card Container - Remove underline from the main link wrapping the card */
.service-item-card {
    text-decoration: none; /* Removes underline from the link that wraps the card content */
    display: block; /* Ensures the whole card area is clickable */
    background-color: #042248; /* Light transparent background */
    padding: 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-item-card:hover {
    background-color: var(--green-dust);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.service-item-card .icon img {
    height: 50px;
    margin-bottom: 20px;
     /* Makes the icons white against the dark background */
}

.service-item-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-item-card p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Inner link within the service card (e.g., "Read More") */
.service-item-card a {
    text-decoration: none; /* REMOVES UNDERLINE from the inner link */
    font-weight: 600;
    color: rgb(255, 255, 255);
}

/* Styles for section-title-4 (used in the services and news sections) */
.section-title-4 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.section-title-4 h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
}

/* For the section title in the black background, we need to adjust the line */
.bg-black-b .section-title-4 h2::after {
    background-color: white;
}
.bg-black-b .section-title-4 h2 {
    color: white;
}
.bg-black-b .section-title-4 p {
    color: #ccc;
}




/* --- WASTE TYPES WE HANDLE SECTION --- */

/* Ensures the section has the light background and good padding */
.waste-types-wrapper {
    background-color: #ffffff;
    color: #000000; /* Dark text for light background */
}

/* Individual Card Styles */
.waste-type-card {
    background-color: rgb(223, 255, 219);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow for lift */
    height: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-top: 5px solid transparent; /* Prepare for hover effect */
}

.waste-type-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-top-color: #00bf06; /* Accent color on hover */
}

.waste-type-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--green-dust); /* Brand color for the heading */
}

.waste-type-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ensure the section title elements look good on the light background */
.waste-types-wrapper .section-title-4 h2 {
    color: #000000; /* Default dark color for the title */
}


.waste-types-wrapper .section-title-4 h2::after {
    background-color: var(--green-dust);
    left: 50%; /* Center the underline */
    transform: translateX(-50%);
}

/* --- STATS / COUNTER SECTION --- */
/* --- STATS / COUNTER SECTION --- */
.stats-section {
    background-color: var(--green-dust);
    padding: 60px 0;
    color: white;
}
/* ... rest of the styles ... */

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    gap: 0;
}

.stat-box {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
}

.stat-box i {
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.stat-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    height: 80px;
    margin: 0 30px;
}






/* --- COLLABORATIONS SECTION --- */

.collaborations-section {
    background-color: white; /* Use a distinct white background */
    padding-top: 50px; /* Slightly less padding for a cleaner look */
    padding-bottom: 50px;
}

.collaborations-section .collaboration-title h2 {
    color: #333; /* Make the title dark on white background */
    padding-bottom: 20px;
}
.collaborations-section .collaboration-title h2::after {
    /* Center the underline */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-dust);
}

.collaborations-section .collaboration-title p {
    color: #666;
}

/* Scroller Container */
.collaborations-scroller-wrapper {
    overflow: hidden;
    white-space: nowrap; /* Prevents logos from wrapping */
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Soft inner shadow */
}

/* Animation Track */
.collaborations-track {
    display: flex;
    animation: scroll-logos 40s linear infinite; /* Animation runs continuously */
    width: fit-content; /* Important for scroll effect */
}

/* Individual Logo Card */
.logo-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    min-width: 200px; /* Ensures a good width for each logo */
    box-sizing: border-box;
    /* Optional: Subtle border and hover effect like in the provided image */
    border: 1px solid #eee;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s;
}

.logo-card img {
    max-width: 100%;
    max-height: 80px; /* Limit logo height */
    filter: grayscale(100%); /* Makes logos look professional and uniform */
    opacity: 0.6;
    transition: all 0.3s;
}

.logo-card:hover img {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
}

/* Define the scrolling animation */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    /* Move the entire track by half its length (since we duplicated the logos) */
    to {
        transform: translateX(-50%); 
    }
}

/* Pause animation on hover for desktop users */
.collaborations-scroller-wrapper:hover .collaborations-track {
    animation-play-state: paused;
}

/* --- Latest News Section --- */
.our-latest-news-wrapper {
    background-color: var(--page-bg); 
}

.latest-news-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.latest-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-thumb {
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-news-card:hover .post-thumb img {
    transform: scale(1.05);
}

.latest-news-card .bt {
    padding: 20px;
}

.latest-news-card h3 a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.latest-news-card h3 a:hover {
    color: var(--green-dust);
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    padding: 80px 0;
    background-color: var(--dark-green-bg);
}

.container2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-choose-us-section {
  background-color: #defbd4;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}
.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.why-list li {
  background-color: #fff;
  border-left: 4px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-list li strong {
  color: #0056b3;
}
.subsection-title {
  font-size: 1.8em;
  color: #333;
  margin-top: 50px;
  margin-bottom: 20px;
}

.call-to-action {
  background-color: var(--dark-green-bg); /* Green box background */
  color: white; /* All text inside this box is now white */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.call-to-action p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: white; /* Explicitly setting the paragraph text color to white */
}

.read-more-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fff;
  color: #93be46; /* Button text color remains green */
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more-button:hover {
  background-color: #e9ecef;
  color: #06401a;
}
.section-padding {
    padding: 80px 0;
}

.section-title {
    color: #3a6828; /* Primary Green */
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 50px;
}


/* --- FOOTER STYLES --- */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap; /* Added for responsiveness */
}

.footer-section {
    margin-bottom: 30px;
    min-width: 250px; /* Ensures sections don't get too small */
}

.footer-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--green-dust);
    margin-top: 5px;
}

.footer-section .logo {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.footer-section .logo .b {
    font-weight: 700;
}

.socials a {
    color: #ccc;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--green-dust);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-section.links li a:hover {
    color: var(--green-dust);
}

.footer-section.links i {
    font-size: 12px;
    margin-right: 8px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .greenbar-inner {
        flex-direction: column;
        text-align: center;
    }
    .greenbar-right {
        margin-top: 5px;
    }
    .info-row {
        flex-direction: column;
    }
    .navbar-right {
        margin-top: 15px;
    }
    .my-lists {
        justify-content: center;
        flex-wrap: wrap;
    }
    .list-items {
        margin: 5px 10px;
    }
    .stats-container {
        flex-wrap: wrap;
    }
    .stat-box {
        width: 45%;
        margin-bottom: 20px;
    }
    .divider {
        display: none;
    }
    .footer-container {
        justify-content: center;
    }
    .footer-section {
        width: 100%;
        text-align: center;
    }
    .footer-section h3::after {
        margin: 5px auto 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-slider {
        height: 350px;
    }
    .content h1 {
        font-size: 2.5rem;
    }
    .content p {
        font-size: 1.2rem;
    }
    .stats-section {
        padding: 40px 0;
    }
    .stat-box h2 {
        font-size: 2.5rem;
    }
}

/* Additional fix to ensure Bootstrap 5 doesn't override flex on list-items */
.list-items {
    display: inline-block;
}





/* About Us Section Css*/
/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR ABOUT.HTML (APPEND TO style.css) --- */
/* ------------------------------------------------------------------- */

/* General Section Styling */
.section-padding {
    padding: 90px 0;
}

.bg-light-grey {
    background-color: #f7f7f7;
}

.section-subtitle {
    color: #64b241; /* Bright Green Accent */
    font-size: 19px;
    font-weight: 200;
    margin-bottom: 10px;
}

.section-title-dark {
    color: #161616;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-subheading {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
}

/* --- ABOUT US HERO BANNER --- */
.about-hero-banner {
    /* Replace 'path/to/your/image.jpg' with the actual path to your file */
    background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)), url("../images/gate.jpg") no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 155px 0;
    color: #fff;
    text-align: center;
}


.about-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* --- 1. OUR STORY & VISION SECTION --- */
.story-flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; 
}

.story-text-wrapper,
.story-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.story-text-wrapper p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

/* Image Hover Effect */
.story-image-wrapper:hover .story-main-image {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-green-dark {
    display: inline-block;
    background-color: #3a6828; /* Darker green */
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-green-dark:hover {
    background-color: #64b241; 
    transform: translateY(-2px);
}

.feature-pillars-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    text-align: center;
    max-width: 150px;
    padding: 10px 0;
}

.feature-icon {
    font-size: 35px;
    color: #64b241;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
}


/* --- 2. MISSION, VISION & CORE VALUES (MVV) SECTION - BOXES WITH HOVER --- */
/* Reusing 'service-item-card' classes from home page CSS for consistent hover look */
.mvv-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mvv-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    text-align: center;
}

/* Internal MVV content styling for clarity */
.mvv-card .icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #64b241; /* Base color */
}

.mvv-card:hover .icon {
    color: #ffffff; /* Hover color change */
}

.mvv-card .contents h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #161616; /* Base color */
}

.mvv-card:hover .contents h4 {
    color: #ffffff; /* Hover color change */
}

.mvv-card .contents p {
    color: #666;
    line-height: 1.7;
}

.mvv-card:hover .contents p {
    color: #ffffff; /* Hover color change */
}


/* --- 3. TEAM SECTION --- */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    border-bottom: 5px solid #64b241; /* Green bottom border */
}

/* Team Card Hover Effect */
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-bottom: 5px solid #3a6828; /* Darker border on hover */
}

.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #64b241;
}

.team-member-card h3 {
    font-size: 22px;
    color: #161616;
    margin-bottom: 5px;
}

.team-role {
    color: #64b241;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-socials a {
    color: #999;
    font-size: 18px;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: #3a6828;
}


/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .story-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .story-text-wrapper {
        order: 2;
    }
    .story-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .feature-pillars-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero-banner h1 {
        font-size: 36px;
    }
    .section-title-dark {
        font-size: 32px;
    }
    .section-padding {
        padding: 50px 0;
    }
    .mvv-card, .team-member-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
}


/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR SERVICES.HTML (APPEND TO style.css) --- */
/* ------------------------------------------------------------------- */

/* --- SERVICES HERO BANNER --- */
.services-hero-banner {
    background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)), url('../images/gate.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 155px 0;
    color: #fff;
    text-align: center;
}

.services-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* Reusable section styling for intro content */
.service-intro-section .max-w-lg {
    max-width: 800px;
}
.service-intro-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --- SERVICE DETAIL SECTION (Grid Layout for 5 Services) --- */
.service-detail-grid {
    /* Use CSS Grid to automatically arrange and space items */
    display: grid; 
    
    /* Create a responsive grid layout: 3 columns on large screens, 1 on small */
    /* The repeat(auto-fit, ...) command is the key to responsive stacking */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    
    /* This property is crucial: it defines the space between the blocks, preventing overlap */
    gap: 30px; 
    
    margin-top: 40px;
}

/* Ensure cards maintain proper structure and stretch to the full height of the row */
.detail-card {
    /* Ensures blocks don't collapse when content length varies */
    height: 100%; 
    padding: 30px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Ensure the icon and content flow correctly */
    display: flex;
    transition: all 0.3s ease;
    border-left: 10px;
    flex-direction: column;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    border-left-color: #3a6828; /* Darker green on hover */
}

.detail-icon {
    font-size: 36px;
    color: #64b241; /* Your brand green */
    margin-bottom: 15px;
}

.detail-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.detail-card p {
    color: #555;
    line-height: 1.7;
}


/* --- WHY CHOOSE US GRID --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 50px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.why-us-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.icon-circle {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #64b241;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.why-us-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3a6828; /* Darker green for titles */
}

.why-us-item p {
    font-size: 15px;
    color: #555;
}

/* --- COMPLIANCE BOX --- */
.compliance-box {
    background-color: #e6f3e1; /* Very light green background */
    border: 1px solid #c8e0be;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.compliance-title {
    color: #3a6828;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.compliance-title i {
    margin-right: 10px;
    font-size: 22px;
}

.compliance-text {
    font-size: 16px;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}


/* --- CALL TO ACTION BANNER --- */
.cta-banner {
    background-color: #161616; /* Black/Dark Gray background */
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-cta-light {
    display: inline-block;
    background-color: #fff; 
    color: #3a6828; /* Text color is dark green */
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-light:hover {
    background-color: #64b241;
    color: #fff;
}

/* --- RESPONSIVENESS for Services Page --- */
@media (max-width: 992px) {
    .why-us-grid {
        padding: 0;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero-banner h1 {
        font-size: 36px;
    }
    /* service-detail-grid no longer needs this change since flex handles it */
    .cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .why-us-item {
        flex-direction: column;
        text-align: center;
    }
    .icon-circle {
        margin-bottom: 10px;
    }
}



/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR CONTACT.HTML (APPEND TO style.css) --- */
/* ------------------------------------------------------------------- */

/* --- CONTACT HERO BANNER --- */
.contact-hero-banner {
   background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)), url("../images/gate.jpg") no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 185px 0;
    color: #fff;
    text-align: center;
}


.contact-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* --- CONTACT SECTION LAYOUT (Form and Details side-by-side) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 50px;
    align-items: flex-start;
}

/* --- CONTACT FORM STYLES --- */
.contact-form-container {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #64b241;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.btn-green-submit {
    display: inline-block;
    background-color: #64b241;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-green-submit:hover {
    background-color: #3a6828;
    transform: translateY(-2px);
}

/* --- CONTACT DETAILS STYLES --- */
.contact-details-container {
    padding-top: 30px;
}

.contact-details-container p {
    color: #555;
    margin-bottom: 30px;
}

.contact-info-block {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
    color: var(--green-dust); /* Changed to use the unified brand color */
    margin-right: 15px;
    min-width: 30px;
    transform: scaleX(-1);
}




.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3a6828;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* Social Links in Contact Details */
.social-links-contact {
    margin-top: 30px;
}

.social-links-contact h4 {
    margin-bottom: 15px;
    color: #161616;
}

.social-links-contact a {
    font-size: 20px;
    color: #64b241;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links-contact a:hover {
    color: #3a6828;
}

/* --- MAP SECTION --- */
.map-section {
    width: 100%;
    padding: 0;
    margin-bottom: -5px; /* Remove gap between map and footer */
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    /* Stack form and details vertically on tablets/mobiles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-container, .contact-details-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero-banner h1 {
        font-size: 36px;
    }
}



/* General */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Oswald:wght@200..700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto; color: #333; }
.container {
  width: min(1212px, 90%);
  margin: 0 auto;
}
h1{font-size:50px;}
h2{font-size:40px; margin-bottom:20px; font-weight:700;}
h3{font-weight:700;}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.section-title {
    color: #3a6828; /* Primary Green */
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 50px;
}

/* ---------------------------------- */
/* --- HEADER AND NAVIGATION STYLES --- */
/* ---------------------------------- */

/* Top Green Bar */
.greenbar {
    background: #64b241; /* Slightly lighter green */
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.greenbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.greenbar-right a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s;
}
.greenbar-right a:hover {
    color: #161616; /* Darker hover */
}
.greenbar-right {
    display: flex;
    align-items: center;
}
.greenbar-right span {
    margin-right: 20px;
}

/* Main Navigation Bar */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px; /* Adjust logo size */
}

.navbar-right {
    display: flex;
    align-items: center;
}

.my-lists {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.list-items {
    margin-left: 25px;
}

.list-items a {
    text-decoration: none;
    color: #161616;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.list-items a:hover,
.list-items.active a {
    color: #3a6828;
}

.list-items a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    background: #3a6828;
    transition: width 0.3s ease;
}

.list-items a:hover::after,
.list-items.active a::after {
    width: 100%;
}


/* ---------------------------------- */
/* --- HOMEPAGE SPECIFIC STYLES --- */
/* ---------------------------------- */

/* Hero Slider Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.slide-content .btn {
    background-color: #64b241;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.slide-content .btn:hover {
    background-color: #3a6828;
}

/* Slider Controls */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover, .next:hover {
    background: #64b241;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* About Section on Home */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    padding-right: 20px;
}

.about-text h2 {
    color: #161616;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.about-list li span {
    color: #64b241;
    font-weight: bold;
    margin-right: 8px;
}

.about-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 15px;
}

.btn-green {
    background-color: #64b241;
    color: #fff;
    border: 2px solid #64b241;
}

.btn-green:hover {
    background-color: #3a6828;
    border-color: #3a6828;
}

.btn-border {
    background-color: transparent;
    color: #161616;
    border: 2px solid #161616;
}

.btn-border:hover {
    background-color: #161616;
    color: #fff;
}


/* Counters Section */
.counters-section {
    background-color: #3a6828;
    color: #fff;
    text-align: center;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.counter-item h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 18px;
    font-weight: 400;
}

/* Services Overview on Home */
.services-overview {
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #64b241;
}

.service-card .icon {
    font-size: 30px;
    color: #64b241;
    margin-bottom: 15px;
    display: inline-block;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #161616;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Call to Action */
.cta-section {
    background: url('https://placehold.co/1920x250/161616/ffffff?text=Ready+to+Start') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: #64b241;
    color: #fff;
    border: 2px solid #64b241;
}

.cta-section .btn:hover {
    background-color: #3a6828;
    border-color: #3a6828;
}

/* ---------------------------------- */
/* --- FOOTER STYLES --- */
/* ---------------------------------- */

.footer {
    background-color: #161616;
    color: #f1f1f1;
    padding: 60px 0 30px 0;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #64b241;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #64b241;
}

/* About Section */
.footer-section.about .logo {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-section.about .logo .b {
    color: #64b241;
}

.footer-section.about .socials a {
    color: #f1f1f1;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-section.about .socials a:hover {
    color: #64b241;
}

/* Quick Links Section */
.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links li {
    margin-bottom: 10px;
}

.footer-section.links a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section.links a:hover {
    color: #64b241;
    transform: translateX(5px);
}

.footer-section.links i {
    font-size: 12px;
    margin-right: 10px;
}

/* Contact Section */
.footer-section.contact p {
    line-height: 1.7;
    color: #ccc;
}

/* Copyright Bar */
.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

.copyright a {
    color: #64b241;
    text-decoration: none;
}

/* ---------------------------------- */
/* --- RESPONSIVENESS (MOBILE) --- */
/* ---------------------------------- */

@media (max-width: 992px) {
    .info-row {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .logo {
        margin-bottom: 15px;
    }

    .my-lists {
        justify-content: center;
        flex-wrap: wrap;
    }

    .list-items {
        margin: 5px 10px;
    }

    .greenbar-inner {
        flex-direction: column;
        text-align: center;
    }
    .greenbar-right {
        margin-top: 10px;
    }
    .greenbar-right span {
        margin-right: 10px;
    }

    /* Home Page adjustments */
    .hero-slider {
        height: 400px;
    }
    .slide-content h1 {
        font-size: 40px;
    }
    .slide-content p {
        font-size: 16px;
    }
    .prev, .next {
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section.links ul {
        text-align: center;
    }
    .footer-section.links a {
        justify-content: center;
    }
}


/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR WASTE_MANAGEMENT.HTML --- */
/* ------------------------------------------------------------------- */

/* --- WASTE MANAGEMENT HERO BANNER --- */
.wm-hero-banner {
    background: linear-gradient(rgba(22, 22, 22, 0.75), rgba(22, 22, 22, 0.75)), url('https://placehold.co/1920x400/3a6828/ffffff?text=Waste+Management+Solutions');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.wm-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.wm-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* --- DISMANTLING SECTION --- */
.dismantling-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.dismantling-text {
    line-height: 1.7;
    color: #444;
}

.sub-heading-green {
    color: #3a6828;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.dismantling-list {
    list-style: none;
    padding: 0;
}

.dismantling-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.dismantling-list li i {
    color: #64b241;
    margin-right: 10px;
    min-width: 20px;
}

.dismantling-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #3a6828;
    margin-top: 25px;
    padding: 10px 0;
    border-top: 1px solid #c8e0be;
    border-bottom: 1px solid #c8e0be;
    text-align: center;
}

/* --- EPR COMPLIANCE SECTION --- */
.epr-compliance-section {
    background-color: #f0fdf4; /* Very light green */
}

.section-title-dark {
    color: #161616;
    font-weight: 800;
    margin-bottom: 10px;
}

.epr-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.epr-feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 5px solid #64b241;
}

.epr-feature-card i {
    font-size: 36px;
    color: #3a6828;
    margin-bottom: 15px;
}

.epr-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #161616;
}

.epr-feature-card p {
    color: #555;
    line-height: 1.6;
}

/* --- WASTE STREAMS SECTION (E-Waste, Battery, Plastic) --- */
.bg-light-gray {
    background-color: #f8f8f8;
}

.section-subtitle {
    margin-bottom: 40px;
    font-size: 17px;
    color: #666;
}

.waste-streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.waste-stream-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #64b241;
}

.waste-stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stream-icon {
    font-size: 40px;
    color: #3a6828;
    margin-bottom: 15px;
}

.waste-stream-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.waste-stream-card p {
    color: #666;
    line-height: 1.6;
}

/* --- PROCESS DEFINITION BOX --- */
.process-section .process-box {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: #e6f3e1; /* Light green background */
    border: 1px solid #c8e0be;
    margin-top: 50px;
}

.process-icon-large {
    font-size: 50px;
    color: #3a6828;
    margin-bottom: 20px;
}

.process-text {
    font-size: 18px;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- RESPONSIVENESS for Waste Management Page --- */
@media (max-width: 992px) {
    .dismantling-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dismantling-image {
        order: -1; /* Move image above text on mobile */
    }
    .epr-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wm-hero-banner h1 {
        font-size: 36px;
    }
    .waste-streams-grid {
        grid-template-columns: 1fr;
    }
}




/* General */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Oswald:wght@200..700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto; color: #333; }
.container {
  width: min(1212px, 90%);
  margin: 0 auto;
}
h1{font-size:50px;}
h2{font-size:40px; margin-bottom:20px; font-weight:700;}
h3{font-weight:700;}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.section-title {
    color: #161616; /* Primary Green */
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 50px;
}

/* ---------------------------------- */
/* --- HEADER AND NAVIGATION STYLES --- */
/* ---------------------------------- */

/* Top Green Bar */
.greenbar {
    background: #64b241; /* Slightly lighter green */
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.greenbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.greenbar-right a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s;
}
.greenbar-right a:hover {
    color: #161616; /* Darker hover */
}
.greenbar-right {
    display: flex;
    align-items: center;
}
.greenbar-right span {
    margin-right: 20px;
}

/* Main Navigation Bar */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px; /* Adjust logo size */
}

.navbar-right {
    display: flex;
    align-items: center;
}

.my-lists {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.list-items {
    margin-left: 25px;
}

.list-items a {
    text-decoration: none;
    color: #161616;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.list-items a:hover,
.list-items.active a {
    color: #3a6828;
}

.list-items a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    background: #3a6828;
    transition: width 0.3s ease;
}

.list-items a:hover::after,
.list-items.active a::after {
    width: 100%;
}


/* ---------------------------------- */
/* --- HOMEPAGE SPECIFIC STYLES --- */
/* ---------------------------------- */

/* Hero Slider Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.slide-content .btn {
    background-color: #64b241;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.slide-content .btn:hover {
    background-color: #3a6828;
}

/* Slider Controls */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover, .next:hover {
    background: #64b241;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* About Section on Home */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    padding-right: 20px;
}

.about-text h2 {
    color: #161616;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.about-list li span {
    color: #64b241;
    font-weight: bold;
    margin-right: 8px;
}

.about-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 15px;
}

.btn-green {
    background-color: #64b241;
    color: #fff;
    border: 2px solid #64b241;
}

.btn-green:hover {
    background-color: #3a6828;
    border-color: #3a6828;
}

.btn-border {
    background-color: transparent;
    color: #161616;
    border: 2px solid #161616;
}

.btn-border:hover {
    background-color: #161616;
    color: #fff;
}


/* Counters Section */
.counters-section {
    background-color: #3a6828;
    color: #fff;
    text-align: center;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.counter-item h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 18px;
    font-weight: 400;
}

/* Services Overview on Home */
.services-overview {
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #64b241;
}

.service-card .icon {
    font-size: 30px;
    color: #64b241;
    margin-bottom: 15px;
    display: inline-block;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #161616;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Call to Action */
.cta-section {
    background: url('https://placehold.co/1920x250/161616/ffffff?text=Ready+to+Start') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: #64b241;
    color: #fff;
    border: 2px solid #64b241;
}

.cta-section .btn:hover {
    background-color: #3a6828;
    border-color: #3a6828;
}

/* ---------------------------------- */
/* --- FOOTER STYLES --- */
/* ---------------------------------- */

.footer {
    background-color: #161616;
    color: #f1f1f1;
    padding: 60px 0 30px 0;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #64b241;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #64b241;
}

/* About Section */
.footer-section.about .logo {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-section.about .logo .b {
    color: #64b241;
}

.footer-section.about .socials a {
    color: #f1f1f1;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-section.about .socials a:hover {
    color: #64b241;
}

/* Quick Links Section */
.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links li {
    margin-bottom: 10px;
}

.footer-section.links a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section.links a:hover {
    color: #64b241;
    transform: translateX(5px);
}

.footer-section.links i {
    font-size: 12px;
    margin-right: 10px;
}

/* Contact Section */
.footer-section.contact p {
    line-height: 1.7;
    color: #ccc;
}

/* Copyright Bar */
.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

.copyright a {
    color: #64b241;
    text-decoration: none;
}

/* ---------------------------------- */
/* --- RESPONSIVENESS (MOBILE) --- */
/* ---------------------------------- */

@media (max-width: 992px) {
    .info-row {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .logo {
        margin-bottom: 15px;
    }

    .my-lists {
        justify-content: center;
        flex-wrap: wrap;
    }

    .list-items {
        margin: 5px 10px;
    }

    .greenbar-inner {
        flex-direction: column;
        text-align: center;
    }
    .greenbar-right {
        margin-top: 10px;
    }
    .greenbar-right span {
        margin-right: 10px;
    }

    /* Home Page adjustments */
    .hero-slider {
        height: 400px;
    }
    .slide-content h1 {
        font-size: 40px;
    }
    .slide-content p {
        font-size: 16px;
    }
    .prev, .next {
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section.links ul {
        text-align: center;
    }
    .footer-section.links a {
        justify-content: center;
    }
}


/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR WASTE_MANAGEMENT.HTML --- */
/* ------------------------------------------------------------------- */

/* --- WASTE MANAGEMENT HERO BANNER --- */
.wm-hero-banner {
    background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)), url('../images/gate.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: #fff;
    text-align: center;
}


.wm-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.wm-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* --- DISMANTLING SECTION --- */
.dismantling-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.dismantling-text {
    line-height: 2;
    color: #444;
}

.sub-heading-green {
    color: #3a6828;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.dismantling-list {
    list-style: none;
    padding: 0;
}

.dismantling-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.dismantling-list li i {
    color: #64b241;
    margin-right: 10px;
    min-width: 20px;
    font-size: 25px;
}

.dismantling-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #3a6828;
    margin-top: 25px;
    padding: 10px 0;
    border-top: 1px solid #c8e0be;
    border-bottom: 1px solid #c8e0be;
    text-align: center;
}

/* --- EPR COMPLIANCE SECTION --- */
.epr-compliance-section {
    background-color: #f0fdf4; /* Very light green */
}

.section-title-dark {
    color: #161616;
    font-weight: 800;
    margin-bottom: 45px;
}

.epr-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.epr-feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 5px solid #64b241;
}
.epr-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.epr-feature-card i {
    font-size: 36px;
    color: #3a6828;
    margin-bottom: 15px;
}

.epr-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #161616;
}

.epr-feature-card p {
    color: #555;
    line-height: 1.6;
}

/* --- WASTE STREAMS SECTION (E-Waste, Battery, Plastic) --- */
.bg-light-gray {
    background-color: #f8f8f8;
}

.section-subtitle1 {
    margin-bottom: 40px;
    font-size: 19px;
    color: #666;
}
.section-subtitle {
    margin-bottom: 40px;
    font-size: 19px;
    color: #666;
}

.waste-streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.waste-stream-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #64b241;
}

.waste-stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stream-icon {
    font-size: 40px;
    color: #3a6828;
    margin-bottom: 15px;
}

.waste-stream-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.waste-stream-card p {
    color: #666;
    line-height: 1.6;
}

/* --- PROCESS DEFINITION BOX --- */
.process-section .process-box {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: #e6f3e1; /* Light green background */
    border: 1px solid #c8e0be;
    margin-top: 50px;
}

.process-icon-large {
    font-size: 50px;
    color: #3a6828;
    margin-bottom: 20px;
}

.process-text {
    font-size: 18px;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- RESPONSIVENESS for Waste Management Page --- */
@media (max-width: 992px) {
    .dismantling-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dismantling-image {
        order: -1; /* Move image above text on mobile */
    }
    .epr-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wm-hero-banner h1 {
        font-size: 36px;
    }
    .waste-streams-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------------- */
/* --- NEW STYLES FOR POWER_SOLUTIONS.HTML --- */
/* ------------------------------------------------------------------- */

/* --- POWER HERO BANNER --- */
.power-hero-banner {
    background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)), url('../images/gate.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    padding: 155px 0;
    color: #fff;
    text-align: center;
}

.power-hero-banner h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.power-hero-banner p {
    font-size: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    color: #ccc;
}

/* --- COMPANY OVERVIEW SECTION --- */
.company-overview-section {
    background-color: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.overview-text .fw-bold {
    color: #3a6828;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approvals-box {
    background-color: #f0fdf4; /* Very light green */
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #64b241;
    margin-top: 30px;
}

.approvals-box h4 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.approvals-box h4 i {
    margin-right: 10px;
    color: #64b241;
}

.approvals-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.approvals-list li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #161616;
}

.approvals-list li i {
    color: #3a6828;
    margin-right: 10px;
}

/* --- CORE SERVICES GRID (Reusing .services-grid) --- */
.power-services-section {
    background-color: #f8f8f8;
}

.power-card {
    border-top: 4px solid #64b241;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.power-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .overview-image {
        order: -1; /* Image above text on smaller screens */
    }
}


/* ---------------------------------- */
/* --- MOBILE HAMBURGER NAVIGATION --- */
/* ---------------------------------- */

.hamburger-btn {
    display: none;
    background: none;
    border: 2px solid #3a6828;
    font-size: 22px;
    cursor: pointer;
    color: #3a6828;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    z-index: 200;
    line-height: 1;
}

.hamburger-btn:hover {
    background-color: #3a6828;
    color: #fff;
}

@media (max-width: 992px) {
    .info-row {
        flex-direction: row !important;
        padding: 12px 15px !important;
        position: relative;
        align-items: center !important;
    }

    .logo {
        margin-bottom: 0 !important;
    }

    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-right {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        z-index: 199;
        padding: 8px 0;
        border-top: 3px solid #3a6828;
    }

    .navbar-right.open {
        display: block !important;
    }

    .my-lists {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        padding: 0;
    }

    .list-items {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .list-items:last-child {
        border-bottom: none;
    }

    .list-items a {
        display: block !important;
        padding: 13px 20px !important;
    }

    .list-items a::after {
        display: none !important;
    }
}


/* ---------------------------------- */
/* --- FOOTER ABOUT — LOGO + DESC    */
/* ---------------------------------- */

.footer-logo-wrap {
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 280px;
}

/* ---------------------------------- */
/* --- FOOTER BOTTOM BAR             */
/* ---------------------------------- */

.footer-bottom {
    background-color: #111;
    border-top: 1px solid #2a2a2a;
    padding: 16px 0;
}

.footer-bottom-inner {
    max-width: 1212px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #64b241;
}

.footer-sep {
    color: #444;
    font-size: 13px;
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-desc {
        max-width: 100%;
    }
}


/* ---------------------------------- */
/* --- FOOTER MAP SECTION            */
/* ---------------------------------- */

.footer-section.map h3 {
    color: #64b241;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
}

.footer-section.map h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #64b241;
}

.footer-section.map iframe {
    display: block;
    border-radius: 8px;
    margin-top: 15px;
    width: 100%;
    min-width: 0;
}


/* ================================================== */
/* === HERO SLIDER — CSS CONFLICT FIX               === */
/* (More specific selectors override duplicate rules)   */
/* ================================================== */

html, body {
    overflow-x: hidden;
    width: 100%;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 480px;
    width: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
    z-index: 1;
}

.hero-slider .content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.hero-slider .content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
}

.hero-slider .content h1 span {
    border-bottom: 3px solid var(--green-dust);
    padding-bottom: 5px;
}

.hero-slider .content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #fff;
}

/* ================================================== */
/* === COMPREHENSIVE MOBILE RESPONSIVE              === */
/* ================================================== */

@media (max-width: 992px) {

    /* --- NAV: full width, logo left, hamburger right --- */
    .info-row,
    .info-row.container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative;
        box-sizing: border-box;
    }

    .logo { margin-bottom: 0 !important; }
    .logo img { height: 50px; }

    /* hamburger shown, nav hidden by default */
    .hamburger-btn { display: flex !important; }

    .navbar-right {
        display: none !important;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        z-index: 999;
        padding: 8px 0;
        border-top: 3px solid #3a6828;
    }

    .navbar-right.open { display: block !important; }

    .my-lists {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .list-items {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        display: block !important;
    }

    .list-items:last-child { border-bottom: none; }

    .list-items a {
        display: block !important;
        padding: 13px 20px !important;
        font-size: 15px;
    }

    .list-items a::after { display: none !important; }

    /* --- HERO SLIDER --- */
    .hero-slider { height: 300px; }

    .hero-slider .content h1 { font-size: 1.7rem; }
    .hero-slider .content p { font-size: 1rem; margin-bottom: 16px; }
    .hero-slider .content .btn { padding: 9px 20px; font-size: 14px; }

    .arrows div {
        width: 36px; height: 36px;
        font-size: 16px; padding: 6px;
    }

    /* --- ABOUT SECTION --- */
    #about {
        padding: 36px 16px !important;
    }

    #about > div > div {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .about-image-wrapper {
        max-height: 200px !important;
        width: 100% !important;
    }

    .about-image-wrapper img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* --- SECTION HEADINGS --- */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; margin-bottom: 14px !important; }

    .section-title-dark,
    .section-title-4 h2,
    .section-title { font-size: 1.6rem !important; }

    .section-subheading { font-size: 15px; }

    .section-padding { padding: 50px 0 !important; }

    /* --- SERVICE CARDS --- */
    .rr-container-1230 { padding: 0 16px; }

    .our-service-wrapper .row > div {
        margin-bottom: 16px;
    }
    .our-service-wrapper .row > div:last-child {
        margin-bottom: 0;
    }

    .service-item-card { padding: 20px; }

    /* --- WASTE TYPE CARDS --- */
    .waste-types-wrapper .row > div {
        margin-bottom: 16px;
    }

    /* --- GENERAL SECTION SPACING --- */
    section, .section-padding {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .container, .rr-container-1230 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* --- STATS SECTION --- */
    .stats-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 20px;
    }

    .stat-box { width: 100%; margin-bottom: 0; }
    .stat-box h2 { font-size: 2.2rem; }

    .divider {
        width: 60%; height: 1px;
        margin: 0 auto;
        background-color: rgba(255,255,255,0.3);
    }

    /* --- WASTE TYPE CARDS --- */
    .waste-type-card { margin-bottom: 16px; }

    /* --- WHY CHOOSE US --- */
    .why-choose-us-section { padding: 40px 16px; }
    .container2 { padding: 0; }

    /* --- HERO BANNERS (inner pages) --- */
    .about-hero-banner,
    .services-hero-banner,
    .contact-hero-banner,
    .wm-hero-banner,
    .power-hero-banner {
        padding: 80px 16px !important;
    }

    .about-hero-banner h1,
    .services-hero-banner h1,
    .contact-hero-banner h1,
    .wm-hero-banner h1,
    .power-hero-banner h1 {
        font-size: 1.8rem !important;
    }

    .about-hero-banner p,
    .services-hero-banner p,
    .wm-hero-banner p,
    .power-hero-banner p {
        font-size: 15px !important;
    }

    /* --- DISMANTLING / OVERVIEW GRIDS --- */
    .dismantling-content-grid,
    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* --- CONTACT GRID --- */
    .contact-grid { grid-template-columns: 1fr !important; gap: 30px; }

    /* --- FOOTER --- */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 24px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section.links a { justify-content: center; }

    .socials { text-align: center; }
}


/* ================================================================ */
/* ===  INDEX PAGE — ENHANCED VISUAL DESIGN                      === */
/* ================================================================ */

/* smooth scroll for the whole page */
html { scroll-behavior: smooth; }

/* ── 1. STICKY NAVIGATION ─────────────────────────────────────── */
.info-row {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: box-shadow 0.35s ease;
}
.info-row.nav-scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,0.11);
}

/* ── 2. HERO SLIDER ────────────────────────────────────────────── */
.hero-slider .content .btn {
    background-color: var(--green-dust);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 18px rgba(12,156,76,0.35);
}
.hero-slider .content .btn:hover {
    background-color: #087f3e;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(12,156,76,0.45);
}

/* ── 3. ABOUT SECTION ──────────────────────────────────────────── */
#about {
    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 55%, #f7f9fb 100%);
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
}
#about::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,156,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Green accent bar before text */
#about .p-6::before {
    content: '';
    display: block;
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dust), #64b241);
    border-radius: 2px;
    margin-bottom: 18px;
}

/* Better image */
.about-image-wrapper {
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14) !important;
    overflow: hidden;
    position: relative;
    max-height: 500px !important;
}
.about-image-wrapper img {
    transition: transform 0.5s ease !important;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-image-wrapper:hover img {
    transform: scale(1.03) !important;
}

/* About inner container — max 7xl width with side padding */
#about > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* 50/50 two-column layout */
#about > div > div {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 50px;
}

#about > div > div > div:first-child {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
}

#about > div > div > div:last-child {
    flex: 1 1 0;
    min-width: 0;
}

/* Better about heading */
#about h2 {
    font-size: 2.4rem !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
    color: #161616 !important;
}
#about p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ── 4. SERVICES SECTION ───────────────────────────────────────── */
.our-service-wrapper {
    background: linear-gradient(160deg, #0d2d57 0%, #0c4da2 60%, #0a3d8a 100%);
    position: relative;
    overflow: hidden;
}
.our-service-wrapper::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

/* Section title underline */
.section-title-4 h2 {
    padding-bottom: 16px;
    position: relative;
}
.section-title-4 h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 48px; height: 3px;
    background: var(--green-dust);
    border-radius: 2px;
}
.text-center .section-title-4 h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service card enhanced */
.service-item-card {
    border-radius: 14px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    transition: all 0.35s ease !important;
    backdrop-filter: blur(4px);
}
.service-item-card:hover {
    background: var(--green-dust) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(12,156,76,0.25) !important;
    border-color: var(--green-dust) !important;
}

/* Read more arrow animation */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}
.read-more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.service-item-card:hover .read-more-link,
.read-more-link:hover {
    gap: 10px;
}

/* ── 5. WASTE TYPES SECTION ────────────────────────────────────── */
.waste-types-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f4fcf5 100%) !important;
}

.waste-type-card {
    border-top: 4px solid var(--green-dust) !important;
    border-radius: 14px !important;
    padding: 32px 24px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden;
    position: relative;
}
.waste-type-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--green-dust), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.waste-type-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(12,156,76,0.15) !important;
}
.waste-type-card:hover::after {
    transform: scaleX(1);
}
.waste-type-card img {
    transition: transform 0.4s ease;
}
.waste-type-card:hover img {
    transform: scale(1.08) rotate(-2deg);
}
.waste-type-card h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--dark-green-bg) !important;
    margin-bottom: 10px !important;
}
.waste-type-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14.5px;
}

/* ── 6. STATS SECTION ──────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #0c9c4c 0%, #087f3e 50%, #065c2c 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 70px 0 !important;
}
.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.stats-section::before {
    width: 320px; height: 320px;
    top: -80px; right: -80px;
}
.stats-section::after {
    width: 220px; height: 220px;
    bottom: -60px; left: -40px;
}
.stat-box {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}
.stat-box i {
    font-size: clamp(1.2rem, 1.8vw, 2rem) !important;
    opacity: 0.85;
    margin-bottom: 8px;
}
.stat-box h2 {
    font-size: clamp(1.1rem, 1.8vw, 2.4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 6px;
    white-space: nowrap;
}
.stat-box p {
    font-size: clamp(0.6rem, 0.9vw, 0.78rem) !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
}

/* ── 7. COLLABORATIONS SECTION ─────────────────────────────────── */
.collaborations-section {
    position: relative;
    background: #fff !important;
}
.collaborations-scroller-wrapper {
    position: relative;
}
.collaborations-scroller-wrapper::before,
.collaborations-scroller-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.collaborations-scroller-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.collaborations-scroller-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.collaboration-title h2 {
    color: #161616 !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
}
.collaboration-title p {
    color: #666 !important;
    font-size: 16px;
}

/* ── 8. WHY CHOOSE US — COMPLETE REDESIGN ──────────────────────── */
.why-choose-us-section {
    background: linear-gradient(145deg, #edf7e5 0%, #d9f0c6 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 90px 30px !important;
}
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(58,104,40,0.06);
    pointer-events: none;
}

.why-choose-us-section .section-title {
    font-size: 2.4rem !important;
    color: var(--dark-green-bg) !important;
    font-weight: 800 !important;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 36px !important;
}
.why-choose-us-section .section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 55px; height: 4px;
    background: var(--green-dust);
    border-radius: 2px;
}

/* Better list items */
.why-list {
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
}
.why-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.85) !important;
    border-left: 4px solid var(--green-dust) !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 18px 22px !important;
    margin-bottom: 14px !important;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
}
.why-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--green-dust);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    min-width: 20px;
}
.why-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.12) !important;
}
.why-list li strong {
    color: #0056b3 !important;
}

/* Subsection title */
.subsection-title {
    font-size: 1.6rem !important;
    color: var(--dark-green-bg) !important;
    font-weight: 700 !important;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
    position: relative;
    padding-bottom: 12px;
}
.subsection-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--green-dust);
    border-radius: 2px;
}
.why-choose-us-section > .container2 > .text-content > p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Box */
.call-to-action {
    background: linear-gradient(135deg, var(--dark-green-bg) 0%, #0a3d1f 100%) !important;
    border-radius: 18px !important;
    padding: 44px !important;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.call-to-action::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.call-to-action p {
    font-size: 17px !important;
    color: rgba(255,255,255,0.92) !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}
.call-to-action p strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
    color: #fff !important;
}

.read-more-button {
    display: inline-block;
    background: #fff !important;
    color: var(--dark-green-bg) !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 18px rgba(255,255,255,0.18);
    transition: all 0.3s ease !important;
    text-decoration: none;
}
.read-more-button:hover {
    background: var(--green-dust) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(12,156,76,0.35) !important;
}

/* ── 9. SECTION FADE-IN ANIMATION ──────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeInUp 0.65s ease both;
}

/* ── 10. MOBILE ADJUSTMENTS FOR ENHANCEMENTS ───────────────────── */
@media (max-width: 992px) {
    .info-row {
        position: sticky !important;
        top: 0 !important;
        background: rgba(255,255,255,0.97) !important;
    }
    #about { padding: 50px 0 !important; }
    #about > div { padding: 0 16px !important; }
    #about > div > div {
        flex-direction: column !important;
        gap: 24px !important;
    }
    #about > div > div > div:first-child,
    #about > div > div > div:last-child {
        flex: unset !important;
        width: 100% !important;
    }
    #about h2 { font-size: 1.9rem !important; }
    .about-image-wrapper img { height: 260px !important; }
    .about-image-wrapper { max-height: 260px !important; }
    .why-choose-us-section { padding: 50px 16px !important; }
    .why-choose-us-section .section-title { font-size: 1.9rem !important; }
    .call-to-action { padding: 28px 22px !important; }
    .stat-box h2 { font-size: 2.4rem !important; }
    .collaborations-scroller-wrapper::before,
    .collaborations-scroller-wrapper::after { width: 40px; }
}


/* ============================================================== */
/* === BLOG PAGE STYLES                                        === */
/* ============================================================== */

/* Blog Hero Banner */
.blog-hero-banner {
    background: linear-gradient(135deg, #0d2d0d 0%, #1a5a1a 45%, #0f3d0f 100%);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.blog-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.blog-hero-content { position: relative; z-index: 1; }

.blog-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #a8e6a8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.18);
}
.blog-hero-banner h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}
.blog-hero-banner p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.blog-hero-search {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.blog-hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-size: 15px;
    color: #333;
    background: transparent;
}
.blog-hero-search button {
    background: #2d7a2d;
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background 0.3s;
    white-space: nowrap;
}
.blog-hero-search button:hover { background: #1a5a1a; }

/* Blog Listing Section */
.blog-listing-section { background: #f4f6f4; }

/* Category Filter Tabs */
.blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.filter-btn {
    background: #fff;
    border: 1.5px solid #dde9dd;
    padding: 9px 20px;
    border-radius: 25px;
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: #2d7a2d;
    color: #fff;
    border-color: #2d7a2d;
}

/* Blog Layout: main + sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 36px;
    align-items: start;
}

/* Blog Cards Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.13);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.07); }

.blog-category-badge {
    position: absolute;
    top: 13px; left: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.badge-policy  { background: #e8f5e9; color: #2e7d32; }
.badge-news    { background: #e3f2fd; color: #1565c0; }
.badge-recycling { background: #fff8e1; color: #e65100; }
.badge-power   { background: #fce4ec; color: #b71c1c; }

.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    gap: 14px;
    color: #999;
    font-size: 12.5px;
    margin-bottom: 11px;
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card-title a:hover { color: #2d7a2d; }

.blog-card-excerpt {
    color: #666;
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    border-top: 1px solid #f0f0f0;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-tag {
    background: #edf7ed;
    color: #2d7a2d;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 12px;
    font-weight: 600;
}
.blog-read-more {
    color: #2d7a2d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: gap 0.3s;
}
.blog-read-more:hover { color: #1a5a1a; gap: 9px; }

/* No Results */
.blog-no-results {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    text-align: center;
    gap: 14px;
}
.blog-no-results i { font-size: 40px; color: #ccc; }

/* Pagination */
.blog-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 42px;
    flex-wrap: wrap;
}
.page-btn {
    min-width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff;
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid #e0e0e0;
    padding: 0 14px;
    transition: all 0.3s;
}
.page-btn:hover, .page-btn.active {
    background: #2d7a2d;
    color: #fff;
    border-color: #2d7a2d;
}
.page-btn.next-btn { gap: 6px; }

/* =====================
   SIDEBAR
   ===================== */
.blog-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
}
.sidebar-widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d7a2d;
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.sidebar-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 13px;
    font-size: 14px;
}
.sidebar-search button {
    background: #2d7a2d;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.3s;
}
.sidebar-search button:hover { background: #1a5a1a; }

/* Sidebar Categories */
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li { border-bottom: 1px solid #f3f3f3; }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2px;
    color: #555;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.3s, padding-left 0.3s;
}
.sidebar-categories a:hover { color: #2d7a2d; padding-left: 6px; }
.sidebar-categories a i { margin-right: 8px; color: #2d7a2d; font-size: 11px; }
.sidebar-categories span {
    background: #edf7ed;
    color: #2d7a2d;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

/* Sidebar Recent Posts */
.sidebar-recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post-item { display: flex; gap: 12px; align-items: flex-start; }
.recent-post-item img {
    width: 68px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.recent-post-text a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.recent-post-text a:hover { color: #2d7a2d; }
.recent-post-text span {
    font-size: 11.5px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar Tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
    background: #edf7ed;
    color: #2d7a2d;
    text-decoration: none;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid #c8e6c9;
    transition: all 0.3s;
}
.sidebar-tag:hover { background: #2d7a2d; color: #fff; border-color: #2d7a2d; }

/* Sidebar CTA Widget */
.sidebar-cta-widget {
    background: linear-gradient(140deg, #0d2d0d 0%, #1a5a1a 100%) !important;
    text-align: center;
}
.sidebar-cta-icon {
    font-size: 38px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    display: block;
}
.sidebar-cta-widget h4 {
    color: #fff !important;
    font-size: 17px !important;
    margin-bottom: 10px;
}
.sidebar-cta-widget p {
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.sidebar-cta-btn {
    display: inline-block;
    background: #fff;
    color: #1a5a1a;
    padding: 10px 26px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar-cta-btn:hover { background: #edf7ed; color: #0d2d0d; }

/* ============================================================== */
/* === BLOG SINGLE POST PAGE STYLES                            === */
/* ============================================================== */

.blog-article-hero {
    background: linear-gradient(135deg, #0d2d0d 0%, #1a5a1a 50%, #0f3d0f 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.blog-article-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.blog-article-hero-inner { position: relative; z-index: 1; }
.blog-article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.blog-article-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.blog-article-breadcrumb a:hover { color: #a8e6a8; }
.blog-article-breadcrumb span { color: rgba(255,255,255,0.4); font-size: 13px; }
.blog-article-breadcrumb .current { color: #a8e6a8; font-size: 13px; }

.blog-article-cat {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.blog-article-hero h1 {
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 820px;
}
.blog-article-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.blog-article-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
}
.blog-article-hero-meta i { color: #a8e6a8; }

/* Article Layout */
.blog-article-section { background: #f4f6f4; }
.blog-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

/* Featured Image */
.blog-featured-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.blog-featured-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Article Body */
.blog-article-body {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}
.blog-article-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 36px 0 14px;
    padding-left: 14px;
    border-left: 4px solid #2d7a2d;
    line-height: 1.3;
}
.blog-article-body h2:first-child { margin-top: 0; }
.blog-article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d7a2d;
    margin: 24px 0 10px;
}
.blog-article-body p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}
.blog-article-body strong { color: #1a1a1a; }
.blog-article-body ul, .blog-article-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.blog-article-body li {
    color: #555;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Key Takeaways Box */
.key-takeaways-box {
    background: linear-gradient(135deg, #edf7ed, #f0fdf0);
    border: 1px solid #c8e6c9;
    border-left: 5px solid #2d7a2d;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 30px 0;
}
.key-takeaways-box h4 {
    color: #1a5a1a;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.key-takeaways-box ul {
    padding-left: 20px;
    margin: 0;
}
.key-takeaways-box li {
    color: #2d5a2d;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Stats highlight box */
.stat-highlight-box {
    background: #1a5a1a;
    color: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-highlight-box i {
    font-size: 32px;
    color: #a8e6a8;
    flex-shrink: 0;
}
.stat-highlight-box p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}
.stat-highlight-box strong { color: #a8e6a8 !important; }

/* Step Number */
.blog-step {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.blog-step-number {
    background: #2d7a2d;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}
.blog-step-content h3 { margin-top: 0 !important; }

/* Article CTA */
.article-cta-box {
    background: linear-gradient(135deg, #0d2d0d, #1a5a1a);
    border-radius: 14px;
    padding: 36px;
    text-align: center;
    margin-top: 40px;
}
.article-cta-box h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
}
.article-cta-box p {
    color: rgba(255,255,255,0.82) !important;
    font-size: 15px !important;
    margin-bottom: 22px !important;
}
.article-cta-box a {
    display: inline-block;
    background: #fff;
    color: #1a5a1a;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.article-cta-box a:hover { background: #a8e6a8; color: #0d2d0d; }

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    align-items: center;
}
.article-tags span { font-weight: 700; color: #333; font-size: 14px; }

/* Author Box */
.author-box {
    background: #f8fdf8;
    border: 1px solid #e0f0e0;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 30px;
}
.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2d7a2d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
}
.author-info h5 { font-size: 15px; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; }
.author-info p { font-size: 13.5px; color: #666; margin: 0; line-height: 1.6; }

/* Index news section enhancements */
.news-badge {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.news-excerpt {
    color: #666;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-read-more {
    color: #2d7a2d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}
.news-read-more:hover { gap: 9px; color: #1a5a1a; }

/* Single post responsive */
@media (max-width: 900px) {
    .blog-article-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-article-body { padding: 24px; }
    .blog-featured-image img { height: 240px; }
}
@media (max-width: 576px) {
    .blog-article-hero { padding: 36px 0 24px; }
    .blog-article-hero .container,
    .blog-article-section .container { padding-left: 12px; padding-right: 12px; width: 100%; }
    .blog-article-body { padding: 14px 12px; }
    .blog-article-section.section-padding { padding: 20px 0; }
    .blog-article-body h2 { font-size: 1.2rem; padding-left: 10px; }
    .blog-article-body h3 { font-size: 1.05rem; }
    .key-takeaways-box { padding: 14px 12px; }
    .article-cta-box { padding: 18px 14px; }
    .author-box { padding: 14px 12px; }
    .stat-highlight-box { flex-direction: column; gap: 10px; padding: 12px 14px; }
    .blog-featured-image img { border-radius: 8px; }
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr 280px; gap: 28px; }
}
@media (max-width: 900px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    .blog-filter-tabs::-webkit-scrollbar { display: none; }
    .filter-btn { white-space: nowrap; flex-shrink: 0; }
    .blog-hero-search {
        flex-direction: column;
        border-radius: 14px;
    }
    .blog-hero-search button { border-radius: 0 0 14px 14px; }
    .blog-hero-banner { padding: 60px 0 50px; }
}

