/* =============================
   Default Theme
   -----------------------------
   fonts : Railway & Open Sans
   -----------------------------
   Colors :
      White Smoke        #f4f4f4
      Black              #000
      White              #fff
      Orange             #f67009   
      Moderate Blue      #507a9f
      light green        #eff9e1
      Black Pearl        #061a2d
       dark navy blue    #19304f
      Light Blue         #f8fcff
      Azure/Steel Blue   #507a9f
================================ */


/* =============================
            HTML, Body
   ============================= */
html,
body {
    height: 100%;
    

}
body {
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333;
}

section {
       background: #fff;
    overflow: hidden;
}



/* =============================
            Preloader      
================================ */
#preloader {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;

}

#status {
    background-image: url("../img/preloader/preloder.gif");
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
}

/* =============================
            Home
   ============================= */


#home {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;

    background: #000;
}

#home-bg-video {
     position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    object-fit: cover;

    z-index: 0;

    background: url("../video/solo.jpg") no-repeat center center;
    background-size: cover;
}

#home-overlay {
      position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.6);

    z-index: 1;
}

#home-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: table;
    padding-left: 50px;
    margin-left: 50px;
     z-index: 2;
}

#home-content-inner {
    display: table-cell;
    vertical-align: middle;

}

#home-heading h1 {

    color: #fff;
    font-size: 60px;
    font-weight: 400;
    
    margin: 0;
    display: inline-block;
}
#home-heading h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    
    margin: 0;
    display: inline-block;

}
#home-heading h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 200;
    
    margin: 0;
    display: inline-block;

}



.home-btn strong{
    font-weight: 300;

}


/* =============================
          Buttons
   ============================= */
.btn-general {
    font-family: 'Poppins', sans-serif;
       display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #507a9f;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;

  
   
    transition: 0.3s ease;
}



.btn-home {
    margin-top: 20px;
    color: #fff;
    border: 1px solid #507a9f;
     background: #507a9f;

}

.btn-home:hover,
.btn-home:focus {
    color: #fff;
    background: #f67009;
    border: 1px solid #f67009;
}
.btn-about {

    color: #fff;
    border: 1px solid #507a9f;
     background: #507a9f;

}

.btn-about:hover,
.btn-about:focus {
    color: #fff;
    background: #061a2d;
    border: 1px solid #061a2d;


}


/* back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    color: #fff;
   border-radius: 4px;
    background-color:#507a9f ;
    transition: all 400ms linear;
    display: none;


}
.btn-back-to-top:hover,
.btn-back-to-top:focus{
    background-color:#fff ;
    color: #000;
    font-size: 24px;

}

/* =============================
         Content boxes
   ============================= */
.content-box-lg {
    padding: 100px 0;

}

.content-box-md {
    padding: 80px 0;
}
.content-box-sm{
    padding: 60px 20px;

}
.content-box-xs{
    padding: 40px 20px;

}

/* ==============================
   PRODUCTS SECTION
================================ */

#products {
    width: 100%;
    background: #fff;
    padding: 90px 0 80px;
}

.products-container {
    max-width: 1200px;
    margin:0 auto;
}
.product-heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 45px;
}

.product-heading > div {
  text-align: center;
}

.product-heading h2 {
  margin: 0;
  color: #507a9f;
  font-family: Poppins, sans-serif;
  font-size: 55px;
  font-weight: 200;
  line-height: 1.1;
}
.product-heading h2 strong {
    font-weight: 400;
}

/* Small grey underline */

.heading-line {
  display: block;
  width: 37px;
  height: 5px;
  margin: 6px auto 0;
  background: #dedede;
}





/* Shop All */

.shop-all {
  position: absolute;
  right: 0;
  bottom: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 10px;
  border-radius: 20px;

  background: #507fa7;
  color: #fff;

  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 500;

  text-decoration: none;
  transition: all 0.25s ease;
}

.shop-all:hover {
  background: #1b1b4b;
  transform: translateY(-1px);
  color: #fff;
}


