* {
  margin: 0px;
  padding: 0px;
}

a {
  color: #000;
}

body p {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira Extra Condensed", sans-serif;
}

h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 55px;
}

h5 {
  font-size: 25px;
  line-height: 30px;
  color: #ff0000;
  font-weight: 700;
  text-transform: capitalize;
}

h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
}

h3 {
  font-size: 50px;
  line-height: 52px;
}

h4 {
  font-size: 30px;
  font-weight: 700;
}

h1.newhead {
  font-size: 80px !important;
}

/* --- TOP BAR --- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: transparent;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 4px;
  color: #fff;
}
.top-bar-left a.email {
  background: #cc0000;
}
.top-bar-left a.phone {
  background: #1a5fcc;
}
.top-bar-right {
  display: flex;
  gap: 10px;
}

/* --- MAIN NAVBAR --- */
.navbar {
  background: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  margin: 20px 0;
  position: relative;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.main-site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-box {
  background: #1a3a8f;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}
.logo-box .logo-z {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  line-height: 1;
}
.logo-box .logo-slash {
  font-size: 20px;
  color: #7ab3ff;
  margin: 0 2px;
  line-height: 1;
}
.logo-box .logo-olar {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 15px;
  border-radius: 30px;
  transition: 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: #f0f4ff;
  color: #1a3a8f;
}

.btn-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #1a1a1a;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}
.btn-quote:hover {
  background: #1a3a8f;
  color: #fff;
  border-color: #1a3a8f;
}

/* --- HAMBURGER --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- SIDE DRAWER & OVERLAY --- */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
.overlay.show {
  display: block;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.side-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  background: #1a3a8f;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.drawer-nav a {
  padding: 15px 25px;
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

/* HERO */
section#hero {
  position: relative;
  background: url(/assets/images/hero.webp) center / cover no-repeat !important;
  padding: 150px 0px 150px 0px;
  z-index: 1;
}
section#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
section#hero > * {
  position: relative;
  z-index: 2;
}

section#hero .herocontent .herobtn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

section#hero .herocontent .herobtn .herofrstbtn a.btn.btn-success {
  background: transparent;
  border-radius: 10px;
  border: 2px solid #fff;
  color: #fff;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 40px;
}

section#hero .herocontent p {
  color: #fff;
  font-weight: 500;
  margin: 30px 0px;
}

/* ABOUT */
section#aboutzssolar {
  padding: 100px 0px;
}
section#aboutzssolar .solarpanelimg img {
  border-radius: 40px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  max-width: 700px;
  margin: 20px auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-item .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e8000d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-item .icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist-item span {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

section#aboutzssolar .aboutcontent .solarbtn a.btn.btn-danger {
  background: transparent;
  border: 2px solid #dc3545;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  cursor: pointer;
  margin-top: 20px;
}

.jumbocontent {
  margin-top: 50px;
  display: block;
  text-align: center;
}

/* service section */
section#zssolarservice {
  padding: 0px 0px 100px 0px;
  background: #000;
}
section#zssolarservice .solarpanelimg img {
  border-radius: 40px;
}

section#zssolarservice h2 {
  color: #fff;
}

section#zssolarservice p {
  color: #fff;
}

section#zssolarservice .checklist-grid span {
  color: #fff;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  max-width: 700px;
  margin: 20px auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-item .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e8000d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-item .icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist-item span {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

section#zssolarservice .aboutcontent .solarbtn a.btn.btn-danger {
  background: transparent;
  border: 2px solid #dc3545;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  cursor: pointer;
  margin-top: 20px;
}

section#zssolarservice {
  padding: 100px 0px;
}
section#zssolarservice .solarpanelimg img {
  border-radius: 40px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  max-width: 700px;
  margin: 20px auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-item .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e8000d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-item .icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist-item span {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

section#zssolarservice .aboutcontent .solarbtn a.btn.btn-danger {
  background: transparent;
  border: 2px solid #dc3545;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  cursor: pointer;
  margin-top: 20px;
}

/*ends*/

