/* kamaan-style.css – with responsive margins/padding for web, tablet, mobile */

/* Wrapper reset */
#kamaan-root {
  display: block;
}

/* Reset margins/paddings inside our root, but preserve icon pseudo-elements */
#kamaan-root * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- FORCE FONT AWESOME ICONS TO WORK (overrides any external CSS) ----- */
#kamaan-root i.fas,
#kamaan-root i.far,
#kamaan-root i.fab,
#kamaan-root i.fa,
#kamaan-root [class*=" fa-"],
#kamaan-root [class^="fa-"] {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  display: inline-block !important;
  speak: never !important;
}

#kamaan-root i.fas::before,
#kamaan-root i.far::before,
#kamaan-root i.fab::before,
#kamaan-root i.fa::before,
#kamaan-root [class*=" fa-"]::before,
#kamaan-root [class^="fa-"]::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* ----- OUR VARIABLES ----- */
#kamaan-root {
  --k-primary: #4aab3e;
  --k-primary-dark: #3b8a30;
  --k-secondary: #f5b042;
  --k-gray-50: #fafcf9;
  --k-gray-200: #e2e8e0;
  --k-gray-800: #1e2b1c;
  font-family: 'Poppins', sans-serif;
  
  /* Responsive side spacing (padding) */
  padding-left: max(20px, 5vw);
  padding-right: max(20px, 5vw);
}

/* Responsive padding for sections */
#kamaan-root .kamaan-section {
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--k-gray-200);
}

/* Adjust section padding for tablet */
@media (min-width: 768px) {
  #kamaan-root .kamaan-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Adjust section padding for desktop */
@media (min-width: 1200px) {
  #kamaan-root .kamaan-section {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}

/* Container – max width with automatic side margins */
#kamaan-root .kamaan-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Hero container – ensure proper alignment */
#kamaan-root .hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  
  gap: 1.8rem;
  padding: 20px 0;
}

/* Responsive gap for mobile */
@media (max-width: 767px) {
  #kamaan-root .hero-container {
    gap: 2rem;
    flex-direction: column;
    text-align: center;
  }
  #kamaan-root .hero-content {
    text-align: center;
  }
  #kamaan-root .kamaan-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #kamaan-root .kamaan-buttons {
    justify-content: center;
  }
}

/* Adjust stats grid spacing on mobile */
@media (max-width: 640px) {
  #kamaan-root .kamaan-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }
  #kamaan-root .stat-item {
    text-align: center;
  }
}

/* Keep existing styles for other elements (unchanged below) */
#kamaan-root .kamaan-section:last-child {
  border-bottom: none;
}

#kamaan-root .kamaan-badge {
  background: rgba(74, 171, 62, 0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

#kamaan-root .kamaan-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--k-primary) 0%, #2d7c23 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  #kamaan-root .kamaan-title {
    font-size: 3.0rem;
  }
}

#kamaan-root .kamaan-description {
  font-size: 1rem;
  color: #2a4825;
  max-width: 90%;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-description {
    font-size: 1.0rem;
	
  }
}

/* Buttons */
#kamaan-root .kamaan-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
#kamaan-root .kamaan-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
#kamaan-root .kamaan-btn-primary {
  background: var(--k-primary);
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
#kamaan-root .kamaan-btn-primary:hover {
  background: var(--k-primary-dark);
  transform: translateY(-3px);
}
#kamaan-root .kamaan-btn-secondary {
  background: transparent;
  border: 1.5px solid var(--k-primary);
  color: var(--k-primary);
}
#kamaan-root .kamaan-btn-secondary:hover {
  background: var(--k-primary);
  color: white;
  transform: translateY(-3px);
}

/* Stats */
#kamaan-root .kamaan-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  background: var(--k-gray-50);
  border-radius: 56px;
  padding: 1.2rem;
  border: 1px solid var(--k-gray-200);
  margin: 1rem 0 0.5rem;
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-stats {
    padding: 1.5rem 2rem;
  }
}
#kamaan-root .stat-item {
  text-align: center;
  flex: 1;
  font-weight: 500;
  color: var(--k-gray-800);
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  #kamaan-root .stat-item {
    font-size: 0.9rem;
  }
}
#kamaan-root .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--k-primary);
  display: block;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #kamaan-root .stat-number {
    font-size: 1.6rem;
  }
}
#kamaan-root .stat-number-big {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--k-primary);
  display: block;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #kamaan-root .stat-number-big {
    font-size: 1.6rem;
  }
}
#kamaan-root .kamaan-note {
  font-size: 0.65rem;
  margin-top: 0.75rem;
  color: #4a5b47;
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-note {
    font-size: 0.7rem;
  }
}

/* Visual */
#kamaan-root .sun-glow {
  background: radial-gradient(circle at 30% 20%, rgba(74,171,62,0.08), transparent);
  padding: 1rem;
}
#kamaan-root .sun-glow i.fa-sun {
  font-size: 80px !important;
  color: var(--k-secondary) !important;
  filter: drop-shadow(0 10px 20px rgba(245,176,66,0.3));
}
@media (min-width: 768px) {
  #kamaan-root .sun-glow i.fa-sun {
    font-size: 100px !important;
  }
}
@media (min-width: 1024px) {
  #kamaan-root .sun-glow i.fa-sun {
    font-size: 120px !important;
  }
}
#kamaan-root .tech-badge {
  margin-top: 1rem;
  background: var(--k-gray-50);
  border-radius: 48px;
  padding: 0.8rem;
  border: 1px solid var(--k-gray-200);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  #kamaan-root .tech-badge {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Force Poppins font everywhere inside our root */
