@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root{
  --bs-primery-color: #ffb912;
  --bs-second-color:#0d3263;
 --bs-orange:#e37936;
  --bs-grey:#696567;
  --bs-black:#000000;
  --bs-yellow:#ffe8a1;
    --bs-white:#ffff;


}

body{
font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1, h2, h3,h4 {
    font-family: "Rubik", sans-serif;
     font-weight: 700;
}

/* Navbar */
#menuIcon {
  transition: 0.3s ease;
}

.bi-x {
  transform: rotate(180deg);
}
.navbar{
    padding:0px 0;
    background-color:rgba(250,250,250,0.9)
}
.navbar-brand img{
width: 80%;
}
.navbar-brand span{
    color:#d63300;
    font-weight:700;
}

.navbar-expand-lg {
    flex-wrap: wrap;
}
.nav-link {
    font-size: 15px;
    padding: 0px;
    text-transform: uppercase;
    font-weight: 600;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show  {
    color: var(--bs-primery-color);
}
.nav-link:hover {
color: var(--bs-primery-color);
}
.navbar-toggler {
    border:0px!important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}


#solarCarousel{
    margin-top: -92px;
}
/* Hero Section */


/* Carousel height */
.carousel-item img {
  height: 94vh;
  object-fit: cover;
}

/* Caption styling */
.custom-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 8%;
  right: auto;
  max-width: 500px;
  color: #000;
}

.custom-caption h5 {
  font-weight: 700;
  font-size: 26px;
}

.custom-caption p {
  font-size: 18px;
  margin: 10px 0;
}

/* Read more link */
.read-more {
  text-decoration: none;
  color: #000;
  font-weight: 500;
    font-size: 18px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Custom arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev {
  top: auto!important;
  bottom: 30px!important;
}
.carousel-control-next {
  top: auto!important;
  bottom: 30px!important;
  left:35px!important;
}
.custom-arrow {
  background: #fff;
  color: #000;
  font-size: 22px;
  padding: 3px 12px;
  border-radius: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
  }

  .custom-caption {
    left: 5%;
    max-width: 90%;
  }

  .custom-caption h5 {
    font-size: 18px;
  }

  .custom-caption p {
    font-size: 13px;
  }
  #solarCarousel{
    margin-top:0px;
}
}
/* Hero Slide */

/* Button */
.btn-buy{
    border:2px solid #d63300;
    color:#d63300;
    padding:10px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn-buy:hover{
    background:#d63300;
    color:#fff;
}

/* Animation */
@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#000;
}

.carousel-indicators .active{
    background:#d63300;
}

/* Responsive */
@media(max-width:991px){
    .hero-content h1{
        font-size:38px;
    }
    .hero-slide{
        text-align:center;
    }
}
/* Keyframes */
@keyframes slideInLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* Responsive */
@media(max-width:991px){
    .hero-title{
        font-size:36px;
    }
    .hero-section{
        text-align:center;
    }
}

@media screen and (max-width: 992px) {

.navbar-brand  {
    width: 75%;
}
.navbar-brand img{
width: 100%;
}
.hero-img {
    padding-top: 80px;
}
.heropadtop {
    padding-top: 10px;
}

.nav-item {
    padding: 8px 0px;
    border-bottom: solid 1px;
    border-color: var(--bs-grey);
}
}
.dropdown::after {
    box-sizing: content-box;
}
.dropdown::before {
    box-sizing: content-box;
}
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Submenu positioning */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0;
        display: none;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

   

}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 0px;
    padding: 0px 0;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 8px 20px;
    transition: 0.3s;
    font-size: 18px;
}

.dropdown-item:hover {
    background: var(--bs-primery-color);
    color: #fff;
}
*::after {
  box-sizing: border-box;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}


/* ===== STATS BAR ===== */
.stats-bar {

}
.stats {
 background: var(--bs-second-color);
}
.stats-img {
  object-fit: cover;
  height: 100%;
  min-height: 140px;
}

.stats-content {
  padding: 25px 10px;
 
}

.stats-content i {
  color: #ffc107;
  font-size: 24px;
  margin-bottom: 15px;
}
.stats-content i img {
  width: 20%;
  padding-bottom: 10px;
}
.stats-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 26px;
  color: var(--bs-primery-color);
}

.stats-content p {
  font-size: 20px;
  margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  background: url("../images/about_bg.jpg") center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}

.about-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.about-content {
  position: relative;
  padding: 80px;
  
}

.about-content h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(250,250,250,0.5);
   font-size: 34px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.5;
  
}

/* Icons */
.about-icons {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.icon-box {
  background: rgba(255,255,255,0.15);
  padding: 25px 30px;
  text-align: center;
  border-radius: 0px;
}

.icon-box i {
  font-size: 20px;
  margin-bottom: 5px;
}

.icon-box span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* Link */
.about-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.about-link:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .stats-content {
    padding: 35px 5px;
  }

  .stats-content h5 {
    font-size: 24px;
   
  }

  .stats-content p {
    font-size: 20px;
    padding-bottom: 30px;
  }

  .about-section {
    padding: 50px 0;
  }

  .about-content {
    max-width: 100%;
    padding: 20px;
  }

  .about-icons {
    flex-direction: column;
  }
}



