/*==================================
* Author        : "ThemeSine"
* Template Name : CarVilla  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Poppins', sans-serif;
font-family: 'Rufina', serif;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Top-area
3.  Welcome-hero
4.  Model-search
5.  Service
6.  New-cars
7.  Featured-cars
8.  Client-say
9.  Brand
10. Blog
11. Contact
==========================================*/

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Off-white background */
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  
  a {
    display: inline-block;
    text-decoration: none;
    color: #007bff; /* Blue link color */
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #0056b3;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    color: #28a745; /* Dark green headings */
  }
  
  p {
    margin: 0;
    color: #555;
    line-height: 1.8;
  }
  
  img {
    border: none;
    max-width: 100%;
    height: auto;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Form Elements */
  select, input, textarea, button,.form-control {
    box-shadow: none;
    outline: 0!important;
  }
  
  button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #218838;
  }
  
  /* Placeholder Styling */
  [placeholder]:focus::-webkit-input-placeholder {
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  /* Owl Carousel */.owl-carousel {
    z-index: 0;
  }
  
  /* Section Header */.section-header {
    text-align: center;
    margin-bottom: 30px;
  }.section-header h2 {
    position: relative;
    font-size: 36px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }.section-header h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #28a745;
  }.section-header p {
    color: #333;
    text-transform: capitalize;
  }.section-header h2 span,.section-header p span {
    text-transform: lowercase;
  }
  
  /* Top-area */
  nav.navbar.bootsnav {
    background-color: transparent;
    border-bottom: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }.wrap-sticky nav.navbar.bootsnav.sticked {
    background-color: #2ecc71; /* Lighter green navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }.navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    letter-spacing: 3px;
    font-family: 'Rufina', serif;
    font-weight: 700;
    padding: 30px 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }.navbar-header a.navbar-brand span {
    display: inline-block;
    color: #28a745;
    text-transform: capitalize;
  }.wrap-sticky nav.navbar.bootsnav.sticked.navbar-header a.navbar-brand,.wrap-sticky nav.navbar.bootsnav.sticked.navbar-header a.navbar-brand:hover,.wrap-sticky nav.navbar.bootsnav.sticked.navbar-header a.navbar-brand:focus {
    padding: 20px 0;
  }
  
  /* Nav li */
  nav.navbar.bootsnav ul.nav > li > a {
    color: #fff; /* White nav links */
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 30px 25px;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  nav.navbar.bootsnav ul.nav > li > a:hover,
  nav.navbar.bootsnav ul.nav > li > a:focus {
    color: #28a745;
  }
  
  nav.navbar.bootsnav ul.nav > li.active > a {
    color: #28a745;
  }
  
  nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: "";
  }
  
  nav.navbar.bootsnav ul.nav > li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
  }
  
  /* Adjusted Download App Button */.app-download-btn {  
    background-image: linear-gradient(to right, #28a745, #2ecc71); /* Green gradient button */
    border: none;
    color: #fff; /* White button text */
    margin: 0;
    padding: 8px 15px;
  }
  
  /* Navbar alignment */.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Navbar item spacing */.navbar-nav > li {
    margin-left: 20px;
  }
  
  /* Responsiveness (example) */
  @media (max-width: 768px) {.navbar-nav > li > a {
      padding: 15px 10px;
    }
  }
  
  /* Welcome Hero */.welcome-hero {
    position: relative;
    background: url(../images/welcome-hero/welcome-banner.jpg) no-repeat center center / cover;
    z-index: 1;
  }.welcome-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 167, 69, 0.6);
  }.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }.welcome-hero-txt {
    text-align: center;
    padding: 290px 0 372px;
  }.welcome-hero-txt h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
  }.welcome-hero-txt p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    max-width: 735px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }.welcome-btn {
    display: inline-block;
    width: 230px;
    height: 60px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }.welcome-btn:hover {
    background-color: #218838;
  }

