/* ── INDEX PAGE SPECIFIC STYLES ── */

:root {
  --impact-bg: #0e3053;
  --digital-bg: #0c3d1e;
  --teal-label: #1a7a5e;
  --green-bright: #4caf50;
  --orange-btn: #f05423;
  --badge-blue: #eef4ff;
}

/* ── HERO GRID SECTION ───────────────────────── */
.hero-grid-section {
  padding: 20px 80px 40px;
  background: #fff;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  height: 650px;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0a1628;
  height: 100%;
}

.hero-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-card-media img,
.hero-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-card-media img,
.hero-card:hover .hero-card-media video {
  transform: scale(1.05);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 15, 8, 0.95) 0%,
    rgba(0, 15, 8, 0.4) 50%,
    rgba(0, 15, 8, 0.1) 80%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 40px;
  z-index: 2;
}

.hero-card-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title-main {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 950;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc-main {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 550px;
  margin-bottom: 35px;
}

.btn-hero-learn {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  border: none;
  padding: 14px 35px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-learn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Side Column Layout */
.hero-side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.hero-side-card {
  height: calc(50% - 12px);
}

.hero-side-card .hero-card-overlay {
  padding: 30px;
}

.hero-title-side {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-desc-side {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1100px) {
  .hero-grid-section { padding: 20px 40px; }
  .hero-title-main { font-size: 2.2rem; }
}

@media (max-width: 900px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-main-card {
    height: 500px;
  }
  .hero-side-column {
    height: auto;
  }
  .hero-side-card {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hero-grid-section { padding: 15px 20px; }
  .hero-grid-container { gap: 15px; }
  .hero-side-column { gap: 15px; }
  .hero-card-overlay { padding: 25px; }
  .hero-title-main { font-size: 1.8rem; }
  .hero-main-card { height: 420px; }
  .hero-side-card { height: 260px; }
  .hero-title-side { font-size: 1.15rem; }
}

/* ── HERO SWIPER CONTROLS ── */
.heroSwiper { width: 100%; height: 100%; }
.heroSwiper .swiper-slide { position: relative; width: 100%; height: 100%; }

.heroSwiper .swiper-pagination {
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    text-align: center !important;
    width: auto !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.hero-main-card:hover .heroSwiper .swiper-pagination {
    opacity: 1;
    visibility: visible;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    margin: 0 !important;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #fff;
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}
.hero-main-card:hover .heroSwiper .swiper-button-next,
.hero-main-card:hover .heroSwiper .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}
.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after { font-size: 1.2rem; font-weight: 900; }

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
.heroSwiper .swiper-button-next { right: 30px; left: auto; }
.heroSwiper .swiper-button-prev { left: 30px; right: auto; }

@media (max-width: 600px) {
    .heroSwiper .swiper-pagination { bottom: 25px !important; left: 25px !important; }
    .heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev { display: none; }
}



/* ── ABOUT INDEX ─────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 100px 80px;
  background: #fff;
  align-items: center;
}

.about-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-divider {
  width: 48px;
  height: 3.5px;
  background: var(--gold);
  margin-bottom: 30px;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-img-wrap {
  position: relative;
}

.about-img-box {
  width: 100%;
  height: 380px;
  border-radius: 4px;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.about-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adb-badge {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: #fff;
  padding: 20px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  z-index: 5;
}

.adb-name {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 2px;
}

.adb-sub {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #555;
  line-height: 1.4;
}

/* ── COMPONENTS ──────────────────────────────── */
.components {
  padding: 80px 80px;
  background: var(--light-gray);
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-label);
  margin-bottom: 10px;
}

.comp-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 42px;
}

.comp-hd h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--navy);
}

.explore {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 4px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pcard {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform .22s, box-shadow .22s;
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.pcard-img {
  width: 100%;
  height: 215px;
  display: block;
  object-fit: cover;
}

.pcard-body {
  padding: 28px 28px 32px;
}

.pcard-body h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcard-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 22px;
}

.btn-ol {
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 22px;
  cursor: pointer;
  transition: all .2s;
}

.btn-ol:hover {
  background: var(--navy);
  color: #fff;
}

/* ── IMPACT ──────────────────────────────────── */
.impact {
  background: var(--impact-bg);
  padding: 100px 80px 0;
  position: relative;
  overflow: hidden;
}

.impact-wave {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0.25;
  pointer-events: none;
  width: 450px;
}

.impact h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  font-weight: 950;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

.impact-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 60px;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 70px;
}

.stat-col {
  padding: 45px 45px 35px 0;
  border-right: 1.2px solid rgba(255, 255, 255, 0.15);
}

.stat-col:not(:first-child) {
  padding-left: 45px;
}

.stat-col:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Merriweather', serif;
  font-size: 3.8rem;
  font-weight: 950;
  color: #4caf50;
  margin-bottom: 10px;
}

.stat-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}

.icard {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s;
}

.icard:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.icard-img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.icard-body {
  padding: 25px 30px 35px;
  text-align: center;
}

.icard-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 48px;
}

.btn-ol-w {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 25px;
  cursor: pointer;
  transition: all .2s;
}

.btn-ol-w:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ── DIGITAL ─────────────────────────────────── */
.digital {
  background: var(--digital-bg);
  padding: 100px 80px;
  text-align: center;
}