#kamaan-root, #kamaan-root * {
  font-family: 'Poppins', sans-serif !important;
}

/* Remove any inherited underline or decoration from icons */
#kamaan-root i, #kamaan-root [class*=" fa-"], #kamaan-root [class^="fa-"] {
  text-decoration: none !important;
  font-style: normal !important;
}



/* ========== SECTION 2: PILLARS / WHY CHOOSE US ========== */

/* Section header styling */
#kamaan-root .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

#kamaan-root .kamaan-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--k-gray-800);
}
@media (min-width: 768px) {
  #kamaan-root .kamaan-heading {
    font-size: 2.3rem;
  }
}
@media (min-width: 1024px) {
  #kamaan-root .kamaan-heading {
    font-size: 2.5rem;
  }
}

#kamaan-root .section-subtitle {
  color: #425f3e;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #kamaan-root .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Pillars grid */
#kamaan-root .pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 640px) {
  #kamaan-root .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #kamaan-root .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Pillar card */
#kamaan-root .pillar-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--k-gray-200);
  text-align: left;
}
@media (min-width: 768px) {
  #kamaan-root .pillar-card {
    padding: 2rem;
  }
}
#kamaan-root .pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--k-shadow-lg, 0 30px 40px -15px rgba(0, 0, 0, 0.15));
  border-color: var(--k-primary-light, #c8f0c2);
}

/* Pillar icon */
#kamaan-root .pillar-icon {
  background: var(--k-gray-100);
  width: 56px;
  height: 56px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--k-primary);
  margin-bottom: 1.5rem;
}

#kamaan-root .pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--k-gray-800);
}
@media (min-width: 768px) {
  #kamaan-root .pillar-card h3 {
    font-size: 1.45rem;
  }
}

#kamaan-root .pillar-card p {
  color: var(--k-gray-700);
  line-height: 1.5;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  #kamaan-root .pillar-card p {
    font-size: 0.95rem;
  }
}







/* section2.css – Kamaan Green Energy, Why Choose Us (Pillars) */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.pillars-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
  --k-primary: #4aab3e;
  --k-primary-dark: #3b8a30;
  --k-primary-light: #c8f0c2;
  --k-gray-100: #f0f5ee;
  --k-gray-200: #e2e8e0;
  --k-gray-700: #2d3e2a;
  --k-gray-800: #1e2b1c;
  --k-shadow-lg: 0 30px 40px -15px rgba(0,0,0,0.15);
}

/* Force Poppins */
.pillars-container, .pillars-container * {
  font-family: 'Poppins', sans-serif;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.badge {
  background: rgba(74, 171, 62, 0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}
.heading {
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: 0.0em;
  margin-bottom: 1.55rem;
  color: var(--k-gray-800);
}
@media (min-width: 768px) {
  .heading { font-size: 2.3rem; }
}
@media (min-width: 1024px) {
  .heading { font-size: 2.0rem; 
   font-weight:700;
  }
}
.subtitle {
  color: #425f3e;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .subtitle { font-size: 0.9rem; }
}

/* Pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Pillar card */
.pillar-card {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.03);
  border: 1px solid var(--k-gray-200);
  text-align: center;
}
@media (min-width: 768px) {
  .pillar-card { padding: 2rem; }
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--k-shadow-lg);
  border-color: #c8f0c2;
}
/* Force the icon container to be a flex center on both axes */
.pillar-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 65px;
  height: 65px;
  border-radius: 60px;
  background: var(--k-gray-100);
  color: var(--k-primary);
  margin: 0 auto 1.5rem auto;  /* centers the whole circle horizontally */
  padding: 0 !important;
}

/* Force the icon itself to be centered inside the flex container */
.pillar-icon i {
  display: inline-block !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  margin: 0 auto !important;
  text-align: center !important;
  width: auto !important;
  min-width: 0 !important;
  /* Reset any possible left-floating */
  float: none !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  font-size: 28px !important;
}

/* Also target the pseudo-element in case external CSS adds margins */
.pillar-icon i::before {
  margin: 0 auto !important;
  display: inline-block !important;
  width: auto !important;
}
.pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--k-gray-800);
}
@media (min-width: 768px) {
  .pillar-card h3 { font-size: 1.2rem; }
}
.pillar-card p {
  color: var(--k-gray-700);
  line-height: 1.5;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .pillar-card p { font-size: 0.9rem; }
}

/* Icons – ensure Font Awesome renders */
.pillar-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
}
.badge i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}









/* Container – responsive spacing */
.vision-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
}

/* Callout card */
.vision-callout {
  background: linear-gradient(110deg, #eef5ea 0%, #ffffff 20%);
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Globe icon */
.vision-icon {
  font-size: 2.8rem;
  color: #4aab3e;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* Heading */
.vision-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #1e2b1c;
}
@media (min-width: 768px) {
  .vision-heading {
    font-size: 2.0rem;
  }
}
@media (min-width: 1024px) {
  .vision-heading {
    font-size: 2.0rem;
  }
}

/* Highlighted green text */
.vision-highlight {
  color: #4aab3e;
}

/* Description text */
.vision-description {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: 0.9rem;
  color: #2d3e2a;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .vision-description {
    font-size: 1.0rem;
  }
}

/* Button */
.vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4aab3e;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #ffffff;
}


/* Force Poppins font */
.vision-container, .vision-container * {
  font-family: 'Poppins', sans-serif;
}