/*  PRODUCT GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.product-card {
    min-width: 0;
  height: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 18px 10px 10px;

  box-sizing: border-box;

  border: 1px solid #dedede;
  border-radius: 15px;

  background: #fff;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-image {
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* */

.product-card h3 {
    margin: 18px 0 0;

    color: #061a2d;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;

    text-align: center;
}






/* =============================
         About
   ============================= */

#about {
    padding-top: 80px;
    background-color: #fff;
    background: url("../img/about/about-bg.webp");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center center;

   
   
    width: 100%;
    min-height: 100%;
    padding-bottom: 0;

}


#about-right {

}



#about-left h1 {
    color: #507a9f;
    font-size: 60px;

   margin-top: -10px;
 


}


#about-left p {
    color: #061a2d;
    font-size: 17px;
    font-weight: 200;
    margin: 8px 0 30px 0;
}
#about-btn a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #507a9f;
}

/* =============================
        Solutions
   ============================= */
#solution{

    padding-top: 60px;
    padding-bottom: 60px;
 
}

.container{
   
    margin:auto;
}

.solution-heading{
    text-align: center;
    margin-bottom:60px;
}

.solution-heading span{
    display:inline-block;
    color:#1b1b4b;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
}

.solution-heading h2{
    font-size:50px;
    color:#507a9f;
    
    font-weight:600;
    margin-bottom:20px;
}

.solution-heading p{
    max-width:760px;
    margin:auto;
    color:#061a2d;
    line-height:1.8;
    font-size:18px;
}

.solution-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow: rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#507a9f ;
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.card-content{
    padding:15px 15px 15px;
    text-align:center;
}

.card-content h3{
    
    color:#1b1b4b;
    font-size:25px;
    line-height:1.25;
    margin-bottom:15px;
}
.card-content a {
  

    color: #507a9f;
    text-decoration: none;
    font-size: 14px;
    opacity: .9;
}


.explore:hover span {
   transform: translateX(8px);
}

/* =========================================
           Dealer
============================================ */
/* Dealer Section */

#dealer-section {
    width: 100%;
    padding: 60px 20px;
    background: #fff;
}

.dealer-content {
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 45% 55%;

    overflow: hidden;
    border-radius: 24px;

    background: #f4f4f4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* Left Content */
.dealer-text{
     display: inline-block;
}
.dealer-text {
    padding: 70px 65px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #f4f4f4;
}





/* Heading */

.dealer-text h2 {
    margin: 0;

    color: #fff;
    color: #507a9f;

    font-size: 35px;
    line-height: 1.05;
    font-weight: 100;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.dealer-text h2 strong {
    display: block;

    color: #507a9f;
    font-weight: 500;
}
/* Line below heading */
.dealer-heading-line {
  display: block;
  width: 37px;
  height: 5px;
  margin: 6px auto 0;
  background: #dedede;
}

/* Description */

.dealer-text p {
    max-width: 520px;

    margin: 30px 0 38px;

   
    font-size: 18px;
    line-height: 1.6;
}


/* Button */

.dealer-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 35px;

    padding: 18px 28px;

    color: #fff;
    background: #507a9f;

    border-radius: 30px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}




.dealer-btn:hover {
    text-decoration: none;
   background: #fff;
   color:#507a9f ;
}




/* Image */

.dealer-image {
    width: 100%;
    height: 100%;
    min-height: 500px;

    overflow: hidden;
}

.dealer-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.dealer-content:hover .dealer-image img {
    transform: scale(1.03);
}



/* ================================
   RENOVA WHY SECTION
================================ */

.renova-section {
    position: relative;
    min-height: 850px;
    background: #fff;
    overflow: visible;
    
}


/* BACKGROUND */

.renova-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 680px;

    background-image: url("../img/wcu/wcu-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




/* CONTAINER */

.renova-container {
    position: relative;
   

    max-width: 1200px;
    min-height: 475px;
    margin: 0 auto;

    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

    padding: 40px 40px 70px;
}


/* CONTENT */

.renova-content {
    width: 47%;
    color: #ffffff;
}

.renova-content h2 {
    margin: 0 0 50px;

    font-size: 50px;
    line-height: 1.1;
    font-weight: 300;

    text-align: center;
}

.renova-content h2 span {
    font-weight: 500;

    position: relative;
}

.renova-content h2 span::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 100%;
    height: 3px;

    background: #ffffff;
}


/* FEATURES */

.renova-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.renova-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Icon */

.feature-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 9px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #507a9f;

    font-size: 20px;
}
 .feature-icon img {
    height: 40px;
    width: 40px;
    margin: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* Text */

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin: 0 0 2px;

    font-size: 21px;
    line-height: 1.1;

    font-weight: 700;
}

