/* =========== Banner Section - Start =============== */
.banner-section{
  width:100%;
  overflow:hidden;
}

.banner-wrapper{
  width:100%;
  aspect-ratio: 1920 / 600;
  overflow:hidden;
}

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

/* =============== Customer Form ======================= */
/* ===== GOVERNMENT STYLE COMPACT FORM ===== */
/* ===== SANVI SOLAR FORM DESIGN ===== */

/* ===== SECTION ===== */
.solar-quote-section{
  background:#f4f6f9;
  padding:40px 0;
}

/* ===== FORM CARD ===== */
.govt-form-card{
  background:#fff;
  border:1px solid #d6dde6;
  padding:20px;
  border-radius:6px;
}

.form-title{
  font-size:20px;
  font-weight:700;
  color:#0b3c6d;
  border-bottom:2px solid #f1c40f;
  padding-bottom:6px;
  margin-bottom:15px;
}

/* Labels & inputs */
.form-label{
  font-size:13px;
  font-weight:600;
}

.form-label span{ color:#d00; }

.form-control{
  font-size:13px;
  padding:6px 8px;
  border-radius:4px;
  border:1px solid #bfc9d4;
}

.radio-group div{
  font-size:13px;
  margin-bottom:4px;
}

/* Button */
.submit-btn{
  margin-top:10px;
  background:#f1c40f;
  border:none;
  padding:8px 30px;
  font-weight:600;
  border-radius:4px;
}

/* ===== WHY CHOOSE ===== */
.why-choose-card{
  background:#fff;
  border-left:5px solid #0b3c6d;
  padding:20px;
  border-radius:6px;
}

.why-choose-card h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.why-choose-card h4 span{
  color:#f1c40f;
}

.why-choose-card ul{
  padding-left:18px;
  margin:0;
}

.why-choose-card ul li{
  font-size:13px;
  margin-bottom:8px;
  line-height:1.4;
}



/* =========== Services =================== */
/* ===== SERVICES SECTION ===== */
.services-section{
  background:#f4f6f9;
  padding:60px 0;
}

/* LEFT INTRO */
.services-intro h2{
  font-size:34px;
  font-weight:800;
  color:#0b3c6d;
  margin-bottom:15px;
}

.services-intro p{
  font-size:15px;
  color:#333;
  line-height:1.6;
  margin-bottom:25px;
}

/* SERVICE CARD */
.service-card{
  background:#fff;
  padding:30px 20px;
  text-align:center;
  border-radius:8px;
  box-shadow:0 6px 15px rgba(0,0,0,0.12);
  height:100%;
}

.service-icon{
  width:80px;
  height:80px;
  background:#f1c40f;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.service-icon i{
  font-size:32px;
  color:#0b3c6d;
}

.service-card h4{
  font-size:20px;
  font-weight:700;
  color:#0b3c6d;
  margin-bottom:10px;
}

.service-card p{
  font-size:14px;
  color:#444;
  margin-bottom:20px;
}

/* BUTTON */
.learn-btn{
  display:inline-block;
  background:#f1c40f;
  color:#000;
  font-size:14px;
  font-weight:600;
  padding:10px 28px;
  border-radius:4px;
  text-decoration:none;
}

.learn-btn:hover{
  background:#d4ac0d;
  color:#000;
}


/* ========== About Us =============== */
.about-section-compact{
  background:#f4f6f9;
  padding:50px 0;
}

/* IMAGE CARD */
.about-image-card{
  background:#fff;
  padding:8px;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.about-image-card img{
  width:100%;
  height:220px;          
  object-fit:cover;
  border-radius:4px;
}

/* CONTENT */
.about-content-box{
  background:#fff;
  padding:25px;
  border-left:5px solid #0b3c6d;
  border-radius:6px;
}

/* TEXT */
.section-subtitle{
  font-size:13px;
  font-weight:700;
  color:#f1c40f;
  text-transform:uppercase;
  margin-bottom:6px;
}

.section-title{
  font-size:24px;
  font-weight:700;
  color:#0b3c6d;
  margin-bottom:10px;
}

.about-desc{
  font-size:14px;
  color:#444;
  margin-bottom:15px;
}

/* POINT GRID */
.about-points div{
  font-size:13px;
  padding-left:20px;
  position:relative;
}

.about-points div::before{
  content:"\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  color:#0b3c6d;
  position:absolute;
  left:0;
  top:2px;
}



/* ============= Patners ================== */
.brand-section{
  background:#f4f6f9;
  padding:60px 0;
  overflow:hidden;
}

.brand-title{
  font-size:28px;
  font-weight:700;
  color:#0b3c6d;
}

.brand-subtitle{
  font-size:14px;
  color:#555;
}

/* MARQUEE */
.logo-marquee{
  width:100%;
  overflow:hidden;
  margin:18px 0;
}

.logo-track{
  display:flex;
  width:fit-content;
}

.logo-track img{
  height:60px;
  margin:0 35px;
  filter:grayscale(100%);
  opacity:0.8;
  transition:all 0.3s ease;
}

.logo-track img:hover{
  filter:none;
  opacity:1;
  transform:scale(1.05);
}

/* ANIMATIONS */
.marquee-left .logo-track{
  animation:scrollLeft 30s linear infinite;
}

.marquee-right .logo-track{
  animation:scrollRight 35s linear infinite;
}

@keyframes scrollLeft{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes scrollRight{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}



/* ===== About Us Page - COMMON ===== */
.about-page section{
  padding:60px 0;
}
.section-title{
  font-size:28px;
  font-weight:700;
  color:#0b3c6d;
  margin-bottom:15px;
}
.about-page p{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* ===== ABOUT MAIN ===== */
.about-main-section{
  background:#f4f6f9;
}
.about-image-box img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:6px;
}
.about-bullets{
  margin-top:15px;
  padding-left:18px;
}
.about-bullets li{
  margin-bottom:8px;
  font-size:14px;
}

/* ===== VISION MISSION ===== */
.vision-mission-section{
  background:#ffffff;
}
.vm-card{
  background:#f9fbfd;
  padding:25px;
  border-left:5px solid #0b3c6d;
  border-radius:6px;
}
.vm-card h3{
  font-size:20px;
  margin-bottom:10px;
}

/* ===== LEADERSHIP ===== */
.leadership-section{
  background:#f4f6f9;
}
.leader-card{
  background:#fff;
  padding:25px;
  border-radius:6px;
  height:100%;
}
.leader-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:6px;
  margin-bottom:15px;
}
.leader-card h4{
  margin-bottom:4px;
}
.leader-card span{
  font-size:13px;
  color:#777;
}
.leader-card ul{
  padding-left:18px;
  margin-top:10px;
}
.leader-card ul li{
  font-size:14px;
  margin-bottom:6px;
}

/* ===== COUNTERS ===== */
.counter-section{
  background:#0b3c6d;
  color:#fff;
}
.counter-box h2{
  font-size:36px;
  margin-bottom:5px;
  color:#f1c40f;
}
.counter-box p{
  margin:0;
  font-size:14px;
  color:#fff;
}

/* ===== CONTACT ===== */
.about-contact-section{
  background:#ffffff;
}
.about-contact-section h3{
  font-size:22px;
  margin-bottom:15px;
  color:#0b3c6d;
}



 