/* ---------- RESET & SCOPING ---------- */
.testimonial-avenue-root {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;

    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.testimonial-avenue-root *,
.testimonial-avenue-root *::before,
.testimonial-avenue-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- MAIN SECTION ---------- */
.ta-section {
    background: #fefcf8;
    padding: 5rem 1.5rem;
    width: 100%;
}

.ta-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ta-heading {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a2c3e;
    margin-bottom: 0.5rem;
	font-family: 'Poppins', sans-serif;
}

.ta-subheading {
    font-size: 1rem;
    color: #6c7f9e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

/* ---------- CAROUSEL ---------- */
.ta-carousel-wrapper {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.1);
}

.ta-carousel-track-container {
    overflow: hidden;
    border-radius: 28px;
}

.ta-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease-out;
    will-change: transform;
}

.ta-testimonial-slide {
    flex: 0 0 100%;
    padding: 3rem 2.5rem;
    background: #ffffff;
    text-align: center;
	font-family: 'Poppins', sans-serif;
}

.ta-quote-icon {
    font-size: 3.2rem;
    line-height: 1;
    color: #cbdae9;
    font-family: Georgia, serif;
    margin-bottom: 0.75rem;
}

.ta-testimonial-text {
    font-size: 1.15rem;
    font-weight: 450;
    color: #808080;
    line-height: 1.45;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
	font-family: 'Poppins', sans-serif;
}

.ta-client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #373737;
    letter-spacing: -0.2px;
	font-family: 'Poppins', sans-serif;
}

.ta-client-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c7e9c;
    margin-top: 0.3rem;
    letter-spacing: 0.4px;
	font-family: 'Poppins', sans-serif;
}

.ta-stars {
    margin-top: 1rem;
    color: #f5b342;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

/* Dots */
.ta-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.ta-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.ta-dot.active {
    background-color: #4aab3e;
    width: 26px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .ta-section {
        padding: 3rem 1rem;
    }
    .ta-heading {
        font-size: 2.2rem;
    }
    .ta-testimonial-slide {
        padding: 2rem 1.5rem;
    }
    .ta-testimonial-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 550px) {
    .ta-testimonial-text {
        font-size: 1.05rem;
    }
}


/* ========== RESET ONLY INSIDE .battery-vertical ========== */
.battery-vertical {
  font-family: 'Poppins', sans-serif;
  background: #fefefc;
  color: #1e2a2e;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.battery-vertical * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* variables */
.battery-vertical {
  --batt-primary: #4aab3e;
  --batt-primary-dark: #3a8b2f;
  --batt-primary-light: #e1f5e0;
  --batt-shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
  --batt-shadow-md: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
  --batt-shadow-hover: 0 30px 40px -12px rgba(74, 171, 62, 0.15);
  --batt-transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* container */
.batt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.batt-section {
  padding: 80px 0;
}

/* animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.batt-btn-primary,
.batt-btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--batt-transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
}
.batt-btn-primary {
  background: var(--batt-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  box-shadow: 0 4px 10px rgba(74, 171, 62, 0.25);
}
.batt-btn-primary:hover {
  background: var(--batt-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -8px rgba(74, 171, 62, 0.4);
}
.batt-btn-outline {
  background: transparent;
  border: 1.5px solid var(--batt-primary);
  color: var(--batt-primary);
  padding: 10px 28px;
}
.batt-btn-outline:hover {
  background: var(--batt-primary);
  color: white;
  transform: translateY(-2px);
}

/* Hero */
.batt-hero {
  background: linear-gradient(105deg, #ffffff 0%, #f5fef2 100%);
  padding: 60px 0 40px;
}
.batt-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.batt-hero-content {
  flex: 1.2;
}
.batt-badge {
  background: var(--batt-primary-light);
  display: inline-block;
  padding: 5px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--batt-primary-dark);
  margin-bottom: 20px;
}
.batt-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1a3c1a;
  margin: 16px 0 18px;
}
.batt-hero-content p {
  font-size: 1rem;
  color: #4b5e4a;
  margin-bottom: 32px;
  max-width: 90%;
}
.batt-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.batt-trust-badge {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.batt-trust-badge span i {
  color: var(--batt-primary);
  margin-right: 8px;
}
.batt-hero-image {
  flex: 0.9;
  animation: batt-float 6s infinite ease-in-out;
}
.batt-hero-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--batt-shadow-md);
}
@keyframes batt-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Section title */
.batt-section-title {
  text-align: center;
  margin-bottom: 52px;
}
.batt-section-title h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #1f3b1a;
  margin-bottom: 10px;
}
.batt-section-title p {
  color: #5c6e58;
  max-width: 660px;
  margin: 5px auto;
  font-size: 1rem;
}

/* Cards grid */
.batt-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}
.batt-card {
  background: white;
  border-radius: 36px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--batt-transition);
  box-shadow: var(--batt-shadow-sm);
  border: 1px solid rgba(74, 171, 62, 0.1);
}
.batt-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--batt-shadow-hover);
  border-color: var(--batt-primary-light);
}
.batt-icon-circle {
  background: var(--batt-primary-light);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 2.4rem;
  color: var(--batt-primary);
}
.batt-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Double column */
.batt-double-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: 56px;
  padding: 48px 40px;
  box-shadow: var(--batt-shadow-sm);
  margin: 20px 0;
}
.batt-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a1a;
}
.batt-info p {
  color: #757575;
  line-height: 1.8;
  font-size: 0.92rem;
}
.batt-icon-lg {
  font-size: 2.0rem;
  color: var(--batt-primary);
  margin-bottom: 20px;
}
.batt-quote {
  border-left: 4px solid var(--batt-primary);
  padding-left: 20px;
  margin-top: 28px;
}
.batt-vision-badge {
  margin-top: 28px;
  background: var(--batt-primary-light);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 40px;
}

