/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/



/* MAIN */
.banner-section {
  display:flex; 
  position:relative;
  overflow:hidden;
  user-select:none;
  
}

/* IMAGE */
.banner-section .box1 img {
  position:absolute;
  width:45%;
  height:100%;
  object-fit:cover;
  top:0;
  left:auto;
  right: 0;
  opacity:0; 
  transition: opacity 0.8s ease, transform 1.2s ease;
  will-change: opacity, transform;
}

.banner-section .box1 img.active {
  opacity:1;
  transform: scale(1); /* smooth zoom-in feel */
}

/* TEXT */
.banner-section .box2 {
    width: 55%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    position: relative;
    padding: 145px 0 315px 0;
    min-height: 800px;

}

.banner-section .text {
    position:absolute;
    opacity:0;
    transform: translate3d(0, 30px, 0); /* GPU acceleration */
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    will-change: transform, opacity; 
    right: 60px;
    left: 90px;
}

.banner-section .text.active {
  opacity:1;
  transform: translate3d(0, 0, 0);
  z-index: 9;
}

.banner-section h1, .banner-section h2 { 
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;  
  }

.banner-section h1 span, .banner-section h2 span{ 
  color: var(--secondary-color);
} 

.banner-section p {
    line-height: 30px;
}

/* CONTROLS */
.banner-section .controls {
    position: absolute;
    background: #000000;
    color: #fff;
    text-align: center;
    bottom: 0;
    left: auto;
    width: 150px;
    display: grid;
    gap: 6px;
    justify-content: center;
    padding: 25px 0;
    z-index: 1;
    right: -150px;
}

.banner-section .controls button {
    background: #000;
    cursor: pointer;
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #414141;
    color: #ffffff;
    transition: 0.4s;
}
.banner-section .controls button:hover{
  background-color: var(--secondary-color);
}

.banner-section .counter {
  color:#fff;
  margin-top:10px;
}

/* DRAG LAYER */
.banner-section .drag-layer {
 position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:10;

  pointer-events: none;  
}

.banner-section .banner-section.dragging .drag-layer {
  cursor:grabbing;
}

/* STATS */
.banner-section .stats {
    display: flex;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    padding: 43px 0;
    text-align: center;
    gap: 120px;
     
  position: absolute;
  bottom: 0;
  width: 100%;
}

.stats h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    margin-bottom: 0;
}
.stats p{
  color: white;
  margin-bottom: 0;
  font-weight: 600;
}


.tOri_banner-right {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    height: 100%;
    width: 45%;
}
 
.tOri_banner-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.stats:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/shape-2.png);
}


/* energy-section css start here */
.energy-section {
border-radius: 15px;
    padding: 40px 50px 40px 50px;
    box-shadow: 0px 2px 30px rgb(0 0 0 / 33%);
    background-color: #F8F8F8;
    background-image: url(../images/shape-10.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}

.energy-section h5{
  font-size: 21px;
  font-weight: 700;
  line-height: 34px;
}
 
.energy-left h2 {
  font-weight: 800;
  font-size: 33px;
  line-height: 46px;
}

.review {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.review img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #fff;
}

/* Cards */
.feature-card {
  padding: 20px 0;
}

.icon-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D7E9D2;
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin: 0px 0px 20px 0px;
}

.icon-circle img {
  width: 30px;
}

/* Divider */
.border-start-custom {
  border-left: 1px solid #eee;
}


/*--------------------About Us Start here--------------------*/


.about-images{ 
  position: relative;
  text-align: right;
    margin-right: 20px;
}
.about-images img{  
    max-width: 750px;
    text-align: center;
  }
 .about-images .img2{
    max-width: 310px;
    border-style: solid;
    border-width: 10px 10px 0px 0px;
    border-color: #ffffff;
    border-radius: 10px 10px 10px 10px; 
    margin: -35% 40% 0% 0%;
  }  
  
.innerList { 
    padding: 0;
}

.innerList li {
    position: relative;
    margin: 0 0 0px 20px;
    margin-bottom: 10px;
    padding-left: 4px;
    color: #000;
}

.innerList li:before{
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--secondary-color);
} 

/* Section spacing */
.progress-section {
  padding: 80px 0;
}

/* Image */
.progress-img img {
  width: 100%;
  border-radius: 10px;
}

