@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styling */
.header {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: linear-gradient(45deg, #ffffff, #f6f6f6, #5c595999);
  color: #111111;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header::before, .header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: #111111;
  z-index: -1;
  animation: wave-animation 6s infinite ease-in-out;
}

.header::after {
  animation: wave-animation-reverse 6s infinite ease-in-out; 
}
.logotxt {
  font-family: 'Poppins', sans-serif;  /* Choose a modern font */
  font-size: 1.8rem;  /* Adjust font size for better visibility */
  font-weight: bold;  /* Make the text bold */
  color: #070504;  /* Set a stylish color (coral, can be customized) */
  text-transform: uppercase;  /* Capitalize the text */
  letter-spacing: 2px;  /* Add some space between letters */
  transition: all 0.3s ease;  /* Add smooth transition effect */
  display: inline-block;  /* Make sure the subtext appears below the main title */
}

.logotxt:hover {
  color: #41160f;  /* Change color on hover (tomato red) */
  transform: scale(1.1);  /* Slightly scale up the logo on hover */
}

.logo-subtext {
  display: block;  /* Makes the subtext appear below the main logo */
  font-size: 0.8rem;  /* Smaller font size for the subtext */
  color: #666;  /* Light gray color for the subscript text */
  letter-spacing: 0.5px;  /* Slight letter spacing */
  font-weight: normal;  /* Keep the font weight normal */
  text-transform: none;  /* Remove uppercase for subtext */
  margin-top: 3px;  /* Space between the logo text and subtext */
}

@keyframes wave-animation {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(15px);
  }
  100% {
    transform: translateX(100%) translateY(0);
  }
}

@keyframes wave-animation-reverse {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px); /* Reverse wave peak */
  }
  100% {
    transform: translateX(-100%) translateY(0);
  }
}
.navbar {
  background: transparent;
}

.navbar-brand .logo {
  width: 80px;
  height: 70px;
}

.navbar-nav .nav-link {
  color: #111111;
  text-align: center;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: color 0.3s, background-color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
  background-color: #111111;
}

.navbar-toggler {
  border-color: #111111;
}

@media (max-width: 992px) {
  .navbar-nav {
    background-color: #ffffff;
    padding: 10px;
  }
}


/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333;
}

/* Section: Video Background with Overlaid Slides */
#carouselSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#carouselSection .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#carouselSection .slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}




#carouselSection .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

#carouselSection .slide.active {
  opacity: 1;
}

#carouselSection .slide h5 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}



#carouselSection .slide p {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

#carouselSection .button-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

#carouselSection .btn {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

#carouselSection .btn:hover {
  background: #fff;
  color: #000;
}

/* Slide Navigation */
#carouselSection .navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

#carouselSection .navigation button {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
}

#carouselSection .navigation button.active {
  opacity: 1;
}



.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  bottom: 10%;
  width: 100%;
}

.book-appointment-btn,
.find-more-btn {
  background-color: #f6f6f6;
  color: #111111;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.book-appointment-btn {
  animation: floatButton 3s ease-in-out infinite alternate;
}

.find-more-btn {
  animation: floatButton 3s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

@keyframes floatButton {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.book-appointment-btn:hover,
.find-more-btn:hover {
  background-color: #111111;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}



@media (max-width: 767px) {
 

  .button-container {
    bottom: 5%;
  }

  .book-appointment-btn,
  .find-more-btn {
    padding: 8px 16px;
    font-size: 1rem;
  }
}


/* why choose us section starts here */
#whyChooseUs {
  background: linear-gradient(175deg, #ffffff 0%, #f6f6f6 50%, #111111 100%);
  padding: 50px 0;
  color: #8a4f95;
}
#whyChooseUs {
  background-color: #f0f0f0;
  padding: 50px 0;
  color: #111111;
}

#whyChooseUs {
  background-color: #f0f0f0;
  padding: 50px 0;
  color: #f6f6f6;
}

.why-choose-us-heading {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.5rem;
  color: #111111;
  margin-bottom: 10px;
}

.why-choose-us-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #111111;
  margin-bottom: 30px;
}