/* ===== VISION & MISSION ===== */
.vision-mission {
  background: #f5f5f5;
}
.vision-mission h5 {
  font-size: 36px;
}
.vm-box {
  margin-bottom: 20px;
}

.vm-box h6 {
  font-weight: 600;
    font-size: 26px;
    padding-left: 15px;
}

.vm-box p {
  font-weight: 500;
    font-size: 16px;
    padding-left: 60px;
}

.vm-box i {
  color: var(--bs-white);
  margin-right: 1px;

}
.circleicon {
  display: flex;
  align-items: center;
  justify-content: left;
    margin: 0px 20px 20px 0px;
}
.check-circle {
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  
  color: #e2762c;

  box-shadow: 
    0 10px 20px rgba(0,0,0,0.3),
    inset 0 2px 5px rgba(255,255,255,0.6);
  
}
.check-circle i {
  font-size: 16px;
  color: #e2762c;
}
.vm-box ul {
  padding-left: 60px;
    font-weight: 500;
    font-size: 16px;
}
.vm-box ul li  {
  line-height: 35px;
  background : url(../images/solar.png) no-repeat left 10px;
  list-style: none;
  padding-left: 25px;

}
/* Grid Right Side */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

.vm-grid .box {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 34px;
}

.orange {
  background: #e2762c;
}

.blue {
  background: #1f3c6d;
}

.img1 {
  background: url("../images/visionImg01.jpg") center/cover no-repeat;
}

.img2 {
  background: url("../images/visionImg02.jpg") center/cover no-repeat;
}

/* ===== SERVICES ===== */
.services {
  background: #fff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
}

.service-box {
  width: 20%;
  height:500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  text-align: center;
  transition: 0.3s;
}

.service-box:hover .overlay {
  background: rgba(0,0,0,0.6);
}

.service-box i {
  font-size: 22px;
  margin-bottom: 10px;
}
.overlay img {
  width: 90%;
  height: auto;
}
.overlay h6 {
  font-size: 20px;
  padding: 5px 0px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .service-box {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .service-box {
    width: 100%;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid .box {
    height: 200px;
  }
}

.overview-section {
  position: relative;
  background: url("../images/overviewbg.jpg") center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}

.overview-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}






.why-choose h2 {
  font-size: 2.5rem;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: none;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background: transparent;
  box-shadow: none;
}

.accordion-button::after {
  transform: scale(0.8);
}

.accordion-body {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.accordion-body img {
  object-fit: cover;
}

.accordion-collapse{
  border-top: solid 1px #bcbcbc;
}


.testimonials-section {
   position: relative;
  padding: 60px 0;
  background: url("../images/testimonials_bg.jpg") center/cover no-repeat;
}

 .testimonials-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}



.testimonialsmain {
background-color: #faf2e7;
}

.testimonialscontent {
  background-color: #fff;
  border-radius: 0px;
  padding: 0px;
  display: flex;
  flex:1.2;
}
.shadow-effect {
  display: flex;
 align-items:center;
  gap:30px;
  animation:fade 0.6s ease-in-out;
}
.img-circle {
  flex:1;
}
.img-circle img {

}
.testislide img {
  width: 100% !important;
}
.testimonial-section{
  padding:80px 5%;
}

.testimonial-container{

  gap:50px;
  align-items:center;
  display: flex;
  width: 100%;
  margin:auto;
}

.testimonial-left{
  flex:1;
    height: 20px;
    background-color: #92b4d0;
}
#customers-testimonials {
  background-color: #000;
}
.tag{
  color:#c0392b;
  font-weight:bold;
}

.testimonial-left h2{
  font-size:36px;
  margin:15px 0;
}

.testimonial-left p{
  color:var(--bs-white);
  margin-bottom:25px;
  line-height:1.6;
}
.testislide {
  display: flex;
}
.testislide div {
    flex: 1;
}

.testislide img {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
  height: 100%;
}


.testimonial-right{
    flex:1;

  background:#000;
  padding:0px;
  border-radius:0px;
  position:relative;
  overflow:hidden;
}

/* SLIDER */
.testislide{
  display:flex;
  align-items:top;
  
  gap:30px;
  animation:fade 0.6s ease-in-out;
  
}
.testislide h3 {
  color: var(--bs-white);
}
.testislide p {
  color: var(--bs-white)!important;
  font-size: 18px;
 
}
.testislide strong {
  color: var(--bs-white);
}
.testislide span {
  color: var(--bs-white);
}
.testislide img{
  border-radius:0px!important;


}