/* Right Box */
.progress-box {
background: #ffffff;
    border-radius: 10px;
    position: absolute;
    right: 0;
    top: 30px;
    border-style: solid;
    border-width: 0px 4px 0px 0px;
    border-color: #57B33E;
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 20px 30px;
    max-width: 320px;
}
 
/* Progress Circle */
.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#4CAF50 100%, #ddd 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;    
  flex: none;
}

.progress-circle::before {
  content: "";
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}

.progress-value {
  position: relative;
  font-weight: bold;
  font-size: 22px;
}

/* Text */
.progress-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #1F242C;
    text-align: left;
}


/*services css start here*/
.services-sec{ 
  position: relative;
    padding-bottom: 180px;
}
.service-box-wrapper{
    padding: 40px 40px; 
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 10px 4px;
    height: 100%;
    box-shadow: rgb(0 0 0 / 10%) 0px 3px 8px;
}

.serv-img{
  width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease; 
    background-color: var(--primary-color);
        display: flex;
    align-items: end;
}

.serv-img img {
    object-fit: contain;
    object-position: bottom;
}
/* .serv-img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #013e7b;
    opacity: 0.8;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
} */
 .iconbox_shape{
  width: 56px;
    height: 56px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    bottom: -56px;
    right: -56px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
 }
 .service-box-wrapper:hover .serv-img{
  opacity: 1;
 }
 .service-box .srvc-icon {
    width: 90px;
    margin-bottom: 20px;
}
  .service-box-wrapper:hover .iconbox_shape{
    bottom: -20px;
    right: -20px;
 }
 .srvc-icon-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
 } 
 .service-box img{
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
  z-index: 9; 
 } 
.service-box {
    position: relative;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;

} 
 .services-sec h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}
.service-box-wrapper p{
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;  
}

.service-box-wrapper:hover h5 a, .service-box-wrapper:hover p{
  color: white;
}
.service-box-wrapper h5 a, .service-box-wrapper p{
  color: var(--text-color);
}
 
.service-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/shape-9.png);
  background-position: top left;
  background-size: auto;
  background-repeat: repeat-x;
  background-color: var(--bg-color);
  width: 100%;
  height: 100%;
} 
.services-sec i {
    transform: rotate(-45deg);
    font-size: 15px;
}
.services-sec .right {
    margin-top: 20px;
    display: inline-block;
}
.services-sec .right:hover{
  color: white;
}
.solar-cta {
background: var(--secondary-color);
    padding: 50px 30px;
    border-radius: 12px;
    margin: 0;
    margin-top: -100px;
    position: relative;
}
.solar-cta .row{
  position: relative;
}
.solar-cta h2{
  color: white;
  margin-bottom: 0;
}
.solar-cta .main-button{
  background-color: transparent;
  border: 1px solid #fff;
}


.background-overlay{
  background-image: url(../images/shape-21.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.18;
        inset: 0;
    position: absolute;
}
.services-sec .row.align-items-center {
    margin-bottom: 30px;
}

.about-sec .col-lg-6.order-lg-2 .about-images {
    margin-right: 0;
    margin-left: 20px;
}




.gallery-section .gallery-section-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}
.gallery-section .card {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24); 
    border-radius: 2px;
    overflow: hidden;
    border:0;

}
.gallery-section .card-image {
    background: var(--white);
    display: block;
    padding-top: 82%;
    position: relative;
    width: 100%;
}
.gallery-section .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.gallery-section .card-image:hover img{
    filter: brightness(0.5);
    transform: scale(1.1);
}


 


/* Step badge */
.step-badge {
  display: block;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
  margin-top: -16px;
}

/* Circle image */
.circle-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 0 0 2px #eee;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.process-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 21px;
}

.process-box p { 
  font-size: 16px;
}
.process-box {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #E9E9EA;
}


.team-section {
  text-align: center;
}
 

/* Card */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* Image */
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay */
.team-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -100%; /* hidden */
  background: var(--secondary-color);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: 0.4s;
}

