/* assets/styles.css */
:root {
  --brand: #0d6efd;
  --dark: #0b132b;
  --green: #3da541;
  --yellow: #ffd34d;
  --yellow-hover: #ffc72b;
  --sky: #f2f9ff;
}

/* Page Loader */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.loader-logo {
  width: clamp(90px, 24vw, 140px);
  height: auto;
}

.loader-spinner {
  width: 3rem;
  height: 3rem;
}

.wheel-and-hamster {
  --dur: 1s;
  position: relative;
  width: 12em;
  height: 12em;
  font-size: 14px;
}

.wheel,
.hamster,
.hamster div,
.spoke {
  position: absolute;
}

.wheel,
.spoke {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel {
  background: radial-gradient(100% 100% at center,hsla(0,0%,60%,0) 47.8%,hsl(0,0%,60%) 48%);
  z-index: 2;
}

.hamster {
  animation: hamster var(--dur) ease-in-out infinite;
  top: 50%;
  left: calc(50% - 3.5em);
  width: 7em;
  height: 3.75em;
  transform: rotate(4deg) translate(-0.8em,1.85em);
  transform-origin: 50% 0;
  z-index: 1;
}

.hamster__head {
  animation: hamsterHead var(--dur) ease-in-out infinite;
  background: hsl(30,90%,55%);
  border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
  box-shadow: 0 -0.25em 0 hsl(30,90%,80%) inset,
    0.75em -1.55em 0 hsl(30,90%,90%) inset;
  top: 0;
  left: -2em;
  width: 2.75em;
  height: 2.5em;
  transform-origin: 100% 50%;
}

.hamster__ear {
  animation: hamsterEar var(--dur) ease-in-out infinite;
  background: hsl(0,90%,85%);
  border-radius: 50%;
  box-shadow: -0.25em 0 hsl(30,90%,55%) inset;
  top: -0.25em;
  right: -0.25em;
  width: 0.75em;
  height: 0.75em;
  transform-origin: 50% 75%;
}

.hamster__eye {
  animation: hamsterEye var(--dur) linear infinite;
  background-color: hsl(0,0%,0%);
  border-radius: 50%;
  top: 0.375em;
  left: 1.25em;
  width: 0.5em;
  height: 0.5em;
}

.hamster__nose {
  background: hsl(0,90%,75%);
  border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
  top: 0.75em;
  left: 0;
  width: 0.2em;
  height: 0.25em;
}

.hamster__body {
  animation: hamsterBody var(--dur) ease-in-out infinite;
  background: hsl(30,90%,90%);
  border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
  box-shadow: 0.1em 0.75em 0 hsl(30,90%,55%) inset,
    0.15em -0.5em 0 hsl(30,90%,80%) inset;
  top: 0.25em;
  left: 2em;
  width: 4.5em;
  height: 3em;
  transform-origin: 17% 50%;
  transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
  clip-path: polygon(0 0,100% 0,70% 80%,60% 100%,0% 100%,40% 80%);
  top: 2em;
  left: 0.5em;
  width: 1em;
  height: 1.5em;
  transform-origin: 50% 0;
}

.hamster__limb--fr {
  animation: hamsterFRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 80%,hsl(0,90%,75%) 80%);
  transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
  animation: hamsterFLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 80%,hsl(0,90%,85%) 80%);
  transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
  border-radius: 0.75em 0.75em 0 0;
  clip-path: polygon(0 0,100% 0,100% 30%,70% 90%,70% 100%,30% 100%,40% 90%,0% 30%);
  top: 1em;
  left: 2.8em;
  width: 1.5em;
  height: 2.5em;
  transform-origin: 50% 30%;
}

.hamster__limb--br {
  animation: hamsterBRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,80%) 90%,hsl(0,90%,75%) 90%);
  transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
  animation: hamsterBLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30,90%,90%) 90%,hsl(0,90%,85%) 90%);
  transform: rotate(-25deg);
}

