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

/* Mirror Photobooth Section with Bootstrap Carousel */
.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;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* Carousel Container */
.mirror-card-carousel {
  flex: 1 1 45%;
  min-width: 300px;
  position: relative;
}

/* Style the carousel itself */
#mirrorCarousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Carousel images */
#mirrorCarousel .carousel-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* Bootstrap carousel indicators customization */
#mirrorCarousel .carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
}

#mirrorCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: all 0.3s ease;
}

#mirrorCarousel .carousel-indicators .active {
  background-color: #1e2931;
  border-color: #1e2931;
  transform: scale(1.2);
}

/* Carousel controls styling */
#mirrorCarousel .carousel-control-prev,
#mirrorCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

#mirrorCarousel:hover .carousel-control-prev,
#mirrorCarousel:hover .carousel-control-next {
  opacity: 1;
}

#mirrorCarousel .carousel-control-prev {
  left: 15px;
}

#mirrorCarousel .carousel-control-next {
  right: 15px;
}

/* Make control icons smaller and centered */
#mirrorCarousel .carousel-control-prev-icon,
#mirrorCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

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

.mirror-card-description h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

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

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

.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #bba353;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mirror-card-container {
    flex-direction: column;
  }

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

  #mirrorCarousel .carousel-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .mirror-card {
    padding: 1.5rem;
  }

  #mirrorCarousel .carousel-image {
    height: 300px;
  }

  .mirror-card-description h3 {
    font-size: 1.5rem;
  }

  .features-list li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .mirror-card {
    padding: 1rem;
    border-radius: 15px;
  }

  #mirrorCarousel .carousel-image {
    height: 250px;
    border-radius: 15px;
  }

  #mirrorCarousel {
    border-radius: 15px;
  }

  #mirrorCarousel .carousel-control-prev,
  #mirrorCarousel .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .mirror-card-description h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

/* 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: 100%;            /* full card width */
  height: auto;   
  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;
}


.service-card img {
  width: 100%;
  height: 200px;         
  object-fit: fill;  
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.service-card h6 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.photobooth-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.5rem, 3.2vw, 3rem) clamp(1.25rem, 2.2vw, 2rem);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  width: 100%;          
  height: auto;
  min-height: 20px;  
  position: relative;
  overflow: hidden;
}

.photobooth-card img {
  width: 100%;
  height: auto;         
  object-fit: contain;  
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

#photoboothCarousel {
  position: relative;
}

#photoboothCarousel .carousel-indicators {
  position: static;
  margin-top: 12px;
  z-index: 6;
}

#photoboothCarousel .carousel-indicators [data-bs-target] {
  width: 10px; 
  height: 10px; 
  margin: 0 5px;
  border-radius: 50%;
  background-color: #1e2931;
  opacity: .4;
  border: none;
  margin: 0 6px;
}

#photoboothCarousel .carousel-indicators .active {
  opacity: 1;
}

/* Make controls prominent and clickable */
#photoboothCarousel .carousel-control-prev,
#photoboothCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  z-index: 5;
}

#photoboothCarousel .carousel-control-prev-icon,
#photoboothCarousel .carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 4px rgba(0,0,0,.6));
}

#photoboothCarousel .carousel-item {
  padding: 0 6px; 
}

#photoboothCarousel .service-card {
  min-height: 520px;
}

@media (max-width: 992px) {
  #photoboothCarousel .service-card {
    min-height: 450px;
  }
}

@media (max-width: 576px) {
  #photoboothCarousel .service-card {
    min-height: 400px;
  }
}




