/* 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;
}

* {
  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;
  
}

.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 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

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






/* 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;
}

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

.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;
  margin-top: 1rem;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.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: 450px;
  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: pointer;
  transform: translate(-50%, -50%);
}

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

.member-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 4px solid #f5c46b;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 1.5rem;
  font-size: 1rem;
}

.social-links {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}

.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;
}

/* 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: 360px;
    padding: 1.25rem;
    top: 50%;
    left: 50%;
    transform-origin: center center;
  }

  .member-image {
    width: 140px;
    height: 140px;
    margin-bottom: 1.25rem;
  }

  .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: 320px;
    padding: 1rem;
  }

  .member-image {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }

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

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

  .carousel-member .bio {
    font-size: 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: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;
}

/* 📱 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-color: var(--black);
  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);
}



/* 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: block;
  }
  
  .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 */
  }
}








/* 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: 25px;
  margin-bottom: 25px;
  margin-top: 3px;
  position: relative;

}

.before, .after {
  position: relative;
  width: 45%;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  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: 10px;
  left: 10px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.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%;
}

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

@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 */
}