/* service section */
section#serviceprdct {
  padding: 0px 0px 100px 0px;
  background: #000;
}
section#serviceprdct .solarpanelimg img {
  border-radius: 40px;
}

section#serviceprdct h2 {
  color: #fff;
}

section#serviceprdct p {
  color: #fff;
}

section#serviceprdct .checklist-grid span {
  color: #fff;
}

section#serviceprdct .aboutcontent .solarbtn a.btn.btn-danger {
  background: transparent;
  border: 2px solid #dc3545;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  cursor: pointer;
  margin-top: 20px;
}

section#serviceprdct {
  padding: 100px 0px;
}
section#serviceprdct .solarpanelimg img {
  border-radius: 40px;
}

section#serviceprdct .aboutcontent .solarbtn a.btn.btn-danger {
  background: transparent;
  border: 2px solid #dc3545;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 30px;
  cursor: pointer;
  margin-top: 20px;
}

/*ends*/

/*roi sec start*/

section#roiservice {
  padding: 100px;
  text-align: center;
}

/*ends*/

/* SERVICES SLIDER */
.solar-slider {
  background: #000;
  padding: 80px 0 100px;
}
.custom-wrap {
  width: 90%;
  margin: auto;
}
.servicematter {
  text-align: center;
  margin-bottom: 50px;
}
.servicematter h5 {
  color: #e33;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.servicematter h3 {
  color: #fff;
  font-weight: 700;
}

.solar-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.solar-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solar-card:hover img {
  transform: scale(1.07);
}

.icon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s, transform 0.3s;
}
.solar-card:hover .icon-badge {
  background: #e33;
  transform: scale(1.1);
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  z-index: 2;
}
.card-content h5 {
  color: #e33;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}
.card-content p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.owl-dots {
  margin-top: 30px !important;
  text-align: center;
}
.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  transition: background 0.3s !important;
}
.owl-dot.active span {
  background: #fff !important;
  transform: scale(1.2);
}
.owl-nav {
  display: none !important;
}

/*ends*/

/*install sec start*/

/* ===== SECTION ===== */
.process-section {
  background: #ffffff;
  padding: 80px 20px 90px;
  text-align: center;
}

/* ===== BADGE ===== */
.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.process-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e01e1e;
  display: inline-block;
}

/* ===== HEADING ===== */
.process-heading {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 60px;
}

.process-heading span {
  color: #e01e1e;
  display: block;
}