/* Coming soon */
.batt-coming-soon {
  background: linear-gradient(125deg, #0f351f, #4aab3e);
  border-radius: 0px;
  padding: 64px 40px;
  text-align: center;
  color: white;
}
.batt-coming-soon h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight:700;
}
.batt-coming-soon p {
  color: #ddf4dc;
  max-width: 780px;
  margin: 0 auto;
}
.batt-capacity-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 48px 0 32px;
}
.batt-capacity-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 28px 24px;
  width: 200px;
  transition: var(--batt-transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.batt-capacity-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.02);
}
.batt-capacity-card i {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.batt-capacity-card h4 {
  font-size: 1.9rem;
  font-weight: 800;
}

/* Countdown */
.batt-countdown {
  background: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  gap: 28px;
  padding: 20px 40px;
  border-radius: 80px;
  margin: 24px auto;
  flex-wrap: wrap;
  justify-content: center;
}
.batt-time-box {
  text-align: center;
  min-width: 72px;
}
.batt-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.batt-time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.batt-notify-group {
  max-width: 500px;
  margin: 32px auto 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.batt-notify-group input {
  flex: 1;
  padding: 14px 24px;
  border-radius: 60px;
  border: none;
  font-family: 'Poppins', sans-serif;
  outline: none;
  font-size: 0.95rem;
}
.batt-small-note {
  font-size: 0.85rem;
  margin-top: 28px;
}

/* Synergy */
.batt-synergy {
  background: var(--batt-primary-light);
  border-radius: 48px;
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0 80px;
}
.batt-synergy i {
  font-size: 2.2rem;
  color: var(--batt-primary);
}
.batt-synergy h3 {
  font-size: 1.8rem;
  margin: 16px 0 12px;
}
.batt-synergy p {
  max-width: 680px;
  margin: 0 auto;
  color: #2e4a2a;
}
.batt-stats-row {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.batt-stats-row span i {
  color: var(--batt-primary);
}

/* Responsive */
@media (max-width: 900px) {
  .batt-hero-content h1 { font-size: 2.4rem; }
  .batt-double-grid { grid-template-columns: 1fr; padding: 32px 28px; }
  .batt-section-title h2 { font-size: 2rem; }
  .batt-container { padding: 0 20px; }
  .batt-capacity-card { width: 160px; padding: 20px; }
  .batt-countdown { gap: 16px; padding: 16px 24px; }
}
@media (max-width: 560px) {
  .batt-hero-content p { max-width: 100%; }
  .batt-capacity-wrapper { gap: 16px; }
  .batt-capacity-card { width: 140px; }
  .batt-hero-content h1 { font-size: 2rem; }
}


/* products.css – Kamaan Green Energy Products Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4aab3e; border-radius: 10px; }

.products-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 2;
}

/* Animated background shapes */
.bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,171,62,0.15), transparent);
  border-radius: 50%;
  animation: float 20s infinite alternate;
}
.shape-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,176,66,0.1), transparent);
  border-radius: 50%;
  animation: float 18s infinite alternate-reverse;
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 40px) scale(1.1); }
}

/* Hero Section */
.hero-products {
  text-align: center;
  margin-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(74,171,62,0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e2b1c 0%, #4aab3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3.2rem; } }
.hero-sub {
  font-size: 1.1rem;
  color: #2d3e2a;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: #4aab3e10;
  color: #4aab3e;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2b1c;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 1000px;
  margin: 0 auto;
  color: #4a5b47;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Cards grid */
.cards-grid {
  display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1200px; /* Adjust this number to make it narrower or wider */
  margin-left: auto;
  margin-right: auto;

}

/* Mobile-view (1 Columns) */
@media ( max-width: 480px) {
  .cards-grid {
	  display: grid;
    grid-template-columns: 1fr;
	margin-bottom: 40px;
  }
}


.product-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(74,171,62,0.15);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4aab3e, #c8f0c2);
  transform: scaleX(0);
  transition: transform 0.1s ease;
}
.product-card:hover {
  transform: translateY(-12px);
  border-color: #4aab3e40;
  box-shadow: 0 25px 40px -12px rgba(74,171,62,0.2);
}
.product-card:hover::before { transform: scaleX(1); }


.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #f0f5ee, #ffffff);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: #4aab3e;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.product-card:hover .card-icon {
  transform: scale(1.05);
  background: #4aab3e;
  color: white;
}
.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e2b1c;
}
.product-card p {
  font-size: 0.9rem;
  color: #4a5b47;
  line-height: 1.5;
  margin-bottom: 20px;
}
.feature-list-mini {
  list-style: none;
  text-align: left;
  margin-top: 16px;
}
.feature-list-mini li {
  font-size: 0.85rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2d3e2a;
}
.feature-list-mini li i {
  color: #4aab3e;
  width: 20px;
  font-size: 12px;
}

/* Feature row with images */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
  background: #f0faf2;
  border-radius: 48px;
  padding: 70px;
  transition: all 0.5s;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1.2; }
.feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #1e2b1c;
  font-weight:600;
}
.feature-text p {
  color: #2d3e2a;
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-list-two {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-top: 20px;
}
.feature-list-two li {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1e2b1c;
}
.feature-list-two li i {
  color: #4aab3e;
  font-size: 16px;
}
.feature-image {
  flex: 0.9;
  text-align: center;
}
.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.feature-image img:hover { transform: scale(1.02); }

/* Metrics / Infographics with icons */
.infographics-section {
  background: linear-gradient(135deg, #f0f5ee, #ffffff);
  border-radius: 56px;
  padding: 50px 40px;
  margin: 60px 0;
}
.infographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.metric-card {
  background: white;
  border-radius: 32px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border: 1px solid #e2e8e0;
}
.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(74,171,62,0.12);
  border-color: #4aab3e40;
}
.metric-icon {
  font-size: 35px;
  color: #4aab3e;
  margin-bottom: 20px;
  display: inline-block;
  background: #f0f5ee;
  width: 80px;
  height: 80px;
  line-height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.metric-card:hover .metric-icon {
  background: #4aab3e;
  color: white;
  transform: scale(1.05);
}
.metric-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e2b1c;
  line-height: 1.2;
}
.metric-label {
  font-size: 0.9rem;
  color: #4a5b47;
  margin-top: 8px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(110deg, #eef5ea 0%, #ffffff 100%);
  border-radius: 48px;
  padding: 60px 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-icon {
  font-size: 48px;
  color: #4aab3e;
  margin-bottom: 24px;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4aab3e;
  color: white;
  padding: 14px 36px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(74,171,62,0.3);
}
.cta-btn:hover {
  background: #3b8a30;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(74,171,62,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    padding: 30px;
  }
  .feature-image { order: -1; width: 100%; }
  .infographics-section { padding: 30px 20px; }
  .metric-value { font-size: 1.8rem; }
  .metric-icon { width: 70px; height: 70px; line-height: 70px; font-size: 36px; }
}

/* Force Poppins */
.products-container, .products-container * {
  font-family: 'Poppins', sans-serif;
}


/* epc-rooftop.css – Kamaan Green Energy EPC & Rooftop Page (scoped with epc- prefix) */

.epc-root * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.epc-root {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Custom scrollbar (optional) */
.epc-root ::-webkit-scrollbar { width: 8px; }
.epc-root ::-webkit-scrollbar-track { background: #f1f1f1; }
.epc-root ::-webkit-scrollbar-thumb { background: #4aab3e; border-radius: 10px; }

/* Main container */
.epc-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 2;
}

/* Animated background shapes */
.epc-bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.epc-shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,171,62,0.15), transparent);
  border-radius: 50%;
  animation: epc-float 20s infinite alternate;
}
.epc-shape-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,176,66,0.1), transparent);
  border-radius: 50%;
  animation: epc-float 18s infinite alternate-reverse;
}
@keyframes epc-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 40px) scale(1.1); }
}

/* Buttons */
.epc-btn-primary, .epc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.epc-btn-primary {
  background: #4aab3e;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.epc-btn-primary:hover {
  background: #3b8a30;
  transform: translateY(-3px);
}
.epc-btn-secondary {
  background: transparent;
  border: 1.5px solid #4aab3e;
  color: #4aab3e;
}
.epc-btn-secondary:hover {
  background: #4aab3e;
  color: white;
  transform: translateY(-3px);
}

/* Section headers */
.epc-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.epc-section-tag {
  display: inline-block;
  background: #4aab3e10;
  color: #4aab3e;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.epc-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2b1c;
  margin-bottom: 16px;
}
.epc-section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #4a5b47;
  font-size: 0.95rem;
}

/* Hero */
.epc-hero {
  text-align: center;
  margin-bottom: 80px;
}
.epc-hero-badge {
  display: inline-block;
  background: rgba(74,171,62,0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.epc-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e2b1c 0%, #4aab3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .epc-hero-title { font-size: 3.2rem; } }
.epc-hero-sub {
  font-size: 1.0rem;
  color: #2d3e2a;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.epc-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Why Solar section */
.epc-why-solar {
  background: linear-gradient(145deg, #fafcf9, #ffffff);
  border-radius: 56px;
  padding: 50px 40px;
  margin-bottom: 80px;
  text-align: center;
}
.epc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.epc-why-card {
  background: white;
  border-radius: 32px;
  padding: 32px 24px;
  transition: all 0.3s;
  border: 1px solid #e2e8e0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.epc-why-card:hover {
  transform: translateY(-8px);
  border-color: #4aab3e40;
  box-shadow: 0 20px 30px rgba(74,171,62,0.1);
}
.epc-why-icon {
  font-size: 35px;
  color: #4aab3e;
  margin-bottom: 20px;
}
.epc-why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.epc-why-card p {
  color: #4a5b47;
  line-height: 1.5;
}

/* Services grid (2 cols) */
.epc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1000px; /* Reducing this from 1440px makes cards smaller */
    margin: 0 auto;
}
@media (max-width: 768px) {
  .epc-services-grid { grid-template-columns: 1fr; }
}
.epc-service-card {
  background: white;
  border-radius: 32px;
  padding: 32px;
  transition: all 0.4s;
  border: 1px solid #e2e8e0;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.epc-service-card:hover {
  transform: translateY(-8px);
  border-color: #4aab3e40;
  box-shadow: 0 25px 40px -12px rgba(74,171,62,0.2);
}
.epc-service-icon {
  font-size: 38px;
  color: #4aab3e;
  margin-bottom: 20px;
}
.epc-service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.epc-service-card p {
  color: #2d3e2a;
  line-height: 1.5;
  margin-bottom: 20px;
}
.epc-feature-list {
  list-style: none;
}
.epc-feature-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #1e2b1c;
}
.epc-feature-list li i {
  color: #4aab3e;
}

/* Process */
.epc-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}
.epc-process-step {
  text-align: center;
  background: #fafcf9;
  padding: 32px 20px;
  border-radius: 32px;
  transition: all 0.3s;
}
.epc-process-step:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.epc-step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #4aab3e20;
  margin-bottom: -30px;
}
.epc-step-icon {
  font-size: 30px;
  color: #4aab3e;
  margin-bottom: 20px;
}
.epc-process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.epc-process-step p {
  font-size: 0.9rem;
  color: #4a5b47;
}

