/* --- 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; /* Adjust as needed */
}

.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: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    flex-grow: 1;
}

.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 */
    }
}

