
.slider {
  position: relative;
  width: 1200px;
  max-width:100%;
  height: 550px;
  margin: auto;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  border-radius: 15px 15px 0 0;
}

.slide {
  min-width: 100%;
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

.bottom-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background: #fff;
  padding: 15px 20px;
  padding-bottom: 0;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: visible;
  border-radius: 20px 20px 0 0;
  transition:all 0.3s ease-in-out;
}

/* Outer radius using pseudo-elements */
.bottom-center::before,
.bottom-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 40px;
  background: #fff;
  border-radius: 0;
  z-index: -1;
}

.bottom-center::before {
  left: -30px;
  bottom: -10px;
  mask: radial-gradient(30px at top left, #0000 98%, #000);
}

.bottom-center::after {
  right: -30px;
  bottom: -10px;
  mask: radial-gradient(30px at top right, #0000 98%, #000);
}

.bottom-center h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #333;
}

.bottom-center p {
  margin: 5px 0 10px;
  color: #666;
  font-size: 14px;
}

.luxury-heading {
  font-family: "Gloock", serif;
  font-weight: 700;
  font-size: 2.9rem;
  color: #2c2a29; /* deep charcoal */
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
  text-transform: capitalize;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.luxury-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #6b5b3b; /* warm gold-brown */
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0;
  opacity: 0.85;
}

.buttons {
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.btn {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin: 0 10px;
  user-select: none;
  margin-bottom:10px;
}

.btn.primary {
  background-color: #ffc727;
  color: #222;
  box-shadow: 0 4px 12px rgba(255, 199, 39, 0.4);
}

.btn.primary:hover {
  background-color: #ffb400;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.5);
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: transparent;
  color: #ffc727;
  border: 2px solid #ffc727;
}

.btn.secondary:hover {
  background-color: #fff8e1;
  color: #222;
  border-color: #ffb400;
  transform: translateY(-2px);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}


@media(max-width:768px){
  .slider {
    width:95%;
    height:400px;
  }
  .slider{
    border-radius:10px;
  }
  .btn{
    margin:5px;
  }
  .bottom-center {
    width: 80%;
    border-radius:10px;
  }
  .bottom-center::before {
  left: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top left, #0000 98%, #000);
}

.bottom-center::after {
  right: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top right, #0000 98%, #000);
}
}

@media(max-width:414px){
  .bottom-center{
    border-radius:10px 10px 0 0;
  }
   .btn{
    width:100%;
    margin:5px 0;
  }
   .bottom-center::before,.bottom-center::after {
    display:none;
}

}