* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

#navbar {
  width: 95%;             
  margin: 0 auto;
  padding: 9px 28px;     
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 12px;
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: top 0.6s ease;
}


.logo img {
  height: 80px; 
  width: auto;
  object-fit: contain;
  margin-right: 20px;
  transition: all 0.3s ease; 
}

/* Navbar links */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff8a00;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  background: white;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 10px 0;
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none; 
}

.dropdown-menu.show {
  display: block; 
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li:hover {
  background: #ffedcc;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.dropdown-menu li a:hover {
  color: #ff8a00;
}




/* hamburger-icon */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* HAMBURGER SIDEBAR  */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  padding: 20px;
  z-index: 10000;
  border-radius: 0 20px 20px 0;

  /* Premium Glass Effect */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(210, 230, 255, 0.45);

  /* Border outline */
  border-right: 2px solid rgba(255, 255, 255, 0.45);

  /* Soft UI shadow */
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.18);

  transition: all 0.45s ease;
}

@media (min-width:1025px) {
  .sidebar{
    display: none;
  }
}

/* Smooth slide-in */
.sidebar.active {
  left: 0;
}

/* Menu list */
.sidebar ul {
  list-style: none;
  padding: 2.5rem 40px;
}

.sidebar ul li {
  padding: 14px 0;
}

/* Menu links */
.sidebar ul li a {
  font-size: 17px;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hover Effects */
.sidebar ul li a:hover {
  color: #0066ff;
  padding-left: 8px;
  transform: scale(1.05);
}

/* Close button */
.close-btn {
  float: right;
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #0066ff;
  transform: rotate(90deg) scale(1.15);
}

/* Dropdown inside sidebar */
.sidebar .dropdown-menu {
  display: none;
  padding-left: 20px;
}

.sidebar .dropdown-menu.show {
  display: block;
  animation: dropdownFade 0.3s ease;
}

/* Dropdown smooth fade */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Navbar Responsive Media Quries */

/*  LAPTOP (max-width: 1200px) */
@media (max-width: 1200px) {
  #navbar {
    width: 90%;
    padding: 18px 25px;
  }
  nav ul {
    gap: 25px;
  }
  .logo img {
    height:65px;
  }

  .menu-icon {
  display: none;
}


  .sidebar {
        padding: 18px;
  }
  .sidebar ul li a {
    font-size: 17px;
  }
}

/* TABLET (max-width: 992px)  */
@media (max-width: 992px) {
  #navbar {
    width: 94%;
    padding: 18px 22px;
  }
  nav ul {
    gap: 20px;
  }
  nav ul li a {
    font-size: 16px;
  }
  .logo img {
    height: 60px;
  }

  .menu-icon {
  display: none;
}


  .sidebar {
    padding: 16px;
  }
  .sidebar ul li a {
    font-size: 16px;
  }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {

  #navbar {
    width: 95%;
    padding: 14px 16px;
    justify-content: space-between;
  }

  .nav-links {
    display: none; 
  }

   .menu-icon {
    display: block;
    font-size: 32px;
  }

  .logo img {
    height: 55px;
  }

    .menu-icon {
    display: block;
    font-size: 32px;
  }
  .sidebar {
   
    padding: 14px;
  }
  .sidebar ul li a {
    font-size: 15px;
  }
}

/* SMALL MOBILE (max-width: 600px) */
@media (max-width: 600px) {

  #navbar {
    width: 96%;
    padding: 12px 14px;
  }

  .logo img {
    height: 50px;
  }

  .menu-icon {
    font-size: 30px;
  }

  .sidebar {
    
    padding: 12px;
  }
  .sidebar ul li a {
    font-size: 14px;
  }
}

/* EXTRA SMALL (max-width: 480px) */
@media (max-width: 480px) {

  #navbar {
    width: 98%;
    padding: 10px 12px;
  }

  .logo img {
    height: 48px;
  }

 
    .menu-icon {
    font-size: 26px;
  }
  .sidebar {
   
    padding: 10px;
  }
  .sidebar ul li a {
    font-size: 13px;
  }
}



/* SHOW MENU ICON & HIDE NAV-LINKS AT 1119px */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .menu-icon {
    display: block !important;
    font-size: 32px;
    cursor: pointer;
  }
}






/*  Home HERO SLIDER */
.slider {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
}

/* Fix image  */
.slides, .slide {
  width: 100%;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

.slide.active {
  display: block;
}




/* HERO TEXT CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 10; 
  color: white;
  max-width: 600px;
  padding: 0;         
  background: none;   
}


.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  white-space: nowrap;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ffb300;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffc733;
}


.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);  
  z-index: 1;
}





/* ABOUT US SECTION */
.about-section {
    width: 90%;
    margin: 2.5rem auto;
}

.section-title {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ff9a00;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #ff8a00; 
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* About Container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Content */
.about-content {
    width: 50%;
    padding-left: 20px;
}

.about-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff8a00;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Right Image */
.about-image {
    width: 50%;
    padding-right: 20px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* View Button */
.view-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #ff8a00;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.view-btn:hover {
    background: #e67800;
    transform: translateY(-2px);
}






/* HOME SERVICES SECTION */
.services-section {
  width: 100%;
  padding: 2.5rem 5%;
  background: #eaf4ff;
}

.main-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #003d66;
  margin-bottom: 1rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD DESIGN */
.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #004a70;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.5;
}

/* Read More Btn */
.read-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #004a70;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-btn:hover {
  background: #0077aa;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}



/* Home Advanced solar system  */

.solar-system-section {
  padding: 2.5rem 5%;
  margin-top: 1rem;
}

.solar-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.solar-left {
  flex: 1;
}

.solar-img {
  width: 100%;
  height: auto;        
  max-height: 300px;   
  object-fit: contain;
  background: #fff;   
  padding: 10px;       
  border-radius: 10px;
}


/* Right Content */
.solar-right {
  flex: 1;
}

.solar-right h2 {
  font-size: 28px;
  font-weight: 700;
  color: #004a70;
  margin-bottom: 15px;
}


.solar-right p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}



/* Hover Effect */
.solar-row {
  transition: all 0.3s ease;
}

.solar-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
 



/* Why solar section */
.why-solar {
    /* padding: 2.5rem 0; */
    background: transparent;
    text-align: center;
    /* margin-top: 50px; */
}