.feature-text p {
    max-width: 410px;

    margin: 0;

    font-size: 12px;
    line-height: 1.25;

    color: rgba(255, 255, 255, 0.95);
}


/* STATISTICS CARD */

.renova-stats {
    position: absolute;

  

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: min(900px, calc(100% - 40px));
    min-height: 90px;

    padding: 15px 25px;

    background: #f8f8f8;

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*  STAT ITEM */

.stat-item {
    flex: 1;

    display: flex;

    flex-direction: column;
    align-items: center;

    text-align: center;
}

.stat-icon {
    height: 30px;
    width:  30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #507a9f;

    font-size: 26px;

    margin-bottom: 10px;
}

.stat-item strong {
    display: block;

    color: #507a9f;

    font-size: 28px;
    line-height: 1;

    font-weight: 700;

    margin-bottom: 5px;
}

.stat-item span {
    color: #444;

    font-size: 12px;
    line-height: 1.2;
}


/* DIVIDERS */

.stat-divider {
    width: 1px;
    height: 73px;

    background: #333;

    opacity: 0.9;
}


/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width:1024px){
   .renova-section {
        position: relative;
        min-height: auto;
        overflow: hidden;
        background: #507a9f;
    }

    /* Background covers the complete section */
    .renova-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Blue overlay covers complete section */
    .renova-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(80, 122, 159, 0.75);
        
    }

    /* Content stays above background */
    .renova-container {
        position: relative;
        

        width: 100%;
        max-width: 100%;

        min-height: auto;
        margin: 0;

        display: block;

        padding: 45px 25px 50px;
    }

    .renova-content {
        width: 100%;
        color: #fff;
    }

    .renova-content h2 {
        margin: 0 0 35px;

        font-size: 38px;
        line-height: 1.1;
        text-align: center;
    }

    .renova-features {
        gap: 25px;
    }

    .renova-feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .feature-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text h3 {
        font-size: 19px;
        line-height: 1.2;
        margin: 0 0 5px;
    }

    .feature-text p {
        max-width: none;

        font-size: 13px;
        line-height: 1.4;

        color: rgba(255, 255, 255, 0.95);
    } 
}
@media (max-width: 767px) {

    .renova-section {
        position: relative;
        min-height: auto;
        overflow: hidden;
        background: #507a9f;
    }

    /* Background covers the complete section */
    .renova-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Blue overlay covers complete section */
    .renova-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(80, 122, 159, 0.75);
        
    }

    /* Content stays above background */
    .renova-container {
        position: relative;
        

        width: 100%;
        max-width: 100%;

        min-height: auto;
        margin: 0;

        display: block;

        padding: 45px 25px 50px;
    }

    .renova-content {
        width: 100%;
        color: #fff;
    }

    .renova-content h2 {
        margin: 0 0 35px;

        font-size: 38px;
        line-height: 1.1;
        text-align: center;
    }

    .renova-features {
        gap: 25px;
    }

    .renova-feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .feature-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text h3 {
        font-size: 19px;
        line-height: 1.2;
        margin: 0 0 5px;
    }

    .feature-text p {
        max-width: none;

        font-size: 13px;
        line-height: 1.4;

        color: rgba(255, 255, 255, 0.95);
    }
}





/* =============================
        Services
   ============================= */
#services {
   
    background-color: ;
   /* background: url("../img/services/serices-bg.png");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center;
   
   
    min-width: 100%;
    min-height: 100%;
    padding-bottom: 0;*/
   
  
   
}