/* ===== STEPS CONTAINER ===== */
.steps-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Horizontal line connecting circles */
.steps-line {
  position: absolute;
  top: 48px;
  left: calc(12.5% + 40px);
  right: calc(12.5% + 40px);
  height: 2px;
  background: linear-gradient(to right, #e8c84a, #e01e1e, #e01e1e, #e8c84a);
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ===== SINGLE STEP ===== */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

/* Circle */
.step-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

/* Each circle has unique style like original */
.step-circle.s1 {
  background: #fff8e1;
  border: 2px solid #e8c84a;
  color: #c49d00;
}

.step-circle.s2 {
  background: #ffebeb;
  border: 3px solid #e01e1e;
  color: #e01e1e;
  transform: scale(1.12);
}

.step-circle.s3 {
  background: #f0f0f0;
  border: 2px solid #bbbbbb;
  color: #222222;
}

.step-circle.s4 {
  background: #fff8e1;
  border: 2px solid #e8c84a;
  color: #c49d00;
}

/* Step title */
.step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

/* Step description */
.step-desc {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.65;
  max-width: 200px;
  text-align: center;
}

/*install section ends*/

/* --- tabs sec start --- */
.solar-projects-wrapper {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #1a1a1a;
}

.solar-projects-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
}

.solar-projects-wrapper .header {
  text-align: left;
  margin-bottom: 50px;
}

.solar-projects-wrapper .sub-title {
  color: #e63946;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.solar-projects-wrapper .header h2 {
  font-size: clamp(28px, 5vw, 42px);
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.solar-projects-wrapper .header h2 span {
  color: #e63946;
}

.solar-projects-wrapper .tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.solar-projects-wrapper .tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.solar-projects-wrapper .tab-btn.active {
  background: #e63946;
  color: #ffffff;
  border-color: #e63946;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.solar-projects-wrapper .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.solar-projects-wrapper .project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  display: none; /* JS will handle display */
}

.solar-projects-wrapper .project-card:hover {
  transform: translateY(-10px);
}

.solar-projects-wrapper .card-top {
  padding: 50px 30px;
  color: #ffffff !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

/* Specific Gradients to match your design */
.solar-projects-wrapper .red-gradient {
  background: linear-gradient(135deg, #e63946 0%, #9b2226 100%);
}
.solar-projects-wrapper .black-gradient {
  background: linear-gradient(135deg, #2b2d42 0%, #000000 100%);
}

.solar-projects-wrapper .project-icon {
  font-size: 45px;
  margin-bottom: 20px;
  color: #fff;
}
.solar-projects-wrapper .location-info p {
  font-size: 11px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
}
.solar-projects-wrapper .location-info h3 {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.solar-projects-wrapper .card-stats {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.solar-projects-wrapper .stat-item {
  text-align: center;
  flex: 1;
}
.solar-projects-wrapper .stat-item:not(:last-child) {
  border-right: 1px solid #eee;
}
.solar-projects-wrapper .stat-item span {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: #1a1a1a;
}
.solar-projects-wrapper .stat-item small {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
}

.solar-projects-wrapper .card-footer {
  padding: 25px;
  text-align: center;
}
.solar-projects-wrapper .saving-tag {
  background: #fff0f1;
  color: #e63946;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  border: 1px dashed #e63946;
}

.solar-projects-wrapper .view-all-container {
  text-align: center;
  margin-top: 60px;
}
.solar-projects-wrapper .btn-view-all {
  background: #1a1a1a;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}
.solar-projects-wrapper .btn-view-all:hover {
  background: #e63946;
}
/*tabs sections ends */

/* HAPPY CLIENTS */
section#happyclients {
  background: #ff0000;
  padding: 50px 0px;
}
section#happyclients .icons {
  display: flex;
  justify-content: start;
  align-items: start;
}
section#happyclients .icons .imgbox {
  width: 100%;
  max-width: 35%;
}
section#happyclients .icons .imgbox img {
  width: 100%;
  max-width: 70%;
  filter: brightness(0) invert(1);
}
section#happyclients .icons .textbox p {
  color: #fff;
}
section#happyclients .icons .textbox h4 {
  color: #fff;
}

/* SOLAR SOLUTION */
section#solarsolution {
  padding: 100px 0px;
  text-align: center;
  background: #000;
}
section#solarsolution h3 {
  color: #fff;
  font-weight: 700;
}
section#solarsolution .efficency {
  border-radius: 30px;
  background: #fff;
  padding: 30px 11px;
}
section#solarsolution .efficency .imgbox img {
  width: 100%;
  max-width: 35%;
}
section#solarsolution .efficency .textbox {
  margin: 20px 0px;
}
section#solarsolution .efficency .textbox h4 {
  line-height: 35px;
  color: #000;
}
section#solarsolution .row {
  margin-top: 70px;
}

/* CONTACT */
section#conatact-support {
  background: #ff0000;
  padding: 50px 0px 0px 0px;
}
section#conatact-support .icons {
  display: flex;
  justify-content: start;
  align-items: start;
}
section#conatact-support .icons .imgbox {
  width: 100%;
  max-width: 30%;
}
section#conatact-support .icons .imgbox img {
  width: 100%;
  max-width: 60%;
  filter: brightness(0) invert(1);
}
section#conatact-support .icons .textbox p {
  color: #fff;
}
section#conatact-support .icons .textbox h4 {
  color: #fff;
}
section#conatact-support a {
  color: #fff;
}

/* FOOTER */
section#zsolarcolophone {
  padding: 100px 0px;
}
section#zsolarcolophone .ftrcolophon .logosftr p {
  color: #000;
  margin-top: 20px;
}
section#zsolarcolophone .ftrcolophon .logosftr img {
  width: 100%;
  max-width: 70%;
}

