@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Lato';
    src: url(fonts/LATO-FONT/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Gilroy';
    src: url(fonts/GILROY-FONT/Gilroy-Regular.ttf);
}
body, html{
    height: 100%;
    width: 100%;
    font-family: "Barlow", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* =========== NAVBAr ========== */

.navbar {
    height: 6vw;
    background-color: #000000e2;
}
.container-fluid a {
    font-family: 'poppins', sans-serif;
   font-size: 1.2vw;
    color: #ededed;

}
.container-fluid a:hover{
    color: #047fbd;
}



.offcanvas-body ul li a {
    /* width: 11vw; */
}
.navbar-expand-lg .navbar-nav {
  gap: 5vw;
  margin-right: 5.5vw;
}
button.btn-close {
  height: 3em;
  width: 13vw;
  filter: invert(1);
  font-size: 6vw;
}


.offcanvas-body ul li a:hover {
  color: #E7B032;
  transform: translateY(-2px);
  transition: all 0.2s ease-in;}

.offcanvas-body ul li {
    list-style: none; 

}



.nav-link.active {
 color: #E7B032 !important; /* Highlight color */
}



.offcanvas-body ul li a:hover {
    color: #E7B032;
    transform: translateY(-1px);
}
div#offcanvasNavbar {
    width: 50%;
    background-color: #121313;
  
    margin: -4vw;
}
button.navbar-toggler {
    padding: 1vw;
    border: 1px solid #fff;
    height: 9vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}
span.navbar-toggler-icon {
    width: 6vw;
    filter: invert(1);
    padding: 10px;
  
}
.navbar-brand  img{
  width: 10vw;
}

/* =========== NAVBAr ========== */


/*================ main =============== */
/*================ main =============== */

/*==================== page-1 =================== */
#page-1{
    min-height: 100vh;
    width: 100%;
    padding-top: 6vw;
}
.carousel {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    height: 100%;
    width: 400%;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }
  .slide video{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
/*==================== page-1 =================== */

/*==================== page-2 =================== */
#page-2{
    min-height: 100vh;
    width: 100%;
}

