.mobile-nav * {
  background-color: white !important;
  border-radius: 20px;
}

#hero {
  min-height: 450px;
}

.custom-card {
  border-radius: 35px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 450px;
  /* Set a minimum height for the cards */
  position: relative;
  background-color: #efefec;
  border: 2px solid #bebebe;
  margin-top: 30px;
}

.section-title {
  padding-bottom: 0px;
}

.aboutus {
  padding: 0px 0;
}

/* Yellow card with specific styling */
.custom-card-yellow {
  border-radius: 35px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 450px;
  /* Set a minimum height for the cards */
  position: relative;
  background-color: #efefec;
  border: 2px solid #f99a00;
  margin-top: 30px;
}

/* Hover effect for .custom-card with a stronger shadow */
.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 10px rgb(0, 0, 0, 0.23);
  /* Stronger shadow */
}

/* Hover effect for .custom-card-yellow with a different shadow */
.custom-card-yellow:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 10px rgb(0, 0, 0, 0.23);
  /* Stronger shadow */
}

/* Wrapper to position the circles */
.icon-wrapper {
  position: relative;
  width: 70px;
  /* height: 70px; */
  margin: 0 auto;
}

/* Larger circle styling */
.large-circle {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: -95px;
  left: -10px;
  z-index: 0;
  /* Make sure it stays behind */
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  /* Shadow for the circle */
}

/* Smaller circle styling */
.small-circle {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 2px solid #c2c2c2;
  /* Border around the smaller circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -80px;
  left: 5px;
  z-index: 1;
  /* Place it above the large circle */
}

.small-circle-yellow {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 2px solid #f99a00;
  /* Border around the smaller circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -80px;
  left: 5px;
  z-index: 1;
  /* Place it above the large circle */
}

.small-circle img {
  width: 40px;
  height: auto;
}

.section-bg {
  background-color: #ffffff;
}

.small-circle-yellow img {
  width: 40px;
  height: auto;
}

.card-body {
  padding-top: 45px;
  /* Adjust padding to make space for the icon */
}

.card-title {
  font-size: 22px;
  font-weight: bold;
  color: #666;
  margin-top: 30px;
}

.card-text {
  font-size: 15px;
  color: #666;
}

/* Highlight style for the second card */
.border-warning {
  border-color: #f99a00 !important;
}

.card-title-yellow {
  font-size: 22px;
  font-weight: bold;
  color: #f99a00;
  margin-top: 30px;
}

.color-text {
  color: #f99a00;
}

/* Slider */

/* Custom CSS for Category Viewer */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.category-slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.category-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Adjust the slider width */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
  /* Create space for arrows */
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.icon-box-trend {
  background-color: #f8f7f7;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  min-height: 100px;
  /* Adjust height as needed */
  margin: 10px;
  flex: 0 0 calc(100% / 5 - 20px);
  /* Show 5 items */
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #c2c2c2;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
  position: relative;
}

.icon-box-trend:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Default grayscale filter for icons */
.icon-box-trend .icon img {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-top: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}

/* Remove grayscale filter when the icon-box is active */
.icon-box-trend.active .icon img {
  filter: grayscale(0%) !important;
}

/* Styling for the icon-box-trend title */
.icon-box-trend h3 {
  font-size: 18px;
}

/* Style for the active state */
.icon-box-trend.active {
  transform: scale(1.05);
  background-color: #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-box-trend.active .icon img {
  filter: grayscale(0%) !important;
}

/* Optional highlighted state for special cases */
.icon-box-trend.highlighted {
  transform: scale(1.05);
  border: 2px solid #f3af19;
}

.svg-icon {
  filter: (100%) brightness(110%) sepia(300%) hue-rotate(deg) saturate(300%);
}

/* Arrow styles */
.arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  flex-shrink: 0;
  transition: opacity 0.3s;
  /* Smooth transition for opacity */
  color: #666;
  opacity: 0.2;
  /* Slightly transparent on hover */
}

.arrow:hover {
  opacity: 0.7;
  /* Slightly transparent on hover */
}

.arrow-icon-container {
  display: flex;
  justify-content: center;
  /* Center the icon horizontally */
  align-items: center;
  /* Center the icon vertically */
  width: 20px;
  /* Set a fixed width for the container */
  height: 40px;
  /* Set a fixed height for the container */
}

.arrow-icon {
  width: 100%;
  /* Make the image fill the container */
  height: auto;
  /* Maintain the aspect ratio of the image */
}

.arrow-left {
  margin-right: 10px;
  /* Space between left arrow and slider */
}

.arrow-right {
  margin-left: 10px;
  /* Space between right arrow and slider */
}

.services .icon-box .orange-bg {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: orange;
  border-radius: 20px;
  text-align: center;
  min-height: 200px;
}

/* Service provide */

.custom-box {
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.services .orange-bg {
  background-color: #f99a00;
  color: #000000;
}

.services .orange-bg h4 {
  color: #ffffff;
}

.services .yellow-bg h4 {
  color: #000000;
}

.cta {
  height: 450px;
}

.cta .icon-box p {
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
  color: #000000;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .yellow-bg {
  background-color: #ffe599;
  color: #333;
}

.icon-box hr {
  border: 0;
  height: 1px;
  background: #000000;
  width: 50%;
  margin: 10px auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f99a00;
  bottom: 0;
  left: calc(50% - 20px);
}

/* Absolute boxes */

.align-items-stretch-1 {
  -ms-flex-align: stretch !important;
  position: absolute;
  left: 5%;
  width: 420px;
  height: 420px;
}

.align-items-stretch-2 {
  -ms-flex-align: stretch !important;
  position: absolute;
  left: 35%;
  width: 420px;
  height: 420px;
}

/* .icon-box.custom-box {
  width: 100%;
  height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
} */

.align-items-stretch-3 {
  -ms-flex-align: stretch !important;
  position: absolute;
  left: 65%;
  width: 420px;
  height: 420px;
}

.services .icon-box {
  border-radius: 30px !important;
  padding: 40px !important;
  margin-top: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .align-items-stretch-1 {
    height: auto;
  }
}

/* Footer */

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000;
}