.digital h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  font-weight: 950;
  color: #fff;
  line-height: 1.2;
  max-width: 850px;
  margin: 0 auto 20px;
}

.digital-sub {
  color: #f5cf47;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 65px;
}

.dig-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  text-align: left;
  align-items: start;
}

.dig-top {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
}

.dig-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dig-sm {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
}

.dig-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dig-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.dig-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 35px;
}

.btn-rm {
  background: var(--orange-btn);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.btn-rm:hover {
  background: #d84315;
  transform: scale(1.02);
}

/* ── FUTURE READY ────────────────────────────── */
.future {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 80px;
  background: #fff;
  align-items: center;
}

.fut-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.fut-img {
  width: 100%;
  height: 210px;
  border-radius: 4px;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fut-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.fut-img:hover img {
  transform: scale(1.05);
}

.fut-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b6b23;
  margin-bottom: 12px;
}

.future-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  font-weight: 950;
  color: var(--navy);
  margin-bottom: 35px;
}

.res-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.res-icon {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-top: 3.5px;
  flex-shrink: 0;
}

.res-row h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.res-row p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.adapt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  padding-bottom: 2px;
  margin-top: 10px;
}

.adapt-link:hover {
  border-color: var(--navy);
  transform: translateX(5px);
}

/* ── SOLAR ───────────────────────────────────── */
.solar {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 100px 80px;
  background: var(--light-gray);
  align-items: center;
}

.solar-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.1rem;
  font-weight: 950;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 25px;
}

.solar-badge {
  display: inline-block;
  border: 1.5px solid #d0d7de;
  background: var(--badge-blue);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 25px;
  margin-bottom: 35px;
}

.solar-box {
  background: #fff;
  border-radius: 8px;
  padding: 35px 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.solar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.solar-item {
  text-align: center;
  border-right: 1.2px solid #eee;
  padding: 0 20px;
}

.solar-item:first-child {
  padding-left: 0;
}

.solar-item:last-child {
  border-right: none;
  padding-right: 0;
}

.s-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}

.s-num {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 950;
  color: var(--navy);
}

.s-num.orange {
  color: #f05423;
}

.solar-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  height: 450px;
}

.solar-grid-item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: #f0f0f0;
}

.solar-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.solar-grid-item:hover img {
  transform: scale(1.08);
}

/* ── FOOTER INDEX ────────────────────────────── */
footer {
  background: #00264d;
  color: #fff;
  padding: 80px 80px 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.ft-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 950;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.ft-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.ft-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ft-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all .2s;
}

.ft-col ul a:hover {
  color: #fff;
  padding-left: 5px;
}

.ft-bottom {
  border-top: 1.2px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.ft-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ft-icons svg {
  opacity: 0.5;
  cursor: pointer;
  transition: all .2s;
  display: block;
}

.ft-icons svg:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ── RESPONSIVE INDEX ────────────────────────── */
@media (max-width: 1024px) {
  .hero-slider {
    height: 500px;
  }

  .hero-slide-content {
    padding: 60px 40px 50px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-left { left: 16px; }
  .hero-arrow-right { right: 16px; }

  .about,
  .future,
  .solar {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 420px;
  }

  .hero-slide-content {
    padding: 30px 25px 40px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-title br {
    display: none;
  }

  .hero-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .btn-learn {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hero-arrow-left { left: 10px; }
  .hero-arrow-right { right: 10px; }

  .hero-dots {
    bottom: 16px;
    padding: 6px 12px;
    gap: 8px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 22px;
  }

  .about {
    padding: 60px 20px;
    text-align: center;
  }

  .about-img-box {
    height: 300px;
  }

  .adb-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    max-width: 90%;
  }

  .components {
    padding: 60px 20px;
  }

  .comp-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .impact {
    padding: 60px 20px 40px;
    text-align: center;
  }

  .impact-wave {
    display: none;
  }

  .impact-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .stat-num {
    font-size: 2.8rem;
  }

  .stat-desc {
    max-width: 100%;
  }

  .stat-col {
    padding: 30px 0;
    border-right: none;
    border-bottom: 1.2px solid rgba(255, 255, 255, 0.15);
  }

  .stat-col:last-child {
    border-bottom: none;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }

  .digital {
    padding: 60px 20px;
  }

  .digital h2 {
    font-size: 1.6rem;
  }

  .dig-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dig-card {
    padding: 30px 20px;
  }

  .future {
    padding: 60px 20px;
  }

  .future-text h2 {
    font-size: 1.8rem;
  }

  .fut-imgs {
    grid-template-columns: 1fr 1fr;
  }

  .solar {
    padding: 60px 20px;
    text-align: center;
  }

  .solar-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .solar-badge {
    display: inline-block;
    margin: 0 auto 30px;
  }

  .solar-box {
    padding: 25px 15px;
  }

  .solar-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solar-item {
    border-right: none;
    border-bottom: 1.2px solid #eee;
    padding: 15px 0;
  }

  .solar-item:last-child {
    border-bottom: none;
  }

  .s-num {
    font-size: 2.2rem;
  }

  .solar-img-grid {
    height: 400px;
    margin-top: 40px;
    gap: 10px;
  }

  footer {
    padding: 60px 20px 40px;
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}