/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: orangered;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/* Container */
.video-container{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.video-container{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

/* Video */
.video-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sound Button */
.sound-btn{
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

/* Responsive */
@media (max-width:768px){
  .video-container{
    min-height: 250px;
  }
}
/*** Service ***/
/* Section */
.services-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Grid Layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Icon */
.service-card i {
    font-size: 40px;
    color: #260449;
    margin-bottom: 15px;
}

/* Title */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Text */
.service-card p {
    font-size: 14px;
    color: #666;
}

/* Tablet */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Smooth hover animation */
.service-card {
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

/* Lift + scale */
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
}

/* Icon animation */
.service-card i {
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: rotate(10deg) scale(1.2);
}

/* Text fade effect */
.service-card h3,
.service-card p {
    transition: 0.3s;
}

.service-card:hover h3 {
    color: #0d6efd;
}


/**/

/* solar services */
   .banner{

  height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}

.banner-content{
  background:rgba(0,0,0,0.6);
  padding:20px;
  border-radius:10px;
}

.banner h1{
  font-size:40px;
}

/* Service Section */
.services{
  padding:60px 20px;
}

  .container1{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

.services-img img{
  width:100%;
  border-radius:10px;
}

.services-text p{
  color:#555;
  margin:15px 0;
}

.services-text ul{
  list-style:none;
  margin-bottom:20px;
}

.services-text ul li{
  margin-bottom:8px;
}


/* Features */
.features{
  background:#f9f9f9;
  padding:60px 20px;
  text-align:center;
}

.feature-box{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

.card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.card:hover h3{
  color:#f4b400;
}

/* CTA */
.cta{
  padding:60px 20px;
  text-align:center;
}

/* Responsive */
@media(max-width:768px){
  .container{
    flex-direction:column;
  }

  .feature-box{
    grid-template-columns:1fr 1fr;
  }

  .banner h1{
    font-size:28px;
  }
}

@media(max-width:480px){
  .feature-box{
    grid-template-columns:1fr;
  }
}
/* solar services */
/* Section */
.install-section {
    display: flex;
    flex-wrap: wrap;
}

/* Box */
.install-box {
    flex: 1;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

/* Backgrounds */
.residential {
    background: #ee810c;
}

.commercial {
    background: #ee810c;
}

.industrial {
    background:  #ee810c;
}

/* Content */
.content {
    z-index: 2;
    padding: 20px;
    animation: fadeUp 1s ease forwards;
}

/* 🔥 BIG ICON BASE */
.main-icon {
    font-size: 95px;
    margin-bottom: 20px;
    transition: 0.4s;
}

/* 🌈 COLORFUL ICONS */

/* Residential - Blue Gradient */
.res-icon {
    background:  white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

/* Commercial - Green Gradient */
.com-icon {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

/* Industrial - Orange/Yellow Gradient */
.ind-icon {
    background:  white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

/* Hover Effects */
.install-box:hover {
    transform: scale(1.05);
}

.install-box:hover .main-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Light Overlay */
.install-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: 0.4s;
}

.install-box:hover::before {
    opacity: 1;
}

/* Text */
.install-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.install-box p {
    font-size: 15px;
    opacity: 0.9;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .install-box {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .install-box {
        flex: 0 0 100%;
    }

    .main-icon {
        font-size: 70px;
    }

    .install-box h2 {
        font-size: 24px;
    }
}
/**/

/* Product Section */
/* Section */
.product-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Info */
.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: #555;
}

/* 🔥 ZOOM IN EFFECT */
.product-card:hover {
    transform: scale(1.08); /* zoom IN */
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    z-index: 2;
}

/* Optional: image zoom more */
.product-card:hover img {
    transform: scale(1.1);
}

/* Smooth transition */
.product-card,
.product-card img {
    transition: all 0.4s ease;
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}



/* Product Section end */


/*** Project Portfolio ***/
/* Project Section */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* Image */
.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 106, 47, 0.85); /* green overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

/* Overlay text */
.project-overlay h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* Hover Effects */
.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
    .project-item img {
        height: 200px;
    }
}

/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}




.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}