#footer .footer-top .footer-contact p {
  color: #f1f1f1;
}

#footer .footer-top .footer-links ul i {
  color: #ffffff;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top h4 {
  color: #f1f1f1;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  font-weight: normal;
}

.footer-links p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: white;
}

@media only screen and(min-width: 768px) {
  .icon-box-trend {
    flex: 0 0 200px;
  }

  .category-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .icon-box-trend {
    width: calc(100% - 20px);
    /* Show 1 slide on mobile */
    margin-right: 0;
    /* Remove margin on last element */
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .services.cta {
    position: unset;
    overflow: visible;
    /* Allow boxes to overflow */
    min-height: 450px;
    /* Increase this value as needed */
    max-width: 100%;
    width: 100%;
  }

  .align-items-stretch-1,
  .align-items-stretch-2,
  .align-items-stretch-3 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    z-index: 1;
    left: 0;
  }

  .align-items-stretch-2 {
    margin-top: -50px;
    /* Overlap the second box with the first */
    z-index: 2;
  }

  .align-items-stretch-3 {
    margin-top: -40px;
    /* Overlap the third box with the second */
    z-index: 3;
  }

  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .services .icon-box {
    border-radius: 25px !important;
    padding: 20px !important;
    margin-top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .section-title h2 {
    font-size: 30px;
  }

  .cta .icon-box p {
    font-size: 13px;
  }

  .custom-card {
    min-height: 300px;
  }

  .custom-card-yellow {
    min-height: 300px;
  }
}

@media only screen and (max-width: 425px) {
  .our-clients {
    padding: 0px;
    margin-top: 70vh;
  }
}

@media only screen and (max-width: 375px) {
  .our-clients {
    padding: 0px;
    margin-top: 110vh;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .align-items-stretch-1 {
    -ms-flex-align: stretch !important;
    /* align-items: stretch !important; */
    position: absolute;
    left: 2%;
    width: 500px;
    height: auto;
    padding: 30px;
  }

  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .align-items-stretch-2 {
    -ms-flex-align: stretch !important;
    /* align-items: stretch !important; */
    position: absolute;
    left: 34%;
    width: 700px;
    height: auto;
    padding: 30px;
  }

  .align-items-stretch-3 {
    -ms-flex-align: stretch !important;
    /* align-items: stretch !important; */
    position: absolute;
    left: 65%;
    width: 450px;
    height: auto;
    padding: 30px;
  }

  .cliens {
    margin-top: 300px !important;
  }

  .services .icon-box p {
    font-size: 14px;
  }

  .section-title {
    text-align: center;
    padding-bottom: 0;
  }

  .our-clients {
    margin-top: 45vh;
  }

  .card-text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .align-items-stretch-1 {
    -ms-flex-align: stretch !important;
    position: absolute;
    width: 250px;
    left: 5px;
    height: auto;
  }

  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .align-items-stretch-2 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 34%;
    width: 250px;
    height: auto;
  }

  .align-items-stretch-3 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 67%;
    width: 250px;
    height: auto;
  }

  .cliens {
    margin-top: 300px !important;
  }

  .services .icon-box p {
    font-size: 15px;
  }

  .services .icon-box {
    border-radius: 25px !important;
    padding: 30px !important;
    margin-top: 0;
  }

  .custom-card {
    border-radius: 35px;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 350px;
    position: relative;
    background-color: #f8f7f7;
    border: 2px solid #494949;
    margin-top: 30px;
    margin-left: 20px;
  }

  .custom-card-yellow {
    min-height: 350px;
    position: relative;
    background-color: #f8f7f7;
    border: 2px solid #f3af19;
    margin-top: 30px;
    margin-right: 20px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .services .icon-box p {
    font-size: 14px;
  }

  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px !important;
    font-size: 18px;
  }

  .section-title {
    text-align: center;
    padding-bottom: 0;
  }

  .about-text ul {
    margin-right: 20px;
  }

  .our-clients {
    margin-top: 48vh;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .custom-card {
    min-height: 400px !important;
  }

  .custom-card-yellow {
    min-height: 400px !important;
  }

  .align-items-stretch-1 {
    -ms-flex-align: stretch !important;
    position: absolute;
    width: 30%;
    left: 2%;
    height: auto;
  }

  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 25px;
  }

  .align-items-stretch-2 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 35%;
    width: 30%;
    height: auto;
  }

  .align-items-stretch-3 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 68%;
    width: 30%;
    height: auto;
  }

  .services .icon-box h4 {
    font-size: 22px !important;
  }

  .cta .icon-box p {
    font-size: 16px !important;
  }

  .custom-card-yellow {
    min-height: 450px !important;
  }

  .custom-card {
    min-height: 450px !important;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 2560px) {
  .align-items-stretch-3 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 64% !important;
    width: 25%;
    height: auto;
  }

  .align-items-stretch-2 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 38% !important;
    width: 25%;
    height: auto;
  }

  .cliens {
    margin-top: 260px !important;
  }

  .align-items-stretch-1 {
    -ms-flex-align: stretch !important;
    position: absolute;
    left: 12% !important;
    width: 25%;
    height: auto;
  }

  .cta .icon-box p {
    font-size: 20px !important;
  }

  .custom-card-yellow {
    min-height: 450px !important;
  }

  .custom-card {
    min-height: 450px !important;
  }
}

.bx-check-double:before {
  color: #f99a00;
}