.social-icons a {
  text-decoration: none;
  margin: 0 10px;
}
.social-icons i {
  font-size: 20px;
  color: #8b0000;
  background: rgba(139, 0, 0, 0.1);
  padding: 9px;
  border-radius: 20%;
  transition: 0.3s ease;
  box-shadow: 0 2px 4px rgba(139, 0, 0, 0.3);
}
.social-icons i:hover {
  color: #fff;
  background: #8b0000;
  transform: scale(1.1);
}

/* COPYRIGHT */
.copyrightlastline {
  display: flex;
  justify-content: center;
  align-items: center;
}
section#lastcopyright {
  background: #000;
  padding: 40px;
}
section#lastcopyright .copyrightlastline h6 {
  font-family: "Open Sans";
  color: #fff;
}

/*ABOUTS US PAGE START*/

/*heroabout sec start*/

section#heroabout {
  position: relative;
  background: url(/assets/images/header-banner.webp) center / cover no-repeat !important;
  padding: 150px 0px 150px 0px;
  z-index: 1;
}
section#heroabout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
section#heroabout > * {
  position: relative;
  z-index: 2;
}

section#heroabout .herocontent .herobtn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

section#heroabout .herocontent p {
  color: #fff;
  margin-top: 30px;
  text-transform: capitalize;
}

.custom-breadcrumb {
  margin-top: 10px;
}

.custom-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-flex;
  backdrop-filter: blur(10px);
}

.custom-breadcrumb .breadcrumb-item a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.custom-breadcrumb .breadcrumb-item a i {
  margin-right: 6px;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #ffc107; /* solar yellow */
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #ffc107;
  font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #ffffff;
  padding: 0 10px;
}

/*heroabout sec ends*/

/*ABOUT US PAGE ENDS*/

/*CONTACT US PAGE START*/

/*contact us sec start*/

.custom-breadcrumb .breadcrumb-item.active .fa-envelope:before {
  content: "\f0e0";
  margin-right: 6px;
  position: relative;
  top: 4px;
}

section#cntctdetails {
  text-align: center;
  padding: 100px 0px;
}

section#cntctdetails .details .iconparent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#cntctdetails .details .iconparent .iconbox {
  width: 25%;
}

section#cntctdetails .details .iconparent .blank {
  width: 75%;
}

section#cntctdetails .details .iconparent .iconbox {
  width: 25%;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}

section#cntctdetails .details .iconparent .iconbox img {
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 70%;
}

section#cntctdetails .detailstwo .iconparent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#cntctdetails .detailstwo .iconparent .iconbox {
  width: 25%;
}

section#cntctdetails .detailstwo .iconparent .blank {
  width: 75%;
}

section#cntctdetails .detailstwo .iconparent .iconbox {
  width: 25%;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}

section#cntctdetails .detailstwo .iconparent .iconbox img {
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 70%;
}

section#cntctdetails .detailsthree .iconparent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#cntctdetails .detailsthree .iconparent .iconbox {
  width: 25%;
}

section#cntctdetails .detailsthree .iconparent .blank {
  width: 75%;
}

section#cntctdetails .detailsthree .iconparent .iconbox {
  width: 25%;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}

section#cntctdetails .detailsthree .iconparent .iconbox img {
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 70%;
}

section#cntctdetails .detailsfrth .iconparent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#cntctdetails .detailsfrth .iconparent .iconbox {
  width: 25%;
}

section#cntctdetails .detailsfrth .iconparent .blank {
  width: 75%;
}

section#cntctdetails .detailsfrth .iconparent .iconbox {
  width: 25%;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}

section#cntctdetails .detailsfrth .iconparent .iconbox img {
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 70%;
}

section#cntctdetails .details {
  border-radius: 15px;
  background-image: url(/assets/images/location-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 15px;
  margin-top: 50px;
}

section#cntctdetails .detailstwo {
  border-radius: 15px;
  background-image: url(/assets/images/email-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 15px;
  margin-top: 50px;
}

section#cntctdetails .detailsthree {
  border-radius: 15px;
  background-image: url(/assets/images/phone-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 15px;
  margin-top: 50px;
}

section#cntctdetails .detailsfrth {
  border-radius: 15px;
  background-image: url(/assets/images/follow-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 15px;
  margin-top: 50px;
}