.hamster__tail {
  animation: hamsterTail var(--dur) linear infinite;
  background: hsl(0,90%,85%);
  border-radius: 0.25em 50% 50% 0.25em;
  box-shadow: 0 -0.2em 0 hsl(0,90%,75%) inset;
  top: 1.5em;
  right: -0.5em;
  width: 1em;
  height: 0.5em;
  transform: rotate(30deg) translateZ(-1px);
  transform-origin: 0.25em 0.25em;
}

.spoke {
  animation: spoke var(--dur) linear infinite;
  background: radial-gradient(100% 100% at center,hsl(0,0%,60%) 4.8%,hsla(0,0%,60%,0) 5%),
    linear-gradient(hsla(0,0%,55%,0) 46.9%,hsl(0,0%,65%) 47% 52.9%,hsla(0,0%,65%,0) 53%) 50% 50% / 99% 99% no-repeat;
}

/* Loader Animations */
@keyframes hamster {
  from, to {
    transform: rotate(4deg) translate(-0.8em,1.85em);
  }
  50% {
    transform: rotate(0) translate(-0.8em,1.85em);
  }
}

@keyframes hamsterHead {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(8deg);
  }
}

@keyframes hamsterEye {
  from, 90%, to {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0);
  }
}

@keyframes hamsterEar {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(12deg);
  }
}

@keyframes hamsterBody {
  from, 25%, 50%, 75%, to {
    transform: rotate(0);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-2deg);
  }
}

@keyframes hamsterFRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(50deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-30deg) translateZ(-1px);
  }
}

@keyframes hamsterFLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-30deg);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(50deg);
  }
}

@keyframes hamsterBRLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(-60deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(20deg) translateZ(-1px);
  }
}

@keyframes hamsterBLLimb {
  from, 25%, 50%, 75%, to {
    transform: rotate(20deg);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(-60deg);
  }
}

@keyframes hamsterTail {
  from, 25%, 50%, 75%, to {
    transform: rotate(30deg) translateZ(-1px);
  }
  12.5%, 37.5%, 62.5%, 87.5% {
    transform: rotate(10deg) translateZ(-1px);
  }
}