/* Benefits */
.epc-benefits-section {
  background: #fafcf9;
  border-radius: 56px;
  padding: 50px 40px;
  margin-bottom: 80px;
}
.epc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.epc-benefit-card {
  text-align: center;
  padding: 20px;
}
.epc-benefit-card i {
  font-size: 48px;
  color: #4aab3e;
  margin-bottom: 16px;
}
.epc-benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.epc-benefit-card p {
  font-size: 0.85rem;
  color: #4a5b47;
}

/* Case study */
.epc-case-study {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #f0f5ee, #ffffff);
  border-radius: 48px;
  padding: 40px;
  margin-bottom: 80px;
}
.epc-case-content {
  flex: 1.2;
}
.epc-case-badge {
  background: #4aab3e20;
  color: #4aab3e;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.epc-case-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.epc-case-content p {
  margin-bottom: 20px;
  color: #2d3e2a;
}
.epc-case-stats {
  list-style: none;
}
.epc-case-stats li {
  display: inline-block;
  margin-right: 20px;
  font-size: 0.85rem;
  background: #e4ede4;
  color: #525252;
  padding: 6px 14px;
  border-radius: 40px;
}
.epc-case-image {
  flex: 0.9;
  text-align: center;
}
.epc-case-image img {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Contact */
.epc-contact-section {
  background: linear-gradient(110deg, #eef5ea 0%, #ffffff 100%);
  border-radius: 48px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 40px;
}
.epc-contact-icon {
  font-size: 48px;
  color: #4aab3e;
  margin-bottom: 20px;
}
.epc-contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.epc-contact-section p {
  margin-bottom: 30px;
  color: #2d3e2a;
}
.epc-contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.epc-form-input {
  padding: 14px 20px;
  border-radius: 60px;
  border: 1px solid #e2e8e0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
}
.epc-form-input:focus {
  border-color: #4aab3e;
  box-shadow: 0 0 0 2px #4aab3e20;
}
.epc-submit-btn {
  background: #4aab3e;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
}
.epc-submit-btn:hover {
  background: #3b8a30;
  transform: translateY(-2px);
}



/* Responsive */
@media (max-width: 768px) {
  .epc-container { padding: 40px 5vw; }
  .epc-why-solar { padding: 30px 20px; }
  .epc-benefits-section { padding: 30px 20px; }
  .epc-case-study { flex-direction: column; text-align: center; }
  .epc-case-stats li { display: block; margin: 8px 0; }
  .epc-contact-section { padding: 30px 20px; }
}

/* Force Poppins inside .epc-root */
.epc-root, .epc-root * {
  font-family: 'Poppins', sans-serif;
}



/* solar-lighting.css – all classes prefixed with "sl-" to avoid conflicts */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4aab3e; border-radius: 10px; }

/* Animated background shapes (scoped) */
.sl-bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.sl-shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,171,62,0.15), transparent);
  border-radius: 50%;
  animation: sl-float 20s infinite alternate;
}
.sl-shape-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,176,66,0.1), transparent);
  border-radius: 50%;
  animation: sl-float 18s infinite alternate-reverse;
}
@keyframes sl-float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,40px) scale(1.1); }
}

/* Main container */
.sl-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 2;
}

