body {
  margin: 0;
  font-family: Arial, sans-serif;
}
/* =========================================================
   MAHATA ELECTRICAL
   MODERN HERO SLIDER
========================================================= */

.me-hero-slider {

    width: 100%;

    height: 720px;

    position: relative;

    overflow: hidden;

    background: #ffffff;

}


/* =========================================================
   SWIPER
========================================================= */

.me-hero-slider .swiper {

    width: 100%;

    height: 100%;

}


.me-hero-slider .swiper-wrapper {

    height: 100%;

}


.me-hero-slider .swiper-slide {

    width: 100%;

    height: 100%;

}


/* =========================================================
   MAIN SLIDE
========================================================= */

.me-hero-slide {

    width: 100%;

    height: 100%;

    display: flex;

    position: relative;

    overflow: hidden;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.me-hero-content {

    width: 50%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 6% 90px 8%;

    background: #ffffff;

    position: relative;

    z-index: 5;

}


/* subtle green vertical line */

.me-hero-content::before {

    content: "";

    position: absolute;

    left: 0;

    top: 18%;

    width: 4px;

    height: 64%;

    background: rgb(120, 201, 0);

}


/* content wrapper */

.me-hero-content-inner {

    width: 100%;

    max-width: 650px;

}


/* =========================================================
   SMALL TITLE
========================================================= */

.me-hero-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgb(55, 150, 0);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    margin-bottom: 22px;

}


.me-hero-tag span {

    width: 42px;

    height: 2px;

    background: rgb(120, 201, 0);

    display: inline-block;

}


/* =========================================================
   HEADING
========================================================= */

.me-hero-content h1 {

    margin: 0 0 25px;

    color: #161616;

    font-size: clamp(45px, 5vw, 72px);

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -2px;

}


.me-hero-content h1 strong {

    display: block;

    color: rgb(55, 150, 0);

    font-weight: 700;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.me-hero-content p {

    max-width: 560px;

    color: #5f5f5f;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;

}


/* =========================================================
   BUTTONS
========================================================= */

.me-hero-actions {

    display: flex;

    align-items: center;

    gap: 28px;

}


.me-hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: rgb(0, 65, 0);

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: all .3s ease;

}


.me-hero-btn:hover {

    background: rgb(120, 201, 0);

    color: #ffffff;

    transform: translateY(-3px);

}


.me-hero-btn i {

    transition: transform .3s ease;

}


.me-hero-btn:hover i {

    transform: translateX(5px);

}


.me-hero-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgb(0, 65, 0);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    padding-bottom: 5px;

    border-bottom: 1px solid rgb(0, 65, 0);

    transition: all .3s ease;

}


.me-hero-link:hover {

    color: rgb(120, 201, 0);

    border-color: rgb(120, 201, 0);

}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.me-hero-image {

    width: 50%;

    height: 100%;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(223, 245, 215, .7),
            rgba(255, 255, 255, 0) 62%
        );

}


/* =========================================================
   3/4 CIRCLES
========================================================= */

.me-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


/* Large circle */

.me-circle-one {

    width: 650px;

    height: 650px;

    border: 2px solid rgba(120, 201, 0, .28);

    border-right-color: transparent;

    border-bottom-color: transparent;

    transform: rotate(-35deg);

    animation: meRotateOne 18s linear infinite;

}


/* Medium circle */

.me-circle-two {

    width: 510px;

    height: 510px;

    border: 2px solid rgba(0, 65, 0, .20);

    border-left-color: transparent;

    border-bottom-color: transparent;

    transform: rotate(40deg);

    animation: meRotateTwo 14s linear infinite;

}


/* Small circle */

.me-circle-three {

    width: 380px;

    height: 380px;

    border: 2px solid rgba(120, 201, 0, .35);

    border-top-color: transparent;

    border-right-color: transparent;

    transform: rotate(-20deg);

    animation: meRotateThree 11s linear infinite;

}


/* =========================================================
   CIRCLE ANIMATIONS
========================================================= */

@keyframes meRotateOne {

    from {

        transform: rotate(-35deg);

    }

    to {

        transform: rotate(325deg);

    }

}


@keyframes meRotateTwo {

    from {

        transform: rotate(40deg);

    }

    to {

        transform: rotate(-320deg);

    }

}