@keyframes spoke {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-1turn);
  }
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
}
.hero-cta {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
}
/* Smart City hero */
.hero-smart-city { background: var(--sky); position: relative; }
.hero-smart-city .title-block { font-weight: 800; line-height: 1.05; }
.hero-smart-city .title-block .highlight { color: var(--green); }
.hero-smart-city .hero-illustration { max-height: 460px; width: 100%; height: auto; display: flex; align-items: center; justify-content: center; }
.hero-smart-city .hero-illustration svg { max-width: 100%; max-height: 460px; width: auto; height: auto; }
.btn-cta-yellow { background: var(--yellow); color: #1d1d1f; font-weight: 600; padding: 0.6rem 1.1rem; box-shadow: 0 10px 30px rgba(255, 211, 77, .45); border: none; }
.btn-cta-yellow:hover { background: var(--yellow-hover); color: #1d1d1f; }

/* Glassmorphism Navbar */
.navbar-glass {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.navbar-glass .navbar-brand {
  position: relative;
  z-index: 2;
}

.navbar-glass .nav-link {
  color: rgba(29, 29, 31, 0.85);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-glass .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--green));
  transition: width 0.3s ease;
}

.navbar-glass .nav-link:hover {
  color: var(--brand);
}

.navbar-glass .nav-link:hover::after {
  width: 80%;
}

.navbar .phone-text { white-space: nowrap; }
.section-title { font-weight: 800; }
.lead-sm { font-size: 1.05rem; }
.icon-circle { width: 48px; height: 48px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:#eef4ff; color: var(--brand) }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(0,0,0,.08) }
.client-logos img { max-height: 56px; filter: grayscale(100%); opacity:.85; transition: transform .2s ease, filter .2s ease, opacity .2s ease; }
.client-logos .logo-card { background: #fff; border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.client-logos .logo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,.10); }
.client-logos .logo-card:hover img { filter: none; opacity: 1; transform: scale(1.04); }
.progress.thin { height: 6px; }
footer .link-light:hover { text-decoration: underline; }
.object-fit-cover { object-fit: cover; }

/* Colorful section title */
.gradient-title { 
  background: linear-gradient(90deg, var(--brand), var(--green), #f39c12);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* On-scroll reveal animations */
.reveal { opacity: 0; transform: translateY(8px); }
.reveal.start { animation: var(--anim, fade-up) var(--dur, .7s) cubic-bezier(.2,.8,.2,1) var(--delay, 0ms) both; }

@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes slide-left { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@keyframes slide-right { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }
@keyframes zoom-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes rotate-in { from { opacity: 0; transform: rotate(-3deg) scale(.98); } to { opacity: 1; transform: rotate(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.start { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Clients timeline (vertical center line with alternating cards) */
.clients-timeline { position: relative; padding: 0 0 1rem; }
.clients-timeline .timeline-rail { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: #e9ecef; transform: translateX(-50%); border-radius: 4px; overflow: hidden; }
.clients-timeline .timeline-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%; background: linear-gradient(180deg, var(--brand), var(--green)); border-radius: 4px; }
.clients-timeline .timeline-items { position: relative; display: flex; flex-direction: column; align-items: center; }
.clients-timeline .timeline-item { position: relative; display: flex; width: 100%; min-height: 100px; align-items: center; margin: 1.5rem 0; justify-content: center; }
.clients-timeline .timeline-item.left { justify-content: flex-end; padding-right: calc(50% + 47px); }
.clients-timeline .timeline-item.right { justify-content: flex-start; padding-left: calc(50% + 47px); }
.clients-timeline .timeline-item.left .timeline-card { max-width: 280px; }
.clients-timeline .timeline-item.right .timeline-card { max-width: 280px; }
.clients-timeline .timeline-item.left .timeline-card { margin-left: 0; margin-right: -28px; max-width: 50%; text-align: right; }
.clients-timeline .timeline-item.right .timeline-card { margin-right: 0; margin-left: -28px; max-width: 50%; text-align: left; }
.clients-timeline .timeline-dot { position: absolute; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 4px solid var(--brand); transform: translate(-50%, -50%); top: 50%; box-shadow: 0 0 0 4px rgba(13,110,253,.08); }
.clients-timeline .timeline-card { background: #fff; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.07); padding: 1.5rem 2rem; }
.clients-timeline .timeline-card img { max-height: 110px; width: auto; height: auto; object-fit: contain; }

/* About section feature icons */
.feature-icon-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(61, 165, 65, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.feature-item:hover .feature-icon-wrapper::before {
  opacity: 1;
}

.feature-item:hover .feature-icon-img {
  transform: scale(1.1) rotate(5deg);
}

.feature-item:hover h5 {
  color: var(--brand);
}

.tracking-wide {
  letter-spacing: 0.15em;
}

#about h5 {
  color: #1a1a1a;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

#about .text-secondary {
  color: #6c757d !important;
  line-height: 1.6;
}

/* Featured Solutions Section */
#featured-solutions {
  background: #f8f9fa;
  position: relative;
}

.solution-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--green);
}

.solution-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.1);
}

.solution-content {
  padding: 24px 20px;
}

.solution-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.solution-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
  color: var(--green);
}

/* Carousel Controls */
#solutionsCarousel {
  position: relative;
  padding: 0 60px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--green);
  box-shadow: 0 6px 24px rgba(61, 165, 65, 0.3);
}

.carousel-control-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-icon i {
  font-size: 24px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-icon i,
.carousel-control-next:hover .carousel-control-icon i {
  color: #ffffff;
}

/* Custom Indicators */
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  padding: 0;
}

.carousel-indicators-custom button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  border: none;
  padding: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
  width: 32px;
  border-radius: 6px;
  background: var(--green);
}

.carousel-indicators-custom button:hover {
  background: var(--green);
  opacity: 0.7;
}

/* Carousel Animation */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Sustainable Future Section */
#sustainable-future {
  background: #ffffff;
  position: relative;
}

.sustainable-content h2 {
  line-height: 1.2;
  color: #1a1a1a;
}

.sustainable-points {
  margin-top: 2rem;
}

.sustainable-point {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
  position: relative;
  padding-left: 0;
}

.point-text {
  display: block;
}

.btn-call {
  background: #76b82a;
  color: #ffffff;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(118, 184, 42, 0.3);
}

.btn-call:hover {
  background: #68a325;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(118, 184, 42, 0.4);
}

.btn-call i {
  font-size: 1.1rem;
}

/* Image Styling */
.sustainable-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustainable-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Statistics Cards */
.stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-plus {
  color: #76b82a;
  font-size: 4rem;
  font-weight: 800;
  margin-left: 4px;
}

.stat-label {
  font-size: 1rem;
  color: #9e9e9e;
  font-weight: 400;
  text-transform: capitalize;
}

/* Counter Animation */
.counter {
  display: inline-block;
}

/* Why SHRI SOLAR Stands Out Section */
#stands-out {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5570 100%);
  position: relative;
  margin-top: 80px;
}