section#cntctdetails .details .detailscontent {
  margin-top: 50px;
  background: #fff;
  padding: 9px;
  border-radius: 20px;
}

section#cntctdetails .detailstwo .detailscontent {
  margin-top: 50px;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
}

section#cntctdetails .detailsthree .detailscontent {
  margin-top: 50px;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
}

section#cntctdetails .detailsfrth .detailscontent {
  margin-top: 50px;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
}

section#cntctdetails .details .detailscontent p {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

section#cntctdetails .detailstwo .detailscontent p {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

section#cntctdetails .detailsthree .detailscontent p {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

section#cntctdetails .detailsfrth .detailscontent p {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

/*form sec start*/

/* CSS specifically matched to your Image */
.solar-main-wrapper {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: transparent; /* Taake niche ka map ya background dikhe */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.solar-form-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 40px; /* Jaisa image mein round corners hain */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.solar-form-header {
  padding: 50px 40px 10px 40px;
  text-align: center;
}

.solar-progress-container {
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  margin: 30px auto 10px auto;
  width: 80%;
}

.solar-progress-bar {
  height: 100%;
  background: #ff0000;
  width: 33%;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.solar-step {
  display: none;
  padding: 40px;
  text-align: center; /* Image mein text center hai */
  animation: solarFadeIn 0.5s ease;
}

.solar-step-active {
  display: block;
}

@keyframes solarFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solar-field-label {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.solar-field-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.solar-input-row {
  display: flex;
  gap: 15px;
}

.solar-input {
  flex: 1;
  padding: 18px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.solar-input:focus {
  border-color: #ff0000;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.1);
}

.solar-btn-group {
  padding: 0 0 0 0; /* Button row adjustment */
  display: flex;
  width: 100%;
}

.solar-next-btn {
  flex: 1;
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 22px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solar-next-btn:hover {
  background: #cc0000;
}

.solar-back-btn {
  flex: 0.4;
  background: #f8f8f8;
  color: #333;
  border: none;
  padding: 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-right: 1px solid #ddd;
}

#soalrform {
  margin: 60px 0;
}
/*from section ends*/

/*contact us sec ends here*/

/*CONTACT US PAGE ENDS*/

/* ════════════════════════════════════════
       FULLY RESPONSIVE — ALL DEVICES
       Desktop design same rakha gaya hai
       Sirf chhoti screens par adjust kiya hai
    ════════════════════════════════════════ */

/* Hide nav on tablet/mobile */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .btn-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 12px 20px;
    margin: 6px 16px 0;
  }
}

@media (max-width: 991px) {
  nav-links,
  .btn-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .top-bar {
    padding: 10px 20px;
  }
}

/* ── Large Tablet — 1024px ── */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 48px;
  }
  h2 {
    font-size: 38px;
    line-height: 50px;
  }
  h3 {
    font-size: 42px;
    line-height: 46px;
  }
  h4 {
    font-size: 26px;
  }
  h5 {
    font-size: 22px;
  }
  body p {
    font-size: 16px;
    line-height: 26px;
  }

  section#hero {
    padding: 20px 0 100px;
  }
  section#hero .herocontent {
    margin-top: 30px;
  }

  section#aboutzssolar {
    padding: 80px 0;
  }
  section#solarsolution {
    padding: 80px 0;
  }
  section#zsolarcolophone {
    padding: 80px 0;
  }

  .solar-card img {
    height: 300px;
  }
}

