/* Section wrapper */
.footer-top-cards {
  position: relative;
  z-index: 5;
}

/* Cards container */
.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;

  position: relative;
  top: 60px;   /* PUSH CARDS DOWN INTO FOOTER */
}

/* Card base */
.info-card {
  display: flex;
  width: 50%;
  min-height: 220px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Image */
.card-image {
  width: 40%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.card-content {
  width: 60%;
  padding: 35px;
  color: #fff;
}

/* Colors */
.green-card { background: #9bc53d; }
.blue-card { background: #083b4c; }
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .footer-top-cards {
    margin-top: 40px;
  }

  .cards-container {
    position: static;        /* remove overlap */
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .info-card {
    width: 100%;
    flex-direction: column;
  }

  .card-image {
    width: 100%;
    height: 200px;
  }

  .card-image img {
    height: 100%;
  }

  .card-content {
    width: 100%;
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 14px;
  }

  footer {
    padding-top: 40px; /* reset footer spacing */
  }
}


/* BLOG SECTION */
.latest-blog-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.blog-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.blog-watermark {
  font-size: 80px;
  color: rgba(0,0,0,0.03);
  font-weight: 700;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Prata', serif;
}

.blog-title {
  font-size: 44px;
  color: #233D63;
  margin-bottom: 15px;
  font-family: 'Prata', serif;
  position: relative;
}

.blog-subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  text-align: left;
}

.blog-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}

.blog-card .cardhomeblog {
  font-family: 'Prata', serif;
  font-size: 24px;
  color: #1c3556;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 15px;
  color: #5c5c5c;
  line-height: 1.6;
}

/* ================= BLOG SECTION RESPONSIVE ================= */

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    display: flex;
    flex-direction: column;
  }

  .blog-card img {
    width: 100%;
    height: 220px;
  }

  .blog-content {
    padding: 20px 15px;
  }

  .blog-content h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .blog-content p {
    font-size: 14px;
  }

  /* Disable hover animation on mobile */
  .blog-card:hover img {
    transform: none;
  }

  .blog-card:hover {
    transform: none;
  }
}


/******** IMAGE HOVER EFFECT (ZOOM + TILT) ********/

.blog-card {
  overflow: hidden;
}

.blog-card img {
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.12) rotate(-2deg);
}

/* Optional: card lift effect */
.blog-card:hover {
  transform: translateY(-8px);
  transition: transform 0.4s ease;
}

/* ================= TRANSPARENT HERO HEADER ================= */

.solargy-header {
    position: fixed;          /* keeps header sticky */
    top: 0;
    left: 0;
    width: 100%;
    background: #233D63;      /* solid color */
    border-bottom: none;
    z-index: 9999;
}

/* Make menu text white */
.nav-area ul li a,
.phone-box,
.phone-box span {
    color: #fff;
}

/* Logo text visibility */
/* .logo-area img {
    filter: brightness(0) invert(1);
} */

/* Button style */
.talk-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* Phone icon */
.phone-box i {
    color: var(--primary-green);
}

/* Hamburger white */
.hamburger {
    color: #fff;
}

/* On scroll solid header */
.solargy-header.scrolled {
    position: fixed;
    background: #0f3e50;
    border-bottom: none;
}

/* When scrolled change text color */
.solargy-header.scrolled .nav-area ul li a,
.solargy-header.scrolled .phone-box,
.solargy-header.scrolled .talk-btn {
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
   
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-box {
    background: #fff;
    padding: 60px;
    max-width: 650px;
}

.hero-box .herohead {
    font-family: 'Prata', serif;
    font-size: 55px;
    color: #233D63;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.hero-btn {
    background: var(--primary-green);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
}

.hero-call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #233D63;
}

.hero-call strong {
    font-family: 'Prata', serif;
    font-size: 28px;
    border-bottom: 1px solid #233D63;;
}
@media (max-width: 768px) {

  .hero-content {
      padding: 20px;
      justify-content: center;
      align-items: center;
      text-align: center;        /* center heading + buttons */
      padding-left: 0 !important; /* remove left offset */
  }

  .hero-box {
      padding: 25px 15px;
      max-width: 100% !important; /* allow full width on mobile */
      box-sizing: border-box;
      margin-left: 20px;
  }

  .hero-box .herohead {
      font-size: 32px !important;  /* reduce heading size */
      line-height: 1.3;
  }

  .hero-actions {
      flex-direction: column;
      align-items: center;         /* center items */
      gap: 15px;
      margin-top: 20px;
  }

  .hero-btn {
      padding: 12px 24px;
      font-size: 14px;
  }

  .hero-call {
      flex-direction: column;
      text-align: center;
      gap: 5px;
  }

  .hero-call strong {
      font-size: 20px !important;
      border-bottom: none;
  }

  .hero-phone-img {
      width: 35px !important;
      height: 35px !important;
  }
}