/* =============================
       Blog
   ============================= */
.blog-heading {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

 .blog-heading h1 {
    color: #507a9f;
    font-size: 55px;
    font-weight: 200;
}
.blog-heading h1 strong {
    font-weight: 400;
}
.blog-heading-line {
  display: block;
  width: 37px;
  height: 5px;
  margin: 6px auto 0;
  background: #dedede;
}
.read-all{
    text-decoration:none;
    color:#507a9f;
    font-size:20px;
 

    transition:.3s;
}

.read-all:hover{
    color:#507a9f;
}
/* Grid */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.blog-card{
    transition:.35s;
     background:#fff;

    border-radius:20px;

    overflow:hidden;

   

    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.blog-card:hover{
    transform:translateY(-6px);


    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* Image */

.blog-image{
    overflow:hidden;
    border-radius:2px;
}

.blog-image img{
    width:100%;
    height:300px;
    object-fit:cover;

    transition:transform .7s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.12);
}

/* Content */

.blog-content{
    margin-top:22px;
    padding-left: 20px;
}

.blog-date{
    color:#1b1b4b;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    text-transform:uppercase;
}

.blog-content h3{
    margin:15px 0;
    line-height:1.25;
}

.blog-content h3 a{
    color:#507a9f;
    text-decoration:none;
    font-size:22px;
    font-weight:300;

    transition:.3s;
}

.blog-content h3 a:hover{
    color:#507a9f;
}

.blog-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* Responsive */

@media(max-width:1100px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.blog-header{
    flex-direction:column;
    gap:15px;
    align-items:flex-start;
}

.blog-grid{
    grid-template-columns:1fr;
}

.blog-image img{
    height:260px;
}



}
/* ============================
           Contact Section
============================== */
.contact-section {

     padding-top: 100px;
     padding-bottom: 80px;
    background-color: #fff;
    background: url("../img/contact/bg_contact.webp");
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
   
    background-position: center center;

}

.contact-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left Image */
.contact-image {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 50%;
    
    height: auto;
    display: block;
}

/* Right Content */
.contact-content {
    width: 45%;
    padding-left: 20px;
}

/* Heading */
.contact-content h2 {
    margin: 0;
    color: #507a9f;
    font-size: 55px;
    line-height: 1.1;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-content h2 span {
    font-weight: 400;
}

.contact-content h2 strong {
    font-weight: 200;
    position: relative;
}

/* Small underline */
.contact-content h2 strong::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 6px;
    background: #e2e2e2;
    right: 0;
    bottom: -8px;
}

/* Subtitle */
.contact-subtitle {
    margin: 12px 0 30px;
    font-size: 13px;
    color: #444;
    font-weight: 400;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 16px;
    color: #303744;
}

/* Icons */
.contact-icon {
    width: 30px;
    height: 30px;

    
   
  

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* ================================
   FOOTER
================================ */

.site-footer {
    position: relative;
    background: #507a9f;
    color: #ffffff;
    width: 100%;
    padding: 38px 0 32px;
     /* Bottom illustration */
    background-image: url("../img/contact/footer-bg.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;

    color: #fff;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1.4fr 1.4fr;
    gap: 50px;

    align-items: start;
}


/*BRAND */

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 145px;
    height: auto;
    display: block;
}


/* SOCIAL ICONS */

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    

    display: flex;
    align-items: center;
    justify-content: center;

    

  

    text-decoration: none;

    transition: all 0.3s ease;
}
.social-links img {
    width: 30px;
    height: 30px;
}




/* ================================
   FOOTER COLUMNS
================================ */

.footer-column h4 {
    margin: 0 0 14px;

    color: #fff;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 7px;
}

.footer-column ul li a,
.contact-info a,
.contact-info p {
    color: #ffffff;

    
    font-size: 17px;
    line-height: 1.45;

    text-decoration: none;
    font-weight: 400;
}

.footer-column ul li a {
    transition: color 0.25s ease;
}

.footer-column ul li a:hover {
    color: #507a9f;
}


/* CONTACT */

.contact-info p {
    margin: 0 0 8px;
    text-transform: uppercase;
}

.contact-info a {
    display: block;
    margin-bottom: 6px;
    word-break: break-word;
}

.contact-info a:hover {
    color: #1b1b4b;
}
/* Connect button */
.connect-btn {
    padding: 6px 13px;

  border-radius: 20px;

  background: #fff;

  color: #507a9f !important;

  transition: 0.3s ease;
  width: 150px;
   
    
}

.connect-btn strong {
    font-weight: 700;
    
}

/*   COPYRIGHT / FOOTER BOTTOM */

.footer-bottom {
    width: 100%;
    margin-top: 35px;
    padding-top: 18px;

    
}

.footer-bottom-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-bottom span {
    color: #fff;
}

.footer-bottom b {
    padding: 0 5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}



/* MOBILE COPYRIGHT */

@media (max-width: 600px) {

    .footer-bottom {
        margin-top: 30px;
        padding-top: 16px;
    }

    .footer-bottom-container {
        width: 88%;
    }

    .footer-bottom p {
        font-size: 8px;
        line-height: 1.8;
    }

    .footer-bottom b {
        padding: 0 3px;
    }
}
/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 35px;
    }

    .contact-info {
        grid-column: 2 / 4;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .site-footer {
        padding: 45px 0 35px;
    }

    .footer-container {
        width: 88%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;
        align-items: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        width: 155px;
    }

    .social-links {
        margin-top: 20px;
    }

    .contact-info {
        grid-column: auto;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column ul li a,
    .contact-info a,
    .contact-info p {
        font-size: 12px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .footer-container {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .footer-brand,
    .contact-info {
        grid-column: auto;
    }
}




/* =========================================
                Navigation
============================================ */

.navbar {
    padding: 45px 100px 20px 100px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
   
}



ul.navbar-nav>li>a {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul.navbar-nav>li>a:hover,
ul.navbar-nav>li>a:focus {
    background: none;
    color: #507a9f;
}
/* =========================
   CONTACT BUTTON
========================= */

.contact-btn {
  padding: 6px 13px;

  border-radius: 20px;

  background: #507a9f;

  color: #fff !important;

  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
  color: #507a9f;
}


/* =========================
   USER ICON
========================= */

.user-icon {
  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: 2px;
}

.user-icon svg {
  width: 25px;
  height: 25px;

 
}
.user-icon i {
    font-size: 20px;
}


/* White Navigation */

.white-nav-top {
    background: #fff;
    padding: 15px 100px;
    -webkit-box-shadow: 0 8px 6px -9px #999;
    box-shadow: 0 8px 6px -9px #999;
    z-index: 2;
}

.white-nav-top ul.navbar-nav>li>a {
    color: #061a2d;
}

.white-nav-top ul.navbar-nav>li>a:hover,
.white-nav-top ul.navbar-nav>li>a:focus {
    color: #507a9f;
}


/* Scroll spy active state */

.white-nav-top ul.navbar-nav>li>a.active {
    color: #507a9f;
    font-weight: 500;
}

/* =========================
   CONTACT BUTTON
========================= */

.white-nav-top .contact-btn {
  padding: 6px 13px;

  border-radius: 20px;

  background: #507a9f;

  color: #fff !important;

  transition: 0.3s ease;
}

.white-nav-top .contact-btn:hover {
  background: #507a9f;
  color: #fff;
}


/* =========================
   USER ICON
========================= */



.white-nav-top .user-icon i {
  
 color:#507a9f ;

}

/* =============================
         Animation
   ============================= */
   #home-heading-1,
   #home-heading-2,
   #home-text,
   #home-btn,
   #arrow-down i {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
   }

   #home-heading-1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
   }
   #home-heading-2 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
   }
   #home-text {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
   }
   #home-btn {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
   }
   #arrow-down i {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
   }

 /* ==============================================================================
                                        OTHER PAGES
    ============================================================================ */