/* Title */
.why-title {
    background: linear-gradient(90deg, #ec920a, #2575fc);
    color: white;
    margin: 0 auto 50px;
    padding: 15px 0;
    border-radius: 8px;
    width: 65%;
    font-size: 24px;
    font-weight: bold;
}

/* 3 Cards Per Row */
.solar-cards {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    justify-content: center;
    gap: 55px;                    
}

/* Card Style */
.solar-card {
    position: relative;
    height: 310px;
    background: linear-gradient(135deg, #ff7b00, #2d9fff);
    padding: 60px 20px 30px;       
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: white;
    overflow: hidden;
    transition: 0.3s;
}

/* Hover Effect */
.solar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/* Bigger Icons */
.solar-card i {
    font-size: 70px;
    margin-bottom: 25px;    
    color: #ffbd3f;
}

/* Titles */
.solar-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Paragraph */
.solar-card p {
    font-size: 14px;
    opacity: 0.95;
}

/* Waves */
.wave {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 240%;
    height: 170px;
    background: rgba(255, 165, 0, 0.35);
    border-radius: 45%;
    animation: waveMove 6s infinite linear;
    z-index: -1;
}

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(-55%); }
}

/* Second Wave Layer */
.solar-card::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 240%;
    height: 180px;
    background: rgba(202, 137, 15, 0.22);
    border-radius: 45%;
    animation: waveMove 8s infinite linear reverse;
    z-index: -2;
}











/* solar -journey section */
.solar-journey {
    width: 100%;
    padding: 2.5rem 0;
    background: #f8fbff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px;
}

.journey-container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.journey-box {
    width: 30%;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.journey-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.journey-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0077ff;
    margin-bottom: 12px;
}

.journey-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}





/* our gallery section */
.gallery-section {
    padding: 2.5rem 50px; 
    text-align: center;
    background: #f8fbff;
}

.gallery-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.gallery-img {
    width: 100%;
    height: 350px; 
    object-fit: cover;
    border-radius: 10px;

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.gallery-img.show {
    opacity: 1;
    transform: translateY(0);
}

/* show more button */
.gallery-btn-box {
    margin-top: 30px;
    text-align: center;
}

.gallery-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-btn:hover {
    background: #000;
    letter-spacing: 1px;
}





/* home solar banner section */
.hero-solar-banner {
  width: 100%;
  overflow: hidden;
  padding: 0 50px; 
  box-sizing: border-box;
}

.hero-solar-container img {
  width: 100%;
  height: auto; 
  display: block;
  border-radius: 10px; 
  object-fit: contain; 
  transition: all 0.3s ease;
}




/* Testimonial-section */
/* Section */
.solar-testimonials {
  width: 100%;
  padding: 60px 20px;
  background: #f4f8ff;
}

/* Title + Arrow Row */
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* Title */
.testi-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #222;
  text-align: center;
  width:100%;
}

/* Arrow Group */
.arrow-group {
  display: flex;
  gap: 10px;
}

.arrow {
  width: 35px;
  height: 35px;
  font-size: 18px;
  background: #ff9800;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover {
  background: #e68900;
}

/* Slider */
.testi-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track */
.testi-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* Cards */
.testi-card {
  min-width: 320px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.testi-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #111;
}

.service {
  font-size: 14px;
  font-weight: 600;
  color: #ff9800;
  margin-bottom: 12px;
}

.review {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .arrow-group {
    align-self: flex-end;
  }

  .testi-card {
    min-width: 280px;
  }
}





 /* Enquiry section overlay */
