*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins: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=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
      /* === Variables === */
      :root {
        --green-primary: #4caf50;
        --green-dark: #218838;
        --green-light: #e8f5e9;
        --btn-green: #3cbc19;
        --btn-green-hover: #2e8b00;
        --text-dark: #212529;
        --text-light: #f8f9fa;
        --font-oswald: 'Oswald', sans-serif;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        background-color: #fff;
      }

      /* ========== Top Header ========== */
      .top-header {
        background-color: #222;
        color: white;
        font-size: 0.875rem;
        padding: 6px 0;
      }

      .top-header a {
        color:white;
        text-decoration: none;
      }

      .top-header a:hover {
        text-decoration: underline;
      }

      /* ========== Navbar ========== */
      nav.navbar {
        background-color: white;
        
      }

      .nav-item a{
        font-size: 15px;
        font-weight: 400;
        margin-right: 25px;
        font-family: var(--font-oswald);
      }

      nav.navbar a.nav-link,
      nav.navbar .navbar-brand,
      nav.navbar .navbar-text {
        color: black;
      }
      
      .navbar-brand{
          width:4.2rem;
      }

      nav.navbar a.nav-link:hover,
      nav.navbar a.nav-link.active {
        color:black;
        font-weight: 400;
        border-bottom: 3px solid var(--btn-green);
      }

      .btn-get-quote {
        background-color: var(--btn-green);
        border: none;
        font-weight: 400;
        transition: background-color 0.3s ease;
        color: white;
        padding: 8px;
      }

      .btn-get-quote:hover {
        background-color: var(--btn-green-hover);
        color: white;
      }

      .dropdown-item:hover{
        background-color: var(--btn-green-hover);
        color: white;
      }

      /* Position nested submenu */
      .dropdown-submenu {
        position: relative;
      }

      .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%; /* show submenu to the right */
        margin-top: -1px;
        display: none;
      }

      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        margin-top: 10px;
        
      }

      /* optional: if you want submenu on LEFT instead of right */
      .dropdown-submenu-left > .dropdown-menu {
        left: auto;
        right: 100%;
      }

      .dropdown-submenu > a::after {
        content: none !important; /* removes the arrow */
      }
      
      /* ========== Hero Section ========== */
      #hero {
        background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80")
          no-repeat center center/cover;
        position: relative;
        padding: 80px 0 100px;
        color: white;        
      }

      body.modal-open {
        overflow: auto !important; /* allow scrolling */
        padding-right: 0 !important; /* remove Bootstrap scrollbar fix */
      }

      .modal-dialog-scrollable .modal-body{
        overflow-y: auto;
        scrollbar-width: none;
      }

      .modal-backdrop.show{
        z-index: 1;
      }

      #exampleModal{
        margin-top: 100px;
      }
    
    .modal-body {
        padding: 0px !important;
    }
    
    .modal-content{
        width:471px;
    }
    
    .modal-header {
        border-bottom:0px !important;
    }
    
    .quatepopup{
        background: linear-gradient(to right, rgb(27 78 112), rgb(49 118 51)) !important;
        border-radius:0px 0px 8px 8px !important;
    }
    
    .quatemodal{
        width: 470px !important;
      }
      /* dots container */
      .hero-dots {
        position: absolute;
        bottom: 120px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
        cursor: pointer;
      }


      /* each dot */
      .hero-dots span {
        width: 15px;
        height: 15px;
        background: rgb(60 188 25);
        border-radius: 16%;
        cursor: pointer;
        transition: background 0.3s;
      }

      .hero-dots span.active {
        /* background: #fff; */
        outline: 2px solid green;
       
      }

      #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.55); */
         background: 
        radial-gradient(circle at 50% 50%, rgba(255, 221, 112, 0.4) 0%, rgba(255, 136, 77, 0.4) 40%, transparent 60%),
        linear-gradient(90deg, rgba(255, 204, 112, 0.2) 0%, rgba(44, 62, 80, 0.7) 70%, rgba(0, 0, 0, 0.7) 100%);  
        ;
      }

      #hero .container {
        position: relative;
        z-index: 2;
      }

      #hero h1 {
        font-weight: 700;
        font-size: 3rem;
        max-width: 480px;
        line-height: 1.3;
        margin-top: -100px;
        z-index: 5;
      }

      #hero p {
        font-size: 1.4rem;
        margin: 1rem 0 2rem;
        z-index: 5;
      }

      #hero .btn-contact {
        background-color: var(--btn-green);
        border: none;
        font-weight: 600;
        padding: 0.7rem 1.8rem;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
        color: white;
      }

      #hero .btn-contact:hover {
        background-color: var(--btn-green-hover);
      }

      /* ========== Quote Form ========== */
      #quote-form {
        background-color: rgba(0, 42, 7, 0.6);
        padding: 2rem;
        border-radius: 8px;
        width:500px;
      }

      #quote-form label {
        color: #ddd;
        font-weight: 600;
        font-size: 0.9rem;
      }

      #quote-form input,
      #quote-form select,
      #quote-form textarea {
        background-color: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        border-radius: 4px;
        padding: 8px 12px;
        margin-bottom: 12px;
        font-size: 0.95rem;
        width: 100%;
        transition: background-color 0.3s ease;
      }

      #quote-form input::placeholder,
      #quote-form textarea::placeholder {
        color: #eee;
      }

      #quote-form input:focus,
      #quote-form select:focus,
      #quote-form textarea:focus {
        background-color: rgba(255, 255, 255, 0.3);
        outline: none;
        color: #000;
      }

      #quote-form button.submit-btn {
        background-color: var(--btn-green);
        border: none;
        color: white;
        font-weight: 700;
        width: 100%;
        padding: 0.75rem;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
      }

      #quote-form button.submit-btn:hover {
        background-color: var(--btn-green-hover);
      }
      
      .crossicon{
        cursor: pointer;
        color: white;
        font-size: 23px;
      }

      /* ========== Clients Section Carousel ========== */
      #clients {
        background-color: #fff;
        padding: 30px 0;
      
      }

      #clients h5 {
        font-weight: 600;
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
      }

      /* owl carsoual start */
      .company-client .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none; /* so parent is transparent to clicks */
        }

        .company-client .owl-nav button {
        pointer-events: auto; /* ✅ make buttons clickable */

        color: #000 !important;
        border: 1px solid gray !important;
        border-radius: 50% !important;
        width: 40px;
        height: 40px;
        font-size: 18px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
        }

        .owl-theme .owl-nav{
            /* margin-top: 0 !important; */
            margin: 0px 4px;
        }

        .clientimage{
          display: block;
          width: 131px !important;
           margin-left: 23px;
        }

      /* owl carsoual end */
      .clientcontainer{
       transform: translateY(-50%);
       z-index: 100 !important;
       margin: 0px auto;
       border: 2px solid rgb(230, 230, 230);
       border-radius: 10px;
       box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
       height: 140px;
     
      }

      .clientcontainer h1{
        margin-top: 25px !important;
        font-size: 30px;
        font-weight: 700;
    }

    .company-client{
        overflow: hidden;
    }
      .company-client img{
        width: 200px;
        margin-top: 37px;
      }

      /* ========== About Section ========== */
      #about {
        /* padding: 60px 0; */
        margin-top: -30px;
      }

      .aboutcontaner{
        padding: 0px 120px;
      }

      #about .btn-read-more {
        background-color: var(--btn-green);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0.6rem 1.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
      }

      .absoluteocntent{
        background:linear-gradient(to bottom, #54d813, #39a844);
        top: 10%;
        left: 5%;
        width: 110px;
        text-align: center;
      }

      .absoluteocntent img{
        width: 50px;
      }

      .absoluteocntent p{
        font-size: 18px;
        font-weight: 600;
        margin-top: 0px;
      }
      .absoluteocntent h2{
        font-size: 28px;
        font-weight: 700;
        margin-top: 10px;
      }

      .aboutrightcontainer h3{
        font-size: 32px;
        letter-spacing: -1px;
        font-weight: 700;
        font-family: var(--font-oswald);
      }

      .aboutrightcontainer p{
        font-size: 16px;
        font-weight: 400;
        color: black !important;
        word-spacing: 2px;
        font-family: var(--font-oswald);
      }

      #about .btn-read-more:hover {
        background-color: var(--btn-green-hover);
        text-decoration: none;
      }

      #about .highlight {
        color: var(--btn-green);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 5px;
        background-color: #d4eed0;
      }

      /* ========== Video Section ========== */
          #promo-video .vediocontianer {
            position: relative;
            inset: 0;
            background-image: url("https://cdn.pixabay.com/photo/2017/11/11/17/08/solar-system-2939560_1280.jpg");
            height: 400px;
            width: 100%;
            display: flex;
            background-position: center;
            background-repeat: no-repeat;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            overflow: hidden; 
          }
          
            #promo-video iframe {
              position: absolute;
              top: 0;
              margin-left: 115px;
              width: 83.5%;
                height: 85%;
              border-radius: 4px;
              border: none;
              z-index: 100;
            }

            #video-frame{
              display: none;
              position: relative;
              padding-top: 56.25%;
              border-radius: 8px;
              overflow: hidden;
  
            }


        #video-thumbnail i {
                font-size: 4rem;
                color: #fff;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0.85;
                cursor: pointer;
                z-index: 1;
        }

         #promo-video .vediocontianer i:hover{
          color: gray;
         }


      /* ========== Products & Services Section ========== */
      #products {
        padding: 50px 0;
        background-color: #f9f9f9;
      }

      #products h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 0.75rem;
        text-align: center;
      }

      #products p.lead {
        max-width: 80%;
        margin: 0 auto 40px auto;
        font-size: 1rem;
        color: black;
        line-height: 24px;
        font-weight: 400;
        font-family: var(--font-oswald);
      }

      .productcontainer{
        margin: 0px 120px;
      }

      .product-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
        transition: box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        /* padding: 15px; */
      }

      .product-card:hover {
        box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
      }

      .product-card img {
        border-radius: 6px 6px 0px 0px;
        object-fit: cover;
        height: 150px;
        width: 100%;  
       
      }
  
      .roundimage{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.2); 
        transform: translatey(-80%);
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
      }
      
      .roundimage img{
        background-color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        z-index: 1;
      }

      .product-card h5 {
        font-weight: 700;
        margin-bottom: 0.6rem;
        font-size: 22px;
        text-align: center;
        margin-top: -15px;
        /* color: var(--btn-green); */
        /* color: green; */
        padding: 0px 15px;
        font-family: var(--font-oswald);
      }

      .text-gradient{
        background: linear-gradient(to right, green, rgb(118, 118, 4));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .product-card:hover{
        cursor: pointer;
      }

      .product-card:hover .animate-text {
        background: linear-gradient(to left, green, yellow);
        background-size: 200% auto; 
        background-clip: text;
        -webkit-background-clip: text; 
        color: transparent;
        -webkit-text-fill-color: transparent;
        animation: textMove 5s linear infinite;
        cursor: pointer;
      }

      @keyframes textMove {
        0% {
          background-position: 200% center;
        }
        100% {
          background-position: 0% center;
        }
      }


      .product-card p {
        flex-grow: 1;
        font-size: 0.95rem;
        color:black;
         text-align: center;
         padding: 0px 15px;
         padding-bottom: 15px;
      }

      .product-card .btn-view {
        margin-top: 10px;
        align-self: start;
        text-decoration: none;
        color: var(--btn-green);
        font-weight: 700;
        font-size: 0.95rem;
        transition: color 0.3s ease;
      }

      .product-card .btn-view:hover {
        color: var(--btn-green-hover);
        text-decoration: underline;
      }

      /* ========== Why Choose Section ========== */
      #why-choose {
       background: url("https://cdn.pixabay.com/photo/2017/11/11/17/08/solar-system-2939560_1280.jpg")
          center center/cover no-repeat;
        color: white;
        padding: 60px 0;
        position: relative;
        z-index: -1;
        height: 550px;
      }

      #why-choose::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(33, 56, 22, 0.8);
        z-index: 1;
      }

      #why-choose .container {
        position: relative;
        z-index: 2;
      }

      #why-choose h2 {
        font-weight: 700;
        font-size: 35px;
        margin-bottom: 1rem;
        text-align: center;
      }

      #why-choose p.lead {
        max-width: 720px;
        margin: 0 auto 3rem auto;
        font-size: 1.15rem;
        text-align: center;
      }

      .choose-circles {
        position: relative;
        /* display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem; */
       
      }

      .fisrt-circle{
        position: absolute;  
        top: -67px;
        left: -61px;
      }
      .second-circle{
        position: absolute;  
        top: 10px;
        left: 325px;
      }

      .third-circle{
        position: absolute;  
        top: -66px;
        left: 730px;
      }

      .vector-top{
        position: absolute;
        top: -18px;
        left: 548px;
      }

      .vector-top img{
        width: 185px;
      }

      .vector-bottom{
        position: absolute;
        top: 178px;
        left: 145px;
      }
      


      .choose-circle {
        border-radius: 46%;
        background: white;
        width: 227px;
        height: 272px;   
        padding: 2rem;
        text-align: center;
        cursor: default;
        transition: background 0.3s ease;
       
      }

      .choose-circle i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        color: var(--btn-green);
      }

      .choose-circle h6 {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        /* color: #d4f6a5; */
        color: #000;
      }

      .choose-circle p {
        font-size: 0.9rem;
        font-weight: 400;
        /* color: #e1e6d8; */
        color: black;
        line-height: 1.3;
      }

      /* ========== Facts & Figures Section ========== */

      .figureheading{
        font-size: 29px;
        font-weight: 700;
        margin: -0px 0px;
      }
      #facts {
        background-color: #fff;
        text-align: center;
        padding: 35px 15px;
        width: 80%;
        margin: 0 auto;
        transform: translatey(-50%);
        border-radius: 10px;
        z-index: 1;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
      }

      #facts .fact {
        margin-bottom: 0px;
      }

      #facts .fact strong {
        font-size: 2rem;
        color:black;
        display: block;
        font-weight: 700;
      }

      #facts .fact span {
        font-weight: 600;
        font-size: 1rem;
        color: #444;
      }

      /* ========== Testimonials Section ========== */
      #testimonials {
        /* background: #f4f8f9; */
        padding: 0px 0 50px;
      }

      #testimonials h3 {
        text-align: center;
        margin-bottom: 35px;
        font-weight: 700;
        font-size: 40px;
      }

     

      .testimonial-carousel.owl-theme .owl-nav {
        margin-top: 0 !important;
        margin: 0px -18px;
      } 

      .testimonial-carousel .owl-stage-outer .owl-stage .owl-item{
        margin-right: 10px !important;
      }

      .testimonial-card {
        background: white;
        border-radius: 12px;
        padding: 2rem 1.75rem;
        box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
        height: 325px;
        /* margin-left: 46px !important; */
        text-align: center;
        border: 2px solid rgb(147, 209, 147);
        width: 80%;
      }

      .testimonial-stars {
        color: #ffb400;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        text-align: left;
      }

      .testimonial-text {
        font-size: 13px;
        color: black;
        margin-bottom: 1.7rem;
        min-height: 85px;
        text-align: left;
        font-family: var(--font-oswald);
      }

      .testimonial-user {
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
        color: black;
      }

      .testimonial-location {
        font-size: 1.1rem;
        color: #888;
        margin-top: -5px;
      }

      .testmonialimage{
        width: 80px !important;
        height: 64px;
        margin-top: 6px;
        border-radius: 50%;
      }

      .commaimage{
        width: 30px !important;
        height: 30px;
        margin-left: 5px;
      }

      /* owl carosul start */
        .testimonial-carousel .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none; 
        }

      

        .testimonial-carousel .owl-nav button {
        pointer-events: auto; 
        color: #000 !important;
        border: 1px solid gray !important;
        border-radius: 50% !important;
        width: 40px;
        height: 40px;
        font-size: 18px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
        }

       
        .owl-theme .owl-nav{
            margin-top: 0 !important;
        }
      /* owl carosul end */


      /* ========== Footer ========== */
    #footerbg {
       background: url("https://cdn.pixabay.com/photo/2017/11/11/17/08/solar-system-2939560_1280.jpg")
          center center/cover no-repeat;
 
        color: white;
        position: relative;
       z-index: 2;
      }

      #footerbg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(33, 56, 22, 0.7);
        z-index: -1;
       
      }

      footer {
        color: #bbb;
        font-size: 0.9rem;
      }

    

      footer a {
        color: white;
        text-decoration: none;
       
      }

      footer a:hover {
        text-decoration: underline;
      }

      .footer-logo {
        font-weight: 800;
        color: white;
        font-size: 1.5rem;
        letter-spacing: 2px;
     
        margin-bottom: 1rem;
      }

      .footer-top {
        margin-bottom: 20px;
        padding-left: 150px;
      }

      .footer-section {
        margin-bottom: 2rem;
        
      }

      .footer-section h6 {
        color: white;
        margin-bottom: 1rem;
        font-weight: 700;
        font-size: 22px;
      }

      .footer-section p{
        font-size: 18px;
      }

      .footer-icons a {
        font-size: 2rem;
        margin-right: 15px;
        color: white;
      }

      .footer-icons a:hover {
        color: var(--btn-green-hover);
      }

      .btn-scroll-top {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 1050;
        background-color: var(--btn-green);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        cursor: pointer;
        box-shadow: 0 6px 8px rgb(0 0 0 / 0.25);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      .btn-scroll-top.show {
        opacity: 1;
        pointer-events: all;
      }

      .list-unstyled li{
        font-size: 18px;
        line-height: 30px;
      }

      /* Responsive fixes */
      @media (max-width: 992px) {
        #why-choose .choose-circles {
          flex-direction: column;
          gap: 2rem;
        }
      }

      @media (max-width:500px) {
        .top-header{
          display: none;
        }

        #hero h1 {
          font-size: 2rem;
          margin-top: 0px;
        }

        #quote-form{
              width: 356px;
        }

        #about{
              padding: 30px 0;
            
        }

        .productcontainer{
          margin: 0px;
        }
      }

       
      /*----------------------------------------
       details page style start
       --------------------------------------- */
 
