/* Base Styles */
:root {
  --primary-color: #c0392b;
  --secondary-color: #8e44ad;
  --accent-color: #f5c46b;
  --dark-color: #3e2b23;
  --light-color: #fff8f0;
  --text-color: #333;
  --white: #fff;
  --black: #121010;
  --transition: all 0.3s ease;
}

/* Section Glow Lines - Top and Bottom, continuous running */
section {
  position: relative;
}

section::before,
section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--primary-color) 0%,
    var(--accent-color) 33%,
    var(--secondary-color) 66%,
    var(--primary-color) 100%
  );
  background-size: 300% 100%;
  animation: runningSectionGlow 6s linear infinite;
  pointer-events: none;
}

section::before { top: 0; }
section::after  { bottom: 0; animation-delay: 3s; }

@keyframes runningSectionGlow {
  0%   { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* Section Animations */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Header & Navigation */



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  
  background-color: rgba(255,255,255,0.95); 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.transparent-header {
  background-color: transparent;
  box-shadow: none;
  
}


header.transparent-header nav {
  background-color: transparent;
}

header.transparent-header .main-nav a,
header.transparent-header .sidebar a {
  color: #fff;
}

header.transparent-header .main-nav a:hover,
header.transparent-header .sidebar a:hover {
  color: var(--primary-color); /* or keep white if needed */
}


header.transparent-header .menu-btn {
  color: #fff;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background-color:#ffffff;
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 20px rgba(227,228,237,0.37);
  border: 2px solid rgba(255,255,255,0.18);
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 1rem;
  /* padding: 1px 0px; */
  
  margin-left: 15px;
  
  
}

.main-nav, .sidebar {
  display: flex;
  list-style: none;
  align-items: center;


}

.main-nav li, .sidebar li {
  margin-left: 20px;
}

.main-nav a, .sidebar a {
  font-weight: 500;
  padding: 8px 15px;
  transition: var(--transition);
  border-radius: 5px;

  color: #333; /* or your default color */
  transition: color 0.3s ease;

}

.main-nav a:hover, .sidebar a:hover {
  color: var(--primary-color);
  background: linear-gradient(to right,black, rgb(51, 111, 120),rgb(233, 13, 104)); 
  background-clip: text; 
  
  -webkit-text-fill-color: transparent;
}

.menu-btn, .close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  border: 1px solid rgba(245,196,107,0.35);
}

.menu-btn:hover, .close-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.menu-btn:active, .close-btn:active {
  transform: scale(0.98);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: transparent; 
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  flex-direction: column;
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 1001;


  
}

.sidebar.active {
  right: 0;
}

.sidebar li {
  margin: 15px 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Hero Section */




.hero {
   position: relative; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero1.webp') no-repeat center center/cover;
  transition: background-image 1s ease;
}

.hero-content h1 {
  font-size: 4rem;
  background: linear-gradient(to right, white, rgb(89, 204, 18),rgb(199, 35, 103)); 
  background-clip: text; 
   
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
  color: #e09809;
  animation: pulse 2s infinite;
   

}

.hero-content p {
  font-size: 1.5rem;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(238, 238, 29),rgb(199, 35, 103)); 
  background-clip: text; 
   
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}


.button {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.button:hover {
  box-shadow: .5px .5px 150px #252525;
}

.type1::after {
  content: "Thanks";
  height: 50px;
  width: 150px;
  color: #fff;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(50px);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;

  background-color: var(--primary-color);
}

.type1::before {
  content: "BOOK NOW";
  height: 50px;
  width: 150px;
  background-color: #fff;
  color: black;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(to right,black, rgb(51, 111, 120),rgb(233, 13, 104)); 
  background-clip: text; 
  
  -webkit-text-fill-color: transparent;
}

.type1:hover::after {
  transform: translateY(0) scale(1.2);
}

.type1:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}



/* about section  */

.about-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  align-items: center;
  gap: 3rem;
}

