.wows-chandra-container {
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.wows-chandra-container:not(.initialized) {
  display: block;
}

.wows-chandra-container:not(.initialized) .wows-chandra-banner {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  text-align: center;
  padding: 20px;
}

.wows-chandra-container:not(.initialized) .wows-chandra-center-image {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 0 auto 20px;
  display: block;
}

.wows-chandra-container:not(.initialized) .wows-chandra-slider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.wows-chandra-container:not(.initialized) .wows-chandra-item {
  position: relative;
  flex: 0 0 auto;
  margin: 5px;
}

.wows-chandra-banner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.wows-chandra-slider {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
}

.wows-chandra-center-image {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: floatAnimation 6s ease-in-out infinite;
}

.wows-chandra-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-51%, -49%);
  }
  50% {
    transform: translate(-50%, -51%);
  }
  75% {
    transform: translate(-49%, -50%);
  }
}
.wows-chandra-item {
  position: absolute;
  width: 120px;
  height: 180px;
  left: 50%;
  margin-left: -60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.wows-chandra-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wows-chandra-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wows-chandra-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: relative;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 40px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1002;
}

.wows-chandra-modal.show .wows-chandra-modal-content {
  transform: scale(1);
  opacity: 1;
}

.wows-chandra-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
  color: #ff8484;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1003;
}

.wows-chandra-modal-content-wrapper {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  flex-wrap: wrap;
}

.wows-chandra-modal-left {
  display: flex;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.wows-chandra-modal.show .wows-chandra-modal-left {
  transform: translateX(0);
  opacity: 1;
}

.wows-chandra-modal-image {
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.wows-chandra-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: flex;
}

.wows-chandra-modal-image:hover img {
  transform: scale(1.05);
}

.wows-chandra-modal-right {
  max-width: 600px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.wows-chandra-modal.show .wows-chandra-modal-right {
  transform: translateX(0);
  opacity: 1;
}

.wows-chandra-modal-right .wows-chandra-modal-title {
  color: #0d0925;
  font-size: 30px;
  margin: 10px 0px;
}

.wows-chandra-modal-right .wows-chandra-modal-description {
  color: #0d0925;
  margin-bottom: 20px;
}

.wows-chandra-modal-btn {
  background-color: rgba(0, 0, 0, 0.7294117647);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.wows-chandra-modal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.wows-chandra-modal-btn:hover::before {
  left: 100%;
}

.wows-chandra-modal-btn:hover {
  transform: translateY(-2px) scale(1.01);
  background-color: #FE506C;
}

.wows-chandra-modal-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wows-chandra-modal-btn .wows-chandra-svg-icon {
  fill: white;
}

/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .wows-chandra-slider {
    width: 160px;
    height: 160px;
  }
  .wows-chandra-center-image {
    width: 160px;
    height: 240px;
    top: 50%;
  }
  .wows-chandra-item {
    width: 100px;
    height: 150px;
    left: 50%;
    margin-left: -50px;
  }
  .wows-chandra-modal-right .wows-chandra-modal-title {
    margin-bottom: 15px;
  }
  .wows-chandra-modal-right .wows-chandra-modal-description {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wows-chandra-slider {
    width: 120px;
    height: 120px;
  }
  .wows-chandra-center-image {
    width: 140px;
    height: 210px;
  }
  .wows-chandra-item {
    width: 80px;
    height: 120px;
    left: 50%;
    margin-left: -40px;
  }
  .wows-chandra-modal-content {
    flex-direction: column;
  }
  .wows-chandra-modal-left {
    flex: none;
    height: 300px;
    width: 100%;
  }
  .wows-chandra-modal-image {
    max-width: 100%;
    height: 100%;
  }
  .wows-chandra-modal-right {
    flex: none;
    justify-content: center;
    padding-left: 0;
  }
  .wows-chandra-modal-right .wows-chandra-modal-title {
    margin-bottom: 15px;
  }
  .wows-chandra-modal-right .wows-chandra-modal-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .wows-chandra-modal-btn {
    font-size: 0.9rem;
  }
  .wows-chandra-close-btn {
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .wows-chandra-slider {
    width: 100px;
    height: 100px;
  }
  .wows-chandra-center-image {
    width: 120px;
    height: 180px;
    top: 50%;
  }
  .wows-chandra-item {
    width: 70px;
    height: 105px;
    left: 50%;
    margin-left: -35px;
  }
  .wows-chandra-modal-content {
    padding: 30px;
  }
  .wows-chandra-close-btn {
    top: 0;
    right: 10px;
  }
  .wows-chandra-modal-left {
    margin-top: 20px;
  }
  .wows-chandra-modal-right .wows-chandra-modal-title {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }
  .wows-chandra-modal-right .wows-chandra-modal-description {
    font-size: 0.9rem;
    margin-top: 10px;
  }
}
.wows-chandra-navigation-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 100;
  pointer-events: none;
}

.wows-chandra-nav-btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  background-color: transparent;
}

.wows-chandra-nav-btn:active {
  transform: scale(1.1);
}

.wows-chandra-nav-btn i {
  font-size: 20px;
}

.wows-chandra-pagination-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 100;
}

.wows-chandra-pagination-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wows-chandra-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.wows-chandra-pagination-dot.active {
  background: #00a02b;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
  .wows-chandra-navigation-buttons {
    padding: 0 15px;
  }
  .wows-chandra-nav-btn {
    width: 45px;
    height: 45px;
  }
  .wows-chandra-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  .wows-chandra-pagination-container {
    bottom: calc(30% - 30px);
  }
  .wows-chandra-pagination-dot {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 480px) {
  .wows-chandra-navigation-buttons {
    padding: 0 10px;
  }
  .wows-chandra-nav-btn {
    width: 40px;
    height: 40px;
  }
  .wows-chandra-nav-btn svg {
    width: 16px;
    height: 16px;
  }
  .wows-chandra-pagination-container {
    bottom: calc(35% - 30px);
  }
  .wows-chandra-pagination-dot {
    width: 8px;
    height: 8px;
  }
}