/* =========================================
                About 01
============================================ */

/*  ABOUT BANNER */

.about-banner{

    position:relative;

    width:100%;
    height:420px;

    background-image:url("../img/about/about-banner.webp");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    overflow:hidden;
}

/* Overlay */

.about-banner::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(20,24,66,.72) 0%,
        rgba(20,24,66,.45) 35%,
        rgba(20,24,66,.10) 100%
    );
}

/* Content */

.banner-content{

    position:relative;
    

    max-width:1200px;
    height:100%;

    margin:auto;

    display:flex;
    align-items:center;

    padding:0 70px;
}

.banner-content h1{

    color:#fff;

    font-family:'Poppins',serif;

    font-size:72px;

    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    animation:fadeUp .8s ease;
}



/* about-01 */
.about-1-heading h1 {
    color: #507a9f;
    font-size: 60px;
}
.about-1-heading h2 {
    color: #1b1b4b;
    font-size: 40px;
}
#about-1-left p:first-child {
    margin-top: 30px;
}

.about-1-heading  hr {
    width: 55px;
    height: 3px;
    margin: 0;
    background-color: #507a9f;
   
    border: none;
}

#about-1-right img {
    margin: 0 auto;
}

/* About 02*/

#about-2 {
  
    background-color: #f8fcff;
}

