.modern-slider {
  position: relative;
  background-repeat: no-repeat;
}

.img-fill {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-fill .info {
  z-index: 2;
  position: absolute;
  top: 10%;
  color: white;
  padding: 20px;
  max-width: 900px;
}

.img-fill .info h3 {
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 600;
}

.img-fill .info h5 {
  font-size: 20px;
  font-weight: normal;
  font-weight: 400;
  margin-bottom: 35px;
}

.img-fill .info p {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 25px;
  color: white;
  max-width: 485px;

}

/* Position arrows on the sides */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

/* Optional: hide default slick arrows and use icons */
.slick-prev:before,
.slick-next:before {
  display: none;
}

.next-arrow {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, .50);
  border: 0 none;
  margin-top: -22.5px;
  text-align: center;
  cursor: pointer;
  font: 20px/45px FontAwesome;
  color: #FFF;
  z-index: 5;

  &:before {
    content: '\f105';
  }
}

.prev-arrow {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, .50);
  border: 0 none;
  margin-top: -22.5px;
  text-align: center;
  font: 20px/45px FontAwesome;
  color: #FFF;
  z-index: 5;
  cursor: pointer;

  &:before {
    content: '\f104';
  }
}

.sub-page-section {
  background-color: #000611;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sub-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 6, 17, 0.75);
  z-index: -1;
}

.sub-page-section h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.services-section {
  position: relative;
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-image: url("../images/h2-bg-section-01.jpg");
}

.services-section .container {
  position: relative;

}

.services-card.few-items .slick-track {
  gap: 34px;
  display: flex;
}

.services-card {
  position: absolute;
  top: -130px;
  left: 0;
}

.services-section .conents {
  margin-top: -90px;
}

.services-card .slick-prev,
.slick-next {
  background: wheat;
}

.services-card .slick-prev::after {
  content: "";
  background-color: red;
  position: absolute;
  width: 10px;
  height: 10px;
}

.services-card .card {
  min-height: 170px;
  border: none;
}

.services-card .card h5 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #101130;
  font-family: var(--font-family);
}

/* Icon color using CSS filter (approx #DB3022) */
.services-card .card img {
  filter: invert(32%) sepia(95%) saturate(5435%) hue-rotate(349deg) brightness(96%) contrast(103%);
  /* transition: transform 0.5s ease, filter 0.3s ease; */
  /* filter: invert(63%) sepia(34%) saturate(453%) hue-rotate(125deg) brightness(97%) contrast(91%); */

}

.services-card .card:hover img {
  filter: invert(1);
  /* transition: transform 0.5s ease, filter 0.3s ease; */
}

.services-card .card:hover h5 {
  color: #FFF;
}

/* Card default style */
.services-card .card {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: background 0.5s ease;
}

/* Slide-in background layer */
.services-card .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--Brand-color);
  /* Your red */
  z-index: 0;
  transition: left 0.4s ease-in-out;
}

/* Hover effect: slide background from left */
.services-card .card:hover::before {
  left: 0;
}

/* Ensure content stays above the background */
.services-card .card * {
  position: relative;
  z-index: 1;
}

/* Optional: slight bounce effect on image */
.services-card .card:hover img {
  transform: translateX(5px);
}

.services-section .conents h1 p {
  font-size: 42px;
  line-height: 1.1428;
}

.sub-section .infos {
  display: flex;
  gap: 25px;
  flex-direction: column;
}

.sub-section .left-image img {
  width: 100%;
  background: transparent;
}

.sub-section .promises {
  display: flex;
  gap: 11px;
  padding: 24px 0;
  max-width: 430px;
  border-bottom: 1px solid #EBEFF4;
  border-top: 1px solid #EBEFF4;
}

.sub-section .promises-data {

  display: flex;
  align-items: center;
  gap: 11px;
}

.sub-section .promises-data img {
  width: 60px;
}

.product-section {
  position: relative;
  padding: 90px 0px 90px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-image: url("../images/h2-bg-section-0.jpg");
}

.product-section .heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 530px;
  margin: auto;
  gap: 25px;
}

.product-section.sections .heading p {
  text-align: center;
}

.product-section .top-chips {
  box-shadow: 0 11px 27px rgba(0, 9, 71, 0.13);
}

.chips-m-contaoner {
  display: none;
}

.sub-section.features ul li {
  border: 1px solid #C0C0C0;
  padding: 12px 16px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}

.sub-section.features ul {
  list-style: none;
  margin: 64px 0 0;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}

.call-to-action {
  background: #000611;
}