#page-2 h1{
    font-size: 2.6vw;
    display: flex;    
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #4E9CDF;
    padding-top: 9vw;
    text-transform: uppercase;
    /* margin-bottom: 5vw; */
}
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2vw;
    padding: 5vw 2vw;
  }
  
  .feature {
    background-image: linear-gradient(#ffba47, #ffffff);
      /* background-color: #fffda6; */
    padding: 2vw;
    border-radius: 4px;
    text-align: center;
    width: 22vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    transition:  background-image  0.3s ease, transform 0.3s ease-in-out;
  }
  
  .feature:hover {
    transform: translateY(-1vw);
    background-image: linear-gradient(#ffba47,#ffba47);

  }
  .feature {
    background-image: linear-gradient(#ffba47, #ffffff); /* Initial gradient background */
    padding: 2vw;
    border-radius: 4px;
    text-align: center;
    width: 22vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    transition: background-image 0.5s ease, transform 0.3s ease-in-out; /* Transition for background image and transform */
}

.feature:hover {
    transform: translateY(-1vw);
    background-image: linear-gradient(#ffab2e, #fff5e6); /* Changed hover gradient for smoother effect */
    transition: background-image 0.5s ease; /* Added transition specifically for hover state */
}
  
  .icon img {
    width: 10vw;
    border-radius: 4px;
  }
  
  .feature h3 {
    font-size: 1.5vw;
    margin: 1vw 0;
    color: #2e2d2d;
    font-family: 'poppins', sans-serif;
    padding-top: 1vw;

  }
  .feature p {
    color: #202020;
    font-size: 1.1vw;
    font-style: italic;
  }
  /*  */
  .feature {
    flex: 1;
    opacity: 0; /* Initially hidden */
    transform: translateY(100px); /* Initially positioned below */
    transition: all 0.7s ease-out; /* Smooth transition */
}

.feature.visible {
    opacity: 1;
    transform: translateY(0); /* Move back to its original position */
}
  /*  */
  /* ---------- Our Story  ---------- */
  #our-story-main{
    display: flex;
    justify-content: center;
    justify-content: space-around;
    padding: 10vw 0;
  }

  .left-content{
  }
  .left-content img{
    width: 45vw;
  }
  .right-content{
    display: flex;
    flex-direction: column;
    width: 43%;
  }
  .right-content p{
    font-size: 1.3vw;
    text-align: justify;
  }
  .right-content h2{
    font-size: 2.5vw;
    color: #4E9CDF;
    font-family: 'poppins', sans-serif;
    margin-bottom: 2vw;
  }
  /*  */
  .left-content, .right-content {
    /* flex: 1; */
    opacity: 0; /* Initially hidden */
    transform: translateY(100px); /* Initially positioned below */
    transition: all 0.7s ease-out;
}

.left-content.visible, .right-content.visible {
    opacity: 1;
    transform: translateY(0); /* Move back to original position */
}

  /*  */
  /* ---------- Our Story  ---------- */
/*==================== page-2 =================== */


/*==================== page -3   =================== */
#page-3{
  height: 100%;
  width: 100%;
}
.benefits-contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5vw;
  background-color: #0079b2;
  background-color: #00263bce; 
  color: #d7d7d7; 
}
.benefits-contact ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('contact-us-bg-img.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2; 
  z-index: -1; 
  border-radius: 2vw;
}
.benefits-section, .contact-form-section {
  width: 40vw;
  padding: 2vw;
  border-radius: 2px;
}

.benefits-section h2 {
  font-size: 2.2vw;
  margin-bottom: 2vw;
  color: #e3e3e3;
  width: 20vw;
  border-radius: 14px;
  font-family: lato;
}
.contact-form-section h2 {
  font-size: 2vw;
  margin-bottom: 1.5vw;
  color: #ececec;
  padding: 1vw 0;
  font-family: lato;
}

.benefits-list {
  list-style-type: none;
  font-size: 1.2vw;
  line-height: 3vw;
  color: #d7d7d7;
  font-family: poppins;
}
/* Popup styling  for contact us page*/
.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4vw;
  background-color: #f8f8f8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-radius: 0.5vw;
}
.popup h2{
font-family:gilroy;
color: black;
font-style: italic;
}
.popup.active {
  display: block;
}

/* Overlay background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.active {
  display: block;
}
.contact-form-section form {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 2vw;
  border: 1px solid #7b7a7a;
}

form input, form textarea {
  margin-bottom: 1vw;
  padding: 0.7vw;
  border: 1px solid #ccc;
  /* border-radius: 0.5vw; */
  font-size:  0.9vw;
  color: #333;
  background-color: #f8fff6fe;
}

form button {
  padding: 0.4vw 0;
  background-color: #063f5ee7;
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 1vw;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 5.5vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);

}

form button:hover {
  background-color: #00263be7;
}


/*==================== page -3  =================== */


/*==================== page - 4 serviec  =================== */
#page-4{
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
}
.service-heading{
  /* height: 1vw; */
  /* border-style: dotted;
  border-width: 4px ;
   */
  
}
#services-main-container{
  padding: 1vw;
}
#services-main-container h1{
  padding: 5vw 0;
  text-align: center;
  font-size: 3vw;
  color: #363434;
}
.services-sub-box{
  display: flex;
  padding: 2.5vw 0;
}
.services-info{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 40vw;
}
.services-info img{
width: 25vw;
}
.services-info h2{
  font-size: 1.4vw;
  padding-top: 40px;
  color: #525050;
}
.services-info p{
  font-size: 1vw;
  text-align: center;
  width: 22vw;
  /* font-family: gilroy; */
  padding-top: 10px;
  color: #474444;
}


/* /////////////////// */
/* ANIMATION PART  */
.services-info {
  flex: 1;
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Initially positioned below */
  transition: all 0.7s ease-out; /* Smooth transition */
}

