.elementor-102 .elementor-element.elementor-element-5234efa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-d0dacac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-f468000{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-4711218{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-eba1d3d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-14087be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-02c20ce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-102 .elementor-element.elementor-element-c4cbbd4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f2c2cb8 */.hero-slider-new {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,21,35,0.85),
    rgba(11,28,45,0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero-content h1 span {
  color: #7bc043;
}

.hero-content p {
  font-size: 18px;
  max-width: 760px;
  opacity: 0.9;
  margin-bottom: 40px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-main {
  padding: 16px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f6a623, #7bc043);
  color: #0b1c2d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}

.btn-outline {
  padding: 16px 38px;
  border-radius: 40px;
  border: 2px solid #7bc043;
  color: #7bc043;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #7bc043;
  color: #0b1c2d;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-content p {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3922e92 */.about-intro {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.06);
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1c2d;
}

.about-content h2 span {
  color: #7bc043;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f6a623, #7bc043);
  color: #0b1c2d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-intro {
    padding: 70px 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-be32896 */.solar-services {
  padding: 120px 0;
  background: #f5f7fa;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.services-heading {
  text-align: center;
  margin-bottom: 70px;
}

.services-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
}

.services-heading h2 span {
  color: #7bc043;
}

.services-heading p {
  max-width: 600px;
  margin: 15px auto 0;
  color: #555;
  font-size: 16px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0b1c2d;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button */
.service-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #7bc043;
  transition: 0.3s;
}

.service-btn:hover {
  color: #f5b400;
}

/* Bottom Button */
.services-bottom-btn {
  text-align: center;
  margin-top: 50px;
}

.explore-btn {
  padding: 14px 35px;
  border-radius: 50px;
  background: linear-gradient(45deg, #f5b400, #7bc043);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.explore-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-706a830 */.what-we-do {
  padding: 110px 0;
  background: linear-gradient(135deg, #0b1c2d, #081523);
  font-family: 'Poppins', sans-serif;
}

.wwd-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* CONTENT */
.wwd-content {
  flex: 1;
  color: #ffffff;
}

.wwd-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(123,192,67,0.15);
  color: #7bc043;
}

.wwd-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.wwd-content h2 {
  color: #ffffff;
}
.wwd-content h2 span {
  color: #7bc043;
}

.wwd-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
}

/* LIST */
.wwd-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.wwd-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

/* BUTTON */
.wwd-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f6a623, #7bc043);
  color: #0b1c2d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
}

.wwd-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}

/* IMAGE */
.wwd-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.wwd-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.wwd-image:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wwd-wrap {
    flex-direction: column;
    gap: 50px;
  }

  .wwd-content h2 {
    font-size: 32px;
  }

  .what-we-do {
    padding: 80px 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d430d5 *//* WHITE WHY SECTION */
.why-white {
  padding: 90px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
}

.section-header h2 span {
  color: #7bc043;
}

.section-header p {
  font-size: 17px;
  color: #555;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* BOX */
.why-box {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.45s ease;
}

/* Hover lift */
.why-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* Background Image */
.why-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Active state shows image */
.why-box.active::after {
  opacity: 0.18;
}

/* Icon */
.icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}

/* Icon hide on click */
.why-box.active .icon {
  opacity: 0;
  transform: scale(0);
}

/* Text */
.why-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0b1c2d;
  position: relative;
  z-index: 2;
}

.why-box p {
  font-size: 15px;
  color: #444;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-162916d *//* PROJECTS & IMPACT SECTION */
.projects-impact {
  padding: 100px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
}

.section-header h2 span {
  color: #7bc043;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* STATS */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-box {
  text-align: center;
  padding: 35px 20px;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.stat-box h3 {
  font-size: 36px;
  color: #f6a623;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  color: #555;
}

/* PROJECT GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* PROJECT CARD */
.project-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: all 0.45s ease;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-overlay h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 4px;
}

.project-overlay span {
  color: #7bc043;
  font-size: 14px;
}

/* HOVER */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .project-card img {
    height: 220px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5bb5921 */.testimonial-section-fixed {
  padding: 100px 0;
  background: linear-gradient(135deg, #081523, #0b1c2d);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  color: #fff;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 42px;
  font-weight: 700;
}
.testimonial-header h2  {
  color: #ffffffff;
}
.testimonial-header h2 span {
  color: #7bc043;
}

.testimonial-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* SLIDER */
.testimonial-slider-fixed {
  width: 100%;
  overflow: hidden;
}

.testimonial-track-fixed {
  display: flex;
  gap: 30px;
  animation: slideTestimonial 28s linear infinite;
}

/* CARD */
.testimonial-card-fixed {
  min-width: 33.333%;
  background: rgba(255,255,255,0.08);
  padding: 32px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.testimonial-card-fixed:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.14);
}

.testimonial-card-fixed p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card-fixed h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-card-fixed span {
  font-size: 13px;
  color: #7bc043;
}

/* ANIMATION */
@keyframes slideTestimonial {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-card-fixed {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .testimonial-card-fixed {
    min-width: 100%;
  }

  .testimonial-header h2 {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2afa3b1 */.lead-section {
  padding: 110px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.lead-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.lead-content {
  flex: 1;
}

.lead-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(123,192,67,0.15);
  color: #7bc043;
  margin-bottom: 14px;
}

.lead-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 18px;
}

.lead-content h2 span {
  color: #7bc043;
}

.lead-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 22px;
}

.lead-points {
  list-style: none;
  padding: 0;
}

.lead-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

/* FORM */
.lead-form {
  flex: 1;
  background: #f8fafc;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

.form-group textarea {
  min-height: 110px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #7bc043;
  box-shadow: 0 0 0 3px rgba(123,192,67,0.15);
}

/* BUTTON */
.form-btn {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #f6a623, #7bc043);
  color: #0b1c2d;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lead-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .lead-content h2 {
    font-size: 32px;
  }

  .lead-section {
    padding: 80px 0;
  }
}/* End custom CSS */