.enquiry-sec {
  background-color: rgba(0, 0, 0, 0.568);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* Close Button */
.close-enquiry {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}
.close-enquiry:hover {
  color: #e08103;
}

/* Enquiry box */
.enquiry-box {
  max-width: 650px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Container */
.enquiry-container {
  font-family: Poppins, sans-serif;
}

.enquiry-container h2 {
  font-size: 32px;
  font-weight: 700;
}

.enquiry-container p {
  margin-bottom: 20px;
  color: #555;
}

/* Form */
.enquiry-form label {
  font-weight: 600;
  display: block;
  margin: 10px 0 5px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  margin-bottom: 10px;
}

.send-btn {
  width: 100%;
  padding: 15px;
  background: #e08103;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.send-btn:hover {
  background: #0b0080;
}

/* -------------------------------------- */
/* RESPONSIVE DESIGN */
/* -------------------------------------- */

@media (max-width: 768px) {
  .enquiry-box {
    max-width: 500px;
    padding: 20px;
  }
  .enquiry-container h2 {
    font-size: 26px;
  }
  .enquiry-form input,
  .enquiry-form textarea {
    padding: 13px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .enquiry-box {
    padding: 18px;
  }
  .close-enquiry {
    font-size: 28px;
  }
  .enquiry-container h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .enquiry-container h2 {
    font-size: 22px;
  }
  .enquiry-container p {
    font-size: 14px;
  }
  .send-btn {
    font-size: 16px;
    padding: 12px;
  }

  .enquiry-form input,
  .enquiry-form textarea {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .enquiry-box {
    padding: 12px;
  }
  .close-enquiry {
    font-size: 24px;
  }
  .enquiry-container h2 {
    font-size: 20px;
  }
  .enquiry-form input,
  .enquiry-form textarea {
    padding: 10px;
    font-size: 13px;
  }
  .send-btn {
    padding: 10px;
    font-size: 15px;
  }
}








/* Footer styles */
.solar-footer {
  background-color: #002b5c; 
  color: white;
  padding: 20px 30px 20px; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo-address,
.footer-links,
.footer-contact,
.footer-follow {
  flex: 1 1 220px;
}

/* Footer Logo */
.footer-logo {
  width: 210px; 
  max-width: 100%;
}

.footer-logo-address p,
.footer-logo-address h4 {
  margin: 8px 0;
  font-weight: 400;
}

/* Section Titles */
.footer-links h4,
.footer-contact h4,
.footer-follow h4 {
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 3px solid #00aaff; 
  padding-bottom: 5px;
  font-size: 18px;
  display: inline-block;         
  width: auto;                   
  min-width: 80px;               
}

/* Lists */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 12px;
  font-weight: 400;
  cursor: default;
  color: white;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00aaff;
}

.footer-contact ul li i {
  margin-right: 8px;
  color: #00aaff;
}

/* Social Icons */
.footer-follow .social-icons {
  margin-bottom: 15px;
}

.footer-follow .social-icons a {
  color: white;
  font-size: 22px;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-follow .social-icons a:hover {
  color: #00aaff;
}

.footer-follow p {
  margin-bottom: 10px;
  font-size: 14px;
  max-width: 260px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  max-width: 300px;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #0077cc;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}





/*  HOME Responsive media quries */

/* LAPTOP (max-width: 1200px)*/
@media (max-width: 1200px) {
  /* Hero Slider */
  .slider { 
    height: 550px; 
  }
  
    .hero-content {
    left: 80px;
    max-width: 520px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
  

  /* About Section */
  .section-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .about-content h3 {
    font-size: 24px;
  }
  .about-content p {
    font-size: 15px;
  }
  .about-container {
    gap: 30px;
  }

  /* Services Section */
    .services-grid {
    gap: 30px;
  }
  .service-card img {
    height: 180px;
  }


  /* Advanced services */
  .solar-right h2 {
    font-size: 26px;
  }
  .solar-right p {
    font-size: 16px;
  }

  /* why solar section */
      .solar-cards {
        grid-template-columns: repeat(3, 240px);
        gap: 40px;
    }
    .solar-card {
        height: 300px;
    }

  /* Banner Section */
  .banner-section {
    gap: 35px;
  }
  .banner-box {
    width: 48%;
  }

  /* Solar Journey */
  .section-title {
    font-size: 28px;
  }
  .journey-container {
    width: 90%;
    gap: 25px;
  }
  .journey-box {
    width: 45%;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 2.5rem 40px;
  }
  .gallery-title {
    font-size: 36px;
    margin-bottom: 35px;
  }
  .gallery-img {
    height: 550px;
  }

  /* Hero Solar Banner */
  .hero-solar-banner {
    padding: 0 40px;
  }
}

/* TABLET  (max-width: 992px)  */
@media (max-width: 992px) {
  /* Hero Slider */
  .slider { 
    height: 500px; 
  }
 
    .hero-content {
    left: 60px;
    max-width: 450px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 17px;
  }


  /* About Section */
  .section-title {
    font-size: 38px;
  }
  .about-content {
    width: 55%;
    padding-left: 15px;
  }
  .about-image {
    width: 45%;
    padding-right: 15px;
  }
  .about-content h3 {
    font-size: 22px;
  }
  .about-content p {
    font-size: 15px;
  }

  /* Services Section */
    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .main-title {
    font-size: 34px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }



/* Advanced services */
  .solar-row {
    gap: 25px;
    padding: 20px;
  }

  .solar-img {
    max-height: 260px;
  }

  .solar-right h2 {
    font-size: 24px;
  }

  /* why solar section */
   .why-title {
        width: 80%;
        font-size: 22px;
    }
    .solar-cards {
        grid-template-columns: repeat(2, 260px);
        gap: 40px;
    }



  /* Solar Journey */
  .section-title {
    font-size: 26px;
  }
  .journey-container {
    gap: 20px;
  }
  .journey-box {
    width: 48%;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 2.5rem 30px;
  }
  .gallery-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-img {
    height: 400px; 
  }

  /* Hero Solar Banner */
  .hero-solar-banner {
    padding: 0 30px;
  }
}

/* TABLET / BIG MOBILE (max-width: 768px) */
@media (max-width: 768px) {
  /* Hero Slider */
  .slider { 
    height: 420px;
  }

    .hero-content {
    left: 40px;
    max-width: 400px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  /* About Section */
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
  .about-content, .about-image {
    width: 100%;
    padding: 0;
  }
  .about-content h3 {
    font-size: 22px;
  }
  .about-content p {
    font-size: 15px;
  }

  /* Services Section */
    .services-section {
    padding: 2.5rem 5%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .service-card {
    padding: 18px;
  }
  .service-card img {
    height: 170px;
  }


  /* Advanced Services */
  
    .solar-row {
    flex-direction: column;
    text-align: center;
  }

  .solar-left,
  .solar-right {
    flex: unset;
    width: 100%;
  }

  .solar-img {
    max-height: 240px;
  }

  .solar-right h2 {
    font-size: 22px;
  }

  .solar-right p {
    font-size: 15.5px;
  }

  /* why solar section */
  .solar-cards {
        grid-template-columns: repeat(2, 220px);
        gap: 30px;
    }
    .solar-card {
        height: 280px;
        padding: 50px 15px 25px;
    }
    .solar-card i {
        font-size: 60px;
    }

 

  /* Hero Solar Banner */
  .hero-solar-banner {
    padding: 0 20px;
  }

  /* Solar Journey */
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .journey-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .journey-box {
    width: 90%;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 2.5rem 20px;
  }
  .gallery-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-img {
    height: 450px;
    max-width: 750px;
  }
}

/*  MOBILE (max-width: 600px) */
@media (max-width: 600px) {
  /* Hero Slider */
  .slider { 
    height: 350px; 
  }

    .hero-content {
    left: 25px;
    max-width: 350px;
  }

   .hero-content h1 {
    white-space: normal; 
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn {
    font-size: 15px;
    padding: 10px 22px;
  }

  /* About Section */
  .about-content h3 {
    font-size: 20px;
  }
  .about-content p {
    font-size: 14px;
  }
  .view-btn {
    padding: 10px 24px;
    font-size: 15px;
  }

  /* Services Section */
    .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .main-title {
    font-size: 32px;
  }
  .service-card img {
    height: 165px;
  }


  /* advanced services */
  .solar-system-section {
    padding: 1rem 4%;
  }

  .solar-row {
    padding: 18px;
  }

  .solar-img {
    max-height: 220px;
    padding: 8px;
  }

  .solar-btn {
    padding: 11px 26px;
    font-size: 14px;
  }


  /* why solar section */
  .why-title {
        width: 90%;
        font-size: 20px;
    }
    .solar-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .solar-card {
        width: 80%;
        margin: 0 auto;
    }


  /* Hero Solar Banner */
  .hero-solar-banner {
    padding: 0 20px;
  }

  /* Solar Journey */
  .journey-container {
    flex-direction: column;
    gap: 20px;
  }
  .journey-box {
    width: 90%;
  }
}

/* small phone(max-width: 480px) */
@media (max-width: 480px) {
  /* Hero Slider */
  .slider { 
    height: 300px; 
  }


    .hero-content {
    left: 20px;
    max-width: 300px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 9px 20px;
  }

  /* About Section */
  .about-content h3 {
    font-size: 18px;
  }
  .about-content p {
    font-size: 16px;
  }
  .view-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 2.5rem 15px;
  }
  .gallery-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .gallery-img {
    height: 250px; 
  }
  .gallery-btn {
    font-size: 16px;
    padding: 10px 25px;
  }

  /* Solar Journey */
  .journey-box h3 {
    font-size: 20px;
  }
  .journey-box p {
    font-size: 14px;
  }

/* Our services home */
    .main-title {
    font-size: 28px;
  }
  .service-card {
    padding: 16px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card img {
    height: 150px;
  }



  /* Advanced Services */
    .solar-right h2 {
    font-size: 20px;
  }

  .solar-right p {
    font-size: 15px;
    line-height: 1.7;
  }

  .solar-img {
    max-height: 200px;
  }

/* why solar section */
      .why-title {
        width: 95%;
        font-size: 18px;
    }
    .solar-card {
        width: 90%;
        height: 270px;
    }
    .solar-card i {
        font-size: 55px;
    }

}

/*  SMALL DEVICES (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content {
    left: 15px;
    max-width: 260px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 8px 18px;
  }


  /* About Section */
  .about-content h3 {
    font-size: 16px;
  }
  .about-content p {
    font-size: 13px;
  }
  .view-btn {
    padding: 7px 18px;
    font-size: 13px;
  }

  /* Services Section */
   .services-section {
    padding: 2.5rem 4%;
  }
  .service-card {
    padding: 14px;
  }
  .service-card img {
    height: 140px;
  }
  .service-card p {
    font-size: 13px;
  }
  .read-btn {
    padding: 8px 16px;
    font-size: 14px;
  }


  /* Advanced services  */
    .solar-row {
    padding: 15px;
  }

  .solar-right h2 {
    font-size: 18px;
  }

  .solar-btn {
    padding: 10px 22px;
    font-size: 13.5px;
  }

  .solar-img {
    max-height: 180px;
  }


  /* why solar section */
   .solar-card {
        width: 95%;
        height: 260px;
        padding: 40px 10px 20px;
    }
    .solar-card i {
        font-size: 50px;
    }
    .solar-card h3 {
        font-size: 18px;
    }
    .solar-card p {
        font-size: 13px;
    }

  /* Section Titles */
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}





/* ---------- ABOUT US PAGE  ---------- */

/* about hero section */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/1200x/ea/42/7a/ea427a16cd68490ef9687dc8fd5487ce.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

.about-hero-section .content {
    position: relative;
    color: white;
}

.about-hero-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-hero-section p {
    font-size: 20px;
    margin-top: 15px;   
    margin: 0;
}




/* about banner section */
.about-solar-banner {
  width: 100%;
  overflow: hidden;
  padding: 0 50px; 
  box-sizing: border-box;
}

.about-solar-container img {
  width: 100%;
  height: auto; 
  display: block;
  border-radius: 10px; 
  object-fit: contain; 
  transition: all 0.3s ease;
}




/* solar section about us  */
.solar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 2.5rem 5%;
}

.solar-content {
    flex: 1;
}

.solar-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solar-content p {
    margin: 15px 0;
    line-height: 1.6;
    font-size: 16px;
}

.btn-enquiry {
    display: inline-block;
    background: #3a2dc9;
    padding: 12px 26px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.solar-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.solar-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    object-fit: contain;
}




/* Why choose us section */
.why-section{
    width: 95%;                 
    margin: auto;
    padding: 60px;
    background: #f1f5ff;   
    border-radius: 12px; 
}

.why-content-box{
    display: flex;
    align-items: center;         
    justify-content: space-between;
    gap: 40px;
}

.left-content{
    width: 55%;
}


/* Right Image Box */
.right-image{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-image img{
    max-width: 100%;    
    height: auto;       
    border-radius: 10px;
    object-fit: contain; 
}

.why-heading-box{
    text-align: left;
    margin-bottom: 20px;
}

.main-heading{
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.sub-heading{
    font-size: 26px;
    margin-top: 10px;
    font-weight: 700;
    color: #000;
}

.content{
    font-size: 17px;
    margin-top: 20px;
    color: #333;
}

/* List */
ul{
    margin-top: 25px;
    padding-left: 20px;

}

ul li{
    margin: 12px 0;
    font-size: 17px;
    color: rgb(6, 111, 160);
}





/* Our Mission / Vision Section */
.mv-section {
    width: 100%;
    padding: 2.5rem 5%;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mv-main-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #3a2dc9;
}

/* Rows */
.mv-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

/* Text */
.mv-text {
    flex: 1;
    min-width: 300px;
    font-size: 18px;  
    line-height: 1.8; 
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.mv-text h4 {
    font-size: 30px; 
    color: #3a2dc9;
    margin-bottom: 15px;
}

/* Image */
.mv-img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animate on scroll */
.mv-text.visible,
.mv-img.visible {
    opacity: 1;
    transform: translateY(0);
}




/* About us  Responsive Media Quries */

/* Large desktops & laptops */
@media (max-width: 1200px) {
  .about-solar-banner {
    padding: 0 40px;
  }

  /* why choose us  */
     .left-content{
        width: 60%;
    }
    .right-image{
        width: 35%;
    }
    .main-heading{
        font-size: 38px;
    }
    .sub-heading{
        font-size: 24px;
    }
}

/* Tablets and smaller screens */
@media (max-width: 900px) {
  .about-solar-banner {
    padding: 0 30px;
  }

  .solar-section {
    flex-direction: column;
    text-align: center;
  }

    /* our misssion/vision  */
      .mv-row,
    .mv-row.reverse {
        flex-direction: column;
        gap: 40px; 
    }

    .mv-text {
        font-size: 18px; 
        line-height: 1.9;
    }

    .mv-text h4 {
        font-size: 32px;
    }

    .mv-img {
        height: 250px;
    }


    /* why choose us  */
      .why-content-box{
        gap: 30px;
    }
    .left-content{
        width: 58%;
    }
    .right-image{
        width: 38%;
    }
    .main-heading{
        font-size: 34px;
    }



}

/* Large phones / small tablets */
@media (max-width: 600px) {
  .about-solar-banner {
    padding: 0 20px;
  }

  /* why choose us section */
      .main-heading{
        font-size: 30px;
    }
    .sub-heading{
        font-size: 20px;
    }
    .content, ul li{
        font-size: 16px;
    }
    .right-image img{
        max-width: 75%;
    }


}


/* Small phones 400px */
@media (max-width: 400px) {
  .about-solar-banner {
    padding: 0 10px;
  }


  /* Why choose us */
   .why-section{
        padding: 2.5rem 20px;
    }
    .main-heading{
        font-size: 26px;
    }
    .sub-heading{
        font-size: 18px;
    }
    .right-image img{
        max-width: 80%;
    }
}


/* responsive 768px */
@media (max-width: 768px) {
    .why-content-box{
        flex-direction: column;
        text-align: center;
    }
    .left-content, 
    .right-image{
        width: 100%;
    }
    .right-image img{
        max-width: 70%;
    }
    .why-heading-box{
        text-align: center;
    }
}


/* responsive  360px */
@media (max-width: 360px) {
    .main-heading{
        font-size: 22px;
    }
    .sub-heading{
        font-size: 16px;
    }
    .content, ul li{
        font-size: 15px;
    }
    .right-image img{
        max-width: 85%;
    }
}






/* ---------- Subsidy US PAGE  ---------- */

/* subsidy content section */
.subsidy-section {
    padding: 2rem 20px;
    text-align: center;
    overflow: hidden;
}

.subsidy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.animate-title {
    font-size: 2.8em;
    color: #ff7a00;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}

/* Two Column Layout */
.subsidy-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
}

.subsidy-content p{
  line-height: 2rem;
}

.subsidy-text, .subsidy-image {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}


.subsidy-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.subsidy-intro, .contact-text {
    font-size: 1.1em;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none; 
    padding: 0;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.benefits-list li {
    font-size: 1em;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: "✔"; 
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-weight: bold;
}


/* Fade In Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Subsidy content/images */
.subsidy-section {
  width: 100%;
  padding: 2rem 10%;
  background: #f4f9ff;
  font-family: Arial, sans-serif;
}

.main-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 70px;
  color: #0a3d62;
  position: relative;
  text-decoration: underline;
}

.subsidy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.subsidy-row.reverse {
  flex-direction: row-reverse;
}

.subsidy-img {
  flex: 1;
}

.subsidy-img img {
  width: 100%;
  max-width: 550px;
  height: 450px; 
  object-fit: cover; 
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}


.subsidy-img img:hover {
  transform: scale(1.05);
}

.subsidy-content {
  flex: 1;
}

.subsidy-content h3 {
  font-size: 32px; 
  margin-bottom: 20px;
  color: #1e3799;
}

.subsidy-content p {
  font-size: 20px; 
  line-height: 2;  
  color: #444;
}






/* subsidy page responsive media quries */

/* Extra Large Screens - 1200px */
@media (max-width: 1200px) {
  /* subsidy content section */
      .subsidy-container {
        max-width: 960px;
    }
    .animate-title {
        font-size: 2.6em;
    }


    /* subsidy content/image  */
   .subsidy-content h3 {
    font-size: 30px;
  }
  .subsidy-content p {
    font-size: 19px;
  }
  .subsidy-img img {
    max-width: 500px;
    height: 420px;
  }
}

/* Large Screens - 992px */
@media (max-width: 992px) {
  /* subsidy content section */
  .subsidy-container {
        max-width: 720px;
    }
    .subsidy-content {
        flex-direction: column;
        gap: 30px;
    }
    .animate-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .subsidy-image img {
        max-height: 300px;
    }


  /* subsidy content/images */
   .subsidy-row,
  .subsidy-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .subsidy-content h3 {
    font-size: 28px;
  }
  .subsidy-content p {
    font-size: 18px;
  }
  .subsidy-img img {
    max-width: 100%;
    height: 400px;
  }
  .main-heading {
    font-size: 32px;
  }
}

/* Medium Screens - 768px */
@media (max-width: 768px) {
/* Subsidy content section */
    .subsidy-container {
        max-width: 540px;
    }
    .animate-title {
        font-size: 2em;
    }
    .subsidy-intro, .contact-text {
        font-size: 1em;
    }
    .benefits-list li {
        font-size: 0.95em;
    }
    .subsidy-image img {
        max-height: 280px;
    }


   /* subsidy content/images */
    .subsidy-content h3 {
    font-size: 26px;
  }
  .subsidy-content p {
    font-size: 17px;
  }
  .subsidy-img img {
    height: 350px;
  }
  .main-heading {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

/* Small Screens - 600px */
@media (max-width: 600px) {
/* Subsidy content section */
     .subsidy-container {
        max-width: 400px;
        padding: 30px 15px;
    }
    .animate-title {
        font-size: 1.8em;
    }
    .subsidy-intro, .contact-text {
        font-size: 0.95em;
        line-height: 1.5;
    }
    .benefits-list li {
        font-size: 0.9em;
        padding-left: 20px;
    }
    .subsidy-image img {
        max-height: 240px;
    }


   /* subsidy content/images */
   .subsidy-content h3 {
    font-size: 24px;
  }
  .subsidy-content p {
    font-size: 16px;
  }
  .subsidy-img img {
    height: 300px;
  }
  .subsidy-section {
    padding: 2rem 5%;
  }
  .main-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

}

/* Extra Small Screens - 480px */
@media (max-width: 480px) {
/* Subsidy content section */
     .subsidy-container {
        max-width: 320px;
        padding: 25px 10px;
    }
    .animate-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .subsidy-intro, .contact-text {
        font-size: 0.9em;
        line-height: 1.4;
    }
    .benefits-list li {
        font-size: 0.85em;
        padding-left: 18px;
    }
    .subsidy-image img {
        max-height: 200px;
    }


 /* subsidy content/images */
   .subsidy-content h3 {
    font-size: 22px;
  }
  .subsidy-content p {
    font-size: 15px;
  }
  .subsidy-img img {
    height: 250px;
  }
  .main-heading {
    font-size: 24px;
    margin-bottom: 35px;
  }

}

/*  Small Screens - 360px */
@media (max-width: 360px) {
/* Subsidy content section */
    .subsidy-container {
        max-width: 280px;
        padding: 20px 8px;
    }
    .animate-title {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    .subsidy-intro, .contact-text {
        font-size: 0.85em;
        line-height: 1.3;
    }
    .benefits-list li {
        font-size: 0.8em;
        padding-left: 16px;
    }
    .subsidy-image img {
        max-height: 180px;
    }


 /* subsidy content/images */
   .subsidy-content h3 {
    font-size: 20px;
  }
  .subsidy-content p {
    font-size: 14px;
  }
  .subsidy-img img {
    height: 220px;
  }
  .main-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }
}






/* ---------- OUR GALLERY / PROJECT PAGES  ---------- */

/* Gallery Hero Section */
.gallery-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/1200x/f7/b4/e9/f7b4e9df34c387c59a2acb7de61afcd7.jpg")no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gallery-hero-section .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

.gallery-hero-section .gallery-content {
    position: relative;
    color: #fff;
}

.gallery-hero-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-hero-section p {
    font-size: 20px;
    margin: 0;
}





/* gallery project pages images */
/* Hero Section */
.my-gallery-hero {
    position: relative;
    padding: 2.5rem 20px;
    background: white;
    text-align: center;
    color: #fff;
}

.my-gallery-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: white;
    z-index: 1;
}

.my-gallery-content h1{
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    color: blue;
}

/* Gallery Grid */
.my-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    padding: 0 20px;
    max-width: 1400px; 
    margin: 0 auto; 
    box-sizing: border-box; 
    z-index: 2;
    position: relative;
}



.my-gallery-item {
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.my-gallery-item img {
    width: 100%;
    height: 350px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

.my-gallery-item:hover img {
    transform: scale(1.05);
}

/* Scroll fade-in */
.my-gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}





/* Gallery / project responsive media quries  */

/* ----- 1200px ----- */
@media (max-width: 1200px) {
    .gallery-hero-section {
        height: 360px;
    }
    .gallery-hero-section h1 {
        font-size: 42px;
    }
    .gallery-hero-section p {
        font-size: 19px;
    }


    /* gallery project images */
      .my-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 15px;
    }
}

/* ----- 992px ----- */
@media (max-width: 992px) {
    .gallery-hero-section {
        height: 330px;
    }
    .gallery-hero-section h1 {
        font-size: 36px;
    }
    .gallery-hero-section p {
        font-size: 18px;
    }


    /* gallery project images */
       .my-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 15px;
    }
}

/* ----- 768px ----- */
@media (max-width: 768px) {
    .gallery-hero-section {
        height: 300px;
        padding: 0 20px;
    }
    .gallery-hero-section h1 {
        font-size: 32px;
    }
    .gallery-hero-section p {
        font-size: 17px;
    }



   /* gallery project images  */
       .my-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
    }
    .my-gallery-item img {
        height: 300px;
    }
}

/* ----- 600px ----- */
@media (max-width: 600px) {
    .gallery-hero-section {
        height: 260px;
        padding: 0 15px;
    }
    .gallery-hero-section h1 {
        font-size: 28px;
    }
    .gallery-hero-section p {
        font-size: 16px;
    }


    /* gallery project images */
        .my-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
    }
    .my-gallery-item img {
        height: 250px;
    }
}

/* ----- 480px ----- */
@media (max-width: 480px) {
    .gallery-hero-section {
        height: 230px;
    }
    .gallery-hero-section h1 {
        font-size: 24px;
    }
    .gallery-hero-section p {
        font-size: 15px;
    }


  /* gallery project images */
     .my-gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .my-gallery-item img {
        height: 450px;
    }
}

/* ----- 360px ----- */
@media (max-width: 360px) {
    .gallery-hero-section {
        height: 200px;
        padding: 0 10px;
    }
    .gallery-hero-section h1 {
        font-size: 20px;
    }
    .gallery-hero-section p {
        font-size: 14px;
    }

  /* gallery project images */
   .my-gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    .my-gallery-item img {
        height: 180px;
    }
}






/* Residential solar solution section page   */

  /* Residential Hero Section  */
.residential-hero-section-3 {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/1200x/d7/c7/4f/d7c74fe2099181b001891681f03a1df1.jpg") no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay */
.residential-overlay-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

/* Content */
.residential-content-3 {
    position: relative;
    color: #fff;
}

.residential-content-3 h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.residential-content-3 p {
    font-size: 20px;
    margin: 0;
}







/* RESIDENTIAL SOLAR SECTION */
.residential-section {
    width: 90%;
    margin: 50px auto;
}

.section-title {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ff9a00;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #ff8a00; 
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Container */
.residential-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Content */
.residential-content {
    width: 50%;
    padding-left: 20px;
}

.residential-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff8a00;
}

.residential-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Right Image */
.residential-image {
    width: 50%;
    padding-right: 20px;
}

.residential-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

  



/* feature section */
.features-section {
    text-align: center;
    padding: 0 20px 2.5rem;
}

.features-section .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    width: 300px;
}

.feature-box i {
    font-size: 40px;
    color: #0b0f2f;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.btn-center {
    margin-top: 50px;
}

.enquiry-btn {
    padding: 14px 32px;
    background-color: #0b0f2f;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #2c3e8b;
}




/* ------------------ Residential  Responsive Media Queries ------------------ */
 /* hero section  */
/* Large screens: 1200px  */
@media (max-width: 1200px) {
    .residential-hero-section-3 {
        height: 380px;
    }
    .residential-content-3 h1 {
        font-size: 44px;
    }
    .residential-content-3 p {
        font-size: 18px;
    }

    /* residential solar about */
    .residential-section {
        max-width: 1000px;
    }


    /* feature section */
        .features-container {
        gap: 60px;
    }
    .feature-box {
        width: 260px;
    }

}

/* Medium screens: 992px */
@media (max-width: 992px) {
    .residential-hero-section-3 {
        height: 350px;
    }
    .residential-content-3 h1 {
        font-size: 40px;
    }
    .residential-content-3 p {
        font-size: 17px;
    }

    /* residential solar  about  */
        .residential-section {
        max-width: 900px;
    }

    .residential-content {
        width: 55%;
        padding-left: 15px;
    }

    .residential-image {
        width: 45%;
        padding-right: 15px;
    }

    .residential-content h3 {
        font-size: 24px;
    }

    .residential-content p {
        font-size: 15px;
    }

  /* feature section */
    .features-section .title {
        font-size: 28px;
    }
    .feature-box {
        width: 240px;
    }
    .feature-box i {
        font-size: 38px;
    }
}

/* Small tablets: 768px */
@media (max-width: 768px) {
    .residential-hero-section-3 {
        height: 300px;
    }
    .residential-content-3 h1 {
        font-size: 36px;
    }
    .residential-content-3 p {
        font-size: 16px;
    }


  /* residential solar about */
      .residential-container {
        flex-direction: column;
        text-align: center;
    }

    .residential-content, 
    .residential-image {
        width: 100%;
        padding: 0;
    }

    .residential-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .residential-content p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .residential-image img {
        max-width: 400px;
        margin: 0 auto;
    }


  /* feature section */
     .features-container {
        gap: 40px;
    }
    .feature-box {
        width: 45%;
    }
    .feature-box p {
        font-size: 15px;
    }
}

/* Large mobiles: 600px */
@media (max-width: 600px) {
    .residential-hero-section-3 {
        height: 250px;
    }
    .residential-content-3 h1 {
        font-size: 30px;
    }
    .residential-content-3 p {
        font-size: 14px;
    }


/* residential solar about */
        .residential-section {
        margin: 30px auto;
        width: 95%;
    }

    .residential-content h3 {
        font-size: 24px;
    }

    .residential-content p {
        font-size: 15px;
    }

    .residential-image img {
        max-width: 350px;
    }


/* feature section */
    .features-section .title {
        font-size: 26px;
    }
    .feature-box {
        width: 100%;
    }
    .feature-box i {
        font-size: 36px;
    }
}

/* Medium mobiles: 480px */
@media (max-width: 480px) {
    .residential-hero-section-3 {
        height: 220px;
    }
    .residential-content-3 h1 {
        font-size: 26px;
    }
    .residential-content-3 p {
        font-size: 13px;
    }


  /* residential solar about */
   .residential-content h3 {
        font-size: 22px;
    }

    .residential-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .residential-image img {
        max-width: 300px;
    }


/* feature section */
 /* .features-section {
        padding: 2.5rem 15px;
    } */
    .features-section .title {
        font-size: 24px;
    }
    .feature-box i {
        font-size: 34px;
    }
    .feature-box p {
        font-size: 14px;
    }
    .enquiry-btn {
        font-size: 15px;
        padding: 12px 28px;
    }
}

/* Small mobiles: 360px */
@media (max-width: 360px) {
    .residential-hero-section-3 {
        height: 200px;
    }
    .residential-content-3 h1 {
        font-size: 22px;
    }
    .residential-content-3 p {
        font-size: 12px;
    }



/* residential solar about */
 .residential-content h3 {
        font-size: 20px;
    }

    .residential-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    .residential-image img {
        max-width: 260px;
    }



/* feature section */
  .features-section .title {
        font-size: 22px;
    }
    .feature-box i {
        font-size: 30px;
    }
    .feature-box p {
        font-size: 13px;
    }
    .enquiry-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}



/* -----------------commercial solar solution------------------ */

/* Commercial Solar Hero Section */
.commercial-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/736x/b4/b8/d5/b4b8d5f2810c103a173bf19b32f51d3d.jpg") no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay */
.commercial-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

/* Content */
.commercial-content {
    position: relative;
    color: #fff;
}

.commercial-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}





/* COMMERCIAL SOLAR SECTION */
.commercial-section {
    width: 90%;
    margin: 50px auto;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ff9a00;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #ff8a00;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Container */
.commercial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Content */
.commercial-content {
    width: 50%;
    padding-left: 20px;
}

.commercial-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff8a00;
}

.commercial-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

/* Right Image */
.commercial-image {
    width: 50%;
    padding-right: 20px;
}

.commercial-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}



/* Rooftop /grounded section */
  .card-container {
    display: flex;
    gap: 50px;                 
    justify-content: center;
    flex-wrap: wrap;          
    margin-top: 40px;
    margin-bottom: 60px;
}

.card {
    width: 420px;              
    height: 420px;             
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.card.open {
    width: 680px;        
    height: 500px;       
}

.card-img {
    width: 100%;
    height: 260px;            
    object-fit: cover;
}

.card h3 {
    text-align: center;
    margin: 18px 0;
    font-size: 26px;          
}

.card-content {
    padding: 0 22px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 18px;          
    line-height: 1.6;
}

.card.open .card-content {
    max-height: 320px;   
}


/* -----------------commercial solar  Responsive media quries----------------- */
/* commericial hero  */

/* 1200px */
@media (max-width: 1200px) {
    .commercial-content h1 {
        font-size: 42px;
    }
    .commercial-content p {
        font-size: 18px;
    }

/* commercial about */
    .section-title {
        font-size: 40px;
    }
    .commercial-content h3 {
        font-size: 24px;
    }


/* rooftop/grounded */
      .card {
        width: 380px;
        height: 380px;
    }
    .card.open {
        width: 600px;
        height: 550px;
    }
}

/* 992px */
@media (max-width: 992px) {
    .commercial-hero-section {
        height: 360px;
    }
    .commercial-content h1 {
        font-size: 38px;
    }
    .commercial-content p {
        font-size: 18px;
    }


  /* commercial about */
      .commercial-container {
        gap: 25px;
    }
    .commercial-content p {
        font-size: 15px;
    }
    .commercial-image img {
        max-width: 450px;
    }

  /* rooftop/grounded */
      .card {
        width: 340px;
        height: 360px;
    }
    .card.open {
        width: 520px;
        height: 500px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .commercial-hero-section {
        height: 330px;
        padding: 0 20px;
    }
    .commercial-content h1 {
        font-size: 34px;
    }
    .commercial-content p {
        font-size: 17px;
    }

  /* commercial about */
     .commercial-container {
        flex-direction: column;
        text-align: center;
    }
    .commercial-content,
    .commercial-image {
        width: 100%;
        padding: 0;
    }
    .commercial-image img {
        max-width: 100%;
    }



/* rooftop/grounded */
       .card {
        width: 300px;
        height: 340px;
    }
    .card.open {
        width: 480px;
        height: 460px;
    }
}

/* 600px */
@media (max-width: 600px) {
    .commercial-hero-section {
        height: 300px;
    }
    .commercial-content h1 {
        font-size: 30px;
    }
    .commercial-content p {
        font-size: 16px;
    }

  /* commercial about  */
    .section-title {
        font-size: 32px;
        margin-bottom: 2.5rem;
    }
    .commercial-content h3 {
        font-size: 22px;
    }
    .commercial-content p {
        font-size: 15px;
    }


/* rooftop/grounded */
  .card {
        width: 260px;
        height: 320px;
    }
    .card.open {
        width: 420px;
        height: 420px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .commercial-hero-section {
        height: 260px;
    }
    .commercial-content h1 {
        font-size: 26px;
    }
    .commercial-content p {
        font-size: 15px;
    }


/* commercial about  */
       .section-title {
        font-size: 28px;
    }
    .commercial-content h3 {
        font-size: 20px;
    }
    .commercial-content p {
        font-size: 14px;
        line-height: 1.6;
    }


  /* rooftop grounded */
  .card {
        width: 220px;
        height: 250px;           
        padding: 0 10px;
    }
    .card.open {
        width: 380px;
        height: auto;         
        max-height: 600px;         
        overflow: visible;
    }
    .card-img {
        height: 180px;          
    }
    .card h3 {
        font-size: 20px;
        margin: 12px 0;
        white-space: normal;       
        overflow: visible;
        text-overflow: unset;
        text-align: center;
    }
    .card-content {
        max-height: 0;
        opacity: 0;
        padding: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
    }
    .card.open .card-content {
        max-height: 350px;         
        opacity: 1;
        padding: 15px 10px 20px;
        overflow: auto;          
    }
}

/* 360px */
@media (max-width: 360px) {
    .commercial-hero-section {
        height: 240px;
    }
    .commercial-content h1 {
        font-size: 22px;
    }
    .commercial-content p {
        font-size: 14px;
    }


  /* commercial about  */
    .section-title {
        font-size: 25px;
    }
    .commercial-content h3 {
        font-size: 18px;
    }
    .commercial-content p {
        font-size: 13px;
    }


    /* rooftop grounded */
  .card {
        width: 200px;
        height: 280px;           
        padding: 0 8px;
    }
    .card.open {
        width: 340px;
        height: auto;
        max-height: 550px;
        overflow: visible;
    }
    .card-img {
        height: 160px;
    }
    .card h3 {
        font-size: 18px;
        margin: 10px 0;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        text-align: center;
    }
    .card-content {
        max-height: 0;
        opacity: 0;
        padding: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        font-size: 15px;
        line-height: 1.4;
        overflow: hidden;
    }
    .card.open .card-content {
        max-height: 300px;
        opacity: 1;
        padding: 12px 8px 18px;
        overflow: auto;
    }
}





/* -----------------Industrial solar solution Page------------------ */

/* Industrial Solar Hero Section */
.industrial-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/736x/c0/18/d2/c018d2517d6bca138a9fe7d32984068e.jpg") no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay */
.industrial-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

/* Content */
.industrial-content {
    position: relative;
    color: #fff;
}

.industrial-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}





/* INDUSTRIAL SOLAR SECTION */
.industrial-section {
    width: 90%;
    margin: 2.5rem auto;
}

/* Container */
.industrial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Content */
.industrial-content {
    width: 50%;
    padding-left: 20px;
}

.industrial-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff8a00;
}

.industrial-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

/* Right Image */
.industrial-image {
    width: 50%;
    padding-right: 20px;
}

.industrial-image img {
    width: 100%;
    height: auto;           
    aspect-ratio: 16/10;    
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}




/* Why solar for industrail  */
  /* SECTION WRAPPER */
.why-industrial-section {
    width: 90%;
    margin: 2.5rem auto;
}

/* HEADING CENTER */
.why-industrial-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #ff8a00;
    margin-bottom: 30px;
}

/* CONTAINER */
.why-industrial-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    gap: 30px;
}

/* LEFT CONTENT BOX */
.why-industrial-box {
    width: 50%;
    background: #fff4e0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
}

.why-industrial-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-industrial-box ul {
    padding-left: 20px;
}

.why-industrial-box ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

/* RIGHT IMAGE */
.why-industrial-image {
    width: 50%;
}

.why-industrial-image img {
    width: 100%;
    height: 100%;      
    object-fit: cover;  
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}










              

/* ---Industrial solar  Responsive  media quries-- */
/* indusrial hero section */

/* Large Desktop (1200px) */
@media (max-width: 1200px) {
    .industrial-hero-section {
        height: 360px;
    }
    .industrial-content h1 {
        font-size: 42px;
    }


    /* industrial section */
    .industrial-content h3 {
        font-size: 24px;
    }

  /* why solar  */
      .why-industrial-heading {
        font-size: 28px;
    }
    .why-industrial-box p, 
    .why-industrial-box ul li {
        font-size: 15px;
    }
    .why-industrial-container {
        gap: 25px;
    }
}

/* Desktop (992px) */
@media (max-width: 992px) {
    .industrial-hero-section {
        height: 320px;
    }
    .industrial-content h1 {
        font-size: 38px;
    }

/* industrial section */
     .industrial-container {
        gap: 20px;
    }
    .industrial-content {
        padding-left: 10px;
    }
    .industrial-image {
        padding-right: 10px;
    }

/* why solar  */
     .why-industrial-heading {
        font-size: 26px;
    }
    .why-industrial-box p, 
    .why-industrial-box ul li {
        font-size: 14px;
    }
    .why-industrial-container {
        gap: 20px;
    }
}

/* Tablet Landscape (768px) */
@media (max-width: 768px) {
    .industrial-hero-section {
        height: 280px;
    }
    .industrial-content h1 {
        font-size: 32px;
    }


/* industrial section */
       .industrial-container {
        flex-direction: column;
        text-align: center;
    }
    .industrial-content, 
    .industrial-image {
        width: 100%;
        padding: 0;
    }

    .industrial-image img {
        aspect-ratio: 16/11; 
    }

/* why solar  */
    .why-industrial-container {
        flex-direction: column;
        text-align: center;
    }
    .why-industrial-box,
    .why-industrial-image {
        width: 100%;
    }
    .why-industrial-image img {
        height: 280px;
    }
}

/* Tablet Portrait / Small tablets (600px) */
@media (max-width: 600px) {
    .industrial-hero-section {
        height: 240px;
    }
    .industrial-content h1 {
        font-size: 28px;
    }

/* industrial section */
    .industrial-content h3 {
        font-size: 22px;
    }
    .industrial-content p {
        font-size: 15px;
    }

  /* why solar  */
      .why-industrial-heading {
        font-size: 24px;
    }
    .why-industrial-box p, 
    .why-industrial-box ul li {
        font-size: 13px;
    }
    .why-industrial-image img {
        height: 250px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .industrial-hero-section {
        height: 200px;
    }
    .industrial-content h1 {
        font-size: 24px;
    }

  /* industrial section */
      .industrial-content h3 {
        font-size: 20px;
    }
    .industrial-content p {
        font-size: 14px;
    }

    /* why solar  */
        .why-industrial-heading {
        font-size: 22px;
    }
    .why-industrial-box p, 
    .why-industrial-box ul li {
        font-size: 12px;
    }
    .why-industrial-image img {
        height: 250px;
    }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
    .industrial-hero-section {
        height: 180px;
    }
    .industrial-content h1 {
        font-size: 20px;
    }


/* indusrial section */
      .industrial-content h3 {
        font-size: 18px;
    }
    .industrial-content p {
        font-size: 13px;
    }


/* why solar  */
     .why-industrial-heading {
        font-size: 20px;
    }
    .why-industrial-box p, 
    .why-industrial-box ul li {
        font-size: 11px;
    }
    .why-industrial-image img {
        height: 200px;
    }
}





















/* Contact Us Page  */

/* Contact Us Hero Section */
.contact-hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("https://i.pinimg.com/736x/6f/89/c8/6f89c88460020360e4341f433723f89f.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay */
.contact-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

/* Content */
.contact-content {
    position: relative;
    color: #fff;
}

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-content p {
    font-size: 20px;
}





/* Contact us content  */
/* Main Section */
.map-contact-section {
    display: flex;
    width: 100%;
    padding: 40px;
    gap: 30px;
}

/* Left Map */
.map-box {
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* Right Form */
.contact-form-box {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Us Title */
.contact-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Inputs */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Button */
.contact-form-box button {
    width: 100%;
    padding: 14px;
    background: #007acc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #005fa3;
}












/* responsive media Contact Us page */

/* 1200px */
@media (max-width: 1200px) {
    .contact-hero-section {
        height: 380px;
    }
    .contact-content h1 {
        font-size: 42px;
    }


    /* contact us section */
        .contact-title {
        font-size: 28px;
    }
}

/* 992px */
@media (max-width: 992px) {
    .contact-hero-section {
        height: 350px;
    }
    .contact-content h1 {
        font-size: 38px;
    }
    .contact-content p {
        font-size: 18px;
    }


    /* contact us section */
        .map-contact-section {
        flex-direction: column;
        padding: 30px;
    }
    .map-box {
        min-height: auto;
    }
     .map-box iframe{
      aspect-ratio: 3 / 2;
     }
    .contact-form-box {
        padding: 25px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .contact-hero-section {
        height: 320px;
        padding: 0 20px;
    }
    .contact-content h1 {
        font-size: 32px;
    }
    .contact-content p {
        font-size: 16px;
    }


    /* contact us section */
     .map-contact-section {
        padding: 25px;
    }
    .contact-title {
        font-size: 26px;
    }
    .contact-form-box input,
    .contact-form-box textarea {
        font-size: 15px;
    }
}

/* 600px */
@media (max-width: 600px) {
    .contact-hero-section {
        height: 300px;
    }
    .contact-content h1 {
        font-size: 28px;
    }
    .contact-content p {
        font-size: 15px;
    }


/* contact us section */
      .map-contact-section {
        padding: 20px;
        gap: 20px;
    }
    
    .contact-form-box {
        padding: 20px;
    }
    .contact-title {
        font-size: 24px;
    }
  
}

/* 480px */
@media (max-width: 480px) {
    .contact-hero-section {
        height: 260px;
    }
    .contact-content h1 {
        font-size: 24px;
    }
    .contact-content p {
        font-size: 14px;
    }


  /* contactus section */
    .map-contact-section {
        padding: 15px;
    }
   
    .contact-title {
        font-size: 22px;
    }
    .contact-form-box button {
        font-size: 16px;
        padding: 12px;
    }
}

/* 360px */
@media (max-width: 360px) {
    .contact-hero-section {
        height: 240px;
        padding: 0 15px;
    }
    .contact-content h1 {
        font-size: 20px;
    }
    .contact-content p {
        font-size: 13px;
    }


    /* contact us section */
    .map-contact-section {
        padding: 10px;
    }
   
    .contact-title {
        font-size: 20px;
    }
    .contact-form-box {
        padding: 15px;
    }  
}
