
.btn-primary {
    background: linear-gradient(45deg, #bba353, #f8d7da);
}

/*Mirror Section*/
.mirror-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.5rem, 3.2vw, 3rem);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 1200px;
}

.mirror-card-container {
  display: flex;
  align-items: flex-start; /* align to top */
  gap: 2rem;
  flex-wrap: nowrap; /* don't wrap on desktop */
}

/* Left side carousel */
.mirror-card-carousel {
  flex: 1 1 45%;
  min-width: 300px;
  position: relative; /* keep buttons positioned relative to this container */
  overflow: hidden;
  border-radius: 20px;
  display: flex; /* ensure child fills this container */
  justify-content: center;
  align-items: center;
}

.carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
}


.carousel-image {
  width: 100%;
  height: 400px; /* fixed height for all images */
  object-fit: cover;
  display: none;
  border-radius: 20px;
  position: absolute; /* stack images on top of each other */
  top: 0;
  left: 0;
}

.carousel-image.active {
  display: block;
  position: relative; /* make active image participate in layout */
}

/* Buttons on top of carousel */
.carousel-btn {
  position: absolute; /* absolute inside .mirror-card-carousel */
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px; /* distance from left */
}

.carousel-btn.next {
  right: 10px; /* distance from right */
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: rgba(255,255,255,0.9);
}

.mirror-card-description {
  flex: 1 1 50%; /* take ~50% of width */
  min-width: 300px;
  text-align: left;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.5rem 0;
}

.features-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Custom bullet */
.features-list li::before {
  content: "✔"; /* check mark */
  position: absolute;
  left: 0;
  color: #d4af37; /* gold accent */
  font-weight: bold;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
  .mirror-card-container {
    flex-wrap: wrap; /* stack */
  }

  .mirror-card-carousel,
  .mirror-card-description {
    flex: 1 1 100%; /* full width */
  }
}



/* Why Choose Us Section */
.feature-icon {
    background: linear-gradient(45deg, #bba353, #f8d7da);
}

/* Section Styles */
.service-icon {
  background: linear-gradient(45deg, #bba353, #f8d7da);
  box-shadow: 0 10px 30px rgba(212, 99, 214, 0.3);
}

/*CTA Section*/
.contact-item i {
    color: #bba353;
}

/*Services Carousel*/
.icon-box {
  width: 250px;       /* increase size */
  height: 180px;      /* keep it square */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8; /* optional background */
  border-radius: 12px; /* square with rounded corners */
  font-size: 36px;    /* make the icon itself bigger */
  margin: 0 auto 2rem;
  overflow: hidden !important; /* ensures image stays inside circle */
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.service-card h6 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
}


.service-icon img.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


/*Photo Strips*/
.modal-photo-strip {
  width: 70%;
  height: 100%; /* match main section */
  object-fit: cover;
  border-radius: 0 0 15px 15px;
}