.feature-list-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #111111;
}

.feature-list li {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s, transform 0.5s;
}

@keyframes ladderAnimation {
  0% {
    opacity: 1;
    transform: translateY(0);
    font-size: 26px;
    color: #111111;
  }

  20% {
    opacity: 0.7;
    transform: translateY(30px);
    font-size: 22px;
    color: #363636;
  }

  40% {
    opacity: 0.5;
    transform: translateY(60px);
    font-size: 20px;
    color: #111111;
  }

  60% {
    opacity: 0.3;
    transform: translateY(90px);
    font-size: 18px;
    color: #111111;
  }

  100% {
    opacity: 0;
    transform: translateY(120px);
  }
}

.feature-list li:nth-child(1) {
  animation: ladderAnimation 5s infinite;
}

.feature-list li:nth-child(2) {
  animation: ladderAnimation 5s infinite 1s;
}

.feature-list li:nth-child(3) {
  animation: ladderAnimation 5s infinite 2s;
}

.feature-list li:nth-child(4) {
  animation: ladderAnimation 5s infinite 3s;
}

.feature-list li:nth-child(5) {
  animation: ladderAnimation 5s infinite 4s;
}

.book-service-btn {
  background-color: #111111;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: buttonFloat 2s ease-in-out infinite;
}

@keyframes buttonFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.book-service-btn:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  color: #111111;
}


/* our services page starts here  */

#ourServices {
  background-color: #f6f6f6;
  padding: 50px 0;
  font-family: 'Poppins', sans-serif;
  color: #111111;
}

.service-image {
 width:100%;
  

}

.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.5rem;
  color: #111111;
  margin-bottom: 10px;
}

.service-type {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #111111;
  margin-bottom: 20px;
}

.clickable-text {
  color: #111111;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.clickable-text:hover {
  color: #111111;
}

.clickable-text:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  animation: underline 0.3s ease forwards;
}

@keyframes underline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.service-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.specialization-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  font-family: 'Roboto', sans-serif;
}

.specialization-points li {
  font-size: 1rem;
  color: #111111;
  margin-bottom: 10px;
  position: relative;
}

.book-now-btn {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: 'Permanent Marker', cursive;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-btn:hover {
  background-color: #f6f6f6;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}


#bridalMakeup {
  background: linear-gradient(175deg, #ffffff 0%, #f6f6f6 50%, #111111 100%);
  padding: 50px 0;
  color: #111111; 
  font-family: 'Poppins', sans-serif;
}

.bridal-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #111111;
  margin-bottom: 15px;
}

.bridal-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #111111;
  margin-bottom: 30px;
  line-height: 1.6;
}

.bridal-image {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.book-now-btn {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.book-now-btn:hover {
  background-color: #f6f6f6;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


.enhanced-footer {
  background: #111;
  color: #f6f6f6;
  padding: 40px 20px;
  text-align: center;
}

.footer-header {
  margin-bottom: 20px;
}

.footer-title {
  font-family: 'Poppins', sans-serif;  /* Choose a modern font */
    /* Adjust font size for better visibility */
  font-weight: bold;  /* Make the text bold */
  /* Set a stylish color (coral, can be customized) */
  text-transform: uppercase;  /* Capitalize the text */
  letter-spacing: 2px;  /* Add some space between letters */
  transition: all 0.3s ease;  /* Add smooth transition effect */
  display: inline-block;  
  
  font-size: 2em;

  color: #ffffff;
  margin-bottom: 10px;
}

.footer-slogan {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.flip-container {
  display: inline-block;
  position: relative;
  height: 2.7rem;
}

.flip-text {
  display: inline-block;
  position: absolute;
  animation: flip 3s infinite alternate;
}

.flip-text.front {
  opacity: 1;
}

.flip-text.back {
  opacity: 0;
  animation-delay: 1.5s;
}

@keyframes flip {

  0%,
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }

  50% {
    opacity: 0;
    transform: rotateX(90deg);
  }
}

.better-text {
  color: #f6f6f6;
  font-weight: bold;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease;
}

.footer-column h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #f6f6f6;
}

.footer-column p,
.footer-column a {
  color: #f6f6f6;
  font-size: 1em;
  display: block;
}

.footer-column a {
  text-decoration: none;
  margin: 5px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease-in-out;
}

.footer-column a:hover {
  color: #f6f6f6;
  transform: scale(1.1);
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f6f6f6;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-bottom {
  margin-top: 20px;
}

.reach-out-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background: #333;
  color: #f6f6f6;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.reach-out-btn:hover {
  background: #555;
  transform: translateY(-5px) scale(1.05);
}

.follow-us {
  text-align: center;
}

.follow-us h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #f6f6f6;
}

.follow-us p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #aaa;
}