.about-text, .about-image {
  flex: 1;
  min-width: 300px; /* Minimum width before wrapping */
}

.about-text h2 {
  text-align: left; /* Align h2 to left in about section */
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.about-image {
  position: relative;
  padding: 4px; /* Space for the glow border */
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px; /* Slightly larger than image border-radius */
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  );
  background-size: 400% 400%;
  animation: runningGlow 3s linear infinite;
  z-index: -1;
  opacity: 0.8;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 14px;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  ) border-box;
  background-size: 400% 400%;
  animation: runningBorder 3s linear infinite;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
  display: block;
}

.about-image img:hover {
  transform: scale(1.02);
}

@keyframes runningGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}






/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--light-color);
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  /* box-shadow: 1px 5px 15px rgba(193, 44, 44, 0.05), -1px -5px 15px rgba(225, 136, 136, 0.05); */
  box-shadow: 1px 2px 10px rgb(200, 80, 50),-1px -2px 10px rgb(200, 80, 50);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

/* Gallery Section */
.trending-section {
  padding: 80px 0;
  background-color: white;
}

.trending-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.trending-carousel {
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.trending-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 10px;
  width: max-content;
  animation: infiniteScroll 30s linear infinite;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-item {
  flex: 0 0 auto;
  width: 250px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 10px;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  ) border-box;
  background-size: 400% 400%;
  animation: runningBorder 3s linear infinite;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

@keyframes runningBorder {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item:hover img {
  transform: scale(1.1);
}

/* Appointment Section */

#paymentType {
  width: 100%;
  padding: 14px 16px;
  margin: 16px 0;
  border: 2px solid transparent; /* border comes from gradient below */
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #4a2c2a; /* deep brown */
  background: 
    linear-gradient(to right, #fff, #fff5f7) padding-box, 
    linear-gradient(90deg, 
      #b76e79,   /* rose gold */
      #ff4081,   /* pink glow */
      #d4af37,   /* gold */
      #b76e79    /* back to rose gold */
    ) border-box;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: glowingBorder 4s linear infinite;
  box-shadow: 0 0 10px rgba(183, 110, 121, 0.2);
}
/* Hover effect */
#paymentType:hover {
  box-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
  transform: scale(1.01);
}

/* Focus effect */
#paymentType:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}
#packageType {
  width: 100%;
  padding: 14px 16px;
  margin: 16px 0;
  border: 2px solid transparent; /* border comes from gradient below */
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #4a2c2a; /* deep brown */
  background: 
    linear-gradient(to right, #fff, #fff5f7) padding-box, 
    linear-gradient(90deg, 
      #b76e79,   /* rose gold */
      #ff4081,   /* pink glow */
      #d4af37,   /* gold */
      #b76e79    /* back to rose gold */
    ) border-box;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: glowingBorder 4s linear infinite;
  box-shadow: 0 0 10px rgba(183, 110, 121, 0.2);
}

/* Hover effect */
#packageType:hover {
  box-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
  transform: scale(1.01);
}

/* Focus effect */
#packageType:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Animate gradient border */
@keyframes glowingBorder {
  0% {
    background: 
      linear-gradient(to right, #fff, #fff5f7) padding-box, 
      linear-gradient(90deg, #b76e79, #ff4081, #d4af37, #b76e79) border-box;
  }
  50% {
    background: 
      linear-gradient(to right, #fff, #fff5f7) padding-box, 
      linear-gradient(270deg, #d4af37, #ff4081, #b76e79, #d4af37) border-box;
  }
  100% {
    background: 
      linear-gradient(to right, #fff, #fff5f7) padding-box, 
      linear-gradient(90deg, #b76e79, #ff4081, #d4af37, #b76e79) border-box;
  }
}

/* Option Styling */
#paymentType option {
  background: #fff;
  color: #4a2c2a;
  padding: 12px;
  font-size: 1rem;
}
#pachageType option {
  background: #fff;
  color: #4a2c2a;
  padding: 12px;
  font-size: 1rem;
}

input[type="date"] {
  color: var(--text-color);
  font-size: 1rem;
}


.appointment-section {
  padding: 80px 0;
  background-color: var(--white);
}

.appointment-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
  box-shadow: 1px 2px 10px rgb(200, 80, 50),-1px -2px 10px rgb(200, 80, 50);
}

.left-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
  /* color: var(--accent-color); */
}

.animated-name {
  color: var(--primary-color);
  font-weight: bold;
  animation: colorchange 3s infinite;
}


@keyframes colorchange {
  0% { color: var(--primary-color); }
  50% { color: var(--secondary-color); }
  100% { color: var(--primary-color); }
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  margin-right: 20px;
}

.form-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-box h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  
}

.form-box h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  transition: var(--transition);
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 1px 2px 10px rgb(135, 118, 113),-1px -2px 10px rgb(148, 133, 130);

}