@keyframes meRotateThree {

    from {

        transform: rotate(-20deg);

    }

    to {

        transform: rotate(340deg);

    }

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.me-product-image {

    width: 430px;

    height: 430px;

    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    animation: meProductFloat 4s ease-in-out infinite;

}


.me-product-image img {

    max-width: 100%;

    max-height: 100%;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

    filter: drop-shadow(
        0 25px 25px rgba(0, 0, 0, .15)
    );

}


/* floating product */

@keyframes meProductFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.me-dot {

    position: absolute;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: rgb(120, 201, 0);

    z-index: 4;

}


.me-dot-one {

    top: 22%;

    right: 14%;

    animation: meDotFloat 4s ease-in-out infinite;

}


.me-dot-two {

    bottom: 22%;

    right: 25%;

    width: 7px;

    height: 7px;

    animation: meDotFloat 5s ease-in-out infinite reverse;

}


.me-dot-three {

    top: 35%;

    left: 12%;

    width: 6px;

    height: 6px;

    animation: meDotFloat 3s ease-in-out infinite;

}


@keyframes meDotFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}


/* =========================================================
   BOTTOM CONTROLS
========================================================= */

.me-slider-bottom {

    position: absolute;

    z-index: 50;

    bottom: 30px;

    left: 8%;

    right: 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* Slide number */

.me-slider-number {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #777;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

}


.me-current-slide {

    color: rgb(0, 65, 0);

    font-size: 17px;

}


.me-slide-line {

    width: 55px;

    height: 1px;

    background: #bdbdbd;

}


/* =========================================================
   ARROWS
========================================================= */

.me-slider-controls {

    display: flex;

    gap: 10px;

}


.me-slider-prev,
.me-slider-next {

    width: 48px;

    height: 48px;

    border: 1px solid rgba(0, 65, 0, .35);

    background: #ffffff;

    color: rgb(0, 65, 0);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all .3s ease;

}


.me-slider-prev:hover,
.me-slider-next:hover {

    background: rgb(0, 65, 0);

    border-color: rgb(0, 65, 0);

    color: #ffffff;

}


.me-slider-prev i,
.me-slider-next i {

    font-size: 18px;

}


/* =========================================================
   REMOVE DEFAULT SWIPER CONTROLS
========================================================= */

.me-hero-slider .swiper-button-next,
.me-hero-slider .swiper-button-prev,
.me-hero-slider .swiper-pagination {

    display: none !important;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .me-hero-slider {

        height: 650px;

    }


    .me-hero-content {

        padding-left: 6%;

        padding-right: 4%;

    }


    .me-hero-content h1 {

        font-size: 48px;

    }


    .me-product-image {

        width: 350px;

        height: 350px;

    }


    .me-circle-one {

        width: 520px;

        height: 520px;

    }


    .me-circle-two {

        width: 420px;

        height: 420px;

    }


    .me-circle-three {

        width: 320px;

        height: 320px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .me-hero-slider {

        height: auto;

    }


    .me-hero-slide {

        flex-direction: column;

        height: auto;

    }


    .me-hero-content {

        width: 100%;

        height: auto;

        min-height: 480px;

        padding: 55px 25px 100px;

        order: 2;

    }


    .me-hero-content::before {

        top: 0;

        left: 10%;

        width: 80%;

        height: 3px;

    }


    .me-hero-content h1 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .me-hero-content p {

        font-size: 15px;

    }


    .me-hero-image {

        width: 100%;

        height: 390px;

        order: 1;

    }


    .me-product-image {

        width: 280px;

        height: 280px;

    }


    .me-circle-one {

        width: 430px;

        height: 430px;

    }


    .me-circle-two {

        width: 340px;

        height: 340px;

    }


    .me-circle-three {

        width: 250px;

        height: 250px;

    }


    .me-slider-bottom {

        left: 25px;

        right: 25px;

        bottom: 25px;

    }


    .me-slider-controls {

        gap: 7px;

    }


    .me-slider-prev,
    .me-slider-next {

        width: 42px;

        height: 42px;

    }


    .me-hero-actions {

        flex-wrap: wrap;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .me-hero-image {

        height: 330px;

    }


    .me-product-image {

        width: 240px;

        height: 240px;

    }


    .me-hero-content {

        min-height: 500px;

        padding: 45px 22px 100px;

    }


    .me-hero-content h1 {

        font-size: 34px;

    }


    .me-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

}
/* .navbar {
  background: rgba(0,0,0,0.7) !important;
} */

/* Slider */
.swiper {
  height: 100vh;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.336); */
}

h1 {
  /* font-size: 55px; */
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  /* font-display: block; */
}

p {
  font-size: 18px;
  opacity: 0.9;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 42px;
  border-bottom: 3px solid green;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 12px 15px;
  /* border-radius: 10px; */
  color: #fff;
  margin-bottom: 15px;
  transition: 0.3s;
}

.feature-box i {
  font-size: 42px;
  color: white;
  /* color: #22790d; */
}

.feature-box span {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.feature-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.btn-warning {
  padding: 10px 25px;
  font-size: 18px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

.btn{
    background-color: white;
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 20px ;
}

@media (max-width: 768px) {

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .feature-box {
    justify-content: center;
  }
}


/* after banner */

#h2top{
    font-weight: bolder;
    font-display: block;
    line-height: 1.8;
    letter-spacing: 3px;
    /* color: #22790d; */
}

.highlight-why{
    display: flex;
    flex-direction: column;
    align-items: center;
      /* backdrop-filter: blur(6px); */
    background-color: #267712a1;
      backdrop-filter: blur(46px);
      color: white;
      box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.336);
        transition: all 0.35s ease-in-out;
        /* grid-area: 20px !important; */
        grid-auto-columns: auto;


}

@keyframes blink {
  0%   { opacity: 1; }
  1%  { opacity: 0; }
  100% { opacity: 1; }
}

.highlight-why:hover{

transform: translateY(-10px);  
  /* background-color: #267712a1;
      backdrop-filter: blur(46px);
      color: white;
      box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.336); */
/* transition: all 0.8s; */
}

/* .highlight-why h1{
          animation: blink 1.5s infinite;

} */
.solarpannel-image:hover ~ .overvie-image {
    opacity: 0;
}


.overvie-image{
    height: 720px;
    /* opacity: 0; */
    width: 100%;
}

.overvie-color{
    /* background-color: red; */
}

.overvie-highl{
    /* background-color: #22790d; */
    padding: 20px;
    color: rgb(0, 0, 0);
    margin-top: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    justify-content: center;

}

.overvie-highl:hover{
        background-color: #267712a1;
        color: white;
        transition: cubic-bezier(0.86, 0, 0.07, 1) 0.2s;
        cursor: pointer;

}

.service-icon{
    font-size: 45px;

}
.overvie-highl h1{
    font-size: 1.5rem;
}
.bi-check2-circle{
    color: #267712a1;
    background-attachment: scroll;
}
.what-img{
    border-radius: 10px;
}

.about-bg{
background:  linear-gradient(rgba(255, 253, 253, 0.13), rgba(255, 254, 254, 0.137)),
 url("https://img.freepik.com/premium-photo/sunlight-through-solar-panels-greenery_200210-389.jpg") no-repeat;
    /* background-color: rgb(255, 255, 255); */
    /* height: 550px; */
    background-attachment: fixed;
    background-size: cover;
}
.about-h1{
    /* color:rgb(0, 0, 0); */
    text-transform: capitalize;
    /* font-family: 'Times New Roman', Times, serif; */
}

#about-img{
margin-top: 20px;
    height: 350px;
    width: 100%;
}
.bg-about{
    /* background-color: rgba(0, 0, 0, 0.308); */
}
.bg-about p{
    /* font-size: 18px; */
    color: black;
    line-height: 1.7;
    letter-spacing: 2px;
}
p{
    /* font-size: 18px; */
    /* color: black; */
    line-height: 1.2;
    letter-spacing: 1px;
}
.col3-img{
    height: 350px;
    width: 100%;
}


.custom-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-list li i {
  color: #fff; 
  font-size: 20px;
}

.col6-benefit-img{
    height: 350px;
}

#h2faq{
     font-weight: bolder;
     font-size: 22px;
    font-display: block;
    color: #267712a1;
    line-height: 1.2;
    letter-spacing: 2px;
}

