


:root {
  --primary-green: #2e7d32; /* Derived from ZEC text */
  --accent-red: #b03030;    /* Derived from "Zero e-waste" text */
  --light-bg: #f9fbf9;      /* Very subtle green-tinted white */
  --text-dark: #1b1f1b;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.2rem;
}

/* Header Container */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  background-color: var(--light-bg);
  border-bottom: 3px solid var(--primary-green); /* Branding line */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}




header {
  width: 95%;
  transition: 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}






/* Header Layout */
.header-flex {
  display: flex;
  justify-content: space-between; /* Pushes logo to the left, nav links to the right */
  align-items: center;           /* Vertically centers the logo and text */
  padding: 15px 40px;            /* Adds top/bottom and left/right padding */
  background-color: #ffffff;     /* White header background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Soft shadow underneath the header */
  position: sticky;              /* Keeps header at the top of the page on scroll */
  top: 0;
  z-index: 1000;                 /* Ensures header stays above other content */
}

/* Logo Alignment */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;                     /* Creates space between image and text */
  text-decoration: none;         /* Removes text underline */
}



.site-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2e7d32;                /* Eco-friendly green accent color */
  letter-spacing: -0.5px;
  margin-left: -30px;
}







.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer; /* Forces the pointer hand cursor to show it is a clickable link */
  text-decoration: none; /* Prevents default underlines on the text */
}

.logo-container {
  position: relative;
  z-index: 9999; /* Forces the link to the front layer so other elements can't block the click */
}

.logo-img {
  pointer-events: auto; /* Ensures the image register clicks */
}

.site-name {
  pointer-events: auto; /* Ensures the text registers clicks */
}















/* Logo Link Styling */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

/* Logo Image */
.logo-img {
  height: 130px; /* Increased size to keep logo details clear */
  width: auto;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

/* Site Name Typography */
.site-name {
  font-family: 'Inter','Times New Roman', Times, serif sans-serif; /* Modern, clean font */
  font-size: clamp(1.2rem, 4vw, 1.8rem); /* Fluid typography */
  font-weight: 300;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-flex {
    padding: 10px 4%;
  }
  


  /* Optionally hide text on very small screens if logo is enough */
  /* .site-name { display: none; } */
}

/* --- Navigation Base Styles --- */
.navmenu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.navmenu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 100;
  font-size: 0.95rem;
  transition: 0.3s;
  text-transform: var(--light-bg);
  font-family: 'Times New Roman', Times, serif;
}

.navmenu a:hover, 
.navmenu a.active {
  color: var(--primary-green);
}

/* Separator Styling */
.separator {
  color: green;
  font-weight: 300;
  user-select: none;
}

/* Contact Button Styling */
.btn-contact-nav {
  background-color: var(--primary-green);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-contact-nav:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

/* --- Dropdown Logic --- */
.dropdown {
  position: relative;
}

.dropdown ul {
  display: block; /* Overwrite flex */
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  min-width: 150px;
  border-top: 2px solid var(--primary-green);
}

.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

.dropdown ul li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.85rem;
  text-transform: none;
}

/* --- Mobile Toggle (Hamburger) --- */
.mobile-nav-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 3px;
}

/* --- RESPONSIVE DESIGN (Mobile) --- */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .navmenu ul {
    display: none; /* Hide menu by default on mobile */
    position: absolute;
    top: 70px;
    right: 5%;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    align-items: flex-start;
  }

  /* Show menu when a class (e.g., .active) is added via JS */
  .navmenu.active-menu ul {
    display: flex;
  }

  .separator {
    display: none; /* Hide separators on mobile for a cleaner list */
  }
}
/* Animation for the Hamburger to X */
.mobile-nav-toggle span {
  transition: all 0.3s ease-in-out;
}

/* Top bar rotates 45 deg */
.mobile-nav-toggle.toggle-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* Middle bar disappears */
.mobile-nav-toggle.toggle-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

/* Bottom bar rotates -45 deg */
.mobile-nav-toggle.toggle-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* Hero Container */
.hero {
  position: relative;
  width: 100%;
  height: 50vh; /* Set to 100vh for full screen, or 80vh for a large banner */
  overflow: hidden; /* Prevents video from spilling out */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* Fallback color while video loads */
}

/* Video Wrapper */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* The actual Video element */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crucial: ensures video covers area without stretching */
  object-position: center; /* Keeps the focus in the middle */
}

/* Optional Overlay (Makes text on top easier to read) */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Darkens the video slightly */
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    height: 40vh; /* Shorter height for mobile screens */
  }
}




  /* Ensure the section spans the full width of the viewport */
.zec-welcome-section {
  width: 100%;
  padding: 60px 0; /* Adds vertical breathing room */
  background-color: #f9f9f9; /* Optional: Light background to define the section */
  box-sizing: border-box;
  text-align: center;
  margin-top: -20px;
}