.submit-btn:hover {
  background-color: var(--secondary-color);
}



/* update artist section */

.portfolio-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 0.85rem;
  margin-top: auto;
}

.portfolio-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.portfolio-btn {
  position: relative;
  z-index: 10;
}

.artist-section {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.artist-section h2 {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.artist-carousel {
  position: relative;
  height: 420px;
  width: 100%;
  perspective: 1000px;
}

.carousel-member {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 480px;
  transition: all 0.5s ease-in-out;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  cursor: default;
  transform: translate(-50%, -50%);
}

.carousel-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 0.75rem;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  ) border-box;
  background-size: 400% 400%;
  animation: runningBorder 3s linear infinite;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.carousel-member.active {
  z-index: 10;
}

.member-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 4px;
}

.member-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.member-image img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  flex-shrink: 0;
}

.member-image img[src] {
  animation: none;
  background: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}


.carousel-member h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #3e2b23;
  margin-bottom: 0.25rem;
}

.carousel-member .role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.carousel-member .bio {
  color: #4b5563;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  flex-grow: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f8f4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e44ad;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #8e44ad;
  color: white;
}

/* Themed Loader */
.mm-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--dark-color);
}

.mm-loader .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.35);
  animation: mm-bounce 1s infinite ease-in-out;
}

.mm-loader .dot:nth-child(2) {
  background: var(--accent-color);
  animation-delay: 0.15s;
}

.mm-loader .dot:nth-child(3) {
  background: var(--secondary-color);
  animation-delay: 0.3s;
}

@keyframes mm-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.7; }
  40% { transform: translateY(-8px); opacity: 1; }
}

/* Loader containers */
.artist-loader,
.reels-loader {
  width: 100%;
  display: none; /* hidden by default, toggled by JS */
  justify-content: center;
  align-items: center;
  min-height: 200px; /* Give some height for proper centering */
}


/* Updated carousel controls based on your HTML */
.artist-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.artist-carousel-controls button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-color, #8e44ad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.artist-carousel-controls button:hover {
  background: #6c3483;
}

/* Indicators styling */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.carousel-indicators button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicators button.active {
  background: var(--primary-color);
  width: 1.5rem;
}

/* Responsive Design */
@media (max-width: 640px) {
  .artist-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }

  .artist-carousel {
    height: 450px;
    overflow: hidden;
  }

  .carousel-member {
    width: 280px;
    height: 380px;
    padding: 1.25rem;
    top: 50%;
    left: 50%;
    transform-origin: center center;
  }

  .member-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 3px;
  }

  .member-image:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  }

  .member-image img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }

  .carousel-member h3 {
    font-size: 1.25rem;
  }

  .carousel-member .role {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .carousel-member .bio {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .social-links a {
    width: 2rem;
    height: 2rem;
  }

  .social-links a i {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 400px) {
  .artist-carousel {
    height: 400px;
  }

  .carousel-member {
    width: 240px;
    height: 340px;
    padding: 1rem;
  }

  .member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 3px;
  }

  .member-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .member-image img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }

  .carousel-member h3 {
    font-size: 1.125rem;
  }

  .carousel-member .role {
    font-size: 0.75rem;
  }

  .carousel-member .bio {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .social-links a {
    width: 1.75rem;
    height: 1.75rem;
  }

  .social-links a i {
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* pricing section */
.pricing-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--background-color, #faf7f5);
}

.pricing-section .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color, #7b2e2e);
  font-weight: 700;
}

/* Cards Grid - Desktop */
.pricing-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Card */
.pricing-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 16px;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  ) border-box;
  background-size: 400% 400%;
  animation: runningBorder 3s linear infinite;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ✅ Top Badge (instead of corner ribbon) */
