/* 
 * Ecotronix - Premium E-Waste & ITAD Homepage Style Sheet
 * Brand Colors: Green (#00a82f), Charcoal (#212529), White (#ffffff)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #00a82f;
  --primary-green-rgb: 0, 168, 47;
  --secondary-green: #00be35;
  --accent-light: #d4ffd9;
  --dark-charcoal: #121518;
  --dark-gray: #1f2429;
  --medium-gray: #2d343c;
  --light-gray: #f8f9fa;
  --border-color: rgba(0, 168, 47, 0.15);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 40px rgba(0, 168, 47, 0.06);
  --shadow-glow: 0 15px 30px rgba(0, 168, 47, 0.2);
}

/* --- Base Styles --- */

html, body {
    overflow-x: hidden;
    width: 100%;
}


body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #3f4750;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-charcoal);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* --- Page Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-charcoal);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 180px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-bar {
  width: 120px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  width: 50%;
  height: 100%;
  background-color: var(--primary-green);
  animation: loading 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* --- Typography Helpers --- */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Premium Buttons --- */
.btn-eco-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-eco-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-eco-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(0, 168, 47, 0.35);
}

.btn-eco-primary:hover::before {
  opacity: 1;
}

.btn-eco-secondary {
  background: transparent;
  color: #00ad31;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  transition: var(--transition-smooth);
}

.btn-eco-secondary:hover {
  background-color: var(--primary-green);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-eco-white {
  background-color: #ffffff;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.btn-eco-white:hover {
  background-color: var(--dark-charcoal);
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- Custom Sticky Header --- */
.navbar-eco {
  padding: 0px 0;
  transition: var(--transition-smooth);
  z-index: 1000;
  background-color: white;
}

.navbar-eco.sticky {
  padding: 0px 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 168, 47, 0.08);
}

.navbar-logo {
  height: 70px;
  transition: var(--transition-smooth);
}

.navbar-eco.sticky .navbar-logo {
  height: 60px;
}

.nav-link-eco {
  font-family: var(--font-heading);
  font-weight: 500;
  color: rgb(31, 29, 29) !important;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link-eco::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: var(--transition-fast);
  transform-origin: right;
}

.nav-link-eco:hover::after,
.nav-link-eco.active::after {
  /* transform: scaleX(1); */
  transform-origin: left;
}

.nav-link-eco:hover {
  color: var(--primary-green) !important;
}

/* Dropdowns style */
.dropdown-menu-eco {
  border: 1px solid rgba(0, 168, 47, 0.1);
  box-shadow: var(--shadow-medium);
  border-radius: 12px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item-eco {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--dark-charcoal);
  transition: var(--transition-fast);
}

.dropdown-item-eco:hover {
  background-color: var(--light-gray);
  color: var(--primary-green);
  padding-left: 20px;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  padding-top: 165px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 168, 47, 0.04) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(0, 168, 47, 0.02) 0%, rgba(255, 255, 255, 0) 50%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.badge-eco {
  background-color: rgb(252, 255, 253);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 168, 47, 0.15);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 44px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
}

