body {
  font-family: "Outfit", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

/* HERO */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background with zoom animation */
.slider-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.6s ease-in-out;
}

.slider-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity here */
}
.slider-bg.animate {
  animation: zoomEffect 6s ease;
}

@keyframes zoomEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Overlay */
.slider-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

.slider-content.show {
  opacity: 1;
  transform: translateY(0);
}
.slider-content h1 {
  font-size: 80px;
  font-weight: bold;
  background: linear-gradient(90deg, #f37321, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-content p {
  font-size: 20px;
}
.hero-btn {
  background: #ffffff;
  color: #f37321;
  padding: 10px 22px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 Hover Effect */
.hero-btn:hover {
  background: linear-gradient(135deg, #f37321, #ff9b5c);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243, 115, 33, 0.4);
}

/* ✨ Click Effect */
.hero-btn:active {
  transform: scale(0.96);
}

/* 💫 Shine Animation */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* Thumbnails */
/* Thumbnails - Vertical Right Side */
.thumbs {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column; /* 🔥 vertical */
  gap: 12px;
  z-index: 5;
}

/* Thumb style */
.thumb {
  width: 110px;
  height: 75px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.4s;
  border-radius: 6px;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb.active {
  opacity: 1;
  transform: scale(1.08);
  border: 2px solid white;
}
/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .slider-content {
    left: 20px;
    bottom: 120px;
    max-width: 90%;
  }

  .slider-content h1 {
    font-size: 35px;
  }

  .slider-content p {
    font-size: 16px;
  }

  /* Move arrows center bottom */
  .nav-arrows {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-arrows span {
    font-size: 22px;
    padding: 8px;
  }

  .thumbs {
    top: auto;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row; /* back to horizontal */
    overflow-x: auto;
    width: 90%;
  }

  .thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
  }
}

/* wrapper */
.ongoing-project-slider-wrapper {
  position: relative;
}

/* viewport */
.ongoing-project-viewport {
  overflow: hidden;
}

/* track */
.ongoing-project-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* card */
.ongoing-project-card {
  min-width: calc(50% - 10px);
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: 0.3s;
}

.ongoing-project-card h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
}

.ongoing-project-card p {
  margin: 6px 0;
  font-size: 18px;
}

/* hover */
.ongoing-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* buttons */
.ongoing-project-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f37321;
  border: none;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* desktop position */
.ongoing-project-btn.prev {
  left: -70px;
}

.ongoing-project-btn.next {
  right: -70px;
}

/* hover */
.ongoing-project-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(243, 115, 33, 0.4);
}

/* mobile */
@media (max-width: 768px) {
  .ongoing-project-slider-wrapper {
    padding: 0 30px;
  }

  .ongoing-project-card {
    min-width: 100%;
    padding: 25px 20px;
    border-radius: 10px;
  }

  .ongoing-project-card h4 {
    font-size: 18px;
  }

  .ongoing-project-card p {
    font-size: 14px;
  }

  .ongoing-project-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .ongoing-project-btn.prev {
    left: 0;
  }

  .ongoing-project-btn.next {
    right: 0;
  }
}
/* SECTION */
.about-section {
  overflow: hidden;
  background-color: #f2f8f5 !important;
}

/* TAG */
.about-tag {
  color: #f37321;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.about-title {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}

/* DESC */
.about-desc {
  color: #000;
  margin-bottom: 30px;
  text-align: justify;
  max-width: 600px;
}

/* IMAGE */
.about-img {
  width: 100%;
  border-radius: 15px;
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #f37321;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

/* RIGHT TITLE */
.about-right-title {
  font-weight: 600;
  margin-bottom: 20px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f37321;
}

/* BUTTON */
.abt-btn-gradient {
  margin-top: 20px;
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.abt-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

@media (max-width: 991px) {
  .about-left,
  .about-center,
  .about-right {
    margin-bottom: 30px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-desc {
    max-width: 100%;
  }

  .about-badge {
    width: 70px;
    height: 70px;
    font-size: 9px;
    bottom: -20px;
  }

  .about-right-title {
    font-size: 18px;
  }
}

/* EXTRA SMALL */
@media (max-width: 576px) {
  .about-title {
    font-size: 26px;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-badge {
    width: 60px;
    height: 60px;
    font-size: 8px;
  }
}

/* Service */
.service-section {
  width: 100%;
  padding: 60px 0;
}

/* grid */
.service-grid {
  display: flex;
  height: 65vh;
}

/* card */
.service-card {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}

/* overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* hover expand (desktop only) */
.service-card:hover {
  flex: 2;
}

/* content */
.overlay {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.overlay h3 {
  font-size: 22px;
  font-weight: 600;
}

/* hover content */
.hover-content {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.service-card:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}

.hover-content p {
  font-size: 14px;
  margin: 8px 0;
}

/* arrow */
.service-arrow {
  display: inline-block;
  background: linear-gradient(135deg, #f37321, #ffffff);
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .service-section {
    padding: 5px 15px;
  }

  /* remove fixed height */
  .service-grid {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  /* card spacing */
  .service-card {
    height: 200px;
    flex: none;
    border-radius: 12px;
    overflow: hidden;
  }

  /* remove hover expand */
  .service-card:hover {
    flex: none;
  }

  /* content spacing */
  .overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  /* text size */
  .overlay h3 {
    font-size: 18px;
  }

  /* show content always */
  .hover-content {
    opacity: 1;
    transform: none;
  }

  .hover-content p {
    font-size: 13px;
    margin: 5px 0;
  }

  /* arrow smaller */
  .service-arrow {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-decoration: none;
  }
}
/* ================= WHY CHOOSE US SECTION ================= */

/* IMAGE */
.why-choose-us-img {
  max-width: 100%;
}

/* TAG */
.why-choose-us-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 10px;
}

/* TITLE */
.why-choose-us-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* DESC */
.why-choose-us-desc {
  color: #000;
  max-width: 700px;
  line-height: 1.6;
}

/* BOX */
.why-choose-us-box {
  margin-top: 20px;
}

/* HEADING */
.why-choose-us-heading {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

/* LIST */
.why-choose-us-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-us-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

/* BULLET */
.why-choose-us-box ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #000;
  font-size: 8px;
}

/* LINK (if used later) */
.why-choose-us-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  gap: 10px;
}

.why-choose-us-link span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  transition: 0.3s;
}

.why-choose-us-link:hover span {
  transform: translateX(5px);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 50px 15px;
    text-align: center;
  }

  /* IMAGE */
  .why-choose-us-img {
    max-width: 85%;
    margin-bottom: 25px;
  }

  /* TITLE */
  .why-choose-us-title {
    font-size: 28px;
    line-height: 1.3;
  }

  /* DESCRIPTION */
  .why-choose-us-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 20px;
  }

  /* STACK FIX */
  .why-choose-us-section .row > div {
    width: 100%;
  }

  /* BOX */
  .why-choose-us-box {
    margin-top: 25px;
    text-align: left; /* important */
  }

  /* HEADING */
  .why-choose-us-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* LIST */
  .why-choose-us-box ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  /* SPACING BETWEEN BLOCKS */
  .why-choose-us-section .row {
    gap: 20px;
  }
}

.client-testimonial-section {
  background: #f2f8f5 !important;
}

.client-testimonial-section .container,
.client-testimonial-section .row {
  overflow: visible;
}

.client-testimonial-wrapper {
  overflow: hidden;
}

.client-testimonial-track {
  display: flex;
  gap: 30px;
  padding-top: 50px;
  transition: transform 0.5s ease-in-out;
}

/* SHOW EXACTLY 3 CARDS */
.client-testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  background: #fff;
  border-radius: 15px;
  padding: 80px 30px 30px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.client-testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;

  padding: 4px; /* border thickness */

  background: linear-gradient(135deg, #1a7f37, #34c759);
}

.client-testimonial-stars {
  color: #ffb400;
  margin-top: 10px;
  font-size: 18px;
}

.client-testimonial-text {
  margin: 20px 0;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.client-testimonial-card hr {
  margin: 20px auto;
  width: 70%;
  opacity: 0.3;
}

.client-testimonial-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.client-testimonial-card span {
  color: #f37321;
}

.client-testimonial-nav {
  text-align: center;
  margin-top: 40px;
}

.client-testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #f37321;
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.client-testimonial-nav button:hover {
  box-shadow: 0 10px 25px rgba(243, 115, 33, 0.4);
}

/* TABLET - 2 CARDS */
@media (max-width: 992px) {
  .client-testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

/* MOBILE - 1 CARD */
@media (max-width: 576px) {
  .client-testimonial-card {
    flex: 0 0 100%;
    padding: 70px 20px 25px;
  }

  .client-testimonial-img {
    width: 70px;
    height: 70px;
    top: -35px;
  }
}
/* Form */

.form-bg {
  border-radius: 12px;
  background: linear-gradient(135deg, #1a7f37, #34c759);
}
@media (max-width: 768px) {
  .form-bg {
    padding: 20px;
  }
}
label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.solar-form input,
.solar-form select,
.solar-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  outline: none;
}

.solar-form input:focus,
.solar-form select:focus,
.solar-form textarea:focus {
  border-color: #f37321;
}

.submit-btn {
  background: #fff;
  color: #f37321;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}

/* Page Header */

.page-header {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7),
    transparent
  );
}

.page-header-content {
  position: relative;
  color: #fff;
}
.page-header-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f37321, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

.page-header-links {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .page-header {
    height: 70vh;
  }

  .page-header-content h1 {
    font-size: 32px;
  }

  .page-header-content p {
    font-size: 14px;
  }
}

/* About Us  */
.solar-row {
  display: flex;
  align-items: stretch;
}

.solar-col {
  display: flex;
}

/* CONTENT */
.solar-vission-mission-values-box {
  background: #f2f8f5 !important;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* TEXT */
.solar-vission-mission-values-box h3 {
  font-size: 28px;
  color: #f37321;
  margin-bottom: 15px;
}

.solar-vission-mission-values-box p {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* LIST */
.solar-vission-mission-values-box ul {
  list-style: none;
  padding: 0;
}

.solar-vission-mission-values-box li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #000;
}

.solar-vission-mission-values-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
}

/* IMAGE */
.solar-vission-mission-values-img {
  width: 100%;
  height: 100%;
}

.solar-vission-mission-values-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORCE BOTH SIDES SAME HEIGHT */
.solar-row > .solar-col {
  flex: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .solar-row {
    flex-direction: column;
  }

  .solar-col {
    display: block;
  }

  .solar-vission-mission-values-box {
    padding: 40px;
  }

  .solar-vission-mission-values-img {
    height: 300px;
  }
}

/* FAQ */
.solar-faq-section {
  background: #f2f8f5 !important;
}

/* CARD */
.solar-faq-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER EFFECT */
.solar-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ACTIVE BORDER */
.solar-faq-item.active {
  border-left: 4px solid #f37321;
}

/* QUESTION */
.solar-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.solar-faq-icon {
  width: 30px;
  height: 30px;
  background: #e9f7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.solar-faq-icon span {
  font-size: 18px;
  transition: 0.3s;
}

/* ACTIVE ICON */
.solar-faq-item.active .solar-faq-icon {
  background: #f37321;
  color: #fff;
}

.solar-faq-item.active .solar-faq-icon span {
  transform: rotate(45deg);
}

.solar-faq-answer {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 20px;
}

.solar-faq-answer p {
  padding-bottom: 20px;
  color: #000;
  line-height: 1.6;
}

/* ACTIVE */
.solar-faq-item.active .solar-faq-answer {
  transform: scaleY(1);
  opacity: 1;
  height: auto;
}

.about-page-testimonial-section .container,
.about-page-testimonial-section .row {
  overflow: visible;
}

.about-page-testimonial-wrapper {
  overflow: hidden;
}

.about-page-testimonial-track {
  display: flex;
  gap: 30px;
  padding-top: 50px;
  transition: transform 0.5s ease-in-out;
}

/* SHOW EXACTLY 3 CARDS */
.about-page-testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  background: linear-gradient(135deg, #1a7f37, #34c759);
  border-radius: 15px;
  padding: 80px 30px 30px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.about-page-testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;

  padding: 4px;
  background: linear-gradient(135deg, #1a7f37, #34c759);
}

.about-page-testimonial-stars {
  color: #ffb400;
  margin-top: 10px;
  font-size: 18px;
}

.about-page-testimonial-text {
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.about-page-testimonial-card hr {
  margin: 20px auto;
  width: 70%;
  opacity: 0.8;
  color: #fff;
}

.about-page-testimonial-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #fff;
}

.about-page-testimonial-card span {
  color: #fff;
}

.about-page-testimonial-nav {
  text-align: center;
  margin-top: 40px;
}

.about-page-testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #f37321;
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.about-page-testimonial-nav button:hover {
  box-shadow: 0 10px 25px rgba(243, 115, 33, 0.4);
}

/* TABLET */
@media (max-width: 992px) {
  .about-page-testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .about-page-testimonial-card {
    flex: 0 0 100%;
    padding: 70px 20px 25px;
  }

  .about-page-testimonial-img {
    width: 70px;
    height: 70px;
    top: -35px;
  }
}

/* Footer */
.footer-bg-wrapper {
  position: relative;
  background: url("/images/Footer-Image.webp") center/cover no-repeat;
}

.footer-bg-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, #0d161c 68.4%, #0d161c00 113.97%);
  z-index: 1;
}

/* CTA */
.footer-cta {
  position: relative;
  background: transparent;
  padding: 50px 0 50px;
  text-align: center;
  color: #fff;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.footer-cta-top {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-cta-top a {
  color: #fff;
  text-decoration: none;
}

.footer-cta-top a:hover {
  color: #f37321;
}

.footer-cta h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.footer-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

.about-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #f37321;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.about-cta-btn:hover {
  color: #2e7d32;
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

/* FOOTER */
.solar-footer {
  position: relative;
  background: transparent;
  padding: 30px 0;
  color: #fff;
  margin-top: -60px;
}

.solar-footer .container {
  position: relative;
  z-index: 2;
}

/* REMOVE GRID (Bootstrap used) */
.solar-footer-row {
  margin-top: 40px;
}

/* HEADINGS */
.solar-footer-col h5 {
  color: #f37321;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* TEXT */
.solar-footer-col p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  color: #fff;
}

/* LINKS GLOBAL FIX */
.solar-footer a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.solar-footer a:hover {
  color: #f37321;
  letter-spacing: 1.1px;
}

/* LIST */
.solar-footer-col ul {
  list-style: none;
  padding: 0;
}

.solar-footer-col ul li {
  margin-bottom: 12px;
  opacity: 0.9;
  transition: 0.3s;
}

/* ICON SPACING */
.solar-footer-col ul li i {
  margin-right: 8px;
}

/* SOCIAL */
.solar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.solar-social a:hover {
  background: #f37321;
  color: #fff;
  transform: translateY(-3px);
}

/* LOGO */
.footer-logo img {
  height: 120px;
  transition: 0.4s;
}

.footer-logo img:hover {
  transform: scale(1.1) rotate(3deg);
}

/* MAP */
.solar-footer iframe {
  border-radius: 10px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .footer-cta {
    padding: 80px 20px 100px;
  }

  .footer-cta h2 {
    font-size: 24px;
  }
}

.main-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.main-service-card {
  background: linear-gradient(135deg, #1a7f37, #34c759);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.main-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.main-service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.main-service-content {
  text-align: center;
  padding: 60px 20px 25px;
  position: relative;
}

/* ICON */
.main-service-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -90px auto 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-size: 38px;
  color: #34c759;
}

/* TITLE */
.main-service-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

/* TEXT */
.main-service-content p {
  color: #fff;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .main-service-grid {
    grid-template-columns: 1fr;
  }
}

/* IMAGE */
.services-inner-image {
  margin-bottom: 30px;
}

.services-inner-image img {
  width: 100%;
  border-radius: 12px;
  height: 70vh;
  object-fit: cover;
}

.services-inner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.services-inner-desc {
  line-height: 1.7;
  color: #000;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-inner-title {
    font-size: 26px;
  }
}

/* Section */
.solar-benefits-section {
  position: relative;
}

/* Header */
.solar-benefits-header {
  position: relative;
}

.solar-benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d1b2a;
}

.solar-benefits-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(90deg, #f37321, #fff);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 0;
}

.solar-benefits-description {
  color: #000;
  margin-top: 10px;
  line-height: 1.7;
}

/* List */
.solar-benefits-list {
  list-style: none;
  padding: 0;
}

.solar-benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #0d1b2a;
}

.solar-benefits-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #f37321;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 8px;
}