.about-item {
    background-color: #fff;
    padding: 50px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-item i {
    font-size: 42px;
    margin: 0;
}

.about-item h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #507a9f;
}

.about-item hr {
    width: 55px;
    height: 3px;
    background-color: #507a9f;
    margin: 0 auto;
    border: none;
}

.about-item p {
    margin-top: 17px;
}
.about-item span {
     font-size: 20px;
     font-weight: 700;
     color:#507a9f ;
     padding-right:15px;
}


/* Hover state */

.about-item:hover {
    background-color: #507a9f;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
    color: #fff;
}

.about-item:hover hr {
    background-color: #fff;
}

.about-item:hover h3 {
    transform: translateY(-20px);
}
.about-item:hover span {
    color: #fff;
}


/* Smooth transition */

.about-item,
.about-item i,
.about-item hr {
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.about-item h3,
.about-item p {
   -webkit-transition: all 400ms linear;
    transition: all 400ms linear;  
}
/* about-03 */
.about-3-heading h1 {
    color: #507a9f;
    font-size: 60px;
}
.about-3-heading h2 {
    color: #507a9f;
    font-size: 40px;
    font-weight: 200;
}
.about-3-heading  hr {
    width: 55px;
    height: 3px;
    margin: 0;
    background-color: #507a9f;
   
    border: none;
}


.about-3-right {
    margin-top: 20px;
}
.about-3-right h4 {
    font-size: 28px;
   color:#507a9f ;
    font-weight: 300;
}
.about-3-right p {
    padding-left: 20px;
    font-size: 15px;
    color: #a3a3a3;
}
.about-3-right img {
    margin: 0 auto;
    width: 30px;
    height: 30px;
}

.lead {
    padding-top: 30px;
    padding-bottom: 30px;
}
.lead h2 {
    font-size: 35px;
    line-height: 1.5;
    font-weight: 500;
    color: #507a9f;
}
.lead hr {
    width: 55px;
    height: 3px;
    background-color: #507a9f;
    
    border: none;
}
.lead p{

}





    /* =============================
         Product Page
   ============================= */


#products {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Section Heading */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -2px;
  color: #061a2d;
}

.section-title h2 span {
  color: #507a9f;
}

/* Product Grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


/* Product Card */

.product-card {
  background: #ffffff;
  border: 1px solid #e5e8e3;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* Product Image */

.product-image {
  height: 300px;
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}


/* Product Info */

.product-info {
  padding: 18px 22px 25px;
}

.product-info h3 {
  font-size: 21px;
  font-weight: 650;
  margin-bottom: 14px;
  color: #061a2d;
}

.price {
  color: #507a9f;
  font-size: 18px;
  font-weight: 700;
}

.price span {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}


/* Responsive */

@media (max-width: 1000px) {

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 44px;
  }

}