/* Icon */
.icon {
  width: 35px;
  height: 35px;
  background: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Text */
.team-overlay h6 {
  margin: 0;
  font-weight: 700;
}

.team-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

/* ✅ IMPORTANT: Hover only on current card */
.team-card:hover .team-overlay {
  bottom: 20px;
}

/* Image zoom */
.team-card:hover img {
  transform: scale(1.08);
}


 










.testimonial-section {
background-color: #F8F8F8;
    background-image: url(../images/shape-8.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
 
/* CARD */
.testimonial-card {
    border-radius: 10px; 
    min-height: 250px;
    background: #ffffff;
    padding: 30px 30px;
    display: flex;
    gap: 30px;
    transition: 0.4s all ease;
    position: relative;
    cursor: pointer;  
}

.testimonial-card:hover, .testimonial-card:hover:before {
    background: var(--text-color); 
    color: white;
}
.testimonial-card:hover p, .testimonial-card:hover span, .testimonial-card:hover h6{
  color: white;
} 

.testimonial-card .inner { 
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative; 
}

/* AVATAR */
.testimonial-card img {
  
    flex-basis: content;
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 8px;
    border: 1px solid var(--secondary-color);

}

/* CONTENT */
.testimonial-section .content p {
    margin-bottom: 15px;
    margin-top: 5px;
}

.testimonial-section .content h6 {
  margin: 10px 0 0;
  font-weight: 700;
}

.testimonial-section .content span {
  font-size: 13px;
  color: #888;
}

/* LOGO */
.testimonial-section .logo {
  margin-left: auto;
  font-weight: bold;
  opacity: 0.5;
}

/* STARS */
.testimonial-section .stars {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

/* ACTIVE FIRST CARD */
.testimonial-section .owl-item.active:first-child .inner {
  background: #1e2732;
  color: #fff;
} 

/* SPEECH TRIANGLE */
.testimonial-section .owl-item.active:first-child .inner::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 60px;
  border-width: 12px;
  border-style: solid;
  border-color: #1e2732 transparent transparent transparent;
}

/* SLIDER */
.testimonial-section .owl-stage {
  display: flex;
  align-items: center;
}

/* ARROWS */
.testimonial-section .custom-nav {
  margin-top: 20px;
}
  
.testimonial-section h6 {
    margin: 10px 0 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.testimonial-section .custom-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--secondary-color);
  margin-right: 10px;
  cursor: pointer;
  transition: .3s;
}

.testimonial-section .custom-nav button:hover {
  background: var(--primary-color);
  color: #fff;
}
 
.testimonial-section .owl-carousel .owl-stage-outer { 
    padding-bottom: 25px;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: -24px;
    background: white;
    width: 40px;
    height: 25px;
    -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 99;
    transition: 0.4s;
}



/*blogs css start here*/
 

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* DATE BADGE */
.date-badge {
position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    aspect-ratio: 1 / 1;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.date-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.date-badge small {
  font-size: 12px;
}

/* CONTENT */
.blog-content {
  padding: 25px 20px 20px;
}

.meta {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.meta i {
  color: var(--secondary-color);
}

.blog-content h5 {
    font-size: 22px;
    line-height: normal;
    font-weight: 800;
    margin-bottom: 15px;
}

/* READ MORE */
.read-more {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}
.read-more i{
      transform: rotate(-45deg);
    font-size: 15px;
}
.read-more:hover {
  color: var(--secondary-color);
}

.solar-cta .col-lg-4.col-md-5 img {
    max-width: 260px;
    position: absolute;
    right: 0;
    bottom: -50px;
}

.footer-solar-cta .solar-cta {
    margin: 0;
    margin-bottom: -142.8px;
        z-index: 9;
}
.footer-solar-cta .main-button {
    background: var(--text-color) !important;
    border: 0;
}
.cta-actions{
  
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;

}
.help-box{
  display: flex;
  align-items: center;
  gap:15px;
}
/* HELP BOX */ 

.help-box h5 {
  color: #fff;
  font-weight: 700;
  margin: 0;
    font-size: 19px;
}
.help-box h5 a{ 
  color: #fff;
}
.help-box h5 a:hover{ 
  color: var(--primary-color);
}
/* ICON */
.help-box .help-box-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #57B33E;
  font-size: 20px;
}

.cta-actions .main-button{
  margin-top: 0;
}
 

#slider img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}



/*Inner Page css start here*/
.banner__inner-page {
    position: relative; 
        background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/inner-bg-image.jpg);
    background-size: cover;
    padding: 100px 0; 
    overflow: hidden;
    text-align: center;
}
.banner__inner-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270.07deg, var(--primary-color) 0.07%, #00060c 99.95%);
   
    opacity: 0.75;
}
.banner__inner-page .container-fluid{
    position: relative;
}  
 
.banner__inner-page h1{
    color: #fff; 
    font-size: 52px;
    font-weight: 700; 
    margin-bottom: 20px;
}
.banner__inner-page p{
    color: #fff;
}  
.banner__inner-page .breadcrumb-menu li {
  display: inline-block;
  position: relative;
  color: var(--white); 
  margin-bottom: 0;
  font-size: 18px;
}

.banner__inner-page .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.banner__inner-page .breadcrumb-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb-menu {
    padding: 0;
    margin: 0;
}
.banner__inner-page .breadcrumb-menu li a {
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  color: var(--secondary-color);
}
.banner__inner-page .breadcrumb-menu li a:hover{
  color: var(--white);
}
.banner__inner-page .breadcrumb-menu li:first-child:after {
  content: "\f101";
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  margin: 0 6px; 
  font-size: 13px;
} 


/*services sidear*/
.sidebar-nav {
  background-color: #F6F6F6;
  padding: 30px;
  box-shadow: 0px 0px 5px 2px rgb(30 96 170 / 18%);
  /* position: sticky;
  top: 105px; */
}

.sidebar-nav h3{
  font-size: 24px; 
}

.sidebar-nav ul{
  margin: 0;
  padding: 0;
}
.sidebar-nav li{
  padding: 12px 25px; 
  background-color: var(--white);
  border-radius: 6px; 
  color: var(--primary-color);
  position: relative;
  transition: 0.3s;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-nav li:hover{
  background-color: var(--text-color);
}
.sidebar-nav ul li a {
  line-height: 24px;
  text-transform: uppercase;
  font-size: 15px;
  padding-right: 20px; 
  position: relative;
  width: 100%;
  display: block;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-color);
}

.sidebar-nav li:hover a{
  color: white;
}

.sidebar-nav ul li a::after {    
  content: "\f178";
  font-family: "Font Awesome 7 Free";
font-size: 16px;                     

position: absolute;
right: 0;
top: 0;
font-weight: 900;
color: var(--primary-color);
}
.content-side img{
  margin-bottom: 20px;
}
.content-side ul {
  margin-top: 25px;
  color: #6c7176;
  padding-left: 0;
}
.content-side ul li{
  position: relative;
  padding: 0px 0 0px 26px; 
  margin-bottom: 5px;  
  font-weight: 400;
  color: var(--text-color);
  font-size: 17px;
  margin-bottom: 10px;
  line-height: normal;
}
.content-side ul li:first-child {
  padding-top: 0;
}
.content-side ul li strong, .content-side ul li b{
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
} 
.content-side ul li:before {
  content: "\f178";
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
  display: inline-block;
  font-size: 13px;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  top: 4px;
}
.content-side p strong:first-child {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 800;
}


.qustion-box {
  position: relative; 
  background-position: center center;
  background-size: cover; 
  text-align: center;
  border-radius: 20px;
  margin-top:30px; 
  overflow: hidden;
  position: sticky;
  top: 105px;
}

.qustion-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
opacity: .6;
}
.qustion-box p, .qustion-box h4{
  color: var(--white);
  position: relative;
  z-index: 9;
}
.qustion-box h4 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-icon { 
    width: 39px;
    min-width: 39px;
    height: 39px;
    border-radius: 4px;
    background-color: var(--primary-color);
    padding: 8px;
}