/* Hero */
.sl-hero {
  text-align: center;
  margin-bottom: 60px;
}
.sl-hero-badge {
  display: inline-block;
  background: rgba(74,171,62,0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.sl-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e2b1c 0%, #4aab3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (min-width: 768px) { .sl-hero-title { font-size: 3.2rem; } }
.sl-hero-sub {
  font-size: 1.0rem;
  color: #2d3e2a;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* Full width banner */
.sl-full-width-banner {
  margin: 40px 0 60px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.sl-full-width-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Section headers */
.sl-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.sl-section-tag {
  display: inline-block;
  background: #4aab3e10;
  color: #4aab3e;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.sl-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2b1c;
}
.sl-section-desc {
  max-width: 700px;
  margin: 10px auto 0;
  color: #4a5b47;
}

/* Feature block (image + text) */
.sl-feature-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #fafcf9;
  border-radius: 48px;
  padding: 40px;
  margin-bottom: 50px;
}
.sl-feature-image {
  flex: 1;
  text-align: center;
}
.sl-feature-image img {
  max-width: 100%;
  max-height: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.sl-feature-text {
  flex: 1.2;
}
.sl-feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1e2b1c;
  font-weight:700;
}
.sl-feature-text p {
  margin-bottom: 24px;
  line-height: 1.6;
  color: #2d3e2a;
}
.sl-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.sl-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 60px;
  border: 1px solid #e2e8e0;
}
.sl-feature-item i {
  font-size: 24px;
  color: #4aab3e;
  width: 32px;
}
.sl-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e2b1c;
}

/* Tables */
.sl-table-wrapper {
  overflow-x: auto;
  margin-bottom: 60px;
}
.sl-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.sl-specs-table th, .sl-specs-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8e0;
  font-size: 0.85rem;
  color:#000000;
}
.sl-specs-table th {
  background: #f0f5ee;
  color: #1e2b1c;
  font-weight: 600;
}
.sl-specs-table tr:hover td { background: #fafcf9; }

/* Grid for two cards (pole & bollard) */
.sl-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 20px 0 60px;
}
.sl-card {
  background: white;
  border-radius: 32px;
  padding: 24px;
  border: 1px solid #e2e8e0;
  transition: all 0.3s;
}
.sl-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px rgba(74,171,62,0.1); }
.sl-card-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 38px;
  margin-bottom: 20px;
}
.sl-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.sl-mini-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}
.sl-mini-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eef2ee;
  color:#000000;
}
.sl-mini-table td:first-child { font-weight: 600; width: 45%; color:#000000; }

/* Remote monitoring */
.sl-remote-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #fafcf9;
  border-radius: 48px;
  padding: 40px;
  margin: 60px 0;
}
.sl-remote-content { flex: 1.2; }
.sl-remote-icon { font-size: 48px; color: #4aab3e; margin-bottom: 20px; }
.sl-remote-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.sl-remote-url {
  background: white;
  padding: 10px 20px;
  border-radius: 40px;
  display: inline-block;
  margin-top: 20px;
  font-family: monospace;
  font-size: 0.85rem;
}
.sl-remote-image { flex: 0.8; text-align: center; }
.sl-remote-image img { width: 100%; max-height: 220px; object-fit: contain; border-radius: 28px; }

/* CTA and Footer */
.sl-cta {
  background: linear-gradient(110deg, #eef5ea, #ffffff);
  border-radius: 48px;
  padding: 50px 40px;
  text-align: center;
  margin: 40px 0;
}
.sl-cta-icon { font-size: 48px; color: #4aab3e; margin-bottom: 20px; }
.sl-cta h2 { font-size: 2rem; margin-bottom: 12px; }
.sl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4aab3e;
  color: white;
  padding: 14px 36px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.3s;
}
.sl-btn-primary:hover { background: #3b8a30; transform: translateY(-3px); color:#ffffff; }
.sl-footer {
  text-align: center;
  padding: 30px 0 20px;
  border-top: 1px solid #e2e8e0;
  color: #4a5b47;
  font-size: 0.85rem;
}
.sl-footer i { color: #4aab3e; }

/* Responsive */
@media (max-width: 768px) {
  .sl-container { padding: 40px 5vw; }
  .sl-section-title { font-size: 1.6rem; }
  .sl-feature-block { flex-direction: column; text-align: center; padding: 30px; }
  .sl-feature-grid { grid-template-columns: 1fr; }
  .sl-full-width-banner img { max-height: 300px; }
  .sl-remote-section { flex-direction: column; text-align: center; }
}

/* Force Poppins inside container only */
.sl-container, .sl-container * {
  font-family: 'Poppins', sans-serif;
}


/* smart-surveillance.css – all classes start with "ss-", no AOS, visible immediately */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4aab3e; border-radius: 10px; }

/* Background shapes */
.ss-bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}
.ss-shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,171,62,0.15), transparent);
  border-radius: 50%;
  animation: floatAnim 20s infinite alternate;
}
.ss-shape-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,176,66,0.1), transparent);
  border-radius: 50%;
  animation: floatAnim 18s infinite alternate-reverse;
}
@keyframes floatAnim {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,40px) scale(1.1); }
}

/* Main container */
.ss-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 2;
}

/* Hero */
.ss-hero {
  text-align: center;
  margin-bottom: 60px;
}
.ss-hero-badge {
  display: inline-block;
  background: rgba(74,171,62,0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.ss-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e2b1c 0%, #4aab3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (min-width: 768px) { .ss-hero-title { font-size: 3.5rem; } }
.ss-hero-sub {
  font-size: 1.1rem;
  color: #2d3e2a;
  max-width: 800px;
  margin: 1rem auto 0;
}

/* Full width banner */
.ss-full-banner {
  margin: 40px 0 60px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.ss-full-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

/* Section headers */
.ss-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.ss-section-tag {
  display: inline-block;
  background: #4aab3e10;
  color: #4aab3e;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.ss-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2b1c;
}
.ss-section-desc {
  max-width: 700px;
  margin: 10px auto 0;
  color: #4a5b47;
}

/* Feature block (image + text) */
.ss-feature-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #fafcf9;
  border-radius: 48px;
  padding: 40px;
  margin-bottom: 50px;
}
.ss-feature-image {
  flex: 1;
  text-align: center;
}
.ss-feature-image img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ss-feature-text {
  flex: 1.2;
}
.ss-feature-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #1e2b1c;
  font-weight: 700;
}
.ss-feature-text p {
  margin-bottom: 24px;
  line-height: 1.6;
  color: #2d3e2a;
}
.ss-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.ss-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 60px;
  border: 1px solid #e2e8e0;
}
.ss-feature-item i {
  font-size: 24px;
  color: #4aab3e;
  width: 32px;
}
.ss-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e2b1c;
}

/* Tables */
.ss-table-wrapper {
  overflow-x: auto;
  margin-bottom: 60px;
}
.ss-specs-table {
  width: 100%;
  max-width: 1000px;        /* Limits width so it doesn't look stretched on tablets */
    margin-left: auto;       /* Centers the table */
    margin-right: auto;
  border-collapse: collapse;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.ss-specs-table th, .ss-specs-table td {
  padding: 14px 90px;
  text-align: left;
  border-bottom: 1px solid #e2e8e0;
  font-size: 0.85rem;
  color: #000000;
}
.ss-specs-table th {
  background: #f0f5ee;
  color: #1e2b1c;
  font-weight: 600;
}
.ss-specs-table tr:hover td { background: #fafcf9; }

/* Grid for two cards */
.ss-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 20px 0 60px;
}
.ss-card {
  background: white;
  border-radius: 32px;
  padding: 24px;
  border: 1px solid #e2e8e0;
  transition: all 0.3s;
}
.ss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(74,171,62,0.1);
}
.ss-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 20px;
}
.ss-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.ss-mini-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}
.ss-mini-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eef2ee;
}
.ss-mini-table td:first-child { font-weight: 600; width: 45%; }

