@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');
html{
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f2efe8;
}

/* Container for Hero Section */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Hero Section */
.hero-img {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Keep it behind everything */
}

/* Dark Overlay for Visibility */
.scroll-blur {
  position: fixed;
  top: 0;
  width: 100%;
  height: 180px; /* Adjust based on your header height */
  background: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Add this class with JavaScript when scrolling */
.scroll-blur.scrolled {
  background: rgba(0, 0, 0, 0.2); /* Transparent black */
  backdrop-filter: blur(10px);
}

/* Ensure the overlay has a lower z-index */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(87, 87, 87, 0);
  z-index: 0; /* Lower than .scroll-blur */
}

/* Header Section */
.header-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.hero-heading {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #f2efe8;
  z-index: 2; /* Increased z-index to ensure it's above the overlay */
  opacity: 0; /* Initially hidden */
  animation: fadeIn 2s ease-in-out forwards;
}

.hero-heading h1 {
  font-size: 45px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Adds a shadow to the text */
}

.button button, .language button {
  background: none;
  border: none;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ddd9d3;
}

.button button:hover {
  color: #d4a600;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Navigation Menu */
.menus {
  display: block;
  position: absolute;
  top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.menus ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.menus ul li {
  display: inline;
}

.menus ul li a {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2efe8;
  text-decoration: none;
  padding: 10px 15px;
  transition: 0.3s;
}

.menus ul li a:hover {
  color: #e6b800 !important;
}

/* Add hover effect for scroll-blur */
.scroll-blur:hover {
  background: #f2efe8 !important;
  backdrop-filter: blur(10px);
}

/* Change text colors on scroll-blur hover */
.scroll-blur:hover .logo,
.scroll-blur:hover .menus a,
.scroll-blur:hover .button button,
.scroll-blur:hover .language button,
.scroll-blur:hover .fa-bars{
  color: #000 !important;
  cursor: pointer;
}


/* Add transitions for smooth color change */
.logo,
.menus a,
.button button,
.language button {
  transition: color 0.3s ease;
}

/* Optional: Add hover effect for buttons */
.scroll-blur:hover .button button:hover,
.scroll-blur:hover .language button:hover {
  opacity: 0.8;
}

/* Hero Text Styling */
.hero-heading h1 {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 45px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-heading h4 {
  margin-top: 30px;
  font-weight: 400;
  font-size: 36px;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
}
.main-image {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.main-image video {
  visibility: visible; /* Ensure video is always visible */
  opacity: 1; /* Ensure video is not hidden */
  padding: 0 20px;
  width: 100%;
  padding-top: 20px;
  max-width: 1000px;
  cursor: pointer;
  transition: filter 0.3s; /* Smooth transition for dimming effect */
  filter: brightness(0.6); /* Dim the video by default */
}

.main-image video.playing {
  filter: brightness(1); /* Brighten the video when playing */
}

#play-pause-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  z-index: 1; /* Ensure the button is above the video */
  display: none; /* Hide the play button initially */
}

#play-pause-button:hover {
  opacity: 1;
}

#play-pause-button .fa-play,
#play-pause-button .fa-pause {
  display: none; /* Hide both icons by default */
}

/* Show pause icon on hover when video is playing */
.main-image video.playing:hover + #play-pause-button .fa-pause {
  display: block;
}

/* Show play icon when video is paused */
.main-image video.paused + #play-pause-button .fa-play {
  display: block;
}
.calendly-inline-widget{
  padding-top: 10px;
}
.first-section{
  margin-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #f8e79c;
}