.connect-btn{
    padding: 15px;
    color: white;
    border: 0;
    border-radius: 50px;
    width: 150px;
    background-color: #267712a1;
}

.reach-p{
    line-height: 1.5;
    letter-spacing: 2px;
}
.reach-img{
    height: 350px;
    width: 100%;
}


/* footer css start */
footer{
    /* background-color: #267712; */
    background: 
    linear-gradient(rgb(0, 90, 12),rgba(0, 104, 14, 0.897))
    /* url("https://tse4.mm.bing.net/th/id/OIP.THDZZQKhTuX0KAMdmZhdVAHaDt?rs=1&pid=ImgDetMain&o=7&rm=3") no-repeat; */
    /* background-size: cover; */
}

footer h5,a{
    color: white;
text-decoration: none;
}

a{
    line-height: 1.2;
    letter-spacing: 1px;
}

.footer-bottom{
    border-bottom: 2px solid white;
    
    border-top: 2px solid white;
}

footer .col-lg-3{
    display: flex;
    align-items: center;
    justify-content: center;
}

 .footer-icon{
    margin-top: 10px;
    background-color: white;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    }
     .footer-icon i{
        color: #267712;
        font-size: 25px;
     }

     label{
        padding-bottom: 10px;
        padding-top: 10px;
        color: white;
     }