.solar-product {
    width: 100%;
    height: 300px;
    background: url("../images/detils_banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
 
/* Overlay */
.solar-product__overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
    to right,
    rgba(19, 78, 107, 0.8),
    rgba(14, 107, 29, 0.8)
);
 
    z-index: 1;
    width: 100%;
    height: 100%;
}
 
/* Text container */
.solar-product__header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: #fff;
    text-align: center;
}
 
.solar-product__title{
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
 
.solar-product__breadcrumb{
  font-family: "Noto Sans Syriac", sans-serif;
  font-weight: 50;
}
 
.solar-category {
    position: absolute;          
    bottom: 0;                      
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;      
    transform: translateY(50%);  
    z-index: 3;                  
}
 
.solar-category__list {
    background-color: white;
    width: 77%;
    height: 100px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.15);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    z-index: 3;
}
 
.solar-category__item{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-grow: 1;
  padding:10px;
  position: relative;
  cursor: pointer;
}
 

 .solar-category__list .active::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -8px;
  left: 0;
  border-radius: 20px;
  height: 3px;
  background-color: rgba(14, 107, 29, 0.8);
  transition: width 0.3s ease;
}
 
/* show only on hover */
/* .active-item:hover::after {
  width: 100%;
  cursor: pointer;
}  */
 