/* Images */
.solar-benefits-img-box {
  border-radius: 20px;
  overflow: hidden;
}

.solar-benefits-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.projects-page-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background: linear-gradient(135deg, #1a7f37, #34c759);
}

.projects-page-card:hover {
  transform: translateY(-5px);
}

.projects-page-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.projects-page-category {
  color: #fff;
  margin-bottom: 10px;
}

.projects-page-title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.projects-page-text {
  color: #fff;
}

.projects-page-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.projects-page-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

/* TOP TEXT */
.project-inner-page-tag {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.project-inner-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-inner-page-text {
  color: #000;
  line-height: 1.7;
  margin-bottom: 15px;
}

.project-inner-page-btn {
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  text-decoration: none;
}

.project-inner-page-btn:hover {
  background: linear-gradient(135deg, #1a7f37, #34c759);
  transform: translateY(-2px) scale(1.07);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

.project-inner-page-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.project-inner-page-features {
  margin-top: 20px;
  margin-bottom: 25px;
}
.project-inner-page-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-inner-page-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  color: #000;
  line-height: 1.7;
  font-weight: 500;
}

.project-inner-page-icon {
  color: #f37321;
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.project-inner-page-feature-list li:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}

.project-inner-page-feature-list li:hover .project-inner-page-icon {
  transform: scale(1.1);
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .project-inner-page-feature-list li {
    font-size: 14px;
  }

  .project-inner-page-icon {
    font-size: 18px;
  }
}

.solar-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.solar-links ul li {
  margin-right: 25px;
  margin-bottom: 10px;
}
.footer-copyright {
  border-top: 2px solid #fff;
  padding-top: 30px;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.case-study-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s ease;
}

.case-study-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
}

.case-study-card-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  background-color: #f37321;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.case-study-card-title {
  font-size: 22px;
  font-weight: 600;
}
.case-study-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.case-study-card-link:hover {
  color: #f37321;
}