/* Wavy Top Border */
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
  background-size: cover;
  background-position: top;
  pointer-events: none;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

/* Progress Bars */
.progress-bars {
  margin-top: 3rem;
}

.progress-item {
  margin-bottom: 2rem;
}

.progress-label {
  color: #76b82a;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
}

.progress-percentage {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.custom-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.custom-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #76b82a 0%, #9ed12e 100%);
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease-out;
  box-shadow: 0 0 10px rgba(118, 184, 42, 0.5);
}

.custom-progress-bar.animated {
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(118, 184, 42, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(118, 184, 42, 0.8);
  }
}

/* Feature Highlight Cards */
.feature-cards {
  display: flex;
  flex-direction: column;
}

.feature-highlight-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-icon-circle {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: #76b82a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon-circle i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-highlight-card:hover .feature-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(118, 184, 42, 0.4);
}

.feature-highlight-content {
  flex: 1;
}

.feature-highlight-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-highlight-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Testimonials Section */
#testimonials {
  background: #f8f9fa;
}

.testimonial-animation-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.testimonial-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-illustration svg {
  max-width: 100%;
  height: auto;
}

.testimonial-content .lead {
  font-size: 1rem;
  line-height: 1.7;
}

/* Testimonial Box */
.testimonial-box {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  min-height: 200px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  font-size: 1.1rem;
  color: #ffc107;
}

.testimonial-stars i.bi-star {
  color: #e0e0e0;
}

.testimonial-box-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

.testimonial-box-author {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Testimonial Carousel Indicators */
.testimonial-indicators {
  position: relative;
  margin-top: 30px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  border: none;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonial-indicators button.active {
  width: 32px;
  border-radius: 6px;
  background: var(--green);
}

.testimonial-indicators button:hover {
  background: var(--green);
  opacity: 0.7;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  border-left: 4px solid var(--green);
}

.testimonial-quote i {
  font-size: 3rem;
  color: var(--green);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.author-designation {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

/* Testimonial Carousel Indicators */
.testimonial-indicators {
  position: relative;
  margin-top: 30px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  border: none;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonial-indicators button.active {
  width: 32px;
  border-radius: 6px;
  background: var(--green);
}

.testimonial-indicators button:hover {
  background: var(--green);
  opacity: 0.7;
}

/* Latest Articles Section */
#latest-articles {
  background: #ffffff;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--green);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.blog-content {
  padding: 28px 24px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.5rem;
}

.blog-card:hover .blog-title {
  color: var(--green);
}

.blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}

.blog-date,
.blog-comments {
  font-size: 0.875rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i,
.blog-comments i {
  font-size: 1rem;
  color: var(--green);
}

.blog-read-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #2d8f35;
  gap: 12px;
}

.blog-read-more i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Why Choose Us Section */
#why-choose-us {
  background: #ffffff;
  overflow: hidden;
}

.why-animation-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.why-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration svg {
  max-width: 100%;
  height: auto;
}

.efficiency-badge {
  position: absolute;
  top: 50px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.efficiency-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd34d, #ffb800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.efficiency-icon i {
  font-size: 24px;
  color: #ffffff;
}

.efficiency-content {
  display: flex;
  flex-direction: column;
}

.efficiency-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.efficiency-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.why-content h2 {
  line-height: 1.2;
}

.why-content .lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
}

.why-features {
  margin-top: 2rem;
}

.why-feature-card {
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.why-feature-card:hover {
  background: #ffffff;
  border-color: #e9ecef;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.why-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #2d8f35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-feature-icon i {
  font-size: 28px;
  color: #ffffff;
}

.why-feature-card:hover .why-feature-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(61, 165, 65, 0.3);
}

.why-feature-card h5 {
  color: #1a1a1a;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.why-feature-card:hover h5 {
  color: var(--green);
}

.why-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5570 100%);
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
}

