/*

 Jhsoftperu

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )     #5d52ba    #7f73eb;   0dcaf0      
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #086CA9;
  --Color-logo-jhsoft:            #004AAD; 
  --secondary-color:              #0dcaf0;/**---0dcaf0 */
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #f65129;
  --social-icon-link-bg-color:    #0078BC;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         30px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

 

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.5px;
}

h1,
h2 {
  letter-spacing: -1.5px;
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--custom-btn-bg-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 10px;
  padding-bottom: 30px;
}
 
.section-bg {
  background: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.85);
  background: var(--custom-btn-bg-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}

.back-top-icon {
  background: var(--secondary-color);
  width: 65px;
  color: var(--white-color);
  font-size: var(--h4-font-size);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
}

.back-top-icon:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}

.custom-block {
  background: var(--primary-color);
  border-top: 20px solid var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.custom-icon {
  color: var(--primary-color);
}

.instagram-block {
  position: relative;
  height: 100%;
}

.instagram-block-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

nav[aria-label="breadcrumb"] {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 7px 16px 3px 16px;
  margin-top: 20px;
}

.breadcrumb {
  margin-bottom: 0;
}


/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}


/*---------------------------------------
   CUSTOM FORM               
 -----------------------------------------*/
 .custom-form .input-group {
   background-color: var(--white-color);
   border-radius: var(--border-radius-medium);
   margin-bottom: 16px;
   position: relative;
   overflow: hidden;
   padding-left: 10px;
 }

 /* Form Help Text */
 .form-help-text {
   color: rgba(255, 255, 255, 0.8);
   font-size: 12px;
   margin-top: 4px;
   margin-bottom: 16px;
   display: block;
   font-style: italic;
   line-height: 1.4;
   padding-left: 10px;
   transition: all 0.3s ease;
 }

 .form-help-text:hover {
   color: var(--white-color);
   opacity: 1;
 }

 /* Phone Input Specific Styles */
 .custom-form input[type="tel"] {
   font-family: 'Courier New', monospace;
   letter-spacing: 0.5px;
 }

 .custom-form input[type="tel"]::placeholder {
   color: #999;
   font-size: 14px;
   font-family: 'Courier New', monospace;
   letter-spacing: 0.5px;
 }

 .custom-form input[type="tel"]:focus::placeholder {
   color: var(--primary-color);
   opacity: 0.7;
 }

.input-group-text {
  background: transparent;
  border: 0;
  padding-right: 0;
}

.custom-form label {
  margin-bottom: 5px;
}

.custom-form .form-control {
  background-color: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  box-shadow: none;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 24px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--secondary-color);
  border-color: transparent;
}


/*---------------------------------------
  CUSTOM TEXT BLOCK               
-----------------------------------------*/
.custom-text-block {
  background: var(--primary-color);
  padding: 80px 60px;
  height: 100%;
}

.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--dark-color);
  font-size: var(--h1-font-size);
  line-height: normal;
}

.custom-text-block .counter-number,
.custom-text-block .counter-number-text {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--Color-logo-jhsoft);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 8px 13px;
}

/*CAMBIOS BOTON NAVBAR*/
.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
  background: var(--Color-logo-jhsoft);
  color: var(--white-color);

  border: 1px solid var(--Color-logo-jhsoft);
 }

.custom-border-btn-wrap .custom-border-btn {
  border-color: var(--white-color);
  color: var(--white-color);
  
}