/* When the section becomes visible */
.services-info.visible {
  opacity: 1;
  transform: translateY(0); /* Move back to its original position */
}
/* why choose us  */

.wcu-container{
  padding: 0px 0px 30px 30px;
  display: flex;
  padding: 8vw 4vw;
  background-color: #ffffff13;
  justify-content: space-between;
  align-items: center;
}
.wcu-text{
   width: 60%;
}  
.wcu-img img{
  width: 32vw;
}
.wcu-container h2{
   font-size: 3vw;
   margin-top: 10px;
   margin-bottom: 20px;
   color: #000d38cf; 
}

.wcu-text p{
 color: #1d1d1d;
 font-size: 1.3VW;
 line-height: 1.5rem;
}

span, a, a:hover {
   display: inline-block;
   text-decoration: none;
}
.container{
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   padding-bottom: 8vw;
   max-width: 85vw;
}

.item {
   background: #ffffff;
   text-align: center;
   padding: 80px 25px;
   margin: 5px 35px;
   -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
   border-radius: 3px;
   margin-bottom: 30px;
   -webkit-transition: all .5s ease 0;
   transition: all .5s ease 0;
   transition: all 0.5s ease 0s;
}
.item:hover{
   background:#efefef;
   box-shadow:0 8px 20px 0px rgba(162, 162, 162, 0.271);
   -webkit-transition: all .5s ease 0;
   transition: all .5s ease 0;
   transition: all 0.5s ease 0s;
  
}
.item:hover .item, .item:hover span.icon{
   background:#ffe395;
   -webkit-transition: all .5s ease 0;
   transition: all .5s ease 0;
   transition: all 0.5s ease 0s;
   transform: translateY(-12px);
}
.item:hover h6, .item:hover p{
   color:#001d6dd0;
   -webkit-transition: all .5s ease 0;
   transition: all .5s ease 0;
   transition: all 0.5s ease 0s;
   transform: translateY(-12px);

}
.item .icon {
  font-size: 2.8vw;
  margin-bottom:25px;
  color: #000a36;  
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}
.item .feature_box_col_one{
  background:rgba(255, 77, 28, 0.15);
  color:#294C60;
}

.item .feature_box_col_two{
  background:rgba(255, 77, 28, 0.15);
  color:#294C60;
}
.item .feature_box_col_three{
  background:rgba(0, 147, 38, 0.15);
  color:#294C60;
}

.item p{
  font-size: 1.3vw;
  line-height: 35px;
  text-align: center;
  /* width: 35vw; */
}
.item h6 {
  font-size: 1.8vw;
  margin-bottom:20px;
  color:#252525;
}


/* why choose us  */
/* Help desk */
#help-desk {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('solar-sliderr-4.jpg'); /* Background solar image */
  background-size: cover;
  background-position: center;
  position: relative;
  /* padding: 5vw 2vw; */
}

.help-desk-content {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  background-color: rgba(0, 39, 61, 0.85); /* Slightly dark overlay for contrast */
  padding: 3vw;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* width: 80vw; */
}

.help-desk-info {
  width: 50%;
  color: #f1f1f1;
  padding: 2vw;
}

.help-desk-info h2 {
  font-size: 2.5vw;
  font-family: 'Gilroy', sans-serif;
  margin-bottom: 1.5vw;
}

.help-desk-info p {
  font-size: 1.2vw;
  line-height: 2vw;
  margin-bottom: 3.5vw;
  /* font-family: 'Poppins', sans-serif; */
}

.contact-details h3 {
  font-size: 1.8vw;
  margin-bottom: 1vw;
  color: #E7B032;
  font-family: lato;
  padding: 3vw 0;
}

.contact-details p {
  font-size: 1.3vw;
  margin-bottom: 1vw;
}

.chat-button {
  padding: 0.8vw 1.5vw;
  font-size: 1.5vw;
  color: #fff;
  background-color: #ffba47;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 2vw;
}

.chat-button:hover {
  background-color: #ff9f00;
}