.sidebar-icon img{
  filter: brightness(11);
}

.content-side h2, .content-side h3 {
    font-size: 35px;
}

.cta-holder{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}

.cta-shape{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.cta-shape1{
    bottom: 68.57px;
}

.cta-content{
      position: relative;
    width: 100%;
    padding: 50px 21px 37.5px 47px;
    z-index: 9;
}

.cta-content h4{
      color: #fff;
    margin-bottom: 27.5px;
    text-align: center;
        font-size: 30px;
    letter-spacing: -.6px;
    line-height: 1.5;
    font-weight: 600;
}

.cta-block {
    position: relative;
    padding: 20px 20px 20px 40px;
    background-color: #fff;
    max-width: 276px;
    margin: 0 auto;
    border-radius: 10.286px;
    -webkit-box-shadow: 10.286px 10.286px 38.571px 0 rgba(42, 67, 113, .15);
    -khtml-box-shadow: 10.286px 10.286px 38.571px 0 rgba(42,67,113,.15);
    -moz-box-shadow: 10.286px 10.286px 38.571px 0 rgba(42,67,113,.15);
    -ms-box-shadow: 10.286px 10.286px 38.571px 0 rgba(42,67,113,.15);
    -o-box-shadow: 10.286px 10.286px 38.571px 0 rgba(42,67,113,.15);
    box-shadow: 10.286px 10.286px 38.571px rgba(42, 67, 113, .15);
}
.cta-block::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--primary-color);
    border-radius: inherit;
    transform: translateX(6px);
    z-index: -1;
}
.cta-icon{
position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-icon:hover{
  color: white;
}
.cta-icon::before {
      position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: '';
    width: calc(10px + 9px);
    height: calc(10px + 9px);
    background-color: inherit;
    opacity: .3;
    border-radius: inherit;
    z-index: -1;
}

.cta-icon i{
      animation: ring 3s ease infinite;
          width: 100%;
}
@keyframes ring {
    0% {
        transform: rotate3d(0,0,1,0)
    }

    20%,32%,44%,56%,68%,80% {
        transform: rotate3d(0,0,1,0)
    }

    23%,35%,47%,59%,71% {
        transform: rotate3d(0,0,1,15deg)
    }

    26%,38%,50%,62%,74% {
        transform: rotate3d(0,0,1,0)
    }

    29%,41%,53%,65%,77% {
        transform: rotate3d(0,0,1,-15deg)
    }

    100% {
        transform: rotate3d(0,0,1,0)
    }
}

.cta-content h5 {
    display: block;
    color: var(--text-color); 
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.52px;
    margin-bottom: 0;
}
.cta-text {
    font-size: 15px;
    letter-spacing: -.3px;
    line-height: 1.4;
}


.choose-box{
  padding: 30px;
  display: flex;
  align-items: flex-start;
  background-color: #f8f9fb;
  height: 100%;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  flex-direction: column;
  gap: 15px;
}

.choose-box strong{
    font-size: 33px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 32px;
    background-color: #fff;
    -webkit-box-shadow: 0 10.604px 21.208px 0 rgba(137, 151, 186, .25);
    -khtml-box-shadow: 0 10.604px 21.208px 0 rgba(137,151,186,.25);
    -moz-box-shadow: 0 10.604px 21.208px 0 rgba(137,151,186,.25);
    -ms-box-shadow: 0 10.604px 21.208px 0 rgba(137,151,186,.25);
    -o-box-shadow: 0 10.604px 21.208px 0 rgba(137,151,186,.25);
    box-shadow: 0px 2px 6px 1px rgb(17 109 189 / 38%);
    padding: 10px;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.choose-box h5{
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
} 


.choose-content p{
  margin-bottom: 0;
}



/*faq css start here*/

.faq {
  background-color: #F8F8F8; 
    /* background-image: url(../images/shape-8.png); */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}

.faq .accordion{
  gap: 20px;
    display: grid; 
}
.faq .accordion-button::after {
content: "\2b";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    transition: all 0.5s;
    transform: unset;
    background: var(--bg-color);
    width: 40px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
}
.faq .accordion-button:not(.collapsed)::after {
background-image: unset; 
content: "\f068";
font-family: "Font Awesome 7 Free";
font-weight: 900;
transform: unset;  

} 

.faq h2.accordion-header{
  margin-bottom: 0;
}
.faq button.accordion-button {
    position: relative;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 19px;
    padding: 10px 25px;
    transition: all .2s ease;
    cursor: pointer;
    font-weight: 700;
    box-shadow: unset;
    border-radius: 10px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    
}
.faq .accordion-button:focus{
box-shadow: unset;
}
  

.faq .accordion-button:not(.collapsed){
  background-color: var(--secondary-color);
  color:  var(--white) !important;
}
.faq .accordion-item{ 
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 36px 120px rgba(170, 194, 186, .17);
    border: 0;
    overflow: hidden;
}





/*----------call to action css start here----------*/

.call-to-action{

  background-image: url(../images/service-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; 
  position: relative;
  background-attachment: fixed; 
  overflow: hidden; 
}
.services-list-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  opacity: .9;
  background-color: var(--text-color);
}
.call-to-action .col-md-8{
	position: relative;
	z-index: 9;
}



.call-to-action.heading1 h2, .call-to-action.heading1 h3, 
.call-to-action.heading1 h4{
  color: var(--white);
}

.call-to-action .button1{
 	margin-top: 30px;
 }
 .call-to-action p, .call-to-action h2{
  color: var(--white);
 }
  
 .call-to-action .fa-solid.fa-phone{
  margin-right: 5px;
}
.call-to-action .main-button{
  background-color: var(--primary-color); 
 }
.call-to-action .main-button:before{
 	background-color: var(--secondary-color); 
 }
.call-to-action .main-button:hover::after{
 	background-color: var(--secondary-color); 

}


.call-to-action .main-button:last-child{
 	background-color: var(--secondary-color);
  margin-left: 20px;
 }
.call-to-action .main-button:last-child:before{
  background-color: var(--primary-color);
 }
.call-to-action .main-button:last-child:after{
  background-color: var(--primary-color);
 }
/*----------call to action css end here----------*/

.border-box-text {
    padding: 16px 20px 20px 20px;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    border-color: #c6a556;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin-top: 30px;
}




/*work progress css start here*/

.process-box-wrapper {
    padding: 0 20px;
}
.process-section {

  text-align: center;
}
.process-section .process-card {
  width: 120px;
  background: var(--secondary-color);
  margin: auto;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.process-box-wrapper img {
    max-width: 70px;
}

/* Number circle */
.process-section .number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary-color);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  font-size: 15px;
}

/* Text */
.process-section h5 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
  margin-top: 25px;
} 
 .process-section .row .col-md-4{
  position: relative;
 }