.case-study-card-arrow {
  display: inline-block;
  transition: 0.3s;
}

.case-study-card-link:hover .case-study-card-arrow {
  transform: translateX(5px);
}

/* Full Card Click */
.case-study-card-full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hover Effects */
.case-study-card:hover .case-study-card-img {
  transform: scale(1.1);
}

.case-study-card:hover .case-study-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.case-study-inner-container {
  max-width: 1200px;
}

.case-study-inner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f37321, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-study-inner-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.case-study-inner-heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #f37321;
}

.case-study-inner-text {
  color: #000;
}

.case-study-inner-list {
  padding-left: 18px;
  color: #000;
}

.case-study-inner-list li {
  margin-bottom: 8px;
}

.case-study-inner-sidebar {
  background: linear-gradient(135deg, #1a7f37, #34c759);
  padding: 20px;
  border-radius: 10px;
}

.case-study-inner-side-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  position: relative;
  color: #fff;
}

.case-study-inner-side-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #f37321;
  margin-top: 5px;
}

/* Sidebar List */
.case-study-inner-side-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.case-study-inner-side-list li {
  margin-bottom: 6px;
  color: #fff;
}

/* Button */
.case-study-inner-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.case-study-inner-btn:hover {
  color: #000;
  transform: translateY(-10px);
  box-shadow:
    0 15px 40px rgba(243, 115, 33, 0.4),
    0 0 20px rgba(243, 115, 33, 0.6);
}