.solar-category__icon{
  display: flex;
  justify-content: center;
}
 
.solar-category__icon img{
  width: 35px;
  height: 35px;
}
 
.solar-category__title{
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 17px;
  margin-top: 15px;
  font-weight: 500;
}
 
.btn-enquiry{
  padding: 10px 20px;
  background-color: #1f8f3a; /* professional green */
  border: none;
  font-size: 12px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.btn-enquiry:hover{
  background-color: #166b2b;
  transform: translateY(-2px);
}
 
.btn-download{
  padding: 10px 20px;
  background-color: #f0efef;
  border: none;
  font-size: 12px;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
 
.btn-download:hover{
  background-color: #e2e2e2;
  transform: translateY(-2px);
}
 
.solar-details__media img {
    width: 97%;
    height: 256px;
    border-radius: 8px;
}
 
 
.solar-details__heading{
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 22px;
}
.solar-details__section-label{
  font-size: 14px;
  margin-bottom:10px;
   color: #565856;
   font-family: "Roboto", sans-serif;
}
.solar-details__description{
    font-size: 13px;
    color: #878887;
    font-family: "Roboto", sans-serif;
    margin: 25px 0px;
    line-height: 22px;
    font-weight: 500;
}
 
.solar-details__subheading{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
 
.solar-specs {
  display: flex;
  flex-wrap: wrap;            
  gap: 12px;            
}
 
.solar-specs__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(33.333% - 12px);
  box-sizing: border-box;
}
 
.solar-specs__dot{
  background-color: #a4a7a3;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
 
.solar-specs__text{
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  color: #565856;
}
 
.solar-specs__text span{
  font-size: 12px;
  color: #000;
  padding-right: 10px;
}
 
.social-details-container{
padding: 0px 105px !important;
}
 
/* media query start */
 
@media (max-width: 500px) {
  .social-details-container{
    padding: 0px 0px !important;
    }
}
 

/*----------------------------------
 Maintence css statrt
 ---------------------------------- */
 
  .section-title{
    background: linear-gradient(135deg, #4aac46, #b9df9c);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    margin: auto;
    margin-top: 15px;
  }
 
.card-left img {
    width: 150px;
    /* box-shadow: inset 0 -15px 20px -10px rgba(0, 0, 0, 0.2); */
}
 
.card-content {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    flex: 1;
}
 
.card-content p{
  margin-bottom: 0px;
}
 
.card-content strong {
    font-weight: 600;
}
 
.card-icon {
    width: 70px;
    height: 70px;
    background: #e6f5d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #4caf50;
}
 
 
/* Service Card CSS */
.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 65px;
    margin: 0 auto;
}
 
.Servce-info-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 20px auto;
}
 
.Servce-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
 
.Servce-info-card__img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
 
.Servce-info-card__img img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
 
.Servce-info-card:hover .Servce-info-card__img img {
    transform: scale(1.05);
}
 
.Servce-info-card__title {
    padding: 28px;
    padding-top: 24px;
}
 
/* Heading */
.Servce-info-card__title--heading {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}
 
.Servce-info-card__title--heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #f1c40f);
    border-radius: 2px;
}
 
/* Points List */
.Servce-info-card__title ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
 
.Servce-info-card__title--subheading {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    transition: color 0.3s ease;
}
 
.Servce-info-card__title--subheading:last-child {
    margin-bottom: 0;
}
 
/* Custom bullet points */
.Servce-info-card__title--subheading::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background-color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}
 