.process-section .row .col-md-4:nth-child(1):before, .process-section .row .col-md-4:nth-child(2):after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 212px;
    height: 46px;
    transform: translate(150%, 130%);
}

.process-section .row .col-md-4:nth-child(1):before {
    background: url(../images/right-arrow1.svg) no-repeat center center;
    background-size: 100% auto;
}
.process-section .row .col-md-4:nth-child(2):after {
    background: url(../images/right-arrow2.svg) no-repeat center center;
    background-size: 100% auto;
}




/*===================
33. Contact us css 
=====================*/

.contact-wrapper {
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 5%);
}

.contact-img{
  position: relative;
  z-index: 1;
}

.contact-img img{
  width: 100%;
  border-radius: 10px 50% 50% 10px;
  height: 100%;
  object-fit: cover;
}

.contact-img::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: -20px;
  background: var(--secondary-color);
  border-radius: 10px 50% 50% 10px;
  z-index: -1;
}

.contact-form{
  padding: 25px;
}
.contact-form form{
  margin-bottom: 0;
}
.contact-form-header {
  margin-bottom: 30px;
} 
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
padding: 13px 20px;
    box-shadow: none;
    transition: all .5s ease-in-out;
    background-color: #ffffff;
    border-color: #e3eaef;
    border-radius: 5px;
    border: 2px solid #d9d9d9;
    color: #9b757d;
    font-size: 15px;
    width: 100%;
    transition: all ease .5s;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form .form-group .form-control:focus {
  border-color: var(--secondary-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 70px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  padding: 40px 20px;
  position: relative; 
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
  height: 100%;
}

.contact-info::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  border-radius: 10px;
  background: var(--primary-color);
  height: 20px;
  z-index: -1;
}

