:root {
  --slider-track-height: 2px;
  --slider-thumb-size: 20px;
  --slider-color: #4b4b9d;
  /* Darker Blue */
  --slider-color-light: #c0c0d8;
  /* Lighter/White part of the track */
}

/*hamburger-menu css start*/
.hamburger-menu {
  display: inline-block;
  position: relative;
  width: fit-content;
}

.hamburger-menu::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffc107;
  transition: transform 0.25s ease-out;
}



.hamburger-menu:hover::after {
  transform: scaleX(1);
}

.hamburger-menu::after {
  transform-origin: bottom right;
}

.hamburger-menu:hover::after {
  transform-origin: bottom left;
}

/*hamburger-menu css end*/

.offcanvas-body .social-icons {
  filter: brightness(0);
}

.offcanvas .fa-solid {
  color: black;
  font-size: 24px;
}

.offcanvas:hover .fa-solid {
  color: white;
}

.offcanvas .btn {
  border: none;
}

.button-wrwpper {
  position: fixed;
  left: unset;
  right: -110px;
  width: fit-content;
  top: 50%;
  z-index: 999999;
  padding: 0;
  transform: rotate(270deg);
}

/*Swiapable truck start*/
.features-section {
  padding: 20px;
  background-color: #f1f6f9;
}

.features-table td {
  background-color: #f1f6f9 !important;
  color: black !important;
}

.features-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1.5rem;
  /*font-family: 'Poppins', sans-serif;*/

}

.smarter-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-cell {
  width: 15%;
  /* Adjusted width for the icon column */
  vertical-align: top;
  text-align: center;
}

.feature-title-cell {
  width: 30%;
  /* Adjusted width for the title column */
  vertical-align: top;
  text-align: left;
  padding-left: 10px;
}

.feature-content-cell {
  width: 55%;
  /* Adjusted width for the content column */
  vertical-align: top;
  padding-left: 10px;
}

.feature-icon-1 {
  width: 95px;
  height: auto;
}

.feature-title-1 {
  font-size: 18px;
  color: #2A2A2A !important;
  /*font-family: "raleway-bold";*/
}

.feature-description-1 {
  font-size: 18px;
  color: #4A4A4A !important;
  /*font-family: "montserrat";*/
  line-height: 32px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .features-table {
    border-spacing: 0;
    /* Remove spacing for small screens */
    width: 100%;
    padding: 0;
  }

  .smarter-feature-item {
    display: block;
    margin-bottom: 20px;
  }

  .feature-icon-cell,
  .feature-title-cell,
  .feature-content-cell {
    display: block;
    width: 100%;
    /* Full width for each cell */
    text-align: center;
    /* Center-align text on small screens */
    padding-left: 0;
  }

  .feature-title-cell {
    text-align: center;
    margin-top: 10px;
  }

  .feature-icon-1 {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 32px;
  }

  .feature-title {
    font-size: 1rem;
    /* Adjust font size */
  }

  .feature-description-1 {
    font-size: 0.85rem;
    /* Adjust font size */
    line-height: 1.4rem;
    padding: 0px 1rem;
  }
}


@media (max-width: 768px) {
  .calculator-box {
    margin-left: auto;
  }
}

@media (min-width: 375px) and (max-width: 575.98px) {
  .handshake img {
    width: 90%
  }

}

/*Swiapable truck end*/


/* 1. Base Range Input Styling */
input[type=range] {
  -webkit-appearance: none;
  /* Removes default Chrome/Safari appearance */
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  /* Full width */
  height: var(--slider-track-height);
  background: transparent;
  /* Clear the default background */
  margin: 10px 0;
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--slider-track-height);
  /* The track is a background gradient composed of the filled (darker) and unfilled (lighter) parts */
  /* This is a simple linear gradient for a fade effect similar to the image */
  background: var(--slider-color);
  /* Start with dark blue */
  border-radius: 4px;
  /* Optional: Slight rounding of the bar */
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: var(--slider-track-height);
  background: var(--slider-color);
  /* Start with dark blue */
  border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: calc(-1 * (var(--slider-thumb-size) - var(--slider-track-height)) / 2);
  /* Centers the thumb vertically */
  height: var(--slider-thumb-size);
  width: var(--slider-thumb-size);
  background: white;
  /* White center */
  border: 2px solid var(--slider-color);
  /* Blue border */
  border-radius: 50%;
  /* Perfect circle */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /* Optional: slight shadow for lift */
}

input[type=range]::-moz-range-thumb {
  height: var(--slider-thumb-size);
  width: var(--slider-thumb-size);
  background: white;
  border: 2px solid var(--slider-color);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.count-body {
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  gap: 1rem;
}

.count-body h2.number {
  font-size: max(2rem, 4vw);
  color: #000000;
  line-height: 1;
  margin: 0;
}

.count-body .text {
  font-size: max(1rem, 1vw);
  text-transform: uppercase;
  font-weight: 500;
}

.feature .feature-title h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.feature .text-content {
  padding: 0.8rem;
}
.btn-blue {
  background-color: rgba(0, 0, 0, 0);
  color: black;
  border: 2px solid black;
}

.btn-blue:hover {
  background-color: #272660;
  color: white;
}