/* ================= HERO + HEADER PERFECT FIX ================= */

/* Header floats over hero */

/* When scrolled */
.solargy-header.scrolled {
    position: fixed;
    background: #0f3e50;
}

/* HERO SECTION */
.hero-banner {
    height: 100vh;
    background: url('images/banner-sample2.jpg') center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}




/* Push content below header height */
.hero-content {
    position: relative;
    width: 100%;
    padding-top: 120px; /* HEADER HEIGHT SPACE */
    padding-left: 80px;
}

/* White box */
.hero-box {
    background: #fff;
    padding: 60px;
    max-width: 650px;
}

/* Heading */
.hero-box h1 {
    font-family: 'Prata', serif;
    font-size: 60px;
    color: #233D63;
    line-height: 1.2;
}
/* FORCE TRANSPARENT HEADER ON HERO */

/* ================= EXPERIENCE SECTION ================= */

.experience-section {
  padding: 170px 20px;
  background: #fff;
  text-align: center;
}

.experience-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Watermark */
.experience-watermark {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  letter-spacing: 5px;
  font-family: 'Prata', serif;
}

/* Main heading */
.experience-title {
  font-size: 44px;
  color: #233D63;
  font-family: 'Prata', serif;
  margin-bottom: 20px;
  line-height: 1.2;
}