.contact-form {
  width: 45%;
  /* background-color: #f8f8f8; */
  padding: 2.5vw;
  border-radius: 1px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 2.2vw;
  font-family: 'Lato', sans-serif;
  color: #ececec;
  margin-bottom: 2vw;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1vw;
  margin-bottom: 1.5vw;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1vw;
}

.contact-form textarea {
  resize: none;
  height: 8vw;
}

.contact-form button {
  padding: 0.5vw;
    background-color: #006494;
    color: white;
    font-size: 1.2vw;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 8vw;
    border-radius: 4px;
}

.contact-form button:hover {
  background-color: #0f3961;
}

/* Tablet View (up to 1024px) */
@media (max-width: 1024px) {
  .help-desk-content {
    flex-direction: column;
  }

  .help-desk-info,
  .contact-form {
    width: 100%;
  }

  .help-desk-info h2,
  .contact-form h2 {
    font-size: 3.5vw;
  }

  .contact-details h3 {
    font-size: 2.5vw;
  }

  .contact-details p,
  .help-desk-info p {
    font-size: 2vw;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.5vw;
  }

  .chat-button {
    font-size: 2vw;
  }
}

/* Mobile View (up to 768px) */
@media (max-width: 768px) {
  /* #help-desk {
    padding: 10vw 3vw;
  } */

  .help-desk-content {
    flex-direction: column;
    gap: 5vw;
    /* width: 90vw; */
    padding: 7vw;
  }

  .help-desk-info {
    padding: 6vw;
  }

  .help-desk-info h2 {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .help-desk-info p {
    font-size: 3.5vw;
    line-height: 5vw;
  }

  .contact-details h3 {
    font-size: 4vw;
    margin-top: 10vw ;
  }

  .contact-details p {
    font-size: 3.5vw;
  }

  .chat-button {
    padding: 2vw 2.5vw;
    font-size: 3.5vw;
  }

  .contact-form {
    padding: 5vw;
  }

  .contact-form h2 {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 2vw;
    font-size: 3vw;
  }

  .contact-form textarea {
    height: 15vw;
  }

  .contact-form button {
    padding: 1.5vw 3vw;
    font-size: 3.5vw;
    width: 17vw;
  }
  .popup h2{
    font-size: 2vw;
    }
}

/* Extra Small Mobile View (up to 480px) */
@media (max-width: 480px) {
  #help-desk {
    /* padding: 12vw 5vw; */
  }

  .help-desk-content {
    gap: 6vw;
  }

  .help-desk-info h2 {
    font-size: 6vw;
  }
  .help-desk-info h5{
    font-size: 3vw;
    
  }
  .help-desk-info p,
  .contact-details p {
    font-size: 4vw;
  }

  .chat-button {
    padding: 4vw 6vw;
    font-size: 5vw;
  }

  .contact-form h2 {
    font-size: 6vw;
  }
  .popup h2{
    font-size: 2vw;
    }
}

/* Help desk */
/* //////////////////// */
/* EXPERTISE  SECTION */

.expertise-section {
  text-align: center;
  padding: 5vw;
}

.expertise-section h2 {
  font-size: 3vw;
  color: #3b3b3b;
  padding: 4vw 0;
}

.expertise-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
}

.expertise-item {
  flex: 1 1 20vw;  /* This allows flexibility and responsiveness */
  background-color: #fff;
  border-radius: 1vw;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  padding: 2vw;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 3vw;
}

.expertise-item img {
  width: 100%;
  height: auto;
  border-radius: 1vw;
  margin-bottom: 2vw;
  transition: transform 0.3s ease;
}

.expertise-item h3 {
  font-size: 2vw;
  color: #525050;
  margin-bottom: 1.5vw;
}

.expertise-item p {
  font-family: "Barlow", sans-serif;
  font-size: 1.2vw;
  color: #666;
}

/* Hover effect for interaction */
.expertise-item:hover {
  transform: translateY(-1vw);
  box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.2);
}