.contact-info-icon{
  font-size: 35px;
  color:#fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon::before{
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -8px;
  bottom: -8px;
  border-radius: 10px;
  border: 3px solid var(--secondary-color);
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  #000;
}

.contact-info p{
  color:  #000;
  font-weight: 500;
  font-size: 16px;
}
.contact-info p:last-child{
  margin-bottom: 0;
}
.contact-form button.main-button {
    box-shadow: unset;
    border: 0;
    margin-top: 0;
}


.page-blog-detail h1{
  font-size: 40px;
font-weight: 800; 
margin: 30px 0 10px 0;      
color: var(--blue); 
}
.page-blog-detail .title, .page-blog-detail h2 {
font-size: 37px;
font-weight: 800; 
margin: 30px 0 10px 0;     

}
.page-blog-detail h3 {
font-size: 27px;
font-weight: 700; 
margin: 20px 0 10px 0;    

}
.page-blog-detail h4 {
font-size: 25px;
font-weight: 700; 
margin: 20px 0 10px 0;  

}
.page-blog-detail h5, .page-blog-detail h6{
font-size: 24px;
font-weight: 700; 
margin: 20px 0 10px 0;    
text-transform: capitalize;

}
.page-blog-detail .content {
margin-top: 20px;

} 
.page-blog-detail ol, .page-blog-detail ul {
padding-left: 25px;
}
.page-blog-detail li {
list-style: inherit;
margin-bottom: 6px;
}