/* Subtitle */
.experience-subtitle {
  max-width: 800px;
  margin: 0 auto 70px;
  font-size: 19px;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Card */
.experience-card img {
  width: 80px;
  margin-bottom: 20px;
}

.experience-card .excard {
  font-size: 22px;
  font-family: 'Prata', serif;
  color: #233D63;
  line-height: 1.4;
  margin-bottom: 15px;
}

.experience-card p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 768px) {

  .experience-title {
    font-size: 28px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-watermark {
    font-size: 60px;
    top: -20px;
  }
}


.service-cards{
  /* padding:60px 0; */
  background:#fff;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}

.service-card{
  height:520px;
  position:relative;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Background images */

/* Overlays */
.blue .overlay{background:rgba(20,90,110,0.75);}
.green .overlay{background:rgba(125,150,50,0.75);}
.darkblue .overlay{background:rgba(20,70,90,0.75);}

.overlay{
  width:100%;
  height:100%;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:40px;
}

/* IMAGE ICON STYLE */
.card-icon{
  margin-bottom:20px;
}

.card-icon img{
  width:70px;
  height:70px;
  object-fit:contain;
}

/* Text */
.overlay .head3{
  font-size:26px;
  line-height:1.3;
  margin-bottom:15px;
  font-family: 'Prata', serif;

}

.overlay p{
  font-size:18px;
  margin-bottom:30px;
}

/* Circle Button */
.circle-btn{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#9ccb3b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  transition:0.3s ease;
}

.circle-btn.white{
  background:#fff;
  color:#9ccb3b;
}

.circle-btn:hover{
  transform:scale(1.1);
}

/* Responsive */
@media(max-width:900px){
  .cards-grid{
    grid-template-columns:1fr;
  }
}



.solar-section {
  width: 100%;
  position: relative;
}

.solar-wrapper {
  position: relative;
  display: flex;
  height: 520px;
  overflow: hidden;
}

/* Background Images */
.solar-bg-left{
  width: 40%;
}
.solar-bg-right {
  width: 60%;
}

.solar-bg-left img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solar-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* White Box */
.solar-content-box {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 50px;
  max-width: 520px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Green Line */
.solar-line {
  width: 4px;
  height: 120px;
  background: #8dc63f;
  position: absolute;
  left: 0;
  top: 40px;
}

/* Heading */
.solar-content-box .need-help {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1b2b48;
  font-family: 'Prata', serif;

}

.solar-content-box .need-help span {
  color: #8dc63f;
  font-family: 'Prata', serif;

}

/* Text */
.solar-content-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 18px;
}

/* Buttons */
.solar-buttons {
  display: flex;
  gap: 15px;
}

.btn-green {
  background: #8dc63f;
  color: #fff;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
}

.btn-dark {
  background: #073b4c;
  color: #fff;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 900px) {
  .solar-wrapper {
    flex-direction: column;
    height: auto;
  }

  .solar-bg-left,
  .solar-bg-right {
    width: 100%;
    height: 250px;
  }

  .solar-content-box {
    position: relative;
    left: 0;
    transform: none;
    margin: -80px 20px 0;
  }
}
.brand-strip {
  background: #044f63;
  padding: 90px 0;
  overflow: hidden;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.brand-track {
  display: flex;
  align-items: center;              /* ✅ vertical centering */
  justify-content: center;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* EACH LOGO */
.brand-item {
  min-width: 240px;
  text-align: center;
  color: #fff;
  padding: 0 40px;                  /* ✅ remove vertical padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;          /* ✅ perfect center */
}

/* LOGO IMAGE */
.brand-item img {
  max-height: 100px;
  margin-bottom: 8px;
  /* filter: brightness(0) invert(1); */
}

/* TEXT */
.brand-item span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.brand-strip:hover .brand-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .brand-item {
    min-width: 180px;
  }
}



/*  */
.team-section {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.team-wrap {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
}

/* BIG FADED TEXT */
.bg-text {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.03);
  letter-spacing: 6px;
  z-index: 0;
  pointer-events: none;
  font-family: 'Prata', serif;

}

.bgr-text{
  position: absolute;

  right: 280px;
 transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.03);
  letter-spacing: 6px;
  z-index: 0;
  pointer-events: none;
  font-family: 'Prata', serif;
  margin-top:-70px;
}
/* MAIN TITLE */
.main-title {
  font-size: 48px;
  color: #1a3152;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  font-family: 'Prata', serif;

}

/* DESCRIPTION */
.team-subtext {
  max-width: 780px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member .teamname{
  margin-top: 30px;
  font-size: 22px;
  color: #1a3152;
  font-family: 'Prata', serif;

}

.team-member  .teamname span {
  color: #666;
  font-size: 18px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bg-text {
    font-size: 60px;
  }
}

@media(max-width: 600px){
  .team-grid {
    grid-template-columns: 1fr;
  }
}


.stats-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box img {
  height: 70px;
  margin-bottom: 20px;
}

.stat-box .icon-head {
  font-size: 48px;
  color: #1a3152;
  margin-bottom: 10px;
  font-family: "Prata", serif;
}

.stat-box p {
  font-size: 20px;
  color: #1a3152;
  font-family: "Prata", serif;

}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}


.testimonial-section {
  margin: 0;
  padding: 0;
  font-family: "Prata", serif;
}

/* GRID LAYOUT */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.8fr;
  grid-template-rows: 1fr 1fr;
  min-height: 460px;
}

/* LEFT TOP */
.t-left-top {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: #005870;
  color: #fff;
  padding: 50px 50px 40px;
}

.t-left-top h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.t-left-top p {
  font-size: 16px;
  line-height: 1.7;
}

/* LEFT BOTTOM IMAGE */
.t-left-bottom {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.t-left-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MIDDLE TOP IMAGE */
.t-mid-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.t-mid-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MIDDLE BOTTOM GREEN PANEL */
.t-mid-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #8dc63f;
  color: #fff;
  padding: 50px;
}

.t-mid-bottom h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.t-mid-bottom p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.t-mid-bottom a {
  font-size: 22px;
  text-decoration: none;
  color: #fff;
}

/* RIGHT BIG TESTIMONIAL */
.t-right {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: #005870;
  color: #fff;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

/* Faded background text */
.t-watermark {
  position: absolute;
  top: 25px;
  right: 120px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: 5px;
  pointer-events: none;
  font-family: "Prata", serif;

}

/* Main heading */
.t-right .main-head {
  font-size: 40px;
  line-height: 1.25;
  font-family: "Prata", serif;
   text-align: center;
}

/* Quote icon */
.t-quote-icon {
  font-size: 150px;
  color: #8dc63f;
 
}

/* Testimonial text */
.t-text {
  font-size: 18px;
  line-height: 1.9;
  max-width: 640px;
  margin-top: -75px;
}

/* Name + role */
.t-right h4 {
  font-size: 22px;
  margin-bottom: 5px;
  font-family: "Prata", serif;

}

.t-role {
  font-size: 16px;
  opacity: 0.9;
  font-family: "Prata", serif;

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .t-left-top,
  .t-left-bottom,
  .t-mid-top,
  .t-mid-bottom,
  .t-right {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .t-right {
    padding: 60px 30px;
  }

  .t-watermark {
    font-size: 40px;
    right: 20px;
  }


  .main-head{
      font-size: 20px;
  font-family: "Prata", serif;
   text-align: center;
  }
}

/*  */
.reason-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
      font-family: "Prata", serif;
      margin-top:50px;

}

/* Faded Big Background Text */
.bgs-text {
    position: absolute;
    margin-top:-50px;
    left: 80px;
    font-size: 50px;
    font-weight: 300;
    opacity: 0.08;
    color: #35506d;
    z-index: 1;
    pointer-events: none;
}

/* Overlay background image */


.reason-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.left-box {
    width: 50%;
}

.mains-title {
    font-size: 48px;
    line-height: 1.3;
    color: #0f2e4a;
    margin-bottom: 20px;
    font-family: "Prata", serif;


}

.main-desc {
    color: #555;
    font-size: 17px;
    margin-bottom: 35px;
}

.feature {
    display: flex;
    align-items: center;   /* FIX alignment */
    gap: 18px;
    margin-bottom: 35px;
}


.icon {
    width: 50px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f2e4a;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 15px;
    color: #555;
    max-width: 90%;
}

/* RIGHT IMAGE */
.right-box {
    width: 50%;
}

.right-img {
    width: 100%;
    height: 900px;
    border-radius: 15px;
    object-fit: cover;
}



.solar-sections {
    position: relative;
    padding-top: 100px;
    
    overflow: hidden;
    background: #ffffff;
    font-family: "Prata", serif;
  
}

/* BACKGROUND TEXT */
.bg-texte {
    position: absolute;
    right: 290px;
    top: 80px;
    font-size: 70px;
    color: #0f2e4a;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    font-family: "Prata", serif;

}

/* BACKGROUND OVERLAY IMAGE */

/* MAIN CONTAINER */
.solar-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 5;
}

/* LEFT IMAGES */
.solar-left {
    width: 50%;
    position: relative;
}

.big-img {
    width: 100%;
    border-radius: 12px;
    height: 399px;

}

.small-img {
    position: absolute;
    bottom: -90px;
    left: 260px;
    width: 65%;
    border-radius: 12px;
}

.arrow-img {
    position: absolute;
    bottom: -140px;
    left: 20px;
    width: 120px;
}

/* RIGHT CONTENT */
.solar-right {
    width: 50%;
}

.solar-title {
    font-size: 48px;
    line-height: 1.3;
    color: #0f2e4a;
    margin-bottom: 20px;
}

.solar-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-family: "Outfit", serif;

}

.sub-title {
    font-size: 28px;
    color: #0f2e4a;
    margin-bottom: 20px;
}

/* LIST ITEMS */
.solar-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
  
}