.call-to-action h2 {
  color: #FFF;
  font-weight: 400 !important;
  font-size: 42px;
  line-height: 60px;
}


/* services page  */
.services-hero .hero-slide {
  background-size: cover;
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex !important;
  align-items: center;
}

.services-hero .hero-slide h1 {
  color: red;
  position: relative;
  z-index: 2;
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

.listing-services label {
  display: flex;
  gap: 6px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.listing-services label p {
  margin: 0;
}

.listing-services .filter-container {
  border-right: 1px solid red;
}

.listing-services .lists {
  margin-top: 40px;
}

.product-card {
  gap: 16px;
  flex-direction: row;
  background-color: #696969;
  border: 0;
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
  display: flex;
  padding: 0.5em;
  border-radius: 0.375rem;
  align-items: center;
  margin-top: 15px;
}

.product-card .card-image {
  width: 30%;
  height: 89px;
  /* fixed height */
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
  overflow: hidden;
  /* crop overflow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fill the container */
  border-radius: 0.7em;
}


.product-card .card-body {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.product-card .content-section {
  max-width: 60%;
}

.product-card .cta-section {
  max-width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.product-card .title {
  margin: 0;
  font-size: 1.25rem;
  max-height: 27px;
  overflow: hidden;
  color: var(--Bg-color);
  margin-bottom: 8px;
}

.product-card .descriptions p {
  margin: 0;
  max-height: 47px;
  overflow: hidden;
  font-size: 14px;
  color: var(--Bg-color);

}

.product-section .row {
  justify-content: center;
}

.product-card .price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--Bg-color);
}

.product-card .add-to-cart {
  padding: 0.3em 0.5em;
  border: none;
  background: var(--Brand-color);
  color: var(--Bg-color);
  border-radius: 8px;
  font-size: 14px;
}

.about-heading p {
  max-width: 450px;
  font-size: 44px;
}

.about-us-tab {
  min-height: 200px;
  overflow: hidden;
  margin-top: 40px;

}

.about-us-tab ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  padding: 0 0 8px;
  margin: 0;
  border-bottom: 2px solid #C0C0C0;
}

.about-us-tab ul li {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.about-us-tab ul li::before {
  content: "";
  width: 0;
  height: 3px;
  background: var(--Brand-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: width 0.3s ease-out;
  border-radius: 2px;
}

/* On hover of the li, expand the underline */
.about-us-tab ul li:hover::before {
  width: 100%;
}

/* When active, keep the underline expanded */
.about-us-tab ul li.active::before {
  width: 100%;
}

.about-us-sub-sec .about-us-subheading p {
  margin-top: 30px;
}

.about-us-tab .tab-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, max-height 0.6s ease-out, transform 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.about-us-tab .tab-content.active {
  opacity: 1;
  max-height: 100%;
  transform: translateY(0);
  padding-top: 16px;
  padding-bottom: 16px;
}

.about-us-sub-sec img {
  width: 100%;
}

.page-template-about-us .sub-section {
  padding: 60px 0px 0;
}

.why-choose-us-section .about-us-subheading p {
  margin-top: 30px;
  max-width: 800px;
  margin: auto;
}

.why-points {
  margin-top: 34px;
  list-style: none;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.why-points li {
  display: flex;
  flex-direction: column;
  width: 25%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  padding: 22px;
}

.why-points li .title {
  text-align: center;
}

.why-points li .sub-title {
  text-align: center;
}

.why-choose-us-section .about-heading p {
  text-align: center;
  width: 100%;
  margin: auto;
}


.step-progress-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.how-we-work-section .section-title {
  text-align: center;
}

.how-we-work-section .section-sub {
  text-align: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 180px;
  margin-bottom: 30px;
}

.circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--Brand-color);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.line {
  position: absolute;
  top: 18px;
  left: 56%;
  height: 2px;
  width: 100%;
  background-color: var(--Brand-color);
  z-index: 1;
}

.line.none {
  display: none;
}

.label {
  margin-top: 16px;
  text-align: center;
}

.step-title {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
}

.step-name {
  font-weight: 600;
  font-size: 16px;
  margin-top: 5px;
  color: #222;
}

.step-desc {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.about-us-secti-1 {
  align-items: center;
}

.info-contents img {
  filter: brightness(1);
}

.info-contents {
  width: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  gap: 11px;
}

.info-section {
  margin-top: 21px;
  gap: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.common-card {
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.common-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}


.common-card .button-sec {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--Brand-color) !important;
  box-shadow: 0 0 0 .25rem rgba(219, 48, 34, 0.25) !important;
}