@media (max-width: 600px) {

  .solar-products {
    padding: 50px 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .product-image {
    height: 300px;
  }

}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: "Inter", sans-serif;
    color: #fff;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    width: min(1200px, 92%);
    min-height: 540px;

    margin: 30px auto;

    overflow: hidden;

    background: #0b0b0b;

    border: 1px solid #242424;
    border-radius: 28px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 60px rgba(0,0,0,0.5);
}


/* =========================
   TEXT AREA
========================= */

.hero-content {
    position: relative;
    z-index: 3;

    width: 50%;
    height: 100%;

    display: flex;
    align-items: center;

    padding: 65px 0 65px 7%;
}

.hero-text {
    max-width: 500px;
}


/* Heading */

.hero h1 {
    line-height: 1;
    font-weight: 300;
    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;

    font-size: clamp(32px, 3.4vw, 48px);

    font-weight: 300;
    color: #eeeeee;

    margin-bottom: 5px;
}

.hero h1 strong {
    display: block;

    font-size: clamp(30px, 3.2vw, 45px);

    font-weight: 800;

    color: #ef3b27;

    letter-spacing: -1.8px;
}


/* Red underline */

.title-line {
    width: 365px;
    max-width: 90%;

    height: 3px;

    margin: 14px 0 22px;

    background: #ef3b27;
}


/* Paragraph */

.hero p {
    max-width: 470px;

    font-size: 14px;
    line-height: 1.8;

    font-weight: 400;

    color: #c7c7c7;

    margin-bottom: 23px;
}


/* =========================
   CTA BUTTON
========================= */

.cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 215px;
    height: 50px;

    padding: 0 32px;

    margin-top: 2px;

    background: #ef3b27;

    color: #fff;

    border-radius: 9px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cta:hover {
    background: #ff4934;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(239,59,39,0.3);
}


/* =========================
   ENERGY IMAGE
========================= */

.energy-visual {
    position: absolute;

    z-index: 2;

    top: 0;
    right: 0;

    width: 68%;
    height: 100%;

    /*
       Crops the renewable-energy
       portion from your uploaded image.
    */

    background-image: url("../img/dealer/d.png");

    background-repeat: no-repeat;

    background-size: auto 115%;

    background-position:
        right center;

    pointer-events: none;
}


/* Dark gradient over image */

.energy-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0b0b0b 0%,
            rgba(11,11,11,0.85) 5%,
            rgba(11,11,11,0.2) 28%,
            rgba(11,11,11,0) 55%
        );
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero {
        min-height: 600px;
    }

    .hero-content {
        width: 60%;
        padding-left: 6%;
    }

    .energy-visual {
        width: 65%;

        opacity: 0.8;
    }

    .hero h1 span {
        font-size: 35px;
    }

    .hero h1 strong {
        font-size: 34px;
    }

    .hero p {
        font-size: 13px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 750px) {

    .hero {
        width: 94%;
        min-height: 680px;

        border-radius: 22px;
    }

    .hero-content {
        width: 100%;

        align-items: flex-start;

        padding:
            55px 35px 40px;
    }

    .hero-text {
        max-width: 520px;
    }

    .energy-visual {
        width: 100%;
        height: 55%;

        top: auto;
        bottom: 0;

        opacity: 0.8;

        background-size: auto 100%;
    }

    .energy-visual::after {
        background:
            linear-gradient(
                180deg,
                #0b0b0b 0%,
                rgba(11,11,11,0.75) 20%,
                rgba(11,11,11,0) 60%
            );
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .hero {
        min-height: 700px;

        margin: 15px auto;

        border-radius: 18px;
    }

    .hero-content {
        padding:
            40px 25px;
    }

    .hero h1 span {
        font-size: 29px;

        letter-spacing: -1px;
    }

    .hero h1 strong {
        font-size: 27px;

        letter-spacing: -1px;
    }

    .title-line {
        width: 220px;

        margin: 13px 0 20px;
    }

    .hero p {
        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 18px;
    }

    .cta {
        width: 180px;
        height: 46px;

        font-size: 16px;
    }

    .energy-visual {
        height: 48%;

        background-size: auto 100%;
    }
}