/*-------------------------------------
 /* Model Search */.model-search-content.col-sm-12 {
    padding: 0;
}.model-search-content {
  padding: 40px 0;
  background-color: #f8f9fa; /* Off-white background */
  box-shadow: 0 10px 40px 0px rgba(38, 40, 64, 0.2);
  position: absolute;
  bottom: -150px;
  width: 100%;
  border-radius: 3px;
}.single-model-search {
  margin-bottom: 30px;
}.single-model-search:last-child {
  margin-bottom: 0;
}.single-model-search h2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #28a745; /* Dark green headings */
}.model-select-icon {
  position: relative;
}.model-select-icon.form-control {
  outline: 0!important;
  box-shadow: none;
  border: 1px solid #ced4da; /* Light gray border */
  background-color: #fff; /* White background */
  height: 60px;
}.model-select-icon select {
  font-size: 16px;
  color: #495057; /* Dark gray text */
  text-transform: capitalize;
  -webkit-appearance: none; /* Remove default appearance for better customization */
  -moz-appearance: none;
  appearance: none;
  background-color: transparent; /* Make select background transparent */
  padding: 0 20px; /* Add padding for better spacing */
}.model-select-icon:after {
  position: absolute;
  content: "\f107"; /* Down arrow icon */
  right: 15px; /* Adjust position */
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6c757d; /* Gray icon color */
  font-family: "Font Awesome 5 Free"; /* Assuming you're using Font Awesome */
  font-weight: 900; /* Make sure the icon is solid */
  pointer-events: none;
}.welcome-btn.model-search-btn {
  width: 160px;
  margin-top: 80px;
  margin-left: 53px;
  background-color: #28a745; /* Green button */
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}.welcome-btn.model-search-btn:hover {
  background-color: #218838; /* Darker green on hover */
}
/* Service Section */.service {
    padding: 260px 0 87px;
}.single-service-item {
  text-align: center;
  padding: 55px 30px 60px;
  border-radius: 3px;
  margin-bottom: 30px;
  border: 1px solid #dadfe9;
  transition:.3s linear;
  background-color: #f8f9fa; /* Off-white background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}.single-service-icon {
  display: inline-block;
  color: #50616c;
  font-size: 60px; /* Increased icon size */
  margin-bottom: 20px; /* Added margin */
}.single-service-item h2 a {
  font-size: 20px;
  margin: 0 0 15px; /* Adjusted margin */
  color: #28a745; /* Dark green heading */
  transition: color 0.3s ease;
}.single-service-item h2 a:hover {
  color: #218838; /* Darker green on hover */
}.single-service-item p {
  padding-bottom: 35px;
  text-transform: initial;
  position: relative;
  color: #555; /* Dark gray text */
}.single-service-item p:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #28a745; /* Green line */
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  transition: background-color 0.3s ease;
}.single-service-item:hover {
  background-color: #2ecc71; /* Lighter green background on hover */
  border-color: #2ecc71;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
}.single-service-item:hover.single-service-icon {
  color: #fff; /* White icon on hover */
}.single-service-item:hover h2 a,.single-service-item:hover p {
  color: #fff; /* White text on hover */
}.single-service-item:hover p:before {
  background-color: #fff; /* White line on hover */
}
/*-------------------------------------
  /* New Cars Section */