/* Centered container to keep content readable on large screens */
.zec-welcome-section .container {
  width: 100%;
  max-width: 1200px; /* Prevents text from stretching too wide on desktop */
  margin: 0 auto; /* Centers the container */
  padding: 0 20px; /* Prevents text from touching screen edges on mobile */
  box-sizing: border-box;
}

/* Typography Styling */
.zec-welcome-section h2 {
  font-size: 2.5rem;
  color: #2e7d32; /* Eco-friendly green */
  margin-bottom: 20px;
}

.zec-welcome-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444444;
}

/* Link Styling */
.zec-welcome-section .nema-link {
  color:var(--primary-green);
  text-decoration: none;
  font-weight: bold;
}

.zec-welcome-section .nema-link:hover {
  text-decoration: underline;
}



























.your-class-name {
  padding: 0px 0px;
  text-align: left;
  background-color: #ffffff;
  max-width: 800px;
margin-left: 45px;

}

.your-class-name h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-weight: 500;

  font-family: 'Gill Sans', 'Gill Sans MT','Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Trebuchet MS', sans-serif
  
}

.your-class-name p {
  font-size: 1.1rem;
  line-height: 1.3;
  color: black;
  margin-bottom: 30px;
  font-weight: lighter
}

.your-class-name button {
  padding: 6px 15px;
  font-size: 1rem;
  font-weight: lighter;
  color: gfff;
  background-color: var(--primary-green); /* Primary Brand Color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.your-class-name button:hover {
  background-color: #0056b3;
}






/*images*/
.who-are-we-section {
  padding: 100px 5%;
  background-color: #fff;
}

.container-split {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px; /* Space between text and image */
}

/* 1. Text Column (50%) */
.text-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.text-col h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.text-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
}

.read-more-btn {
  display: inline-block;
  padding: 6px 15px;
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #000;
  color: #fff;
}

/* 2. Image Column (50%) with Decoration */
.image-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  padding-bottom: 60px; /* Space for the peach box to peek out bottom */
}

.mySwiper {
  position: relative;
  z-index: 2; /* Sits above the peach box */
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

/* The Peach Decorative Box from the screenshot */
.bg-decoration {
  position: absolute;
  bottom: 0;
  right: -5%; /* Pulls it slightly off-edge like the image */
  width: 90%;
  height: 80%;

  z-index: 1;
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
  transform: scale(0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container-split {
    flex-direction: column;
  }
  
  .text-col, .image-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bg-decoration {
    right: 0;
    width: 100%;
  }
}

.services-split-section {
  padding: 80px 5%;
  background-color: #fff;
  overflow: hidden;
}
.content-col p {
line-height: 1.5;
color: #444444;

}

.conteainer-split {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* --- Left Column: Image & Swiper --- */
.image-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  order: 1; /* Forces it to stay on the left */
}

/* Positioning the Peach Box at the top-left */
.bg-shape-left {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 70%;
  height: 90%;

  z-index: 1;
}

.image-overlay {
  position: relative;
  z-index: 2; /* Sits on top of the peach box */
}



/* Centering the text inside the image slide */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
}

.overlay-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.overlay-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Right Column: Text Content --- */
.content-col {
  flex: 0 0 50%;
  max-width: 50%;
  order: 2; /* Forces it to stay on the right */
}

.content-col h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
 

}

.services-arrow-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.services-arrow-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

/* Adding the arrow icon from your reference image */
.services-arrow-list li::before {
  content: '→';
  margin-right: 12px;
  font-weight: bold;
}

.services-arrow-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .conteainer-split {
    flex-direction: column;
    gap: 40px;
  }

  .image-col, 
  .content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Moves image to the top on mobile */
  .image-col {
    order: 1;
  }

  .content-col {
    order: 2;
    text-align: center;
  }

  /* Hides peach background on mobile to prevent layout overflow */
  .bg-shape-left {
    display: none;
  }
}



.who-we-are {
  padding: 100px 5%;
  background-color: #fff;
}

.who-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.who-image-wrapper {
  position: relative;
  width: 100%;
}

.who-image-wrapper img {
  width: 80%; /* Leaves space for the peach box on the right */
  display: block;
  position: relative;
  z-index: 2;
}

.who-bg-peach {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #fcecdb;
  z-index: 1;
}

.who-content {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 40px 40px 0 0;
  margin-top: -80px; /* Pulls content up over the image */
  max-width: 600px;
}

.who-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn-read-more {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 30px;
  border: 1.5px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}


.remarketing-section {
  padding: 80px 5%;
  background-color: #fff;
}

.remarketing-container {
  display: flex;
  align-items: center; /* Vertically centers text with the image */
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px; /* Space between the text and swiper */
}