/* ── Tablet — 768px ── */
@media (max-width: 768px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  h3 {
    font-size: 34px;
    line-height: 38px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
    line-height: 26px;
  }
  body p {
    font-size: 15px;
    line-height: 25px;
  }

  .top-bar {
    padding: 7px 16px;
  }
  .top-bar-left {
    gap: 12px;
  }
  .top-bar-left a {
    font-size: 12px;
    padding: 4px 10px;
  }

  section#hero {
    padding: 10px 0 70px;
  }
  section#hero .herocontent {
    margin-top: 20px;
  }
  section#hero .herocontent p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 24px;
  }
  section#hero .herocontent .herobtn {
    gap: 12px;
    flex-wrap: wrap;
  }
  section#hero .herocontent .herobtn .herofrstbtn a.btn.btn-success {
    font-size: 15px;
    padding: 8px 28px;
  }

  section#aboutzssolar {
    padding: 60px 0;
  }
  section#aboutzssolar .solarpanelimg {
    margin-bottom: 30px;
  }
  section#aboutzssolar .solarpanelimg img {
    border-radius: 24px;
  }
  section#aboutzssolar .aboutcontent .solarbtn a.btn.btn-danger {
    font-size: 15px;
  }

  .checklist-grid {
    gap: 12px 20px;
    max-width: 560px;
  }
  .checklist-item span {
    font-size: 14px;
  }

  .solar-slider {
    padding: 60px 0 80px;
  }
  .servicematter {
    margin-bottom: 35px;
  }
  .solar-card img {
    height: 250px;
  }
  .card-content {
    padding: 14px 16px;
  }
  .card-content h5 {
    font-size: 15px;
  }
  .icon-badge {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  section#happyclients {
    padding: 40px 0;
  }
  section#happyclients .icons {
    margin-bottom: 20px;
  }
  section#happyclients .icons .imgbox {
    max-width: 28%;
  }

  section#solarsolution {
    padding: 60px 0;
  }
  section#solarsolution .row {
    margin-top: 40px;
  }
  section#solarsolution .efficency {
    margin-bottom: 20px;
  }

  section#conatact-support {
    padding: 40px 0 0;
  }
  section#conatact-support .icons {
    margin-bottom: 24px;
  }

  section#zsolarcolophone {
    padding: 60px 0;
  }
  section#zsolarcolophone .ftrcolophon .logosftr img {
    max-width: 55%;
  }

  section#lastcopyright {
    padding: 28px;
  }
  section#lastcopyright .copyrightlastline h6 {
    font-size: 13px;
    text-align: center;
  }
  section#cntctdetails {
    text-align: center;
    padding: 50px 0px;
  }
  #soalrform {
    margin: 50px 0px;
  }

  header {
    margin: 20px 0px;
  }
  .steps-line {
    display: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .step-circle.s2 {
    transform: scale(1.08);
  }

  section#roiservice {
    padding: 50px 20px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .solar-input-row {
    flex-direction: column;
  }
  .solar-form-card {
    border-radius: 10px;
  }
  .solar-form-header h1 {
    font-size: 22px;
  }
}

/* ── Large Mobile — 600px ── */
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
  h2 {
    font-size: 26px;
    line-height: 34px;
  }
  h3 {
    font-size: 28px;
    line-height: 32px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
    line-height: 24px;
  }
  body p {
    font-size: 14px;
    line-height: 24px;
  }

  section#hero {
    padding: 10px 0 50px;
  }

  .checklist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    max-width: 100%;
  }
  .checklist-item span {
    font-size: 13px;
  }
  .checklist-item .icon {
    width: 20px;
    height: 20px;
  }
  .checklist-item .icon svg {
    width: 10px;
    height: 10px;
  }

  .solar-card img {
    height: 220px;
  }
  .card-content h5 {
    font-size: 14px;
  }
  .card-content p {
    font-size: 12px;
  }

  section#happyclients .icons .imgbox {
    max-width: 24%;
  }
  section#happyclients .icons .imgbox img {
    max-width: 80%;
  }

  section#solarsolution .efficency .imgbox img {
    max-width: 28%;
  }
  section#solarsolution .efficency .textbox h4 {
    font-size: 18px;
    line-height: 26px;
  }
  section#solarsolution .efficency .textbox p {
    font-size: 13px;
  }

  section#conatact-support .icons .imgbox {
    max-width: 22%;
  }

  section#zsolarcolophone .ftrcolophon .logosftr img {
    max-width: 60%;
  }
  .social-icons i {
    font-size: 18px;
    padding: 8px;
  }
}