/* Floating Particles Background */
.hero-particle {
  position: absolute;
  background-color: rgba(0, 168, 47, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 15s infinite linear;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

.hero-illustration-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  animation: floatImage 6s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

@keyframes floatImage {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Trust Bar Slider --- */
.trust-bar {
  padding: 40px 0;
  background-color: var(--light-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #7d8b99;
  margin-bottom: 25px;
}

.client-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-fast);
}

.client-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo-item svg,
.client-logo-item img {
  max-height: 40px;
  max-width: 160px;
}

/* --- About Us Section --- */
.about-section {
  padding: 60px 0;
  position: relative;
}

.about-infographic-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.infographic-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0, 168, 47, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

@media (max-width: 768px) {
  .infographic-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}

.infographic-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(0, 168, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-item-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item-text p {
  font-size: 13px;
  color: #7d8b99;
  margin-bottom: 0;
}

/* --- Services Section --- */
.services-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-subtle);
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card-icon {
  width: 65px;
  height: 65px;
  background-color: rgba(0, 168, 47, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-green);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 47, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-green);
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6573;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link i {
  transform: translateX(5px);
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  padding: 60px 0;
  position: relative;
  background-color: #00af310d;
}

.why-card {
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.why-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
  border-color: rgba(0, 168, 47, 0.1);
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: #7d8b99;
  margin-bottom: 0;
  line-height: 1.55;
}

/* Animated Connecting Lines Background */
.connecting-lines-svg {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  pointer-events: none;
  z-index: 1;
}

.animated-path {
  fill: none;
  stroke: rgba(0, 168, 47, 0.08);
  stroke-width: 2;
  stroke-dasharray: 8 4;
  animation: lineDash 30s infinite linear;
}

@keyframes lineDash {
  to { stroke-dashoffset: -1000; }
}

/* --- Process Timeline Section --- */
.process-section {
  padding: 60px 0;
  background-color: var(--dark-charcoal);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.process-section h2, 
.process-section .section-subtitle,
.process-section p,
.process-section .step-desc,
.process-section .text-muted {
  color: #ffffff !important;
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0 0px;
  margin-top: 50px;
}

/* Horizontal Timeline Line */
.timeline-line {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  width: 0;
  transition: width 0.5s ease;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-step {
  width: 18%;
  text-align: center;
}

.step-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  border: 4px solid var(--dark-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 auto 25px auto;
  position: relative;
  transition: var(--transition-smooth);
}

.step-node::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.timeline-step.active .step-node {
  background-color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 168, 47, 0.5);
}

.timeline-step.active .step-node::before {
  border-color: var(--primary-green);
  animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.step-desc {
  font-size: 13px;
  color: #a4b3c2;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .timeline-line {
    display: none;
  }
  .timeline-steps {
    flex-direction: column;
    gap: 40px;
  }
  .timeline-step {
    width: 100%;
    display: flex;
    text-align: left;
    gap: 20px;
    align-items: center;
  }
  .step-node {
    margin: 0;
    flex-shrink: 0;
  }
  .step-content {
    flex-grow: 1;
  }
  .step-title {
    margin-bottom: 4px;
  }
}

/* --- Counter Section --- */
.counter-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #ffffff;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 21, 24, 0.85);
  z-index: 1;
}

.counter-container {
  position: relative;
  z-index: 2;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 10px;
  display: block;
}

.counter-label {
  font-size: 15px;
  font-weight: 500;
  color: #d1d9e2;
  letter-spacing: 1px;
}

/* --- Industries Section --- */
.industries-section {
  padding: 60px 0;
}

.industry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgb(0 168 36);
  transition: var(--transition-smooth);
  height: 100%;
 }

.industry-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 168, 47, 0.05);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px auto;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  background-color: var(--dark-charcoal);
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.industry-card:hover .industry-icon {
  background-color: var(--primary-green);
  color: #ffffff;
}

.industry-card:hover h1,
.industry-card:hover h2,
.industry-card:hover h3,
.industry-card:hover h4,
.industry-card:hover h5,
.industry-card:hover h6,
.industry-card:hover p,
.industry-card:hover li,
.industry-card:hover ul {
  color: #ffffff !important;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  transition: var(--transition-fast);
}

/* --- Sustainability Impact Dashboard --- */
.impact-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.dashboard-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(0, 168, 47, 0.05);
}

.metric-box {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.metric-box:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 47, 0.1);
  transform: scale(1.03);
}

.metric-icon-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 168, 47, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 15px auto;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 13px;
  color: #7d8b99;
  font-weight: 500;
}

.impact-progress-container {
  margin-top: 30px;
}

.impact-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-eco {
  height: 8px;
  background-color: rgba(0, 168, 47, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.progress-bar-eco {
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  height: 100%;
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 60px 0;
  overflow: hidden;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgb(106, 239, 126);
  margin: 15px 0;
  position: relative;
  transition: var(--transition-smooth);
  height: 300px;
}

.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 60px;
  color: rgba(0, 168, 47, 0.05);
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 47, 0.1);
}

.client-rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 20px;
}

