.solution-switch {
  display: inline-flex;
  align-items: center;
  background: #eef0f5;
  border-radius: 50px;
  padding: 4px;
}

.solution-switch .switch-option {
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #8a94a6;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.solution-switch .switch-option.active-switch {
  color: #20ad96;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .custom-container {
    gap: 5px;
  }
  .navbar-toggler {
    display: none !important;
  }
  .faq-collaps {
    padding-right: 12px;
    padding-left: 12px;
  }
}

/* import about from kasy */
.about-title {
  position: relative;
  z-index: 99;
  letter-spacing: 5px;
  font-size: 14px;
}
.about-title span {
  /* background-color: #0ea6e9; */
  height: 12px;
  width: 60px;
  display: inline-block;
  position: absolute;
  opacity: 0.12;
}

.about-link a {
  color: #8798ab;
  position: relative;
  display: inline-block;
  font-size: 14px;
}
.about-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9%;
  height: 1px;
  width: 50%;
  background: #8798ab;
  transition: 0.3s;
}
.about-link i {
  opacity: 0;
  transition: 0.3s;
}
.about-link:hover i {
  opacity: 1;
  margin: 0 0 0 5px;
}

.buy-about-img {
  background: linear-gradient(22deg, #f6f6f6 35%, #eeeeee calc(35% + 1px), #f6f6f6 45%, #ededed calc(45% + 1px), #ededed 65%, #f6f6f6 calc(65% + 1px), #f6f6f6 100%);
  background-blend-mode: overlay, exclusion;
  padding: 25px;
}

/* import contact from Kasy */
.contact-form .input-group-text {
  padding: 12px 15px;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  z-index: 1;
  bottom: 0;
}
.contact-form .input-group-text::before {
  content: "";
  color: rgba(37, 39, 43, 0.5);
  right: 0px;
  position: absolute;
  border-left: 15px;
  border-right: 1px solid #ced4da;
  top: 0;
  bottom: 0;
}
.contact-form .form-control {
  padding: 12px 20px !important;
  padding-left: 58px !important;
  border-color: rgba(37, 39, 43, 0.2);
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}/*# sourceMappingURL=style.css.map */

.contact-details .social-icon i {
  color: rgba(157, 157, 157, 0.7);
  transition: all 0.5s;
}

/* ===== Portfolio horizontal scroll (scroll-snap) ===== */
.portfolio-carousel {
  position: relative;
}

.portfolio-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none; /* Firefox */
}
.portfolio-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

/* 3 cards visible on desktop */
.portfolio-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

/* Navigation arrows (desktop) */
.portfolio-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.3s;
}
.portfolio-nav:hover {
  background: var(--primary, #20ad96);
  color: #fff;
}
.portfolio-nav-prev {
  left: -18px;
}
.portfolio-nav-next {
  right: -18px;
}

/* 2 cards on tablet */
@media (max-width: 1199.98px) {
  .portfolio-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* 1 card (+ peek of next) on mobile, hide arrows */
@media (max-width: 767.98px) {
  .portfolio-track {
    gap: 16px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .portfolio-card {
    flex: 0 0 85%;
  }
  .portfolio-nav {
    display: none;
  }
}