.creative-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6f6f6;
  font-size: 1.5em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.social-icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.social-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.social-icon:hover::before {
  transform: scale(1);
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 150px; /* Adjust the size as needed */
  height: auto;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}




/* men's service html starts  */

#ms-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.ms-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: brightness(0.5);
}

.ms-video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  text-align: center;
}

.ms-main-title {
  font-family: 'Freaky Font', cursive;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: ms-fadeIn 2s ease;
}

.ms-sub-title {
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  animation: ms-fadeIn 2.5s ease;
}

@keyframes ms-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ms-main-title {
    font-size: 2rem;
  }

  .ms-sub-title {
    font-size: 2.5rem;
  }
}


/* Men's cards section starts here */
#ms-services {
  position: relative;
  background: linear-gradient(to bottom, black, white);
  /* padding: 60px 0; */
  color: #ffffff;
}

.ms-services-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}

.ms-card {
  position: relative;
  width: 100%;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.786);
  /* clip-path: polygon(10% 0%, 90% 0%, 80% 100%, 20% 100%); */
  border-radius: 20px;

  color: #111111;
  text-align: center;
  overflow: hidden;
  height: 200px;
}

.ms-card-content h3 {
  font-size: 1.5rem;
  margin: 0;
  transition: opacity 0.3s ease;
}

.ms-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.ms-card-hover p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.ms-card-hover .price {
  font-size: 1.2rem;
  font-weight: bold;
}

.ms-card:hover .ms-card-content {
  opacity: 0;
}

.ms-card:hover .ms-card-hover {
  transform: translateY(0);
}

.ms-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .ms-card-content h3 {
    font-size: 1.2rem;
  }
}

/* each services starts here  */
#ms-haircut-section {
  padding: 50px 0;
  
  color: #111111;
}

#ms-haircolor-section {
  padding: 50px 0;
  
  color: #111111;
}

.ms-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: floatingTitle 3s ease-in-out infinite;
}

@keyframes floatingTitle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.ms-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.ms-image-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.ms-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 5px solid #111111;
  border-radius: 15px;
  overflow: hidden;
}

.ms-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.ms-buttons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.ms-image-container:hover .ms-buttons {
  opacity: 1;
}

.ms-btn {
  background-color: #111111;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.ms-btn:hover {
  background-color: #333333;
  transform: scale(1.1);
}

.ms-enquiry-btn {
  background-color: #111111;
}

.ms-enquiry-btn:hover {
  background-color: #333333;
}


/* about us page styings starts here  */


#au-about-us {
  position: relative;
  background-image: url('../images/int/4.jpeg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.au-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.au-section-title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

.au-saloon-name {
  font-size: 2rem;
  font-family: "Georgia", serif;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.au-slogan {
  font-size: 1.5rem;
  font-style: italic;
  font-family: "Verdana", sans-serif;
  animation: fadeInUp 2.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* About Saloon Section */
#au-about-saloon {
  padding: 40px 20px;
  background-color: #f6f6f6;
  color: #111111;
}

.au-image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  max-width: 80%;
  margin: 0 auto;
}

.au-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.au-image-wrapper:hover .au-image {
  transform: scale(1.1);
}

.au-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Title Styling */
.au-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
  display: inline-block;
}