.pricing-card .badge-top {
  display: block;
  background: var(--secondary-color, #d4af37);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  margin: -2rem -1.5rem 1rem -1.5rem; /* stretch full width */
  text-align: center;
}

/* Card Title */
.pricing-card h3 {
  color: var(--primary-color, #7b2e2e);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Price */
.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color, #d4af37);
  margin-bottom: 1rem;
}

/* Feature List */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  color: #444;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: "✔";
  color: var(--secondary-color, #d4af37);
  font-weight: bold;
  margin-right: 8px;
}

/* Button */
.pricing-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--primary-color, #7b2e2e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
  background: var(--secondary-color, #d4af37);
  color: #222;
  transform: translateY(-2px);
}

/* Highlight Popular Card */
.pricing-card.popular {
  border: 2px solid var(--secondary-color, #d4af37);
  background: #fffbe6;
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.popular::before {
  display: none;
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .pricing-cards {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-card {
    flex: 0 0 85%; /* big tap area */
    scroll-snap-align: center;
  }

  .pricing-card .badge-top {
    font-size: 0.8rem;
    padding: 6px;
  }
}








/* Testimonials Section */
.testimonial-section {
  padding: 80px 0;
  background-color: rgb(250, 233, 236);
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-container {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;

}

.testimonial {
  min-width: 300px;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial h4 {
  color: var(--primary-color);
  font-weight: 600;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* .faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
} */
 .faq-item {
  background: #fff;              /* white background */
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  position: relative;
  border: 2px solid transparent; /* keeps spacing for glow */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Glow border effect */
.faq-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  background: linear-gradient(45deg, #7b2e2e, #d4af37, #7b2e2e);
  background-size: 300% 300%;
  z-index: -1;
  animation: glowLine 6s linear infinite;
}

/* Glow Animation */
@keyframes glowLine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover interaction (optional) */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); /* gold glow */
}


.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #7b2e2e);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--secondary-color, #d4af37);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.faq-answer p {
  margin: 0.5rem 0 1rem;
  color: #444;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for 2–3 lines */
  padding: 0 1rem 1rem;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #7b2e2e);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--secondary-color, #d4af37);
}

.faq-question .icon {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color, #d4af37);
}

.faq-item.active .icon {
  transform: rotate(180deg);
  content: "−";
}

.faq-section .section-title {
  text-align: center;         /* Center the title */
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color, #7b2e2e);
  margin-bottom: 2rem;
  position: relative;
}
.faq-section {
  background-color: #ffffff;  /* White background */
  padding: 2rem;
  border-radius: 12px;        /* Optional: smooth edges */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Optional: subtle shadow */
}


/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #2c1a16 35%, var(--primary-color) 100%);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
  border-radius: 1rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Themed Mobile Navigation */
@media (max-width: 768px) {
  .menu-btn, .close-btn {
    display: flex;
  }

  .sidebar {
    width: 85%;
    right: -100%;
    background: linear-gradient(160deg, rgba(62,43,35,0.92), rgba(62,43,35,0.86) 40%, rgba(192,57,43,0.15) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 3px solid var(--accent-color);
    padding: 80px 16px 24px;
    align-items: stretch;
  }

  .sidebar.active { right: 0; }

  .sidebar li { margin: 10px 0; }

  .sidebar a {
    display: block;
    color: var(--white);
    font-weight: 600;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(245,196,107,0.25);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .sidebar a:hover {
    background: linear-gradient(135deg, rgba(192,57,43,0.18), rgba(231,76,60,0.18));
    border-color: rgba(245,196,107,0.45);
    transform: translateX(6px);
  }

  .sidebar a:active { transform: translateX(4px) scale(0.99); }
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main-nav li:not(:last-child) {
    display: none;
  }
  
  .menu-btn, .close-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .appointment-section .container {
    grid-template-columns: 1fr;
  }
  
  .slider img {
    width: 250px;
    height: 350px;
  }
  
  .chatbot-container {
    width: 300px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .carousel-item {
    width: 200px;
    height: 300px;
  }
  
  .artist-slider {
    grid-template-columns: 1fr;
  }
}



/* Remove the override that breaks animation on mobile */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: row;     /* keep horizontal */
    animation: scrollTestimonials 30s linear infinite; /* keep scrolling */
    width: max-content;      /* same as desktop */
  }

  .testimonial {
    min-width: 250px;   /* adjust for smaller screens */
    max-width: 80vw;    /* prevent overflow */
  }
}








/* Customer Reels Section */
.customer-reels-section {
  padding: 80px 0;
  background-color: white;
}

.customer-reels-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.reels-controls {
  text-align: center;
  margin-bottom: 30px;
}

.reels-instructions {
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.reels-instructions i {
  color: var(--primary-color);
}

.reels-carousel {
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
}

.reels-carousel .carousel-track {
  display: flex;
  gap: 20px;
  padding: 10px;
  width: max-content;
  will-change: transform;
}

.reels-carousel .carousel-track:hover {
  animation-play-state: paused;
}

/* Static state (no animation) */
.reels-carousel .carousel-track.static {
  width: 100%;
  justify-content: center;
  animation: none;
}

/* Animated state */
.reels-carousel .carousel-track.animated {
  animation: infiniteScroll 20s linear infinite;
}

.reels-carousel .carousel-item {
  flex: 0 0 auto;
  width: 250px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.reels-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 10px;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%,
    var(--accent-color) 25%,
    var(--secondary-color) 50%,
    var(--accent-color) 75%,
    var(--primary-color) 100%
  ) border-box;
  background-size: 400% 400%;
  animation: runningBorder 3s linear infinite;
  z-index: 2;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.reels-carousel .reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.reels-carousel .carousel-item:hover {
  transform: scale(1.05);
}

.reels-carousel .carousel-item:hover .reel-video {
  transform: scale(1.1);
}

/* Mute indicator */
.reels-carousel .carousel-item::after {
  content: '🔇';
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 8px;
  border-radius: 50%;
  font-size: 12px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reels-carousel .carousel-item:hover::after {
  opacity: 1;
}

.reels-carousel .carousel-item.unmuted::after {
  content: '🔊';
}

/* Loading Placeholder */
.loading-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 350px;
  color: #666;
  font-size: 1.1rem;
  font-style: italic;
}

/* Video Error Placeholder */
.video-error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-color);
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

.video-error-placeholder i {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 10px;
}

.video-error-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.video-error-placeholder small {
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--text-color);
}

/* Add Video Button */
.add-video-section {
  margin: 30px 0;
}

.add-video-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.add-video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.add-video-btn i {
  font-size: 1.2rem;
}

/* Reels Controls */
.reels-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.reels-controls button {
  background: #c0392b;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels-controls button:hover {
  background: #8e44ad;
  transform: scale(1.1);
}

.reels-dots {
  display: flex;
  gap: 8px;
}

.reels-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2b48c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reels-dots span.active {
  background: #c0392b;
  transform: scale(1.2);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 20px 25px 15px;
  border-bottom: 1px solid #e0d5d0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: var(--primary-color);
}

.modal-body {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0d5d0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.2);
}

.file-upload-area {
  position: relative;
  border: 2px dashed #d2b48c;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff8f0 0%, #f5f0e8 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff5f0 0%, #f0e8e0 100%);
}

.file-upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.upload-placeholder p {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.upload-placeholder span {
  color: #666;
  font-size: 0.8rem;
}

.upload-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.upload-success i {
  font-size: 2rem;
  color: #27ae60;
}

.upload-success p {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.upload-success span {
  color: #666;
  font-size: 0.8rem;
}

.change-file-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.change-file-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.rating-input {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.3s ease;
  margin: 0;
}

.rating-input label:hover,
.rating-input input:checked ~ label,
.rating-input label:hover ~ label {
  color: #f5c46b;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.form-actions .cancel-btn,
.form-actions .submit-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-actions .cancel-btn {
  background: #f0f0f0;
  color: #666;
}

.form-actions .cancel-btn:hover {
  background: #e0e0e0;
}

.form-actions .submit-btn {
  background: var(--primary-color);
  color: white;
}

.form-actions .submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.form-actions .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Thank You Message - Full Screen Overlay */
.thank-you-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 248, 240, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px;
  box-sizing: border-box;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.thank-you-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #666;
}

.thank-you-close-btn:hover {
  background: #e9ecef;
  color: #333;
  transform: scale(1.1);
}

.success-icon {
  font-size: 5rem;
  color: #27ae60;
  margin-bottom: 30px;
  animation: bounceIn 0.8s ease-out;
}

.thank-you-content h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-content p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  padding: 0 20px;
}

.close-thank-you-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.close-thank-you-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Upload Reel Styles */
.upload-reel {
  border: 2px dashed #d2b48c;
  background: linear-gradient(135deg, #fff8f0 0%, #f5f0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.upload-container {
  text-align: center;
  padding: 20px;
}

.upload-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.upload-icon i {
  color: white;
  font-size: 1.5rem;
}

.upload-container:hover .upload-icon {
  transform: scale(1.1);
}

.upload-container p {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.upload-text {
  color: #666;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 15px;
}

.file-input {
  display: none;
}

.upload-btn {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.upload-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Tag Input Styles */
.tag-section {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  border: 1px solid #e0d5d0;
}

.tag-input-container {
  margin-bottom: 15px;
}

.tag-input-container label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.name-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.8rem;
  background: #fff;
}

.name-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(192, 57, 43, 0.3);
}

.event-type-wrapper {
  position: relative;
}

.event-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.8rem;
  background: #fff;
}

.event-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(192, 57, 43, 0.3);
}

.event-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.event-suggestion {
  background: #f0f0f0;
  color: #666;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-suggestion:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.selected-events {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  min-height: 20px;
}

.selected-event {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.remove-event {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.6rem;
}

.remove-event:hover {
  background: rgba(255, 255, 255, 0.5);
}

.upload-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cancel-btn, .submit-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: #f0f0f0;
  color: #666;
}

.cancel-btn:hover {
  background: #e0e0e0;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}


/* Transformations Section */

.transformations-section {
  padding: 80px 0;
  background-color: var(--light-color);
  text-align: center;
}

.transformations-section h2 {
  font-size: 2.5rem;
  color: #7a5b42;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #a86c49;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.transformations-container {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-bottom: 30px;
  position: relative;
}

.transformation-item {
  min-width: 100%;
  padding: 0 18px;
  transition: transform 0.5s ease;


}

.before-after-container {
  display: flex;
  justify-content: center;
  gap: 16px; /* smaller spacing */
  margin-bottom: 20px; /* slightly tighter */
  margin-top: 3px;
  position: relative;
}

.before, .after {
  position: relative;
  width: 40%; /* smaller cards on desktop */
  max-width: 240px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 2px 10px rgb(200, 80, 50),-1px -2px 10px rgb(200, 80, 50);
}

.before img, .after img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;

}

.before:hover img, .after:hover img {
  transform: scale(1.03);
}

.label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 8px; /* smaller badge */
  border-radius: 16px;
  font-size: 0.7rem;
}

.transformation-info {
  max-width: 600px;
  margin: 0 auto;
}

.transformation-info h3 {
  color: #5c3b2e;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.transformation-info p {
  font-style: italic;
  margin-bottom: 15px;
  color: #4b3b32;
}

.rating {
  color: #f5c46b;
  font-size: 1.2rem;
  margin-top: 10px;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.controls button {
  background: #c0392b;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls button:hover {
  background: #8e44ad;
  transform: scale(1.1);
}

.dots {
  display: flex;
  gap: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d2b48c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots span.active {
  background: #c0392b;
  transform: scale(1.2);
}

/* Slider Track Container */
.transformations-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .reels-carousel .carousel-item {
    width: 220px;
    height: 320px;
  }
  
  .reels-carousel .carousel-track {
    animation: infiniteScroll 18s linear infinite;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .before-after-container {
    flex-direction: column;
    align-items: center;
  }
  
  .before, .after {
    width: 80%;
  }
  
  .transformation-item {
    padding: 0 5px;
  }

  /* Customer Reels Responsive */
  .customer-reels-section {
    padding: 50px 0;
  }
  
  .customer-reels-section h2 {
    font-size: 2rem;
  }
  
  .reels-carousel .carousel-item {
    width: 180px;
    height: 280px;
  }
  
  .reels-carousel .carousel-track {
    animation: infiniteScroll 15s linear infinite;
  }
  
  .add-video-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Modal Mobile Styles */
  .modal-content {
    width: 95%;
    max-width: 400px;
  }
  
  .modal-header {
    padding: 15px 20px 10px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .file-upload-area {
    padding: 20px;
  }
  
  .upload-placeholder i {
    font-size: 1.5rem;
  }
  
  .upload-placeholder p {
    font-size: 0.9rem;
  }
  
  .rating-input label {
    font-size: 1.2rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-actions .cancel-btn,
  .form-actions .submit-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  /* Thank You Message Mobile */
  .thank-you-message {
    padding: 20px;
  }
  
  .thank-you-content {
    padding: 40px 25px;
    max-width: 90%;
  }
  
  .thank-you-close-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
    top: 15px;
    right: 15px;
  }
  
  .success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .thank-you-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .thank-you-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .close-thank-you-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  
  /* Tag Input Mobile Styles */
  .tag-section {
    padding: 10px;
    margin-top: 15px;
  }
  
  .tag-input-container {
    margin-bottom: 10px;
  }
  
  .tag-input-container label {
    font-size: 0.7rem;
  }
  
  .name-input, .event-input {
    padding: 6px 8px;
    font-size: 0.7rem;
  }
  
  .event-suggestions {
    gap: 3px;
  }
  
  .event-suggestion {
    padding: 3px 6px;
    font-size: 0.6rem;
  }
  
  .selected-event {
    padding: 3px 6px;
    font-size: 0.6rem;
  }
  
  .remove-event {
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
  }
  
  .cancel-btn, .submit-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .transformations-section h2 {
    font-size: 2rem;
  }
  
  .before, .after {
    width: 95%;
  }
}





.hero {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/dulhan5.jpg');
  background-size: cover;
  background-position: center;
}

/* Shared Floating Icon Styles */
.float-icon {
  position: fixed;
  right: 30px;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: #25D366; /* Default for WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.float-icon:hover {
  transform: scale(1.1);
}

/* Specific for WhatsApp */
.whatsapp-chat {
  bottom: 30px;
  background-color: #25D366;
}

/* Specific for Call Icon */
.call-icon {
  bottom: 100px; /* Positioned above WhatsApp */
  background-color: #0a66c2; /* Blue color */
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0; /* slider behind content */
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%); /* off-screen start */
  transition: transform 1.5s ease, opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-content {
  position: relative;
  z-index: 1; /* keep on top of slider */
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}