.intro {
  width: 50%;
}
.intro-para p b {
  color: black;
}
.intro-heading p{
  text-align: center;
    color: black;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 32px;
}
.intro-heading h1 {
  margin-top: 100px;
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 56px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.intro-heading span {
  color: black;
}

.intro-heading h4 {
  text-align: center;
  color: black;
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 20px;
}

.intro-para p {
  margin-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}
.last-section-para p b{
  color: red;
}
.intro-para span {
  color: black;
  font-weight: bold;
}

.proven p {
  font-weight: 600;
  /* padding: 20px; */
}

.fa-check-circle {
  color: black;
  font-size: 20px;
  padding-right: 10px;
}

.results {
  font-weight: 30px;
  color: #e6b800;
}

.book-now {
  z-index: 1000;
  cursor: pointer;
  position: fixed;
  bottom: 100px;
  right: 100px;
  background-color: black; /* Change color as needed */
  font-weight: bold;
  font-size: 14px;
  padding-top: 30px;
  padding-bottom: 30px;
  border: none;
  width: 15%;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.book-now a{
  color: #e6b800;
  text-decoration: none;
}

.book-now:hover {
  background-color: #e6b800;
  color: black;
  transform: scale(1.05);
}
.book-now:hover a {
  color: black;
}
.outlet {
  width: 100%;
  margin-top: 100px;
}

.outlet img {
  width: 100%;
}

.first-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider1 {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.left-image-1 {
  width: 40%;
}

.left-image-1 img {
  width: 100%;
  height: 80vh;
}

.right-text-1 {
  width: 40%;
}

.right-text-1 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.right-text-1 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.slider2 {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.left-image-2 {
  width: 40%;
}

.left-image-2 img {
  width: 100%;
  height: 80vh;
}

.right-text-2 {
  width: 40%;
}

.right-text-2 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.right-text-2 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.slider3 {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.left-image-3 {
  width: 40%;
}

.left-image-3 img {
  width: 100%;
  height: 80vh;
}

.right-text-3 {
  width: 40%;
}

.right-text-3 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.right-text-3 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.right-text-3 button {
  margin-top: 52px;
  cursor: pointer;
  border: none;
  background: none;
}

.right-text-3 button h5:hover {
  color: black;
  transition: 0.4s ease;
}

.right-text-3 button h5 {
  font-size: 12px;
  color: #666;
  line-height: 20px;
  letter-spacing: 0.06em;
}

.inside-outlet {
  width: 100%;
  margin-top: 100px;
}

.inside-outlet img {
  width: 100%;
}

.second-heading-container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.heading-container2 {
  width: 42%;
}

.second-heading-container h1 {
  margin-bottom: 28px;
  font-size: 40px;
  line-height: 56px;
  font-weight: normal;
  letter-spacing: 0.06em;
  text-align: center;
}

.second-heading-container p {
  padding-bottom: 40px;
  text-align: center;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.inside-hall {
  width: 100%;
}

.inside-hall img {
  width: 100%;
}

.second-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.second-slider1 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.second-left-image-1 {
  width: 50%;
}

.second-left-image-1 img {
  width: 100%;
  height: 70vh;
}

.second-right-text-1 {
  width: 35%;
}

.second-right-text-1 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.second-right-text-1 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.second-slider2 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.second-left-image-2 {
  width: 55%;
}

.second-left-image-2 img {
  width: 100%;
  height: 70vh;
}

.second-right-text-2 {
  width: 35%;
}

.second-right-text-2 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.second-right-text-2 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.second-slider3 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.second-left-image-3 {
  width: 50%;
}

.second-left-image-3 img {
  width: 100%;
  height: 70vh;
}

.second-right-text-3 {
  width: 35%;
}

.second-right-text-3 h2 {
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 32px;
}
.last-section-para h6{
  text-align: center;
  font-size: 16px;
  padding: 10px;
}
.second-right-text-3 p {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.second-right-text-3 button {
  margin-top: 52px;
  cursor: pointer;
  border: none;
  background: none;
}

.second-right-text-3 button h5:hover {
  color: black;
  transition: 0.4s ease;
}

.second-right-text-3 button h5 {
  font-size: 12px;
  color: #666;
  line-height: 20px;
  letter-spacing: 0.06em;
}

.second-outlet {
  width: 100%;
  margin-top: 50px;
}

.second-outlet img {
  width: 100%;
}

.residence-container {
  display: flex;
  justify-content: center;
}

.inner-residence {
  width: 45%;
  margin-top: 100px;
}

.inner-residence h5 {
  text-align: center;
  padding-bottom: 40px;
}

.inner-residence h1 {
  margin-bottom: 28px;
  font-size: 40px;
  line-height: 56px;
  font-weight: normal;
  letter-spacing: 0.06em;
  text-align: center;
}

.inner-residence p {
  padding-bottom: 40px;
  text-align: center;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-bottom: 0;
}

.gallery-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.inner-gallery {
  width: 70%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 100px;
}

.gallery-1 {
  width: 50%;
}

.gallery-2 {
  width: 40%;
}

.gallery-1 img {
  width: 100%;
}

.gallery-2 img {
  width: 100%;
}

.second-hall {
  width: 100%;
}

.second-hall img {
  width: 100%;
}

.second-writting-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #f2efe8;
  padding: 60px 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e6b800;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e6b800;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #e6b800;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #d4a600;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}
.mobile-menu ul li a{
  display: block;
}
@media (max-width: 992px) {
  .hero-heading h1 {
    font-size: 32px;
  }

  .hero-heading h4 {
    font-size: 20px;
  }

  .intro-heading h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .intro-heading h4 {
    font-size: 16px;
  }

  .intro-para p {
    font-size: 16px;
    line-height: 24px;
  }

  .book-now {
    width: 25%;
  }
  .result-slider-container h1{
    font-size: 28px;
  }
  .slider1, .slider2, .slider3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-image-1, .left-image-2, .left-image-3 {
    width: 80%;
  }

  .right-text-1, .right-text-2, .right-text-3 {
    width: 80%;
    margin-top: 20px;
  }

  .second-slider1, .second-slider2, .second-slider3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .second-left-image-1, .second-left-image-2, .second-left-image-3 {
    width: 80%;
  }

  .second-right-text-1, .second-right-text-2, .second-right-text-3 {
    width: 80%;
    margin-top: 20px;
  }

  .inner-residence {
    width: 60%;
  }

  .inner-gallery {
    width: 90%;
  }
  .menus{
    display: none;
  }
  .header-logo{
    left: 20%;
  }
  .header-logo{
    gap: 0;
    top: 20%;
  }
}

@media (max-width: 768px) {
  .hero-heading h1 {
    font-size: 28px;
  }
  .calendly-inline-widget{
    margin-top: 30px;
  }
  .header-logo{
    gap: 0;
    top: 20%;
  }
  .language button,
  .button button{
    display: none;
  }
  button{
    z-index: 1000;
  }
  .book-now{
    right: 30px;
    bottom: 30px;
  }

  .hero-heading h4 {
    font-size: 18px;
  }

  .intro-heading h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .intro-heading h4 {
    font-size: 14px;
  }

  .intro-para p {
    font-size: 14px;
    line-height: 20px;
  }

  .book-now {
    width: 30%;
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header-logo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo {
    padding-right: 0;
  }

  .menus {
    top: 160px;
  }

  .menus ul {
    flex-direction: column;
    gap: 10px;
  }

  .intro {
    width: 80%;
  }

  .inner-residence {
    width: 80%;
  }

  .inner-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-1, .gallery-2 {
    width: 90%;
  }
  .menus{
    display: none;
  }
  .scroll-blur{
    height: 80px;
  }
  .intro{
    margin-top: -50px;
  }
  .inner-gallery{
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .hero-heading h1 {
    font-size: 24px;
  }
  
  .header-logo{
    left: 32%;
    width: 100%;
  }

  .hero-heading h4 {
    font-size: 16px;
  }

  .intro-heading h1 {
    font-size: 20px;
    line-height: 32px;
  }

  .intro-heading h4 {
    font-size: 12px;
  }

  .intro-para p {
    font-size: 12px;
    line-height: 18px;
  }

  .book-now {
    width: 40%;
    font-size: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-logo {
    top: 20px;
  }

  .menus {
    top: 140px;
  }

  .intro {
    width: 90%;
  }

  .inner-residence {
    width: 90%;
  }

  .inner-gallery {
    width: 100%;
  }
}
/* Hamburger Icon */
.hamburger {
  display: none; /* Hidden by default */
  cursor: pointer;
  font-size: 24px;
  color: #f2efe8;
  left: 100%;
  margin-left: 20px;/* Adjust spacing as needed */
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden off-screen */
  width: 250px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
  right: 0; /* Slide in */
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: #f2efe8;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #e6b800;
}

.close-btn {
  text-align: right;
  font-size: 24px;
  color: #f2efe8;
  cursor: pointer;
}

/* Show Hamburger Icon on Smaller Screens */
@media (max-width: 992px) {
  .hamburger {
    display: block; /* Show hamburger icon */
    display: block;
    position: absolute;
    left: 100%;
  }
.language button{
  display: none;
}
.scroll-blur.scrolled{
  height: 80px;
}
.scroll-blur{
  height: 80px;
}
  .menus {
    display: none; /* Hide desktop menu */
  }
  .header-logo {
    width: 100%;
  }
  
}
.last-section{
  margin-top: 50px;
  width: 100%;
  background-color: #f8e79c;
  display: flex;
  padding-bottom: 70px;
  justify-content: center;
}
.last-section h4{
  font-style: italic;
}
.fa-circle{
  font-size: 12px;
  margin-right: 10px;
}
/* Hamburger Icon */
.hamburger {
  display: none; /* Hidden by default */
  cursor: pointer;
  font-size: 24px;
  color: #f2efe8;
  margin-left: 20px; /* Adjust spacing as needed */
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden off-screen */
  width: 250px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
  right: 0; /* Slide in */
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: #f2efe8;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #e6b800;
}

.close-btn {
  text-align: right;
  font-size: 24px;
  color: #f2efe8;
  cursor: pointer;
}
.result-slider-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center the slider vertically */
}
.result-slider-container h1{
  margin-bottom: 32px;
    font-size: 40px;
    line-height: 56px;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}
.result-slider-container h6{
  text-align: center;
    color: black;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 32px;
}

/* Show Hamburger Icon on Smaller Screens */
@media (max-width: 992px) {
  .hamburger {
    display: block; /* Show hamburger icon */
  }

  .menus {
    display: none; /* Hide desktop menu */
  }
}
.hero-logo{
  position: absolute;
  top: 60%;
  width: 20%;
}
.hero-logo img{
  width: 100%;
  opacity: 0; /* Initially hidden */
  animation: fadeIn 2s ease-in-out forwards;
}
@media (max-width: 768px) {
  .hero-heading {
    position: absolute; /* Adjust this value to position the heading properly */
    transform: translateY(-50%); /* Center the heading vertically */
    width: 100%;
    /* top: -10%; */
    text-align: center;
    z-index: 3; /* Ensure it's above the overlay */
  }
  .result-slider-container h1{
    font-size: 20px;
    margin-bottom: 16px;
  }
  .hero-heading h1 {
    font-size: 24px; /* Adjust font size for mobile */
    line-height: 1.3; /* Improve readability */
    margin-bottom: 10px; /* Add spacing below the heading */
  }

  .hero-heading h4 {
    font-size: 16px; /* Adjust font size for mobile */
    margin-top: 10px; /* Add spacing above the subheading */
  }

  .hero-logo {
    position: absolute;
    top: 48%; /* Position the logo below the heading */
    width: 60%; /* Adjust the width for mobile */
    left: 50%; /* Center the logo horizontally */
    transform: translateX(-50%); /* Center the logo horizontally */
    z-index: 3; /* Ensure it's above the overlay */
    margin-top: 20px; /* Add space between the heading and logo */
  }
  .background-video {
    height: 100%;
  }
  .hero-logo img {
    width: 100%; /* Ensure the logo image fits within the container */
  }
}


.slider {
  background-color: #e6b800;
  height: 400px; /* Set a fixed height for the slider */
  position: relative;
  width: 100%; /* Full width of the container */
  max-width: 800px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 50px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%; /* Ensure slides take the full height of the slider */
}

.slides img {
  width: 100%; /* Ensure each image takes the full width of the slider */
  height: 100%; /* Ensure the image takes the full height of the slider */
  object-fit: contain; /* Ensure the entire image fits within the container */
  flex-shrink: 0; /* Prevent images from shrinking */
}

#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
  z-index: 10; /* Ensure buttons are above the images */
}

#prev:hover,
#next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}