.au-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background-color: #111111;
  margin-top: 10px;
}

.au-description {
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
  color: #333333;
  margin-top: 10px;
  text-align: justify;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 95%;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.au-image-wrapper {
  animation: floatImage 3s ease-in-out infinite;
}


/* contact us html page starts here  */


#cu-contact-us {
  position: relative;
  background-image: url('../images/int/7.jpeg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.cu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cu-container {
  max-width: 1200px;
  width: 100%;
}

.cu-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cu-text-container {
  text-align: left;
  max-width: 600px;
}

.cu-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 20px;
  animation: cu-title-bounce 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes cu-title-bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.cu-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 15px;
  font-family: 'Arial', sans-serif;
  text-align: justify;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  color: #eeeeee;
}


/* contact details and enquire form  */

#cu-contact-details {
  background-color: #f6f6f6;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-container {
  max-width: 1200px;
  width: 100%;
}

.cu-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.cu-left-column,
.cu-right-column {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 2px solid #ccc;
}

.cu-left-column:hover,
.cu-right-column:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  border-color: #000;
}

.cu-title-left,
.cu-title-right {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  position: relative;
  animation: cu-title-float 3s infinite ease-in-out;
}

.cu-enquiry-title {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

.cu-underline {
  display: block;
  width: 50%;
  height: 3px;
  background: #000;
  margin: 10px auto 0;
  animation: cu-underline-grow 1s ease-in-out infinite alternate;
}

@keyframes cu-underline-grow {
  from {
    width: 50%;
  }

  to {
    width: 80%;
  }
}

.cu-contact-info {
  margin-top: 20px;
}

.cu-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cu-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #111111;
  transition: transform 0.3s ease;
}

.cu-info-item:hover .cu-icon {
  transform: scale(1.2);
  color: #333333;
}

.cu-info-item a {
  color: #111111;
  text-decoration: none;
}

.cu-info-item a:hover {
  text-decoration: underline;
}

.cu-form {
  margin-top: 20px;
  text-align: center;
}

.cu-form-group {
  margin-bottom: 20px;
}

