/* === OWL Carousel is loaded via CDN, leave that in HTML === */
/* === Your Custom Swiper, Carousel, and Partner Styles === */

.slider-container {
  max-width: 1200px;
  margin: 40px auto 60px auto;
}

.mySwiper {
  padding-bottom: 20px;
  overflow: visible;
}

.mySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.mySwiper .swiper-slide {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
  background: white;
  position: relative;
  cursor: grab;
  user-select: none;
}
.mySwiper .swiper-slide:active {
  cursor: grabbing;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.mySwiper .swiper-slide:hover img {
  transform: scale(1.05);
}
.slide-text {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: white;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  font-size: 1.1rem;
  pointer-events: none;
}

/* F&B/AK7 */
/* Blurred background for slides */
.swiper-slide.blurred-bg {
  position: relative;
  background: #f7f7f7 !important;
  overflow: hidden;
}
.swiper-slide.blurred-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(16px) brightness(0.75);
  z-index: 0;
  transition: background-image 0.2s;
}
.swiper-slide img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: none;
}
.swiper-slide.blurred-bg img {
  object-fit: contain;
  background: none;
}




/* === RS Carousel / Partner Section === */
.rs-carousel-container {
  overflow: hidden;
  padding: 0 98px;
  box-sizing: border-box;
}

.rs-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.rs-carousel-track img {
  width: 180px;
  flex-shrink: 0;
  object-fit: contain;
}

@keyframes scrollOneByOne {
  0%    { transform: translateX(0); }
  10%   { transform: translateX(-196px); }
  20%   { transform: translateX(-392px); }
  30%   { transform: translateX(-588px); }
  40%   { transform: translateX(-784px); }
  50%   { transform: translateX(-980px); }
  60%   { transform: translateX(-1176px); }
  70%   { transform: translateX(-1372px); }
  80%   { transform: translateX(-1568px); }
  90%   { transform: translateX(-1764px); }
  100%  { transform: translateX(-1960px); }
}

.partner-item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-item img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  display: block;
  transition: filter 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
}

.partner-item:hover img {
  filter: brightness(1.15);
}

/* Responsive */
@media (max-width: 1200px) {
  .partner-item {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 900px) {
  .partner-item {
    width: 120px;
    height: 90px;
  }
  .partner-item img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 600px) {
  .partner-item {
    width: 100px;
    height: 80px;
  }
  .partner-item img {
    max-width: 80px;
    max-height: 45px;
  }
}



/* Book a callback */
/* AK7 */


/* Backdrop */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 999;
}

/* Modal outer border */
.modal-outer-border {
  padding: 2px;
  background: linear-gradient(to right, #0d6efd, #6610f2, #6f42c1);
  border-radius: 18px;
  max-width: 450px;
  margin: 5% auto;
}

/* Modal content */
.modal-content.pro-design {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  text-align: center;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  box-shadow: 0 8px 36px rgba(0,0,0,0.1);
  animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Icon badge */
.modal-icon-badge {
  width: 68px; height: 68px;
  background: linear-gradient(to right, #0d6efd, #6610f2, #6f42c1);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  margin: -68px auto 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Title & subtitle */
.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}
.modal-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
}
.close-btn:hover {
  color: #0d6efd;
}

/* Form */
.form-group { text-align: left; margin-bottom: 1rem; }
label { font-weight: 500; font-size: 0.88rem; color: #444; }
input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.4px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
input:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 2px rgba(13,110,253,0.15);
}

/* Phone input row */
.phone-input { display: flex; gap: 0.5rem; align-items: center; }
.phone-input input[type="tel"] { flex: 1; }

/* Country select */
.custom-select { position: relative; min-width: 120px; }
.custom-select .selected {
  border: 1.4px solid #ccc;
  padding: 0.68rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}
.custom-select img { width: 20px; height: 14px; }
.custom-select .options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 200px;
  z-index: 1000;
}
.custom-select .options div {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.custom-select .options div:hover {
  background: #f6f6f6;
}

/* Terms */
.terms { font-size: 0.75rem; color: #666; margin-top: 0.3rem; margin-bottom: 1rem; }
.terms a { color: #0d6efd; text-decoration: none; }
.terms a:hover { text-decoration: underline; }

/* Button */
.submit-btn {
  background: linear-gradient(to right, #0d6efd, #6610f2, #6f42c1);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