.new-cars {
    background-color: #f8f9fb; /* Off-white background */
    padding: 112px 0 120px;
  }.new-cars-content {
    padding-top: 96px;
  }.new-cars-txt {
    margin-left: 29px;
    margin-bottom: 30px;
  }.new-cars-txt h2 a {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 26px;
    color: #28a745; /* Dark green heading */
    transition: color 0.3s ease; /* Add smooth transition */
  }.new-cars-txt h2 a span {
    text-transform: uppercase;
  }.new-cars-para2 {
    margin-top: 30px;
  }.welcome-btn.new-cars-btn {
    width: 176px;
    margin-top: 32px;
    background-color: #28a745; /* Green button */
    color: #fff;
    border: none;
    transition: background-color 0.3s ease; /* Add smooth transition */
  }.welcome-btn.new-cars-btn:hover {
    background-color: #218838; /* Darker green on hover */
  }.new-cars .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0px 4px;
    background: transparent;
    border: 1px solid #6a7781;
    border-radius: 50%;
  }.new-cars .owl-theme .owl-dots .owl-dot.active span,
  .new-cars .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #6a7781; /* Dark gray active dot color */
  }.new-cars .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 62px;
  }
  
  /* Featured Cars Section */
  .featured-cars {
    padding: 112px 0 120px;
  }.featured-cars-content {
    padding-top: 96px;
  }.single-featured-cars {
    border: 1px solid #dadfe9;
  }.featured-img-box {
    border: 1px solid #dadfe9;
  }.featured-cars-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 220px;
    border-bottom: 1px solid #dadfe9;
  }.featured-model-info {
    padding: 12px 7px;
  }.featured-model-info p {
    font-size: 12px;
    color: #8c92a0;
    text-transform: capitalize;
  }.featured-mi-span {
    display: inline-block;
    margin: 0 10px;
  }.featured-hp-span {
    display: inline-block;
    margin-right: 10px;
  }.featured-cars-txt {
    margin: 21px 0 47px;
  }.featured-cars-txt h2 a {
    font-size: 16px;
    margin-bottom: 15px;
    color: #28a745; /* Dark green heading */
    transition: color 0.3s ease; /* Add smooth transition */
  }.featured-cars-txt h2 a span {
    text-transform: uppercase;
  }.featured-cars-txt h3 {
    margin-bottom: 10px;
    color: #28a745; /* Dark green heading */
  }.featured-cars-txt h3,
  .featured-cars-txt p {
    font-size: 13px;
    color: #555; /* Dark gray text */
  }
  
  /* Clients Say Section */
  .clients-say {
    padding: 115px 0 80px;
    background-color: #f8f9fb; /* Off-white background */
  }
  
  /* Single Testimonial Box */
  .single-testimonial-box {
    padding: 50px 30px 57px;
    text-align: center;
    border: 1px solid #dadfe9;
    overflow-x: hidden;
    transition: .3s linear;
  }
  
  /* Testimonial Description */
  .clients-say .testimonial-carousel .col-sm-3,
  .clients-say .testimonial-carousel .col-xs-12 {
    width: 100%;
    height: auto;
  }
  
  /* Testimonial Info */
  .testimonial-img {
    margin-right: 5px;
    border-radius: 50%;
    transition: .3s;
  }
  
  .testimonial-person h2 a,
  .testimonial-person h4 {
    font-size: 16px;
    color: #5e6778;
    font-weight: 600;
  }
  
  .testimonial-person h4 {
    margin-top: 10px;
  }
  
  /* Testimonial Comment */
  .testimonial-comment p {
    font-size: 16px;
    color: #5e6778;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  
  /* Hover Effects */
  .single-testimonial-box:hover h2 a,
  .single-testimonial-box:hover h4,
  .single-testimonial-box:hover p {
    color: #fff; /* White text on hover */
  }
  
  .single-testimonial-box:hover {
    background-color: #22e075; /* Darker green background on hover */
    border-color: #4efaaf;
    box-shadow: 0 12px 30px 0px rgba(0, 1, 193, 0.2);
  }
  
  /* Owl Carousel */
  .clients-say .owl-carousel .owl-stage {
    position: relative;
    padding: 100px 0 40px;
  }
  
  .clients-say .owl-carousel .owl-item img {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  /* Brand Section */
  .brand {
    padding: 120px 0;
  }
  
  .brand-area {
    position: relative;
  }
  
  .brand-area .item {
    padding: 0 40px 0;
  }
  
  .brand .brand-area .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 72px;
    border-radius: 0;
  }
/*-------------------------------------
        10. Blog
--------------------------------------*/

/*-------------------------------------
 /* Contact Section */.contact {
    background-color: #343a40; /* Dark gray background */
}.footer-top {
  padding: 112px 0 72px;
}.footer-logo a,.footer-logo a:hover,.footer-logo a:focus {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  letter-spacing: 3px;
  font-family: 'Rufina', serif;
  font-weight: 700;
  text-transform: uppercase;
}.single-footer-widget {
  margin-bottom: 40px;
}.single-footer-widget p {
  font-size: 14px;
  color: #eeeff6;
  max-width: 300px;
  margin: 40px 0 20px;
}.footer-contact p {
  margin: 0;
  color: #d1d7e9;
}.single-footer-widget h2 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 43px;
}.single-footer-widget ul li {
  display: inherit;
  transition:.5s;
}.single-footer-widget ul li:hover {
  transform: translateX(10px);
}.single-footer-widget ul li a {
  font-size: 14px;
  color: #cfd0e3;
  font-weight: 300;
  padding-bottom: 13px;
  transition: color 0.3s ease; /* Add smooth transition */
}.single-footer-widget ul li a:hover {
  color: #28a745; /* Green color on hover */
}.footer-newsletter p {
  color: #aeafc2;
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 15px;
}

/* Newsletter Form */.hm-foot-email {
  position: relative;
}.foot-email-box.form-control {
  background-color: #26294d;
  display: block;
  padding: 15px 20px;
  outline: 0!important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 0;
}.foot-email-box input[type="text"] {
  font-size: 12px;
  color: #666c81;
  font-weight: 300;
}.foot-email-subscribe {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background-color: #28a745; /* Green background */
  color: #fff; /* White text color */
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none; /* Remove border */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Add smooth transition */
}.foot-email-subscribe:hover {
  background-color: #218838; /* Darker green on hover */
}.foot-email-box.form-control:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Footer Copyright */.footer-copyright {
  padding: 20px 0 17px;
  border-top: 1px solid #434859;
}.footer-copyright p,.footer-copyright p a {
  color: #a8a9bf;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}.footer-social {
  text-align: right;
}.footer-social a i {
  color: #fff;
  opacity:.40;
  font-size: 14px;
  margin-left: 16px;
  transition:.3s;
}.footer-social a:hover i {
  opacity:.70;
  color: #28a745; /* Green color on hover */
}

/* Scroll Top Button */
#scroll-Top.return-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #28a745; /* Green background */
  border: 1px solid #28a745;
  border-radius: 50%;
  transition:.5s;
  z-index: 2;
}

#scroll-Top.return-to-top:hover {
  background-color: #fff; /* White background on hover */
  color: #28a745; /* Green color on hover */
}

#scroll-Top.return-to-top i {
  position: relative;
  bottom: 0;
  animation-name: example;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

@keyframes example {
  0% {
    bottom: 0px;
  }

  100% {
    bottom: 7px;
  }
}