.cu-input {
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cu-input:focus {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-color: #000;
  outline: none;
}

.cu-btn {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cu-btn:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.cu-right-column h2 {
  margin-bottom: 20px;
}


/* Google map embed  */

.responsive-iframe {
  width: 100%;
  height: 50vh;
  border: none;
}


/* book appointment stylings starts here  */
/* General Section Styles */
#ba-book-appointment {
  position: relative;
  background-image: url('../images/int/5.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 130vh; /* Full-screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow:auto;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark overlay for better readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px; /* Increased padding for space */
}

.ba-container {
  text-align: center;
  color: #fff;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1); /* Slight white tint */
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 700px; /* Larger container */
}

/* Title Styles */
.ba-title-wrapper {
  margin-bottom: 30px; /* Space between title and progress bar */
}

.ba-title {
  font-size: 2.5rem; /* Large heading */
  margin-bottom: 10px;
  color: #fff;
}

.ba-slogan {
  font-size: 1.2rem;
  color: #ccc; /* Light grey slogan */
}

/* Progress Bar */
.ba-progress-wrapper {
  margin-bottom: 30px;
}

.ba-progress-bar {
  background: #444; /* Dark grey background */
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}


.ba-progress {
  background: #fff; /* White progress indicator */
  height: 12px;
  width: 0%; /* Initially 0% */
  transition: width 0.3s ease-in-out;
}

.ba-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.ba-progress-steps span {
  width: 25px;
  height: 25px;
  background: #444; /* Grey steps */
  color: #fff; /* White text */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.ba-step.active {
  background: #fff; /* Active step in white */
  color: #444; /* Grey text for active step */
}

/* Form Group Styles */
.ba-form-group {
  margin-bottom: 30px; /* Increased margin for spacing */
}

.ba-label {
  display: block;
  font-size: 1.4rem; /* Larger label text */
  margin-bottom: 10px;
  text-align: left;
  color: #fff;
}

.ba-input, .ba-select {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem; /* Larger input text */
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #333; /* Dark grey background */
  color: #fff; /* White text */
}

.ba-input::placeholder {
  color: #ccc; /* Light grey placeholder */
}

.ba-select {
  appearance: none; /* Remove default browser styles */
}

/* Gender Options */
.ba-gender-options {
  display: flex;
  gap: 20px; /* Space between buttons */
  justify-content: center;
}

.ba-gender-option {
  padding: 15px 25px;
  background: #333; /* Default dark grey */
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.ba-gender-option.active {
  background: #fff; /* White background for selected option */
  color: #333; /* Grey text for active option */
  border-color: #fff; /* White border for active option */
}

.ba-gender-option:hover {
  background: #555; /* Lighter grey on hover */
  border-color: #fff; /* White border on hover */
}

/* Checkbox Group */.ba-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}

.ba-checkbox-group label {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
   
    cursor: pointer;
    color:rgb(247, 247, 247);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ba-checkbox-group label:hover {
    background-color: #e0f7fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color:black;
}

.ba-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}


/* Button Styles */
.ba-btn-next, .ba-btn {
  background: #333; /* Grey button */
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.ba-btn-next:hover, .ba-btn:hover {
  background: #555; /* Lighter grey on hover */
}

/* Page Styles */
.ba-page {
  display: none; /* Hidden by default */
}

.ba-page.active {
  display: block; /* Show active page */
}


/* party animations starts here  */

#confetti-container {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1050000;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 20px;
  background-color: hsl(calc(360 * var(--hue)), 70%, 50%);
  opacity: 0.9;
  transform: rotate(var(--rotation));
  animation: confetti-fall 2s linear forwards, confetti-spin 1s infinite ease-in-out;
}

.confetti:nth-child(odd) {
  --hue: 0.2;
}
.confetti:nth-child(even) {
  --hue: 0.7;
}

@keyframes confetti-fall {
  0% {
    top: -10%;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    top: 110%;
    transform: translateY(100vh) rotate(360deg);
  }
}

@keyframes confetti-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.whatsapp-icon {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #25D366;
  color: white;
  font-size: 24px;
  line-height: 1;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.instagram-icon {
  position: fixed;
  right: 1px;
  top: 60%;
  transform: translateY(-50%);
  
  line-height: 1;
  padding: 14px 16px;
  border-radius: 50%;

  text-align: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-icon:hover {
  transform: translateY(-50%) scale(1.1);

}


/* Designed By Section */
.footer-designed-by {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px 20px;
  margin-bottom: -40px;

}

.designer-logo {
  width: 40px;
  height: 40px;

}

.designer-text {
  font-size: 1rem;
  color: #fff;
}

.designer-text strong {
  color: #e0c240; /* Gold-like highlight for the name */
}



#ouiasgdhias {
  display: flex;
  gap: 10px;
}
.sdfsfhssv {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.imageClass {
  width: 100%;
  display: block;
  border-radius: 8px;
  
}

#jhgtfytGalleryContainer{
  display: flex;
  gap: 10px;
}

  /* Modal styles */
  #modalUniqueOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
#modalContentUnique {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
}
#modalImageUnique {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 500px) {
  #modalImageUnique {
      width: 90vw;
      height: auto;
  }
}

@media (max-height: 500px) {
  #modalImageUnique {
      height: 80vh;
      width: auto;
  }
}

.uniqueNavButton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
}
.uniqueNavButton:hover {
    background: rgba(0, 0, 0, 0.8);
}
#prevButtonUnique {
    left: 10px;
}
#nextButtonUnique {
    right: 10px;
}
#closeButtonUnique {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

