/**
 * Home page (`index.html`) custom styles
 * Keep global/shared styles in `assets/css/main.css`.
 */

/* Hero Slider (Swiper) */
.logo-img {
  width:12rem;
}
@media (max-width: 768px) {
  .logo-img {
    width: 8rem;
  }
}

.hero.hero--swiper:before {
  display: none;
}

.hero.hero--swiper .hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero.hero--swiper .hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero--swiper .hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.hero.hero--swiper .hero-swiper .container {
  position: relative;
  z-index: 2;
}

.hero.hero--swiper .hero-swiper .swiper-pagination {
  z-index: 2;
}

/* Hero hover navigation arrows */
.hero.hero--swiper .hero-swiper .hero-prev,
.hero.hero--swiper .hero-swiper .hero-next {
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  color: #ffffff;
}

.hero.hero--swiper .hero-swiper .hero-prev::after,
.hero.hero--swiper .hero-swiper .hero-next::after {
  font-size: 18px;
  font-weight: 700;
}

.hero.hero--swiper:hover .hero-prev,
.hero.hero--swiper:hover .hero-next,
.hero.hero--swiper:focus-within .hero-prev,
.hero.hero--swiper:focus-within .hero-next {
  opacity: 1;
  pointer-events: auto;
}

.hero.hero--swiper .hero-prev {
  transform: translateX(-6px);
}

.hero.hero--swiper .hero-next {
  transform: translateX(6px);
}

.hero.hero--swiper:hover .hero-prev,
.hero.hero--swiper:focus-within .hero-prev,
.hero.hero--swiper:hover .hero-next,
.hero.hero--swiper:focus-within .hero-next {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .hero.hero--swiper .hero-swiper .hero-prev,
  .hero.hero--swiper .hero-swiper .hero-next {
    opacity: 1;
    pointer-events: auto;
  }
}

.hero .btn-secondary-cta {
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 45%);
  color: var(--contrast-color);
}

.hero .btn-secondary-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  border-color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

/* Partner / client slider placeholder tokens (until real logos are added) */
.clients .partner-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: color-mix(in srgb, var(--surface-color), transparent 15%);
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  user-select: none;
  transition: 0.3s;
}

.clients .partner-logo:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 86%);
}

@media (max-width: 768px) {
  .partners-section {
    padding: 30px 0 60px 0;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }
}

.btn-getstarted.text-white:hover {
  color:#089bea !important;
}