/* =========================
   About Solar Rooftop Page
========================= */

.about-section{
  padding: 70px 0;
}


/* Banner */
.page-banner{
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,58,93,0.85), rgba(255,107,53,0.70));
  display: flex;
  align-items: center;
}

.page-banner-title{
  color: #fff;
  font-weight: 900;
  margin: 0;
  font-size: 42px;
}

.page-breadcrumb{
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.page-breadcrumb a{
  color: #fff;
  text-decoration: none;
}

.page-breadcrumb a:hover{
  opacity: 0.9;
}

.page-breadcrumb span{
  margin: 0 6px;
}


/* Section background difference */
.about-section-one{
  background: linear-gradient(135deg, #fff7f2, #ffffff);
}

.about-section-two{
  background: linear-gradient(135deg, #f2fbff, #ffffff);
}

/* Text */
.section-title{
  font-weight: 900;
  font-size: 30px;
  color: #0B1320;
  margin-bottom: 14px;
}

.section-text-bold{
  font-size: 14.5px;
  font-weight: 800;
  color: #1c2636;
  line-height: 1.9;
  margin-bottom: 14px;
}

.section-text{
  font-size: 14px;
  font-weight: 600;
  color: #444;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Highlight bold values inside paragraph */
.section-text-bold b,
.section-text b{
  color: #ff6b35;
  font-weight: 900;
}

/* =====================
   Overlay Image Stack
===================== */
.image-overlay-wrap{
  position: relative;
  height: 420px;
}

.overlay-img{
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  transition: 0.3s ease;
}

.overlay-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main image */
.img-one{
  width: 100%;
  height: 320px;
  top: 0;
  left: 0;
}

/* small image right */
.img-two{
  width: 72%;
  height: 180px;
  bottom: 0;
  right: 0;
}

/* small image left */
.img-three{
  width: 60%;
  height: 160px;
  bottom: -55px;
  left: 0;
}

/* Hover lift */
.overlay-img:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
}

/* Badge */
.overlay-badge{
  position: absolute;
  left: 18px;
  bottom: 30px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,53,0.92), rgba(14,58,93,0.88));
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

/* =====================
   Modern Image Card
===================== */
.modern-img-card{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  transition: 0.3s ease;
}

.modern-img-card img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Glow gradient effect */
.modern-img-card .img-glow{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.20), rgba(14,58,93,0.18));
  opacity: 0;
  transition: 0.3s ease;
}

.modern-img-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.20);
}

.modern-img-card:hover .img-glow{
  opacity: 1;
}

/* Responsive fix */
@media (max-width: 991px){
  .image-overlay-wrap{
    height: 360px;
  }

  .img-one{ height: 260px; }
  .img-two{ height: 150px; }
  .img-three{ height: 130px; bottom: -35px; }
}