/* CTA */
.ss-cta {
  background: linear-gradient(110deg, #eef5ea, #ffffff);
  border-radius: 48px;
  padding: 50px 40px;
  text-align: center;
  margin: 40px 0;
}
.ss-cta i:first-of-type {
  font-size: 48px;
  color: #4aab3e;
  margin-bottom: 20px;
  display: inline-block;
}
.ss-cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.ss-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4aab3e;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.ss-cta-button:hover {
  background: #3b8a30;
  transform: translateY(-3px);
}

/* Footer */
.ss-footer {
  text-align: center;
  padding: 30px 0 20px;
  border-top: 1px solid #e2e8e0;
  color: #4a5b47;
  font-size: 0.85rem;
}
.ss-footer i {
  color: #4aab3e;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-container { padding: 40px 5vw; }
  .ss-section-title { font-size: 1.6rem; }
  .ss-feature-block { flex-direction: column; text-align: center; padding: 30px; }
  .ss-feature-grid { grid-template-columns: 1fr; }
  .ss-full-banner img { max-height: 200px; }
  .ss-cta h2 { font-size: 1.5rem; }
}
body, body * { font-family: 'Poppins', sans-serif; }

/* custom-applications.css – all classes prefixed with "ca-" */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4aab3e; border-radius: 10px; }

/* Background shapes (optional, can be removed) */
.ca-bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
.ca-shape-1 {
  top: 10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(74,171,62,0.15), transparent);
  border-radius: 50%;
  animation: ca-float 20s infinite alternate;
}
.ca-shape-2 {
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,176,66,0.1), transparent);
  border-radius: 50%;
  animation: ca-float 18s infinite alternate-reverse;
}
@keyframes ca-float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,40px) scale(1.1); }
}

.ca-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 2;
}

/* Hero */
.ca-hero {
  text-align: center;
  margin-bottom: 50px;
}
.ca-hero-badge {
  display: inline-block;
  background: rgba(74,171,62,0.12);
  color: #3b8a30;
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.ca-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e2b1c 0%, #4aab3e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .ca-hero-title { font-size: 3rem; }
}
.ca-hero-sub {
  font-size: 1rem;
  color: #2d3e2a;
  max-width: 950px;
  margin: 1rem auto 0;
}

/* Section headers */
.ca-section-header {
  text-align: center;
  margin: 60px 0 40px;
}
.ca-section-tag {
  display: inline-block;
  background: #4aab3e10;
  color: #4aab3e;
  border-radius: 40px;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.ca-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e2b1c;
}
.ca-section-desc {
  max-width: 650px;
  margin: 10px auto 0;
  color: #4a5b47;
}

/* Why Choose Custom Solar? – text + stats only */
.ca-why-box {
  background: #fafcf9;
  border-radius: 48px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.ca-why-box h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1e2b1c;
  font-weight:700;
}
.ca-why-box p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #2d3e2a;
}
.ca-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.ca-stat {
  text-align: center;
  min-width: 150px;
}
.ca-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #4aab3e;
  margin-bottom: 12px;
}
.ca-stat-label {
  font-size: 0.85rem;
  color: #4a5b47;
}

/* Product cards grid (2 columns) */
.ca-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.ca-product-card {
  background: white;
  border-radius: 32px;
  padding: 28px;
  border: 1px solid #e2e8e0;
  transition: all 0.3s;
}
.ca-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(74,171,62,0.08);
  border-color: #4aab3e30;
}
.ca-product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 20px;
  background: #f8faf7;
  padding: 10px;
}
.ca-product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.ca-product-card p {
  color: #2d3e2a;
  line-height: 1.5;
  margin-bottom: 20px;
}
.ca-product-list {
  list-style: none;
}
.ca-product-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eef2ee;
  color:#000000;
}
.ca-product-list li i {
  color: #4aab3e;
  width: 22px;
}

/* CTA */
.ca-cta {
  background: linear-gradient(110deg, #eef5ea, #ffffff);
  border-radius: 48px;
  padding: 50px 40px;
  text-align: center;
  margin: 50px 0 30px;
}
.ca-cta i:first-of-type {
  font-size: 48px;
  color: #4aab3e;
  margin-bottom: 20px;
  display: inline-block;
}
.ca-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.ca-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4aab3e;
  color: white;
  padding: 12px 32px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: 0.3s;
}
.ca-cta-button:hover {
  background: #3b8a30;
  transform: translateY(-2px);
  color:#ffffff;
}

/* Footer */
.ca-footer {
  text-align: center;
  padding: 30px 0 20px;
  border-top: 1px solid #e2e8e0;
  color: #4a5b47;
  font-size: 0.8rem;
}
.ca-footer i {
  color: #4aab3e;
}

/* Responsive */
@media (max-width: 768px) {
  .ca-container { padding: 40px 5vw; }
  .ca-section-title { font-size: 1.5rem; }
  .ca-why-box { padding: 30px 20px; }
  .ca-stats { flex-direction: column; gap: 20px; }
}
body, body * { font-family: 'Poppins', sans-serif; }