/* Footer Wavy Top Border */
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
  background-size: cover;
  background-position: top;
  pointer-events: none;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--green);
}

/* Footer Posts */
.footer-post {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
}

.footer-post-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.footer-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.footer-post:hover .footer-post-image img {
  transform: scale(1.1);
}

.footer-post-content {
  flex: 1;
}

.footer-post-title {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-post-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-post-title a:hover {
  color: var(--green);
}

.footer-post-date {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Footer Bottom */
.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Social Media Cards */
.social-cards-main {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5em;
}

.social-cards-up {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  transform-style: preserve-3d;
  perspective: 200px;
}

.social-cards-down {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.social-card {
  width: 70px;
  height: 70px;
  outline: none;
  border: none;
  background: transparent;
  box-shadow:
    inset 2px 2px 2px rgba(255, 255, 255, 0.3),
    inset -2px -2px 2px rgba(0, 0, 0, 0.3),
    2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.social-card1 {
  transform-origin: 100% 100%;
  border-radius: 70px 5px 5px 5px;
}

.social-instagram {
  margin-top: 1.2em;
  margin-left: 1em;
  fill: #cc39a4;
}

.social-card2 {
  border-radius: 5px 70px 5px 5px;
}

.social-facebook {
  margin-top: 1.2em;
  margin-left: -0.7em;
}

.social-card3 {
  border-radius: 5px 5px 5px 70px;
}

.social-linkedin {
  margin-top: -0.5em;
  margin-left: 1em;
}

.social-card4 {
  border-radius: 5px 5px 70px 5px;
}

.social-twitter {
  margin-top: -0.7em;
  margin-left: -0.9em;
}

.social-card1:active,
.social-card2:active,
.social-card3:active,
.social-card4:active {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -2px -2px 2px rgba(255, 255, 255, 0.3);
}

.social-card1:hover {
  transform: translate(-5px, -5px);
}

.social-card2:hover {
  transform: translate(5px, -5px);
}

.social-card3:hover {
  transform: translate(-5px, 5px);
}

.social-card4:hover {
  transform: translate(5px, 5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(61, 165, 65, 0.4);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #2d8f35;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(61, 165, 65, 0.6);
}

@media (max-width: 991.98px) {
  .clients-timeline { padding-left: 48px; }
  .clients-timeline .timeline-items { align-items: flex-start; }
  .clients-timeline .timeline-item { justify-content: flex-start; }
  .clients-timeline .timeline-item.left,
  .clients-timeline .timeline-item.right { padding: 0 0 0 48px; justify-content: flex-start; }
  .clients-timeline .timeline-item.left .timeline-card,
  .clients-timeline .timeline-item.right .timeline-card { max-width: 100%; text-align: center; }
  .clients-timeline .timeline-dot { left: 24px; transform: translate(-50%, -50%); }
  .clients-timeline .timeline-rail { left: 24px; transform: none; }
  .clients-timeline .timeline-card img { max-height: 64px; }
  
  .feature-icon-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon-img {
    width: 60px;
    height: 60px;
  }
  
  #about h5 {
    font-size: 1rem;
  }
  
  .why-animation-wrapper {
    min-height: 300px;
  }
  
  .efficiency-badge {
    top: 20px;
    right: 10px;
    padding: 12px 16px;
    gap: 8px;
  }
  
  .efficiency-icon {
    width: 40px;
    height: 40px;
  }
  
  .efficiency-icon i {
    font-size: 20px;
  }
  
  .efficiency-value {
    font-size: 1.5rem;
  }
  
  .why-feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .why-feature-icon i {
    font-size: 24px;
  }
  
  .why-feature-card {
    padding: 20px;
  }
  
  .why-feature-card h5 {
    font-size: 1rem;
  }
  
  .why-feature-card:hover {
    transform: translateX(4px);
  }
  
  /* Featured Solutions Responsive */
  #solutionsCarousel {
    padding: 0 50px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-icon i {
    font-size: 20px;
  }
  
  .solution-image-wrapper {
    height: 200px;
  }
  
  .solution-content {
    padding: 20px 16px;
  }
  
  .solution-title {
    font-size: 1rem;
  }
  
  .carousel-indicators-custom {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  #solutionsCarousel {
    padding: 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .solution-image-wrapper {
    height: 180px;
  }
  
  /* Sustainable Future Responsive */
  .sustainable-content h2 {
    font-size: 2rem;
  }
  
  .sustainable-point {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-plus {
    font-size: 3rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .stats-wrapper {
    margin-top: 2rem;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .stat-card {
    padding: 10px;
  }
  
  /* Stands Out Responsive */
  #stands-out {
    margin-top: 60px;
  }
  
  .wave-top {
    height: 60px;
  }
  
  .feature-icon-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  
  .feature-icon-circle i {
    font-size: 1.5rem;
  }
  
  .feature-highlight-title {
    font-size: 1.15rem;
  }
  
  .feature-highlight-text {
    font-size: 0.9rem;
  }
  
  /* Testimonials Responsive */
  .testimonial-animation-wrapper {
    min-height: 300px;
  }
  
  .testimonial-box {
    padding: 24px 20px;
    min-height: 180px;
  }
  
  .testimonial-stars i {
    font-size: 1rem;
  }
  
  .testimonial-box-text {
    font-size: 0.95rem;
  }
  
  .testimonial-box-author {
    font-size: 1rem;
  }
  
  /* Latest Articles Responsive */
  .blog-image-wrapper {
    height: 220px;
  }
  
  .blog-content {
    padding: 24px 20px;
  }
  
  .blog-title {
    font-size: 1.1rem;
    min-height: 3rem;
  }
  
  .blog-meta {
    gap: 16px;
  }
  
  .blog-date,
  .blog-comments {
    font-size: 0.8rem;
  }
  
  /* Footer Responsive */
  .footer-section {
    margin-top: 60px;
    padding-top: 60px;
  }
  
  .footer-wave {
    height: 60px;
  }
  
  .footer-logo-img {
    max-width: 160px;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-heading {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-post-image {
    width: 70px;
    height: 70px;
  }
  
  .footer-post-title {
    font-size: 0.9rem;
  }
  
  .footer-post-date {
    font-size: 0.8rem;
  }
  
  .social-cards-main {
    margin: 20px auto 0;
  }
  
  .social-card {
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    left: 20px;
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Product Page */
.product-hero {
  padding: 80px 0;
  background: #f6fbff;
}

.product-hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(61, 165, 65, 0.25)),
    url('../images/solar-in-field.jpg') center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 32, 0.1) 0%, rgba(5, 15, 32, 0.75) 100%);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.pill-light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(4px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e9f7ef;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-grid-section {
  padding: 80px 0;
  background: #f2f7fb;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0b132b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  padding-top: 125%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(6, 14, 27, 0.05) 10%, rgba(6, 14, 27, 0.85) 100%);
  color: #fff;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 1rem;
}

.product-tag {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: #e7edf4;
}

.product-title {
  color: #fff;
  font-weight: 700;
}

.product-cta {
  background: linear-gradient(135deg, #0b132b 0%, #1c2f50 60%, #3da541 100%);
  padding: 70px 0;
  color: #fff;
}

@media (max-width: 992px) {
  .product-hero {
    padding: 60px 0;
  }

  .product-hero-card {
    min-height: 320px;
  }

  .product-grid-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 50px 0;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-overlay {
    padding: 14px;
  }
}

/* Projects Page */
.projects-hero {
  padding: 80px 0;
  background: #f6fbff;
}

.projects-hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(61, 165, 65, 0.25)),
    url('../images/earthsolar.jpg') center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.projects-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 32, 0.1) 0%, rgba(5, 15, 32, 0.75) 100%);
}

.projects-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.project-grid-section {
  padding: 70px 0;
  background: #f2f7fb;
}

.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

.project-image {
  width: 100%;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}

.project-body {
  padding: 16px 18px 20px;
}

.project-title {
  font-weight: 700;
  color: #0b132b;
}

.project-meta {
  color: #6c757d;
  font-size: 0.95rem;
}

.project-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: #0b132b;
  text-decoration: none;
}

.project-link:hover {
  color: var(--brand);
}

.project-cta {
  background: linear-gradient(135deg, #0b132b 0%, #1c2f50 60%, #3da541 100%);
  padding: 70px 0;
  color: #fff;
}

@media (max-width: 992px) {
  .projects-hero {
    padding: 60px 0;
  }

  .projects-hero-card {
    min-height: 300px;
  }

  .project-grid-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .projects-hero {
    padding: 50px 0;
  }

  .project-card {
    border-radius: 14px;
  }

  .project-body {
    padding: 14px 16px 18px;
  }
}

/* Branch Page */
.branch-hero {
  padding: 80px 0;
  background: #f6fbff;
}

.branch-hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(61, 165, 65, 0.25)),
    url('../images/solarwithpimp.jpg') center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.branch-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 32, 0.1) 0%, rgba(5, 15, 32, 0.75) 100%);
}

.branch-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.branch-grid-section {
  padding: 70px 0;
  background: #f2f7fb;
}

.branch-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.branch-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f7ef;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.branch-title {
  font-weight: 700;
  color: #0b132b;
}

.branch-address {
  color: #4a5568;
  margin-bottom: 6px;
}

.branch-contact a {
  color: var(--brand);
  text-decoration: none;
}

.branch-contact a:hover {
  text-decoration: underline;
}

.branch-cta {
  background: linear-gradient(135deg, #0b132b 0%, #1c2f50 60%, #3da541 100%);
  padding: 70px 0;
  color: #fff;
}

@media (max-width: 992px) {
  .branch-hero {
    padding: 60px 0;
  }

  .branch-hero-card {
    min-height: 260px;
  }

  .branch-grid-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .branch-hero {
    padding: 50px 0;
  }

  .branch-card {
    border-radius: 14px;
    padding: 16px;
  }
}

/* Contact Page */
.contact-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.contact-map-hero {
  position: absolute;
  inset: 0;
}

.contact-map-hero iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: saturate(1.05);
}

.contact-main {
  padding: 70px 0;
  background: #f2f7fb;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e9f7ef;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.info-label {
  font-weight: 700;
  color: #0b132b;
}

.contact-form-card .form-control {
  border-radius: 12px;
  border: 1px solid #e0e6ed;
  padding: 12px;
}

.contact-form-card .btn {
  margin-top: 8px;
}

.energy-solution {
  padding: 70px 0;
  background: #fff;
}

.solution-icon-wrap {
  background: #f8fbff;
  border-radius: 16px;
  padding: 18px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.solution-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #eef4fb;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--brand);
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-main,
  .energy-solution {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .contact-card,
  .contact-form-card {
    padding: 18px;
    border-radius: 14px;
  }

  .solution-icon {
    width: 80px;
    height: 80px;
    font-size: 1.7rem;
  }
}