.expertise-item:hover img {
  transform: scale(1.05);
}
.expertise-bottom-part {
  display: flex;
  text-align: center;
  align-items: center;
    justify-content: space-evenly;
}
.expertise-bottom-part img{
  width: 30vw;
}
.right-text p{
  width: 30vw;
}
.expertise-item {
  flex: 1;
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Initially positioned below */
  transition: all 0.7s ease-out; /* Smooth transition */
}

.expertise-item.visible {
  opacity: 1;
  transform: translateY(0); /* Move back to its original position */
}


.left-img, .right-text {
  flex: 1;
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Initially positioned below */
  transition: all 0.7s ease-out;
}

.left-img.visible, .right-text.visible {
  opacity: 1;
  transform: translateY(0); /* Move back to original position */
}

/* .landscape-solar-img {
} */
.landscape-solar-img img{
  width: 100vw;
  margin: -4px;
}

/* FOOTER */
.footer-container {
  position: relative;
  display: flex;
  padding: 2vw;
  align-items: center;
  justify-content: space-evenly;
  color: #ebebeb;
  background-color: #00263bce;
  background-color: #000000eb;/*black*/
  padding-bottom: 10vw;
  
}

.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('solar-sliderr-4.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2; 
  z-index: -1; 
}

.footer-left,
.footer-middle,
.footer-right {
  position: relative; 
  z-index: 1; 
}

.footer-left img {
  width: 18vw;
  padding: 2vw 0;
}
.footer-left p{
  text-align: justify;
  line-height: 1.6;
  width: 35vw;
  font-size: 1.2vw;
  color: #f9f9f9;
}
.footer-middle{
  display: flex;
  width: 20%;
  margin-left: 5vw;
  flex-direction: column;
  height: 2vw;
}
.footer-middle h4 , .footer-right h4{
  font-size: 1.5rem;
  margin-bottom: 2vw;
  text-transform: uppercase;
}

.footer-middle ul {
  list-style: none;
  line-height: 0.5;
  padding: 0;
}
.footer-middle ul li{
  margin-bottom: 1.5vw;
  transition: color 0.3s ease, transform 0.3s ease ;
  line-height: 1.2;

}
.footer-middle ul li:hover{
  transform: translateX(12px);
}
.footer-middle ul li a ,.footer-right p {
  font-size: 1vw;
}
.footer-middle a{
  text-decoration: none;
  color: #f1f1f1;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-middle a:hover{
  color: #E7B032;
}
.footer-right{
  display: flex;
  flex-direction: column;
  height: 2vw;
}
.footer-right h5{
  padding-bottom: 1vw;
}
.footer-right p{  
  transition: color 0.3s ease;
  color: #f7f7f7;
  padding-bottom: 0.2vw;
}
.footer-right p:hover{
  color: #E7B032;

}
.footer-end{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050505e9;
  background-color: #d3920a;
  padding: 2vw 0;
}
.footer-end p{
  word-wrap: normal;
  white-space: nowrap;
  transition: color 0.3s ease ;
  color: #ededed;
}
.footer-end p:hover{
  color:#3e3e3e;
}
/* ============ Gallery page CSS ============== */
#gallery-main
     {
      width: 100%;
      min-height: 100vh;
      background-color: #f9f9f9;
    }
.gallery-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-heading h1 {
  margin-top: 9vw;
  color: #004914;
  font-size: 2.5rem;
  text-align: center;
}
.gallery-heading a{
      color: #00b22c;
      text-align: center;
    }
.gallery-heading a:hover{
      color: #343434;
      text-align: center;
    }
    .gallery-heading a span{
      color: rgb(84, 84, 84);
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-items: center;
      gap: 4vw;
      padding: 2vw 6vw;
      padding-bottom: 20vw;
      height: 100%;
      width: 100%;
    }

    .gallery img {
      height: 450px;
      width: 450px;
      margin: 2vw 0;
      object-fit: contain;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Modal Styles */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
    }

    .modal.active {
      display: flex;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: white;
      cursor: pointer;
      z-index: 1000;
    }

    @media (max-width: 760px) {
    
      #gallery-main h1 {
        font-size: 1.8rem;
        padding-top: 28vw;
        margin-bottom: 2vw;
      }
      .gallery {
        grid-template-columns: repeat(1, 1fr);
        flex-direction: column;
        justify-items: center;
        gap: 14vw;
        padding-top: 12vw;
      }
      .gallery img {
        width: 80vw;
        height: auto;
          }

      .modal img {
        max-width: 80%;
        max-height: 80%;
      }
    }