.solar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 8px 0;
    font-family: "Outfit", serif;
    color: #555;
    
}

.solar-list img {
    width: 22px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #8CC63F;
    padding: 14px 35px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-family: "Outfit", serif;

}


/* MOBILE FIX — SOLAR SECTION */
@media (max-width: 768px) {
  .solar-container {
    flex-direction: column;
    gap: 40px;
  }

  .solar-left,
  .solar-right {
    width: 100%;
  }

  .big-img {
    width: 100%;
  }

  .small-img {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .bg-texte {
    right: 50%;
    transform: translateX(50%);
    font-size: 40px;
    top: 20px;
  }
}

/* GLOBAL FIX — remove right-side white space */
html, body {
    overflow-x: hidden;
}

/* MOBILE FIX — REASON SECTION */
@media (max-width: 768px) {

  .reason-container {
      flex-direction: column !important;
      width: 100% !important;
      max-width: 100% !important;
      gap: 30px !important;
      padding: 0 15px;
      box-sizing: border-box;
  }

  .left-box,
  .right-box {
      width: 100% !important;
      text-align: left;
  }

  .right-img {
      width: 100% !important;
      height: auto;
      border-radius: 12px;
  }

  /* Fix large faded background text */
  .bgs-text {
      font-size: 20px !important;
      left: 50% !important;
      transform: translateX(-50%);
      top: 10px;
      text-align: center;
  }

  /* Text adjustments */
  .mains-title {
      font-size: 28px !important;
      line-height: 1.3;
  }

  .main-desc {
      font-size: 15px;
  }

  .feature {
      align-items: flex-start;
      gap: 15px;
  }

  .feature-title {
      font-size: 20px !important;
  }

  .feature-text {
      font-size: 14px !important;
  }

  .icon {
      width: 40px !important;
  }
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  gap: 40px; /* 👈 space between logos */
  width: calc((200px + 40px) * 22); /* logo width + gap × total logos */
  animation: scroll 25s linear infinite;
}


.logo {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 140px;
  height: auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.8; */
  /* transition: 0.3s; */
}
/* 
.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
