:root{
  --primary-green: #1E8E3E;
  --primary-yellow: #F4B000;
  --dark: #1f2937;
  --text: #555;
  --light-bg: #f8faf8;
  --white: #fff;
}

/* ================= INNER HERO ================= */
.section-title {
  color: #1E8E3E;
}

/* ================= COMMON ================= */
.section-tag{
  display: inline-block;
  background: rgba(244,176,0,0.12);
  color: var(--primary-green);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.center-tag{
  margin-left: auto;
  margin-right: auto;
}
.section-heading-services{
   font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    color: #134f24;
    position: relative;
    margin-bottom: 25px;
}
.section-heading-services::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #F4B000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 5px;
}
/* ================= INTRO ================= */
.ea-intro{
  background: #fff;
}

.ea-intro-img img,
.benefit-img img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  border: 4px solid #fff;
}

.ea-intro p{
  color: var(--text);
  line-height: 1.8;
}

.highlight-box{
  background: #fff;
  border: 1px solid #e9ecef;
  border-left: 4px solid var(--primary-yellow);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.highlight-box i{
  color: var(--primary-green);
  font-size: 24px;
}

.highlight-box span{
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}
.ea-main-img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

@media (max-width: 991px){
    .ea-main-img{
        height: 380px;
    }
}

@media (max-width: 767px){
    .ea-main-img{
        height: 280px;
    }
}

/* ================= SERVICES ================= */
.ea-services{
  background: var(--light-bg);
}

.service-card{
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef2f1;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.service-icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244,176,0,0.15);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h4{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.service-card p{
  color: var(--text);
  line-height: 1.7;
}

.service-card ul{
  margin: 16px 0 0;
  padding-left: 18px;
}

.service-card ul li{
  margin-bottom: 8px;
  color: #444;
}

/* ================= TECHNICAL SOLUTIONS ================= */
.ea-solutions{
  background: #fff;
}

.solution-box{
  background: linear-gradient(180deg, #fff, #fbfbfb);
  border: 1px solid #ececec;
  border-top: 4px solid var(--primary-green);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.solution-box h5{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.solution-box p{
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}
/* Solution Box Icon */
.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(244,176,0,0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.solution-box:hover .solution-icon {
    background: var(--primary-yellow);
    color: #fff;
    transform: scale(1.08);
}
/* ===============================
   ELECTRICAL CAPABILITY CARDS
================================= */
.solution-box{
    background: #fff;
    border: 1px solid #e9ecef;
    border-top: 4px solid #1E8E3E;
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.solution-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

/* top area */
.solution-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

/* left icon */
.solution-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(244,176,0,0.15);
    color: #1E8E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

/* right small image */
.solution-thumb{
    width: 150px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f3f3f3;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.solution-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* title */
.solution-box h5{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

/* text */
.solution-box p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Hover effects */
.solution-box:hover .solution-icon{
    background: #F4B000;
    color: #fff;
}

.solution-box:hover .solution-thumb{
    transform: scale(1.04);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 767px){
    .solution-box{
        padding: 22px 18px;
    }

    .solution-top{
        margin-bottom: 16px;
    }

    .solution-icon{
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .solution-thumb{
        width: 120px;
        height: 82px;
    }

    .solution-box h5{
        font-size: 20px;
    }

    .solution-box p{
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ================= BENEFITS SECTION ================= */
.ea-benefits{
  background: var(--light-bg);
}

.benefit-list{
  margin-top: 24px;
}

.benefit-item{
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.benefit-item i{
  color: var(--primary-green);
  font-size: 22px;
  margin-top: 4px;
}

.benefit-item h6{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.benefit-item p{
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

/* ================= APPLICATIONS ================= */
.ea-applications{
  background: #fff;
}

.app-card{
  background: #fff;
  border: 1px solid #edf0ee;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.app-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.app-card i{
  font-size: 36px;
  color: var(--primary-yellow);
  margin-bottom: 14px;
}

.app-card h5{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.app-card p{
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

/* ================= CTA ================= */

.ea-cta{
  background: #f7f9f7;
  position: relative;
  padding: 70px 0;
}

.cta-box{
  /* max-width: 1050px; */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 55px 40px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border: 1px solid #edf1ed;
  position: relative;
  overflow: hidden;
}

/* Top accent line */
.cta-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 5px;
  background: linear-gradient(90deg, #1E8E3E, #F4B000);
  border-radius: 0 0 10px 10px;
  z-index: 3;
}

/* Keep main content above decoration */
.cta-box > *{
  position: relative;
  z-index: 2;
}

/* =========================
   DECORATIVE ELECTRICAL SHAPES
========================= */

/* soft circles */
.cta-shape{
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.cta-circle-1{
  width: 240px;
  height: 240px;
  top: -70px;
  right: -70px;
  background: rgba(244,176,0,0.07);
}

.cta-circle-2{
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -60px;
  background: rgba(30,142,62,0.06);
}

.cta-circle-3{
  width: 90px;
  height: 90px;
  top: 55%;
  right: 120px;
  transform: translateY(-50%);
  background: rgba(244,176,0,0.05);
}

/* circuit dots */
.circuit-dot{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 1;
}

.dot-1{
  top: 85px;
  right: 180px;
  background: #1E8E3E;
  box-shadow: 0 0 0 6px rgba(30,142,62,0.08);
}

.dot-2{
  bottom: 90px;
  left: 150px;
  background: #F4B000;
  box-shadow: 0 0 0 6px rgba(244,176,0,0.08);
}

.dot-3{
  top: 52%;
  right: 60px;
  background: #1E8E3E;
  box-shadow: 0 0 0 5px rgba(30,142,62,0.06);
}

/* circuit lines */
.circuit-line{
  position: absolute;
  background: linear-gradient(90deg, rgba(30,142,62,0.15), rgba(244,176,0,0.12));
  z-index: 0;
  border-radius: 20px;
}

.line-1{
  width: 120px;
  height: 2px;
  top: 90px;
  right: 190px;
}

.line-2{
  width: 2px;
  height: 80px;
  bottom: 100px;
  left: 154px;
  background: linear-gradient(180deg, rgba(244,176,0,0.15), rgba(30,142,62,0.12));
}

/* background tech icons */
.tech-icon{
  position: absolute;
  z-index: 0;
  color: rgba(30,142,62,0.08);
  font-size: 34px;
  line-height: 1;
  pointer-events: none;
}

.tech-1{
  top: 110px;
  left: 90px;
  color: rgba(244,176,0,0.10);
  transform: rotate(-12deg);
}

.tech-2{
  top: 140px;
  right: 110px;
  color: rgba(30,142,62,0.08);
}

.tech-3{
  bottom: 110px;
  right: 180px;
  color: rgba(244,176,0,0.09);
  transform: rotate(10deg);
}

/* =========================
   CTA ICONS
========================= */
.cta-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-icons i{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f5f8f5;
  border: 1px solid #e8ece8;
  color: #1E8E3E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cta-icons i:nth-child(2){
  color: #F4B000;
}

.cta-icons i:hover{
  transform: translateY(-4px);
  background: #fff;
}

/* =========================
   TEXT
========================= */
.cta-box p{
  max-width: 980px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* =========================
   BUTTONS
========================= */
.cta-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn{
  background: #F4B000;
  color: #111 !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  box-shadow: 0 10px 25px rgba(244,176,0,0.25);
  transition: 0.3s ease;
}

.cta-btn:hover{
  background: #1E8E3E;
  color: #fff !important;
  transform: translateY(-2px);
}

.cta-btn-outline{
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 600;
  border: 2px solid #1E8E3E;
  color: #1E8E3E;
  background: transparent;
  transition: 0.3s ease;
}

.cta-btn-outline:hover{
  background: #1E8E3E;
  color: #fff;
}

.cta-btn,
.cta-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .cta-box{
    padding: 45px 28px;
  }

  .cta-box p{
    font-size: 16px;
  }

  .cta-circle-1{
    width: 180px;
    height: 180px;
  }

  .cta-circle-2{
    width: 130px;
    height: 130px;
  }

  .tech-1,
  .tech-2,
  .tech-3,
  .circuit-line,
  .circuit-dot{
    display: none;
  }
}

@media (max-width: 767px){
  .ea-cta{
    padding: 50px 0;
  }

  .cta-box{
    padding: 35px 20px;
    border-radius: 18px;
  }

  .cta-icons{
    gap: 10px;
    margin-bottom: 18px;
  }

  .cta-icons i{
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .cta-box h2{
    font-size: 25px;
  }

  .cta-box p{
    font-size: 15px;
    line-height: 1.8;
  }

  .cta-btn,
  .cta-btn-outline{
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }

  /* Keep only one subtle circle on mobile */
  .cta-circle-1{
    width: 140px;
    height: 140px;
    top: -40px;
    right: -40px;
  }

  .cta-circle-2,
  .cta-circle-3{
    display: none;
  }
}
/* ================= End CTA ================= */

/* ================= RESPONSIVE ================= */
@media (max-width: 991px){
  .inner-hero{
    padding: 90px 0 70px;
  }

  .inner-hero h1{
    font-size: 34px;
  }

  .section-title{
    font-size: 28px;
  }
}

@media (max-width: 767px){
  .inner-hero{
    padding: 80px 0 60px;
  }

  .inner-hero h1{
    font-size: 28px;
  }

  .inner-hero p{
    font-size: 18px;
  }

  .section-title{
    font-size: 24px;
  }

  .section-subtitle{
    font-size: 16px;
  }

  .service-card,
  .solution-box,
  .app-card{
    padding: 22px 18px;
  }

  .cta-box h2{
    font-size: 28px;
  }
}