.sidebar .h4-title {
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 30px;
  margin-top: 0;
}
.sidebar .h4-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 79px;
  height: 1px;
  background: var(--primary-color);
}
.recent-post-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.recent-post-box:not(:last-child) {
  margin-bottom: 25px;
}
.recent-post-box .img {
width: 100px;
aspect-ratio: 1 / 1;
border-radius: 10px;
flex-shrink: 0;
background-repeat: no-repeat;
height: 90px;
background-size: cover;
background-position: center;
}
.recent-post-box .text p {
  margin-bottom: 10px;
  font-weight: 600;
}
.recent-post-box .text p a{
  color: var(--primary-color);
}
.recent-post-box .text p a:hover{
  color: var(--secondary-color);
}
.recent-post-box .date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}
.recent-post-box .date img {
  width: 20px;
}
.sidebar {
  position: sticky;
  top: 100px;
}
.page-blog-detail{
  overflow: inherit;
}

.blog-date {
color: var(--primary-color);
margin-top: 20px;
display: block;
font-weight: 700;
}

h1.blog-heading {
    font-size: 40px;
    font-weight: 700;
    margin: auto auto 15px;
    max-width: 900px;
}



/*Content Section start here*/

.area-sponser {
  position: relative;
  background-color: var(--primary-color); 
}

.area-sponser:before {
  content: "";
  background-image: url(../images/bg-4.png);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.area-sponser .container-fluid{
  position: relative;
}
.welcome-note {
  background-color: var(--white);;
  padding: 40px; 
  margin: auto; 
  position: relative;
      border-radius: 10px;
  overflow: hidden;
}
.welcome-note h2{
  position: relative;
  margin-bottom: 30px;
  z-index: 9;
}
.welcome-note p{
  position: relative; 
  z-index: 9;
} 
.welcome-note:before{
  content: "\f10e";
  font-family: 'Font Awesome 7 Free';
  font-size: 410px;
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: 800;
  transform: translate(-50%, -50%);
  opacity: 0.05; 
}
.welcome-note:after{
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-image: url(../images/half-dots-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 210px;
  height: 210px;
}
.welcome-note h2 {
  color: var(--primary-color);
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  text-align: center;
}


.content-text-box{
  display: flex;
  position: relative;
}
.content-text-box:not(:first-child){ 
  margin-top: 20px; 
}

.content-text-box i{
    font-size: 22px;
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary-color);
    font-style: normal;
    font-weight: 700;
} 
.content-text-box p b,   .content-text-box p strong{ 
  font-size: 19px; 
  color: var(--text-color);

} 
.content-text-box div p:first-child {
    margin-bottom: 5px;
}
.about-heading.heading h2, .about-heading.heading h3 {
    font-size: 34px;
} 
.col-lg-4.energy-left:last-child p {
    margin-bottom: 0;
}


/*==========404 Error Page CSS Start==========*/
.main-404-error {
  margin: 0;
}

.error-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.error-content .error-img {
  margin-bottom: 30px;
  max-width: 500px;
}

.error-content .h2-title {
  margin-bottom: 18px;
  color: var(--text-color);
}

.error-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}

.thank-you-img {
   
  max-width: 250px;
  margin: auto;
  margin-bottom: 20px;
}
.thank-you-img svg{
  width: 150px;
  height: 150px;
  color: var(--primary-color);
}
.thank-you-img .error-img{
  margin-bottom: 0;
}