@import url(mainstyle.css);

* {
  font-family: var(--primefont);
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}

[data-luggoswift-theme="dark"] [data-logo="dark"],
[data-luggoswift-theme="light"] [data-logo="light"] {
  display: block;
}

[data-luggoswift-theme="dark"] [data-logo="light"],
[data-luggoswift-theme="light"] [data-logo="dark"] {
  display: none;
}
.nav-link {
  color: var(--nav-text);
  transition: color 0.3s ease;
}

/* Active and hover state */
.nav-item.active .nav-link,
.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
  color: var(--prime-text) !important;
} 
/* icons */
.icon-bg {
  min-width: 45px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--icon-text);
}
.icon-bg-lg {
  min-width: 80px;
  min-height: 80px;
}
.icon-bg:hover {
  background-color: var(--prime-btn2);
}

/* Banner CSS */
#banner-slider {
  min-height: 900px;
}
.slide-1 {
  background: linear-gradient(
      0deg,
      rgba(var(--banner-bg), 0.65),
      rgba(var(--banner-bg), 0.4)
    ),
    url("../../assets/images/slide-1.webp") no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 900px;
}
.slide-2 {
  background: linear-gradient(
      90deg,
      rgba(var(--banner-bg), 0.65),
      rgba(var(--banner-bg), 0.4)
    ),
    url("../../assets/images/slide-2.webp") no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 900px;
}
.slide-3 {
  background: linear-gradient(
      0deg,
      rgba(var(--banner-bg), 0.65),
      rgba(var(--banner-bg), 0.4)
    ),
    url("../../assets/images/slide-3.webp") no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 900px;
}
.splide-container {
  width: 800px;
  max-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.testimonial-list{
  align-items: start;
}
.splide-container.active {
  opacity: 1;
  transform: translateY(0); /* move up to normal position */
}
.splide__arrow {
  background: var(--prime-bg);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  opacity: 1;
}
.splide__arrow svg {
  font-size: 24px;
  fill: var(--white-text);
}
@media (max-width: 1199px) {
  .splide__arrow,
  .search-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  #banner-slider,.slide-1,
  .slide-2,.slide-3{
    min-height: 650px;
  }
}
.spot-img {
  overflow: hidden;
  border-radius: 10px;
}

.spot-img img {
  filter: grayscale(100%);
  transition: all 0.6s ease;
}

.spot-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.circle-number {
  min-width: 40px;
  min-height: 40px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
}

.service-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.service-card-box {
  transition: all 0.4s ease;
}
#service {
  z-index: 1;
  margin-top: -180px;
}

/* Give slides some visible style */
.splide__slide {
  padding: 20px;
}
.testimonial-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  outline: 2px solid var(--prime-border);
  outline-offset: 2px;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: #ccc;
}

.star:before {
  content: "★";
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}
.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}
.workflow-card-img {
  width: 180px;
}
.workflow-card-img img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
}
.count {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--prime-bg);
  color: var(--white-text);
  position: absolute;
  left: 0;
}
.input-text::placeholder {
  color: var(--para-text); /* light gray (you can adjust this) */
}
.form-control:focus {
  border: 1px solid rgb(221, 220, 220);
  box-shadow: none;
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}
#backtotop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  width: 50px !important;
  min-width: unset;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border{
  border-color: var(--light-border) !important;
}
.error{
  color: red;
}
#newsletter{
  position: relative;
}
#newsletter div.error{
  position: absolute;
  bottom: -24px;
}