/* ============ Gallery page CSS ============== */
/* FOOTER */

/* ==================================== */
/* ================== ANIMATION ================== */

/* ================== ANIMATION ================== */
/* ==================================== */

/*==================== page -4 services  =================== */

/* ===================== Responsiveness ====================== */

@media only screen and (max-width:760px) {
  /* NAVBAR */
.navbar{
height: 25vw;
}
  .offcanvas-body ul li a {
    color: #e6e6e6;
    width: 60vw;
    font-size: 4vw;
}
.offcanvas-body{
  margin: 33vw 0 0 12vw;
}

.container-fluid a {
    font-size: 4vw;
}
div#offcanvasNavbar {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    background-color: #000f22d8;

}
.offcanvas-body ul li {
    list-style: none;
    width: 20vw;
}
.offcanvas-title img{
    width: 20vw;
}
.offcanvas-header {
    display: flex;
    align-items: center;
    gap: 51vw;
}
.navbar-brand  img{
  width: 30vw;
}
.navbar-expand-lg .navbar-nav {
  margin-top: 5vw;
}
.offcanvas-header h5 img {
  width: 30vw;
}

/* NAVBAR */

/* Page-1  */
#page-1{
  padding-top: 24vw;
}
#page-1 .slide img{
  height: 70%;

}
.carousel {
  height: 90vh;
}
/* Page-2 */
#page-2 h1{
  font-size: 7vw;
  padding-top: 6vw;
}
.features {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature {
  width: 68vw;
  margin: 5vw 0;
}
.feature img{
  width: 40vw;
  height: auto;
  padding-top: 2vw;
  border-radius: 4px;
}
.feature h3{
  font-size: 4.6vw;
  padding: 3vw 0;
}
.feature p{
  font-size: 3.5vw;
  padding: 0 3vw;
}
/* Our story */

#our-story-main {
  flex-direction: column;
  align-items: center;
}
.right-content{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.left-content img{
width: 80vw;
border-radius: 6px;
}
.right-content h2{ 
  font-size: 7.5vw;
  padding-top: 8vw;
  border-radius: 6px;
}

.right-content p{
  font-size: 3.8vw;
  width:85vw;
  margin: 8vw 0;
  padding: 0 3vw;
  text-align: justify;
}

/* Why solar energy */
.benefits-contact{
  flex-direction: column;
  /* align-items: center; */
  padding: 4vw;
  
}
.benefits-section, .contact-form-section {
  width: 100%;
}
.benefits-section h2 {
  font-size: 5.5vw; 
  width: 70vw;
  padding: 4vw;
  margin-top: 4vw;
}
.benefits-section ul li  {
  font-size: 4vw; 
  font-family: poppins;
  line-height: 3;
}
/* Why choose us */
.wcu-container{
  flex-direction: column;
}
.wcu-text{
  width: auto;
  padding: 1vw 8vw;
  text-align: justify;
}
.slide video {
  height: 70%;
  width: 100%;
}
.wcu-text h2{
  font-size: 7vw;
  padding: 4vw 0;
  font-family: lato;
}
.wcu-text p{
  font-size: 4vw;
}


.wcu-img img{
  width: 90vw;
  margin: 4VW 0;
}
.landscape-solar-img{
display: flex;
justify-content: center;
}
.landscape-solar-img img{
  width: 158vw;
}
.item .icon {
  font-size: 8.8vw;
}
.container{
  grid-template-columns: repeat(1, 1fr);
  max-width: 100vw;
}
.container .item{
  margin: 5vw 10vw;
}
.item{
  padding: 55px 25px;
}
.item h6{
  font-size: 4vw;
}
.item p {
  font-size: 3.5vw
}
/* Form area  */

.contact-form-section h2 {
  font-size: 5.6vw;
  margin-bottom: 2vw;
  padding: 4vw;
}
/* Form area  */
.contact-form-section form {
  margin: 4vw;
}
.benefits-section, .contact-form-section {
  width: 100%;
}

.benefits-contact {
  padding: 2vw;
  
}
form input, form textarea {
  font-size: 2.8vw;
  margin: 2vw 4vw;
  padding: 2vw;
}

form button {
  font-size: 3vw;
  padding: 1.3vw 0px;
  margin: 4vw;
  width: 16vw;
}
/* Services Container  */
#services-main-container {
  width: 100%;
  padding: 0 12vw 12vw 12vw;
  margin-top: -30%;
}
#services-main-container h1{
  font-size: 7vw;
  margin-bottom: 9vw;
  padding-top: 13VW;
}
.services-sub-box{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.services-info img{
width: 76vw;
padding: 1px;
}
.services-info h2{
font-size: 4vw;
width:150%;
padding-top: 4vw;
}
.services-info  p{
  font-size: 3.7vw;
  width: 80vw;
  /* font-family: poppins; */
  margin-bottom: 16vw;
  text-align: justify;
}
.popup h2{
  font-size: 2.5vw;
  filter: drop-shadow(1px 1px 15px rgb(255, 255, 255));
  }
/* EXPERISE SECTIOJN */
.expertise-section{
  padding: 15vw;
}
 
  .expertise-flex {
    flex-direction: column;
    align-items: center;
  }

  .expertise-section h2 {
    font-size: 5vw;
  padding-bottom: 6vw;
  }

  .expertise-item {
    flex: 1 1 90vw;
  }

  .expertise-item h3 {
    font-size: 4vw;
    padding: 2vw 0;
  }

  .expertise-item p {
    font-size: 3vw;
    text-align: justify;
    padding: 0 2.5vw;
  }
  .expertise-bottom-part {
    flex-direction: column;
    align-items: center;

}
.expertise-bottom-part img{
  width: 100%;
}
.right-text p{
  width: auto;
}
/* FOOTER */
.footer-container{
  display: flex;
  padding: 4vw;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  gap: 45vw;
}

.footer-left img{
  margin-bottom: 2vw;
  width: 60vw;
}
.footer-left p{
  font-size: 4vw;
  text-align: justify;
  line-height: 1.6;
  width: 95vw;
  padding: 1vw 10vw;
  
}
.footer-middle , .footer-middle ,.footer-left{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: auto;
  padding: 4vw 0;
  text-align: center;
  margin: 0;
}
.footer-middle ul li{
  margin-bottom: 1.5vw;
  line-height: 1.6;
}
.footer-middle ul li a, .footer-right p {
  font-size: 3.1vw;
  font-family: poppins;
}
.footer-right{
  height: auto;
}
.footer-right p{
line-height: 2;
}
.footer-right h4, .footer-middle h4{
  margin-bottom: 4vw;
  font-size: 5.5vw;
}
.footer-end p{
  font-size: 3vw;
}
.back-to-top{
  height: 57px;
  bottom: 23px;
  left: 13px;
  z-index: 999;
  background-color: rgba(65, 65, 65, 0.57);
  padding: 1.2rem;
  border-radius: 54%;
}

}
/* FOOTER */
/* BACK TO TOP BUTTON */
.back-to-top{
  position: fixed;
  height: 50px;
  bottom: 30px;
  left: 3px;
  z-index: 999;
  background-color: rgb(0, 0, 0);
  padding: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
justify-content: center;
}
.back-to-top:hover{
  background-color: #1a1a1aec;
  transition:  0.2s ease-in-out;

}
.arrow{
  font-size: 20px;
  color: #0fa744;
}
.arrow:hover{
transform: translateY(-6px);
  transition:  0.2s ease-in-out;


}






/* LOGO SLIDE CSS */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 80px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}