/* ── Mobile — 480px ── */
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
    line-height: 22px;
  }
  body p {
    font-size: 13px;
    line-height: 22px;
  }

  .top-bar-left a.email span,
  .top-bar-left a.phone span {
    display: none;
  }
  .top-bar-left a {
    padding: 6px 8px;
    border-radius: 50%;
  }
  .top-bar {
    padding: 7px 12px;
  }
  .navbar {
    margin: 6px 10px 0;
    border-radius: 40px;
    padding: 10px 16px;
  }
  .logo-box {
    padding: 5px 10px;
  }
  .logo-box .logo-z {
    font-size: 18px;
  }
  .logo-box .logo-olar {
    font-size: 15px;
  }
  .side-drawer {
    width: 280px;
  }

  section#hero {
    padding: 10px 0 40px;
  }
  section#hero .herocontent {
    margin-top: 16px;
  }
  section#hero .herocontent p {
    font-size: 13px;
    line-height: 22px;
    margin: 15px 0;
  }
  section#hero .herocontent .herobtn .herofrstbtn a.btn.btn-success {
    font-size: 13px;
    padding: 7px 20px;
  }

  section#aboutzssolar {
    padding: 50px 0;
  }
  section#aboutzssolar .aboutcontent .solarbtn a.btn.btn-danger {
    font-size: 13px;
    padding: 6px 18px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
  .checklist-item span {
    font-size: 14px;
  }

  .solar-slider {
    padding: 50px 0 70px;
  }
  .servicematter {
    margin-bottom: 28px;
  }
  .solar-card img {
    height: 200px;
  }
  .card-content {
    bottom: 14px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .card-content h5 {
    font-size: 13px;
  }
  .card-content p {
    font-size: 11px;
  }
  .icon-badge {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 9px;
    top: 10px;
    right: 10px;
  }

  section#happyclients {
    padding: 30px 0;
  }
  section#happyclients .icons {
    gap: 10px;
  }
  section#happyclients .icons .imgbox {
    max-width: 20%;
  }

  section#solarsolution {
    padding: 50px 0;
  }
  section#solarsolution .row {
    margin-top: 30px;
  }
  section#solarsolution .efficency {
    padding: 22px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  section#solarsolution .efficency .imgbox img {
    max-width: 24%;
  }
  section#solarsolution .efficency .textbox h4 {
    font-size: 17px;
    line-height: 24px;
  }

  section#conatact-support {
    padding: 30px 0 0;
  }
  section#conatact-support .icons {
    margin-bottom: 20px;
  }
  section#conatact-support .icons .imgbox {
    max-width: 20%;
  }

  section#zsolarcolophone {
    padding: 50px 0;
  }
  section#zsolarcolophone .ftrcolophon .logosftr img {
    max-width: 65%;
  }
  section#zsolarcolophone .ftrcolophon .logosftr p {
    font-size: 13px;
    line-height: 22px;
  }

  section#lastcopyright {
    padding: 22px;
  }
  section#lastcopyright .copyrightlastline h6 {
    font-size: 12px;
  }
  .main-site-logo {
    height: 40px;
  }
  .logo-box {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Small Mobile — 360px ── */
@media (max-width: 360px) {
  h1 {
    font-size: 21px;
    line-height: 27px;
  }
  h2 {
    font-size: 20px;
    line-height: 27px;
  }
  h3 {
    font-size: 21px;
    line-height: 25px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  body p {
    font-size: 12px;
    line-height: 20px;
  }

  .side-drawer {
    width: 260px;
  }

  section#hero .herocontent .herobtn {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  section#hero .herocontent .herobtn .herofrstbtn a.btn.btn-success {
    font-size: 12px;
    padding: 6px 16px;
  }

  .solar-card img {
    height: 180px;
  }
  .card-content h5 {
    font-size: 12px;
  }
  .card-content p {
    font-size: 10px;
  }

  section#happyclients .icons .imgbox {
    max-width: 18%;
  }
  section#solarsolution .efficency .imgbox img {
    max-width: 22%;
  }

  section#zsolarcolophone .ftrcolophon .logosftr img {
    max-width: 70%;
  }
  .social-icons i {
    font-size: 16px;
    padding: 7px;
  }

  section#lastcopyright .copyrightlastline h6 {
    font-size: 11px;
  }
}