/* --- Left Column: Text --- */
.remarketing-text {
  flex: 0 0 50%;
  max-width: 50%;
  order: 1; /* Forces text to the left */
}

.remarketing-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.remarketing-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.btn-read-more {
  display: inline-block;
  margin-top: 25px;
  padding: 6px 15px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

/* --- Right Column: Swiper --- */
.remarketing-image-col {
  flex: 0 0 50%;
  max-width: 50%;
  order: 2; /* Forces swiper to the right */
  position: relative;
}

.remarketingSwiper {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.remarketingSwiper img {
  width: 100%;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .remarketing-container {
    flex-direction: column;
    text-align: center;
  }
  .remarketing-text, 
  .remarketing-image-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Image on top for mobile */
  .remarketing-image-col { order: 1; }
  .remarketing-text { order: 2; }
}







/*  medea */
 



/* Mobile Responsiveness for ZEC Website */
@media (max-width: 768px) {
  
  /* 1. Stack the Split Container */
  .container-split {
    flex-direction: column !important; /* Forces vertical stacking */
    gap: 20px;
  }

  /* 2. Adjust Column Widths */
  .image-col, 
  .content-col, 
  .text-col,
  .remarketing-text,
  .remarketing-image-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* 3. Handle Text Padding */
  .content-col, .text-col, .remarketing-text {
    padding: 30px 20px !important; /* Reduces large desktop padding */
    text-align: center; /* Centers text for a cleaner mobile look */
  }

  /* 4. Optimize Swiper Height for Mobile */
  .servicesSwiper img, 
  .remarketingSwiper img, 
  .mySwiper img {
    height: 300px !important; /* Prevents images from being too tall on mobile */
    border-radius: 0; /* Optional: square edges look better full-width on mobile */
  }

  /* 5. Adjust Typography */
  h2 {
    font-size: 1.8rem !important; /* Slightly smaller headers */
    margin-bottom: 15px;
  }

  .services-arrow-list {
    text-align: left; /* Keep list items left-aligned for readability */
    display: inline-block; /* Keeps the list centered as a block */
  }
}


/*squeezing to elimate white spaces*/


/* Tighten the section spacing */
.services-split-section, 
.who-are-we-section, 
.remarketing-section {
  padding-top: 40px !important;    /* Reduced from 60-80px */
  padding-bottom: 40px !important; /* Reduced from 60-80px */
}

/* Reduce the gap between image and text */
.container-split, 
.remarketing-container {
  gap: 20px !important;            /* Squeezes the columns closer together */
  max-width: 1300px;               /* Allows it to spread a bit wider if needed */
  margin: 0 auto;
}

/* Tighten the text column padding */
.content-col, 
.text-col, 
.remarketing-text {
  padding: 20px 40px !important;   /* Reduces internal white space around text */
}

/* Remove extra margins from headers and paragraphs */
.content-col h2, .text-col h2 {
  margin-top: 0;
  margin-bottom: 10px;             /* Squeezes title closer to text */
}

.content-col p {
  margin-bottom: 15px;             /* Squeezes text closer to list/button */
}



/*ensure no black spaces to the  swiper*/

.image-col {
  padding: 0 !important;           /* Removes white space around the image */
}

.servicesSwiper img, 
.remarketingSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;               /* Ensures no white gaps inside the image frame */
  display: block;
}


/*no much white space on small screen reducer*/
@media (max-width: 768px) {
  .services-split-section, 
  .who-are-we-section, 
  .remarketing-section {
    padding: 20px 0 !important;    /* Tightens vertical space on phones */
  }

  .content-col, 
  .text-col {
    padding: 15px !important;      /* Minimizes side margins on mobile */
  }
}





@media (max-width: 768px) {
  /* Targets the Who Are We section specifically */
  .who-are-we-section .container-split {
    display: flex;
    flex-direction: column; /* Stacks image on top, text on bottom */
    gap: 15px;              /* Reduces space between image and text */
    padding: 0;             /* Squeezes out outer white space */
  }

  .who-are-we-section .image-col {
    order: 1;               /* Forces image to be first */
    width: 100%;
    padding: 0;
  }

  .who-are-we-section .text-col {
    order: 2;               /* Forces text to be second */
    width: 100%;
    padding: 20px;          /* Small padding so text doesn't hit screen edges */
    text-align: center;     /* Optional: centers text for better mobile balance */
  }

  /* Reduce white space inside the text block */
  .who-are-we-section h2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .welcome-text h1 {
    font-size: 2rem; /* Reduces size slightly so it fits on one line */
    text-align: center;
  }
}

/* Ensure nothing overflows the screen width */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Base container for content (Services, Who Are We, etc.) */
.container-split, .remarketing-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-section {
  width: 100% !important;
  padding: 0 !important; /* Forces hero to touch edges */
  margin: 0 !important;
}

.hero-section img {
  width: 100%;
  height: auto; /* Maintains aspect ratio */
  display: block;
}


@media (max-width: 768px) {
  
  /* Keep Hero edge-to-edge */
  .hero-section {
    margin-left: 0;
    margin-right: 0;
  }

  /* Add safe padding to text columns so they don't touch edges */
  .content-col, .text-col, .remarketing-text {
    padding: 20px 15px !important; /* 15px is the standard 'safe' gutter */
    width: 100%;
    box-sizing: border-box;
  }

  /* Make sure images in columns stretch to edges on mobile if desired */
  .image-col {
    width: 100% !important;
    padding: 0 !important;
  }

  .swiper-slide img {
    width: 100%;
    border-radius: 0; /* Removing radius makes them touch edges better */
  }

  /* Ensure all content is visible and not 'cut off' */
  p, h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* Squeeze the buttons to fit mobile width */
  .read-more-btn, .btn-read-more {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

























/* This targets screens smaller than 768px (tablets and phones) */
@media (max-width: 768px) {
  
  /* 1. Force all text-heavy elements to align left */
  body, 
  section, 
  div, 
  p, 
  h1, h2, h3, h4, 
  span, 
  a {
    text-align: left !important;
  }

  /* 2. Fix containers that use Flexbox or Grid centering */
  .container, 
  .container-split, 
  .footer-grid, 
  .team-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important; /* Forces items to the left edge */
    justify-content: flex-start !important;
    padding-left: 20px; /* Ensures text doesn't touch the screen edge */
    padding-right: 20px;
  }

  /* 3. Ensure images don't stay centered if they are inside columns */
  img {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* 4. Reset those brand accents from logo.png and image_58c9f9.png */
  .brand-bar, 
  .orange-bar {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* 5. Align breadcrumbs from image_640500.png */
  .breadcrumb {
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }
}

/* Default styles for all screens (Mobile-first) */
.your-class-name {
  padding:0px;
  text-align: left; /* Keeps text easy to read on small screens */

}

/* Styles for "Big Screens" (typically 1024px and up) */
@media (min-width: 1024px) {
  .your-class-name {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical centering (if height is defined) */
    align-items: center;     /* Horizontal centering */
    text-align: left;      /* Centers the text lines themselves */
    min-height: 50vh;        /* Gives it some space to be centered in */
    margin-bottom: 0px;
    margin-top: -70px;
    max-width:100%;  /* Limits how wide the text can go */
    margin-left: -150; /* Centers the container itself on the page */
    margin-right: auto;
    
    
  }
}

/* Mobile-first Styles */


.your-class-name h2 {
  font-size: 2rem;
  
  text-transform: capitalize;
  margin-bottom: 0px;
}




.your-class-name h2 {
    font-size: 3rem; /* Larger heading for big screens */
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Times New Roman', Times, serif;
  }



  
/* The links in their normal state */
.dropdown a, 
.dropdown ul li a {
  color: inherit; /* Keeps the current text color */
  text-decoration: none;
  transition: color 0.3s ease; /* Makes the transition smooth */
}

/* The color applied ONLY when the pointer is over the link */
.dropdown a:hover, 
.dropdown ul li a:hover {
  color: #6DB33F; /* Light Green on hover */
}

/* If you want the chevron icon to change color too */
.dropdown a:hover i {
  color: #6DB33F;
}




/* --- Footer Base Styles --- */
.footer {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
  padding: 60px 0 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Grid Layout --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* --- Column Styling --- */
.footer-col h3, 
.footer-col h4 {
  color: #4CAF50; /* Eco-friendly green accent */
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-bar {
  width: 40px;
  height: 4px;
  background-color: #4CAF50;
  margin-bottom: 15px;
}

/* --- Links & Icons --- */
.footer-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #4CAF50;
}

.footer-col p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col i {
  color: #4CAF50;
  font-size: 1.1rem;
}

/* --- Social Icons --- */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #4CAF50;
  transform: translateY(-3px);
}

/* --- Footer Bottom --- */
.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom hr {
  border: 0;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col p, 
  .social-icons {
    justify-content: center;
  }
  
  .brand-bar {
    margin: 0 auto 15px auto;
  }
}






/* Hero Container - Desktop Only */
@media (min-width: 1024px) {
  .hero {
    position: relative;
    width: 100%;
    height: 50vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px;
  }
}
/* Video Background Styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Keeps video behind your text/content */
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video fills the screen without stretching */
  background: #2D803D; /* Fallback brand color while video loads */
}

/* Dark Overlay (Optional but recommended for text readability) */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: 0;
}

#hero .hero-video {
  pointer-events: none;
  user-select: none;
}