/* Blogs */

.blog-overview-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-overview-card:hover {
  transform: translateY(-5px);
}

.blog-overview-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-overview-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-overview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-overview-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-overview-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.blog-overview-badge {
  background: #e6f4ea;
  color: #2ecc71;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.blog-overview-title {
  font-size: 22px;
  font-weight: 600;
  color: #f37321;
  margin-bottom: 10px;
}

.blog-overview-desc {
  color: #000;
  margin-bottom: 15px;

  flex-grow: 1;
}

.blog-overview-link {
  text-decoration: none;
  font-weight: 500;
  color: #000;
  margin-top: auto;
}

.blog-overview-link:hover {
  color: #f37321;
}

.blog-overview-pagination button {
  margin: 5px;
  padding: 8px 20px;
  border: none;
  background: #f37321;
  border-radius: 8px;
  cursor: pointer;
}

.blog-overview-pagination button.active {
  background: #2e7d32;
  color: #fff;
}

.blog-inner-container {
  max-width: 900px;
}

.blog-inner-main-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-inner-content {
  color: #000;
}

.blog-inner-text {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #000;
}

.blog-inner-highlight {
  color: #f37321;
  margin-bottom: 15px;
  font-size: 18px;
}

.blog-inner-heading {
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  position: relative;
  background: linear-gradient(135deg, #f37321, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-inner-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f37321;
  display: block;
  margin-top: 6px;
}

.blog-inner-list {
  padding-left: 18px;
  margin-bottom: 20px;
}

.blog-inner-list li {
  margin-bottom: 8px;
  position: relative;
}

.blog-inner-list li::marker {
  color: #f37321;
}

.blog-inner-mid-img {
  width: 65%;
  border-radius: 10px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .blog-inner-mid-img {
    width: 100%;
  }
}

.solar-contact-page-card {
  background: linear-gradient(135deg, #1a7f37, #34c759);
  color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: 0.3s ease;
}

/* Hover effect */
.solar-contact-page-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.solar-contact-page-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Heading */
.solar-contact-page-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.solar-contact-page-card p {
  font-size: 17px;
  margin: 0;
}
/* Remove link style */
.solar-contact-page-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* Make full card clickable */
.solar-contact-page-link .solar-contact-page-card {
  width: 100%;
  height: 100%;
}

/* Hover effect */
.solar-contact-page-link:hover .solar-contact-page-card {
  transform: translateY(-5px);
}