.custom-border-btn-wrap .custom-border-btn:hover,
.cta-section .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn-wrap .custom-link {
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-link:hover::after {
  background: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  padding: 6px  20px;
  padding-top: 2px;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color); 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.logo-image {
  display: block;
  width: 35px;
  margin-right: 10px;
}

.logo-text {
  color: var(--Color-logo-jhsoft);
  font-size: var(--h4-font-size);
  display: block;
  line-height: normal;
}

.logo-slogan {
  color: var(--custom-btn-bg-color);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
}

.navbar-expand-lg .navbar-nav {
  width: 100%;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  font-weight: normal;
} 


.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--custom-btn-bg-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/site-header/close-up-young-business-team-working.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 135px;
  padding-bottom: 45px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.site-header .section-overlay {
  background: var(--primary-color);
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-header h1 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*---------------------------------------
  SITE HEADER BLOGS INDEX            
-----------------------------------------*/
.site-header-blog {
  background-image: url('../images/site-header/close-up-young-business-team-working.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  padding-top: 80px;
  padding-bottom: 20px;
}

.site-header-blog .section-overlay {
  background: var(--primary-color);
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero-section {
  background-image: url('../images/close-up-young-business-team-working1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  padding-top: 150px;
  padding-bottom: 45px;
}

.hero-section .section-overlay {
  background: var(--primary-color);
}
xxxxxxxx
/*BOTON CAROUSEL*/
.hero-section .custom-border-btn {
  background: transparent;
  color: var(--white-color);
}

.hero-section .custom-border-btn:hover {
  background: var(--border-color);
  color: var(--primary-color)!important;
  
}

.hero-form {
  background: var(--social-icon-link-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}
/*Frrmulario contacto*/
.hero-form1 {
   border-radius: var(--border-radius-small);
  padding: 40px;
  background-image: url('../images/abc.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  padding-top: 10px;
  padding-bottom: 40px;
  position: relative;
}
 /*Frrmulario contacto*/
.modal_body {
 padding: 40px;
  background-image: url('../images/abcs.png');  
 /*background-image: url('../images/abc.jpg');*/
 background-repeat: no-repeat;
 background-size: cover;
 background-position: top;
 position: relative;
 padding-top: 10px;
 padding-bottom: 40px;
 position: relative;
 }

.modals{
  border-radius: var(--border-radius-small);

}
.modal_headers {
  background: var(--primary-color);
  text-align: center;
  align-items: center;
  text-decoration: double;
  color: #b8cddf;
 -ms-flex-align: center;
  border-color: wheat;
}
 
.modals_footer{
  background: var(--social-icon-link-bg-color); 

}
  
.hero-form .form-control {
  padding-bottom: 10px;
}

.hero-form button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 8px;
}

.hero-form .input-group-text i {
  position: relative;
  top: 2px;
}

.hero-section .badge {
  background: transparent;
  color: var(--white-color);
}

.hero-section .badge:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.badge {
  background: var(--section-bg-color);
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  margin-right: 5px;
  margin-left: 5px;
  padding: 8px 12px;
  padding-bottom: 6px;
}

.badge-level {
  background: var(--primary-color);
  color: var(--white-color);
}

.badge:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-page .about-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.about-section .custom-text-block {
  background: var(--secondary-color);
}

.about-image-wrap,
.video-thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-info {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  border-top: 30px solid var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px;
  padding: 20px;
}

.about-info-text h4 {
  font-weight: var(--font-weight-normal);
}

.about-image-border-radius {
  border-radius: var(--border-radius-medium);
}

.about-image {
  display: block;
  object-fit: cover;
  height: 100%;
}

.custom-border-radius-start {
  border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
}

.custom-border-radius-end {
  border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

.video-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.youtube-icon {
  background: var(--custom-btn-bg-color);
  font-size: var(--h2-font-size);
  color: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: block;
  animation: pulse-animation 2s infinite;
  transition: all 0.5s;
}

.youtube-icon:hover {
  color: var(--white-color);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-block {
  border-top: 25px solid transparent;
  border-radius: var(--border-radius-medium);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  padding: 40px;
}

/* Remove any unwanted borders from services section */
#services {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

#services::before,
#services::after {
  display: none !important;
}

.job-section.job-featured-section {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

.job-section.job-featured-section::before,
.job-section.job-featured-section::after {
  display: none !important;
}

/* Remove any separators between services and car wash features */
#services + .carwash-features-section {
  border-top: none !important;
}

/* #services + .carwash-features-section::before removed to fix blue line issue */

.services-block:hover,
.services-section .services-block-wrap:nth-of-type(odd) .services-block {
  background: var(--section-bg-color);
  border-top-color: var(--secondary-color);
}

.services-block-icon {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: block;
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  line-height: normal;
  width: 120px;
  height: 120px;
  line-height: 135px;
  margin: auto;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

.services-block-body p {
  margin-bottom: 0;
}


/*---------------------------------------
  CATEGORIES              
-----------------------------------------*/
.categories-block {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  border: 8px solid var(--social-icon-link-bg-color);
  width: 150px;
  height: 150px;
  margin: auto;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

.categories-block:hover {
  border-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.categories-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
  line-height: normal;
  margin-bottom: 5px;
}

.categories-block-title {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.categories-block-number {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
}

.categories-block-number-text {
  color: var(--white-color);
  display: block;
  height: 45%;
  position: relative;
  left: 2px;
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background: var(--section-bg-color);
}

.reviews-carousel .owl-item img,
.avatar-image {
  border: 5px solid var(--section-bg-color);
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.reviews-carousel .owl-dots .owl-dot span {
  background: var(--white-color);
  border: 5px solid transparent;
  padding: 5px;
  transition: all 0.5s;
}

.reviews-carousel .owl-dots .owl-dot.active span, 
.reviews-carousel .owl-dots .owl-dot:hover span {
  background: var(--white-color);
  border-color: var(--custom-btn-bg-color);
}

.reviews-thumb {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.reviews-body {
  position: relative;
  padding: 30px 40px 30px 70px;
}

.reviews-info {
  position: relative;
  padding: 40px 40px 20px 40px;
}

.reviews-title {
  color: var(--p-color);
}

.reviews-info strong,
.reviews-info small {
  display: block;
}

.reviews-info strong {
  color: var(--dark-color);
  line-height: normal;
}

.bi-star-fill {
  color: var(--custom-btn-bg-color);
}

.reviews-bottom small {
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 30px;
  opacity: 0.05;
}


/*---------------------------------------
  JOB              
-----------------------------------------*/
.recent-jobs-bottom .custom-btn {
  font-size: 15px;
 }

.job-listings-page .hero-form .badge:hover {
  background: var(--primary-color);
}

.job-thumb {
  border-radius: var(--border-radius-small);
  margin-bottom: 25px;
  padding: 25px;
  transition: all 0.5s ease;
}

.job-thumb:hover,
.job-thumb:nth-of-type(even) {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.job-title-link {
  color: var(--dark-color);
}

.job-thumb p {
  font-size: 18px;
}

.job-thumb .badge {
  border: 0;
}

.job-thumb-box {
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  margin-bottom: 48px;
  padding: 0;
}

.job-thumb-box .job-body {
  padding: 25px;
}

.job-thumb-box .job-body .job-image-wrap {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.job-thumb-box .job-body .job-image {
  padding: 10px;
}

.job-thumb-box .job-location, 
.job-thumb-box .job-date {
  min-width: inherit;
}

.job-thumb-box .job-date {
  margin-right: 0;
}

.job-image-box-wrap {
  position: relative;
}

.job-image-box-wrap .job-image {
  padding: 0;
}

.job-image-box-wrap .badge-level {
  border-color: transparent;
}

.job-image-box-wrap .badge-level:hover,
.job-image-box-wrap .badge:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
}

.job-image-box-wrap-info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px 25px;
}

.job-image-wrap {
  border-radius: var(--border-radius-large);
  width: 80px;
  min-width: 80px;
  height: 80px;
}

.job-image {
  display: block;
  margin: auto;
  padding: 12px;
}

.job-body {
  flex: auto;
}

.job-location {
  min-width: 175px;
}

.job-location,
.job-date {
  margin-right: 20px;
}

.job-date {
  min-width: 155px;
}

.job-price {
  min-width: 120px;
  margin-right: 10px;
  margin-left: 10px;
}

.job-thumb-detail,
.job-thumb-detail:hover {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.job-thumb-detail-box {
  padding: 40px;
}

.job-detail-share {
  margin-left: auto;
}

.dropdown-sorting .dropdown-menu {
  border-radius: var(--border-radius-small);
  border-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dropdown-sorting .dropdown-item {
  font-size: var(--copyright-font-size);
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#dropdownSortingButton {
  background: transparent;
  color: var(--dark-color);
  border: 0;
  padding: 0;
}

.sorting-icon {
  color: var(--p-color);
}

.sorting-icon.active {
  color: var(--primary-color);
}

.job-section-btn-wrap {
  margin-left: auto;
}


/*---------------------------------------
  CTA               
-----------------------------------------*/
.cta-section {
  background-image: url('../images/millennial-group-young-businesspeople.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  padding-top: 70px;
  padding-bottom: 75px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-info {
  padding: 20px 30px;
}

.contact-info:nth-of-type(even) {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
}

.contact-info .custom-icon {
  font-size: var(--h2-font-size);
  margin-right: 20px;
}

.contact-info-small-title {
  color: var(--secondary-color);
  display: block;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
}

.contact-form {
  margin-top: 20px;
}

.contact-form .form-control {
  background-color: var(--section-bg-color);
  margin-bottom: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
}

.contact-form .form-control:hover {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}

.contact-form button[type="submit"] {
  margin-bottom: 0;
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
  filter: grayscale(100%);
}


/*BUSCAR*/ 

.newsletter_form_search {
  background-color: #F0F8FF;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  justify-content: flex-end;  
  align-items: center;
}

 /* Estilos para el texto encima de la imagen */
.job-image-box-text {
  position: absolute;
  top: 10px; /* Ajusta la posición vertical */
  left: 10px; /* Ajusta la posición horizontal */
  background-color: rgba(255, 255, 255, 0.7); /* Fondo semitransparente */
  padding: 5px 10px;
  border-radius: 5px; 
 right: 10px;
  text-decoration: solid;
}

.newsletter_form_search .input-group {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
}
 
.newsletter_form_search .form-control {
  border: none;
  background: transparent;
  outline: none;
  margin-right: 10px;
  padding: 10px;
  font-size: 16px;
  width: 255px;
}
 
.newsletter_form_search button {
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
}

/*---------------------------------------
  NEWSLETTER FORM              
-----------------------------------------*/
.newsletter-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.newsletter-form .input-group {
  margin-bottom: 0;
  padding: 10px;
}

.newsletter-form .form-control {
  margin-right: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.newsletter-form button[type="submit"] {
  display: flex;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 8px;
  width: 42px;
  height: 42px;
}

.newsletter-form button[type="submit"] i {
  height: 100%;
}

.newsletter-form .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
  border-radius: var(--border-radius-large);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  padding-top: 100px;
  padding-bottom: 0;
}

.site-footer-link {
  color: var(--p-color);
}

.site-footer-bottom {
  background: var(--primary-color);
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.site-footer-bottom .footer-menu-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  margin-right: 5px;
  margin-left: 5px;
}

.site-footer-title {
  margin-bottom: 15px;
}

.site-footer-bottom p,
.copyright-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  margin-bottom: 0;
}

.copyright-text {
  margin-right: 20px;
}

.sponsored-link {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  justify-content: end;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  color: var(--p-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--social-icon-link-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 40px;
  transition: all 0.5s;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: scale(1.15);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1025px) {
  .job-featured-section .job-thumb {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 991px) {
  .google-map {
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-page .about-section {
    padding-top: 50px;
  }

  .custom-btn {
    padding: 12px 20px;
  }

  .navbar-collapse {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    margin-top: 10px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .custom-text-block {
    padding: 50px 30px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .badge {
    margin-top: 5px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .custom-border-radius-start {
    border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  }

  .custom-border-radius-end {
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  }

  .job-body p {
    font-size: var(--btn-font-size);
  }

  .job-location {
    min-width: 140px;
  }

  .job-price {
    min-width: inherit;
    margin-top: 5px;
    margin-left: 0;
  }

     .hero-form button[type="submit"] {
     margin-bottom: 0;
   }

   /* Responsive adjustments for form help text */
   .form-help-text {
     font-size: 11px;
     margin-bottom: 12px;
   }

   /* Responsive adjustments for form help text */
   .form-help-text {
     font-size: 11px;
     margin-bottom: 12px;
   }

  .site-footer {
    padding-top: 50px;
  }

  .site-footer-bottom {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .badge {
    margin: 10px 10px 5px 0;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .counter-thumb {
    margin: 10px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h3-font-size);
  }

  .job-date {
    margin-top: 5px;
  }

     .job-detail-share {
     margin: 20px auto 0 auto;
   }

   /* Form help text for very small screens */
   .form-help-text {
     font-size: 10px;
     margin-bottom: 10px;
     padding-left: 5px;
   }
}

/*ME GUSTA DE DEMOS*/
.bi-heart {
  font-size: 19px;
  color: gray; /* Color de corazón no marcado */
}

.bi-heart.active {
  color: red; /* Color de corazón marcado */
  background: fixed;
 }

 /*TODO:BOTON FLOTANTE*/
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 5%; /* Valor predeterminado para pantalla pequeña */
    display: flex;
    align-items: center; /* Centra verticalmente */
    width: 130px; /* Ancho del contenedor */
    z-index: 1000; /* Aumenta el valor de z-index para que esté por encima de otras secciones */
    transition: transform 0.3s ease; /* Transición para efecto de escala */
}
.whatsapp-icon img {
  width: 45px;
  height: 45px;
  border-radius: 40%;
}

/* Estilos para el texto de WhatsApp */
.whatsapp-text-container {
  background-color: #F0F8FF; /* Color de fondo de WhatsApp */
  color: white important;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center; /* Centra el texto horizontalmente */
  margin-right: 5px; /* Espacio entre el texto y el icono */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transiciones para efectos */
}

.whatsapp-text {
  font-size: 14px;
 }

/* Cambia el color de fondo al hacer hover */
.whatsapp-container:hover .whatsapp-text-container {
  background-color: #F0F8FF import; /* Nuevo color de fondo en hover */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7); /* Efecto de sombra al hacer hover */
}

/* Cambia el icono de WhatsApp al hacer hover */
.whatsapp-container:hover .whatsapp-icon img {
  transform: scale(1.05); /* Efecto de escala al hacer hover */
}
@media (min-width: 1024px) {
  .whatsapp-container {
      right: 30px; /* Valor para pantalla grande */
  }
}

/*TODO:MODAL CONTCTO*/
.color_fondo_modal {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.color_fondo_modal.form-control {
  margin-right: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
}

/*MODAL LOGIN*/

/*---------------------------------------
  CAR WASH SaaS SECTION               
-----------------------------------------*/
.carwash-saas-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--Color-logo-jhsoft) 100%);
  position: relative;
  overflow: hidden;
}

.carwash-saas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Feature Cards */
.saas-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-medium);
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.saas-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.saas-feature-card:hover::before {
  left: 100%;
}

.saas-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary-color);
}

.saas-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--custom-btn-bg-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.saas-feature-card:hover .saas-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(13, 202, 240, 0.4);
}

.saas-feature-card h4 {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  margin-bottom: 15px;
  font-weight: var(--font-weight-semibold);
}

.saas-feature-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.saas-badge {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: var(--border-radius-large);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Demo & Pricing Cards */
.saas-demo-card,
.saas-pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.saas-demo-card::before,
.saas-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--custom-btn-bg-color));
}

.demo-header h3,
.pricing-header h3 {
  color: var(--white-color);
  font-size: var(--h4-font-size);
  margin-bottom: 15px;
}

.demo-header p,
.pricing-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.demo-details {
  margin: 25px 0;
}

.demo-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  border-left: 3px solid var(--secondary-color);
}

.demo-item i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-right: 15px;
  min-width: 20px;
}

.demo-item span {
  color: var(--white-color);
  font-size: 16px;
}

.demo-item a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.demo-item a:hover {
  color: var(--custom-btn-bg-color);
}

/* Pricing Plans */
.pricing-plans {
  margin: 25px 0;
}

.plan-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.plan-item.featured {
  border-color: var(--secondary-color);
  background: rgba(13, 202, 240, 0.1);
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: var(--border-radius-large);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.plan-header {
  text-align: center;
  margin-bottom: 20px;
}

.plan-header h4 {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  margin-bottom: 15px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.plan-price .currency {
  color: var(--white-color);
  font-size: 18px;
  font-weight: var(--font-weight-normal);
}

.plan-price .amount {
  color: var(--secondary-color);
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.plan-price .period {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: var(--font-weight-normal);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.plan-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 18px;
}

.payment-methods {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-methods p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.payment-icons i {
  color: var(--white-color);
  font-size: 32px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* CTA Section */
.saas-cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-medium);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.saas-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.saas-cta-card:hover::before {
  transform: translateX(100%);
}

.saas-cta-card h3 {
  color: var(--white-color);
  font-size: var(--h4-font-size);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.saas-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-buttons .custom-btn {
  margin: 10px;
  min-width: 200px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .saas-feature-card {
    padding: 25px 20px;
  }
  
  .saas-demo-card,
  .saas-pricing-card {
    padding: 25px 20px;
  }
  
  .plan-price .amount {
    font-size: 36px;
  }
  
  .cta-buttons .custom-btn {
    min-width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .carwash-saas-section {
    padding: 40px 0;
  }
  
  .saas-feature-card {
    margin-bottom: 20px;
  }
  
  .demo-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .demo-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/*---------------------------------------
  CAR WASH FEATURES SECTION               
-----------------------------------------*/
.carwash-features-section {
  background: var(--section-bg-color);
  animation: fadeInUp 0.8s ease-out;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  /* Background color maintained but no more blue line */
}

/* Features Header Styling */
.features-header-wrapper {
  position: relative;
  padding: 40px 0;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--Color-logo-jhsoft));
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: var(--border-radius-large);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(13, 108, 169, 0.3);
  transition: all 0.3s ease;
}

.features-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 108, 169, 0.4);
}

.features-badge i {
  font-size: 18px;
  color: var(--secondary-color);
}

.features-main-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--Color-logo-jhsoft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--custom-btn-bg-color));
  border-radius: 2px;
}

.features-subtitle {
  font-size: var(--p-font-size);
  color: var(--p-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: var(--font-weight-light);
}

.features-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  border-radius: 1px;
}

.divider-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--custom-btn-bg-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
  }
  50% {
    box-shadow: 0 5px 25px rgba(13, 202, 240, 0.6);
  }
  100% {
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
  }
}

/* Remove any unwanted separators between sections */
/* .carwash-features-section::before removed to fix blue line issue */

/* Ensure no other borders appear */
.carwash-features-section::after {
  display: none !important;
}

/* Global fix for unwanted blue lines */
section:not(.carwash-features-section)::before,
section:not(.carwash-features-section)::after {
  border-color: transparent !important;
}

/* Remove any horizontal lines that might appear */
hr, .hr, [class*="border-"] {
  border-color: transparent !important;
}

/* Ensure no borders appear between sections */
section + section {
  border-top: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .carwash-features-section::before removed to fix blue line issue */

/* Feature Detail Cards */
.feature-detail-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.feature-detail-card:nth-child(1) { animation-delay: 0.1s; }
.feature-detail-card:nth-child(2) { animation-delay: 0.2s; }
.feature-detail-card:nth-child(3) { animation-delay: 0.3s; }
.feature-detail-card:nth-child(4) { animation-delay: 0.4s; }
.feature-detail-card:nth-child(5) { animation-delay: 0.5s; }
.feature-detail-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--custom-btn-bg-color));
}

.feature-detail-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(13, 108, 169, 0.15);
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--Color-logo-jhsoft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white-color);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(13, 108, 169, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--secondary-color), var(--custom-btn-bg-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-header h4 {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

.feature-detail-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(13, 108, 169, 0.4);
}

.feature-detail-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-content {
  color: var(--p-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  background: linear-gradient(135deg, var(--secondary-color), var(--custom-btn-bg-color));
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2px;
}

.feature-list li strong {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
}

/* Technical Specifications */
.tech-specs-card {
  background: linear-gradient(135deg, var(--white-color) 0%, #f8fbff 100%);
  border-radius: var(--border-radius-medium);
  padding: 45px 35px;
  box-shadow: 0 20px 40px rgba(13, 108, 169, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tech-specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--custom-btn-bg-color));
}

.tech-specs-card h3 {
  color: var(--dark-color);
  font-size: var(--h4-font-size);
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(13, 108, 169, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.spec-item i {
  color: var(--primary-color);
  font-size: 28px;
  margin-top: 5px;
  flex-shrink: 0;
}

.spec-content h5 {
  color: var(--dark-color);
  font-size: var(--h6-font-size);
  margin-bottom: 8px;
  font-weight: var(--font-weight-semibold);
}

.spec-content p {
  color: var(--p-color);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Integration Section */
.integration-card {
  background: linear-gradient(135deg, var(--white-color) 0%, #f8fbff 100%);
  border-radius: var(--border-radius-medium);
  padding: 45px 35px;
  box-shadow: 0 20px 40px rgba(13, 108, 169, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--custom-btn-bg-color));
}

.integration-card h3 {
  color: var(--dark-color);
  font-size: var(--h4-font-size);
  margin-bottom: 20px;
}

.integration-card p {
  color: var(--p-color);
  font-size: 18px;
  margin-bottom: 30px;
}

.integration-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-5px);
}

.integration-item i {
  color: var(--primary-color);
  font-size: 40px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--primary-color), var(--Color-logo-jhsoft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-item:hover i {
  color: var(--secondary-color);
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--secondary-color), var(--custom-btn-bg-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-item span {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
}

/* Responsive Adjustments for Features */
@media (max-width: 768px) {
  .feature-detail-card {
    padding: 25px 20px;
  }
  
  .tech-specs-card,
  .integration-card {
    padding: 30px 20px;
  }
  
  .feature-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .integration-icons {
    gap: 20px;
  }
  
  .integration-item {
    min-width: 120px;
  }
  
  .spec-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  /* Responsive header adjustments */
  .features-main-title {
    font-size: var(--h3-font-size);
  }
  
  .features-subtitle {
    font-size: 18px;
    max-width: 100%;
  }
  
  .features-divider {
    gap: 15px;
  }
  
  .divider-line {
    width: 40px;
  }
  
  .divider-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .carwash-features-section::before {
    height: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  }
  
  .spec-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .integration-icons {
    flex-direction: column;
    gap: 25px;
  }
}

/*---------------------------------------
  CAR WASH SOLUTIONS SECTION               
-----------------------------------------*/
.carwash-solutions-section {
  background: var(--section-bg-color);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Remove the horizontal lines */
.carwash-solutions-section::before,
.carwash-solutions-section::after {
  display: none;
}

/* Header Feature Items - Only for CAR WASH SOLUTIONS section */
.carwash-solutions-section .header-feature-item {
  text-align: center;
  padding: 20px 15px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(102, 169, 213, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(102, 169, 213, 0.1);
}

.carwash-solutions-section .header-feature-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(102, 169, 213, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
  border-color: rgba(102, 169, 213, 0.3);
  box-shadow: 0 10px 25px rgba(102, 169, 213, 0.15);
}

.carwash-solutions-section .header-feature-item i {
  display: block;
  margin: 0 auto 15px;
  opacity: 0.9;
  color: #0dcaf0;
}

.carwash-solutions-section .header-feature-item h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #086CA9;
}

.carwash-solutions-section .header-feature-item p {
  opacity: 0.8;
  margin: 0;
  color: #66A9D5;
}

/* Software Description Card - Only for CAR WASH SOLUTIONS section */
.carwash-solutions-section .software-description-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(102, 169, 213, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(102, 169, 213, 0.1);
}

.carwash-solutions-section .software-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carwash-solutions-section .software-benefits li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  color: #086CA9 !important;
}

.carwash-solutions-section .software-benefits li i {
  font-size: 1.1rem;
  margin-right: 12px;
  min-width: 20px;
  color: #28a745 !important;
}

.carwash-solutions-section .software-preview {
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 169, 213, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(102, 169, 213, 0.2);
}

.carwash-solutions-section .software-preview i {
  opacity: 0.8;
  color: #0dcaf0;
}

.carwash-solutions-section .software-preview h4 {
  color: #086CA9;
}

.carwash-solutions-section .software-preview p {
  color: #66A9D5;
}

/* Logo Container - Only for CAR WASH SOLUTIONS section - Fixed size */
.carwash-solutions-section .logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.carwash-solutions-section .carwash-logo {
  max-width: 120px; /* Reduced from 200px */
  height: auto;
  filter: none;
  transition: all 0.3s ease;
}

.carwash-solutions-section .carwash-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(102, 169, 213, 0.3));
}

/* Update text colors in the main section - Only for CAR WASH SOLUTIONS section */
.carwash-solutions-section h1 {
  color: #086CA9 !important;
  text-shadow: 0 2px 4px rgba(102, 169, 213, 0.1);
}

.carwash-solutions-section h3 {
  color: #0dcaf0 !important;
}

.carwash-solutions-section p {
  color: #086CA9 !important;
}

.carwash-solutions-section .text-white {
  color: #086CA9 !important;
}

.carwash-solutions-section .text-white-50 {
  color: #66A9D5 !important;
}

/* CTA Card and Buttons - Only for CAR WASH SOLUTIONS section */
.carwash-solutions-section .solution-cta-card {
  background: linear-gradient(135deg, rgba(102, 169, 213, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(102, 169, 213, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(102, 169, 213, 0.15);
}

.carwash-solutions-section .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.carwash-solutions-section .cta-buttons .custom-btn {
  background: linear-gradient(135deg, #66A9D5, #0dcaf0);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carwash-solutions-section .cta-buttons .custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 169, 213, 0.3);
  color: white;
}

.carwash-solutions-section .cta-buttons .custom-border-btn {
  background: transparent;
  border: 2px solid #0dcaf0;
  color: #0dcaf0;
}

.carwash-solutions-section .cta-buttons .custom-border-btn:hover {
  background: #0dcaf0;
  color: white;
}

/*---------------------------------------
  FEATURES SECTION               
-----------------------------------------*/
.features-section {
  background: var(--white-color);
  padding: 100px 0;
  position: relative;
  /* Remove border-top */
}

.features-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.features-section p {
  color: var(--p-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Feature Cards for FEATURES SECTION */
.features-section .solution-feature-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.features-section .solution-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.features-section .solution-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--custom-btn-bg-color));
}

.features-section .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.features-section .solution-feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(13, 202, 240, 0.4);
}

.features-section .solution-feature-card h4 {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  margin-bottom: 15px;
  font-weight: var(--font-weight-semibold);
}

.features-section .solution-feature-card p {
  color: var(--p-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features-section .feature-badge {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #ff6b35);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: var(--border-radius-large);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/*---------------------------------------
  DEMO SECTION               
-----------------------------------------*/
.demo-section {
  background: var(--white-color);
  padding: 100px 0;
  position: relative;
  /* Remove border-top */
}

.demo-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.demo-section p {
  color: var(--p-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.demo-content {
  text-align: center;
}

.demo-details {
  margin: 25px 0;
}

.demo-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  border-left: 3px solid var(--secondary-color);
}

.demo-item i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-right: 15px;
  min-width: 20px;
}

.demo-item span {
  color: var(--dark-color);
  font-size: 16px;
}

.demo-item a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.demo-item a:hover {
  color: var(--custom-btn-bg-color);
}

.demo-note {
  margin-top: 20px;
}

.demo-note p {
  color: var(--p-color);
  font-size: 14px;
}

/*---------------------------------------
  PRICING SECTION               
-----------------------------------------*/
.pricing-section {
  background: var(--white-color);
  padding: 100px 0;
  position: relative;
  /* Remove border-top */
}

.pricing-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.pricing-section p {
  color: var(--p-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pricing-plan-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: visible; /* Changed from hidden to visible to fix badge */
}

.pricing-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.pricing-plan-card.featured {
  border-color: var(--secondary-color);
  background: rgba(13, 202, 240, 0.05);
}

.plan-badge {
  position: absolute;
  top: -12px; /* Adjusted position */
  right: 20px;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 8px 16px; /* Increased padding */
  border-radius: var(--border-radius-large);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  z-index: 10; /* Ensure it's above other elements */
}

.plan-header {
  text-align: center;
  margin-bottom: 20px;
}

.plan-header h4 {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  margin-bottom: 15px;
}

.plan-header p {
  color: var(--p-color);
  font-size: 14px;
  margin-bottom: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.plan-price .currency {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-normal);
}

.plan-price .amount {
  color: var(--secondary-color);
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.plan-price .period {
  color: var(--p-color);
  font-size: 16px;
  font-weight: var(--font-weight-normal);
}

.plan-price .custom-price {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.plan-features li {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  line-height: 1.5;
  padding-left: 5px;
}

.plan-features li i {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-methods {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.payment-methods p {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.payment-icons i {
  color: var(--primary-color);
  font-size: 32px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  opacity: 1;
  transform: scale(1.1);
}