.Servce-info-card__title--subheading:first-child::before{
    content: '✓';
    background-color: #27ae60;
}
 
.Servce-info-card__title--subheading:last-child::before {
    content: '✓';
    background-color: #3498db;
}
 
/* Hover effects for points */
.Servce-info-card:hover .Servce-info-card__title--subheading {
    color: #2c3e50;
}
 
.Servce-info-card:hover .Servce-info-card__title--subheading:first-child::before {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
 
.Servce-info-card:hover .Servce-info-card__title--subheading:last-child::before {
    transform: scale(1.1);
    transition: transform 0.3s ease 0.1s;
}
 
.section-footer{
  font-size: 20px;
  color:#565856;
  line-height: 30px;
  font-weight: 600;
  margin: 10px 0px;
  text-align: center;
}
 
.section-footer strong{
  font-weight: 800;
  font-size: 25px;
}
 
.section-footer__heading{
  color: yellowgreen;
  font-weight: 800;
  font-size: 25px;
}
 
 
/* Responsive Design */
@media (max-width: 768px) {
    .service-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
 
    .Servce-info-card {
        max-width: 100%;
        margin: 15px;
    }
   
    .Servce-info-card__title {
        padding: 22px;
    }
   
    .Servce-info-card__title--heading {
        font-size: 1.5rem;
    }
   
    .Servce-info-card__title--subheading {
        font-size: 1.05rem;
    }
}
 
@media (max-width: 480px) {
    .Servce-info-card__img {
        height: 190px;
    }
   
    .Servce-info-card__title {
        padding: 18px;
    }
   
    .Servce-info-card__title--heading {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
   
    .Servce-info-card__title--subheading {
        font-size: 1rem;
        padding-left: 28px;
    }
   
    .Servce-info-card__title--subheading::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}
 
 
 
 