.client-review {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6573;
  font-style: italic;
  margin-bottom: 30px;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-company {
  font-size: 12px;
  color: #7d8b99;
}

/* --- Blog Section --- */
.blog-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.blog-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(18, 21, 24, 0.85);
  color: #ffffff;
  backdrop-filter: blur(5px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 12px;
  color: #7d8b99;
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.blog-title a:hover {
  color: var(--primary-green);
}

.blog-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link i {
  transition: var(--transition-fast);
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 60px 0;
  background-color: #00af310d;
}

.accordion-item-eco {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-fast);
}

.accordion-item-eco:hover {
  border-color: rgba(0, 168, 47, 0.15);
}

.accordion-button-eco {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 25px;
  color: var(--dark-charcoal);
  background-color: #ffffff;
  border: none;
  box-shadow: none !important;
}

.accordion-button-eco:not(.collapsed) {
  color: var(--primary-green);
  background-color: rgba(0, 168, 47, 0.03);
}

.accordion-button-eco::after {
  background-size: 12px;
  transition: transform 0.3s ease;
}

.accordion-body-eco {
  padding: 20px 25px 25px 25px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5a6573;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  background: radial-gradient(circle at right bottom, rgba(0, 168, 47, 0.15) 0%, rgba(18, 21, 24, 0) 65%),
              var(--dark-charcoal);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(0, 168, 47, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 17px;
  color: #a4b3c2;
  margin-bottom: 30px;
}

/* --- Footer --- */
.footer-section {
  background-color: #0d0f11;
  color: #7d8b99;
  padding: 80px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-logo {
  height: 48px;
  margin-bottom: 25px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-green);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info-list i {
  color: var(--primary-green);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

/* --- Floating Actions --- */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  font-size: 22px;
  color: #ffffff !important;
  cursor: pointer;
  position: relative;
}

.btn-float:hover {
  transform: translateY(-5px) scale(1.05);
}

.btn-float-whatsapp {
  background-color: #25d366;
}

.btn-float-call {
  background-color: var(--primary-green);
}

.btn-float-top {
  background-color: var(--dark-charcoal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.btn-float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #ffffff;
}

/* --- Custom Cursor Follower --- */
#custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--primary-green);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
}

@media (pointer: coarse) {
  #custom-cursor,
  #custom-cursor-dot {
    display: none; /* Hide custom cursor on touch devices */
  }
}

.hover-link-active #custom-cursor {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 168, 47, 0.1);
  border-color: var(--primary-green);
}

/* --- Full Screen Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-charcoal);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  
  padding: 40px;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  /* text-align: center; */
}

.mobile-menu-links li {
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-menu-overlay.open .mobile-menu-links li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-overlay.open .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.open .mobile-menu-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-green);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu-link {
  font-size: 16px;
  font-weight: 500;
  color: #a4b3c2;
  display: block;
  padding: 5px 0;
}

.mobile-submenu-link:hover {
  color: var(--primary-green);
}







/* ===== Services Marquee Section ===== */
.ewm-services-marquee-section {
    background: linear-gradient(135deg, #00a824, #00a824);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.ewm-marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.ewm-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ewmMarquee 25s linear infinite;
}

.ewm-marquee-track span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 60px;
    position: relative;
    padding-right: 60px;
    letter-spacing: 0.5px;
}

.ewm-marquee-track span::after {
    content: "●";
    position: absolute;
    right: 0;
    color: #ffffff80;
}

@keyframes ewmMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ewm-services-marquee-section {
        padding: 15px 0;
    }

    .ewm-marquee-track span {
        font-size: 15px;
        margin-right: 40px;
        padding-right: 40px;
    }

    .navbar-logo {
    height: 50px;
    transition: var(--transition-smooth);
}

.navbar-eco.sticky .navbar-logo {
    height: 50px;
}
}







@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}





.footer-watermark{
    width:100%;
    text-align:center;
    font-family: "Times New Roman", serif;
    font-size:clamp(60px, 12vw, 220px);
    font-weight:700;
    line-height:0.9;
    color:rgb(0 175 49 / 10%);
    text-transform:uppercase;
    letter-spacing:5px;
    user-select:none;
    pointer-events:none;
    overflow:hidden;
    margin-top:40px;
}

/* Dark Footer */
footer{
    background:#000;
    position:relative;
    overflow:hidden;
}









/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .navbar .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
}