.review h3{
  margin:10px 0;
}
.review {
  padding: 25px;
}

.review p{
 
  margin-bottom:10px;
}
.stars {
  text-align: right;
}
.stars img{
 width: 15%!important;
 height: auto;
}

/* DOTS */
.dots{
  text-align:right;
  margin-top:20px;
}

.dot{
  height:10px;
  width:10px;
  background:#bbb;
  display:inline-block;
  border-radius:50%;
  margin-left:5px;
  cursor:pointer;
}

.dot.active{
  background:#c0392b;
}

.owl-controls .owl-buttons {
	text-align: center;
	margin-top: 20px;
  }
  .owl-controls .owl-buttons .owl-prev {
	background: var(--bs-primery-color);
	position: absolute;
bottom:30px;
	right: 70px;
	padding: 0 18px 0 15px;
	border-radius: 0px;
	
	transition: background 0.5s ease 0s;
  }
  .owl-controls .owl-buttons .owl-next {
	background: var(--bs-primery-color);
	position: absolute;
bottom:30px;
	right: 15px;
	padding: 0 15px 0 18px;
	border-radius: 0px;

	transition: background 0.5s ease 0s;
  }
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
	content: "\f104";
	font-family: FontAwesome;
	color: #333;
	font-size: 30px;
  }
  .owl-controls .owl-buttons .owl-next:after {
	content: "\f105";
  }
  
  
	.owl-nav {
	  display: none;
	}
  
	.owl-pagination {
	  text-align: center;
    padding-top: 8px;
  }
  .owl-page {
	   display: inline-block;
  }
   .owl-page span {
		position: relative;
		height: 10px;
		width: 10px;
		border-radius: 50%;
		display: flex;
		background:var(--bs-second-color);
	
	
		margin: 0 5px;
	  }
   .owl-page .active span {
		box-shadow: none;
   }
  .owl-page.active span {
		background:var(--bs-primery-color);
		  box-shadow: none;
		  height: 12px;
		  width: 12px;
		  margin-bottom: -1px;
		}
/* ANIMATION */
@keyframes fade{
  from{opacity:0; transform:translateX(20px);}
  to{opacity:1; transform:translateX(0);}
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

.testislide{
  display:block;
  align-items:top;
  
  gap:30px;
  animation:fade 0.6s ease-in-out;
  
}
.testislide img {
  width: 100%;
  object-fit: cover;
  max-height: auto;
  height: 100%;
}
  .owl-controls .owl-buttons .owl-prev {
	background: var(--bs-primery-color);
	position: absolute;
bottom:0px;
	right: 45px;
		padding: 0 5px 0 8px;
	border-radius: 0px;
	
	transition: background 0.5s ease 0s;
  }
  .owl-controls .owl-buttons .owl-next {
	background: var(--bs-primery-color);
	position: absolute;
bottom:0px;
	right: 10px;
	padding: 0 5px 0 8px;
	border-radius: 0px;

	transition: background 0.5s ease 0s;
  }
}

/* ===== CONTACT ===== */
.contact-section {
  background: url("../images/contactbg.jpg") center/cover no-repeat;
  padding: 0px 0;
  position: relative;
}

.contact-section .overlay {
  background: rgba(0,0,0,0.6);
  padding: 50px 0;
}

.contact-section h2 {
  color: #fff;
  font-weight: 500;
}
.contact-section p {
  color: #fff;
  font-weight: 500;
}
.contact-form {
  max-width: 500px;
  background: rgba(255,255,255,0.5);
  padding: 30px;
  border-radius: 0px;
  text-align: left;
}

.contact-form input {
  margin-bottom: 20px;
  border: none;
  border: 1px solid #333;
  border-radius: 0;
   background: rgba(255,255,255,0.3)!important;
}
.contact-form  p{
    color:var(--bs-black);
    font-weight: 400;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.btnsend {
  border-radius: 0px;
  text-align: center;
}
/* ===== FOOTER ===== */
.footer {
  background: #0d2c54;
  padding: 40px 0;
}

.footer h5 {
  margin-bottom: 15px;
  color: #b9bfca;
  font-size: 24px;
}
.footer p {
  font-size: 18px;
}
.footer p  span{
  color: var(--bs-primery-color);
}
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a{
  color: var(--bs-white);
  text-decoration: none;
    font-size: 18px;
}
.footer ul li a:hover{
  color: var(--bs-orange);
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.8);
}
.socialmedia a{
color: var(--bs-white);
font-size: 26px;
}
.socialmedia a:hover{
 color: var(--bs-orange);

}
.copy {
  display: flex;
  color: var(--bs-white);
  align-items: center;
}
.copy div {
    flex: 1;
}
.copyright {
  text-align: right;
}
.subsectxt {
  padding: 0px 10%;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.copy {
  display: block;
  color: var(--bs-white);
  align-items: center;
   text-align: center;
}
.copyright {
  text-align: center;
}

}