/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
  } */
  
  .header1{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    z-index: 10;
  }
  

  .logo-container {
    display: flex;
    align-items: center;
    background: transparent; 
    padding: 10px 20px;
    border-radius: 8px;
  }
  
  .brand {
    font-size: 3rem; 
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: white;
  }
  
  .divider {
    height: 2rem; 
    width: 2px;
    background-color: white;
    margin: 0 10px;
  }
  
  .subtitle {
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-weight: 300;
  }
  
  .nav1 {
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    position: relative;
}


.nav1:hover {

    background-color: rgba(220, 220, 220, 0.6);
}

.nav1 {
    transition: background-color 0.3s ease;
}


  
  .nav1 {
    background-color: transparent;
    display: flex;
    align-items: center;
  }
  
  .nav1 a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
  }

  .nav1 a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: rgb(229, 238, 237);
    transition: width 0.3s ease-in-out;
  }
  
  .nav1 a:hover::after {
    width: 100%;
  }
  
  .nav1:hover {
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
  .enquire1{
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000; 
    padding: 10px 25px; 
    border: none;
    border-radius: 25px; 
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .enquire1:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

  .enquire1:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

  .enquire2{
    color: #000000;
  }
  
  .dropdown1 {
  position: relative;
  display: inline-block;
}

  .dropbtn1 {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 1em;
  cursor: pointer;
  padding: 10px 15px;
}

  .dropdown-content1 {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 120px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 15px;
}

  .dropdown-content1 a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

  .dropdown-content1 a:hover {
  background-color: #f1f1f1;
}


  .dropdown1:hover .dropdown-content1 {
  display: block;
}

  .dropbtn1:hover {
  opacity: 0.8;
}


  .dropdown-content1 {
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

  .dropdown1:hover .dropdown-content1 {
  transform: scaleY(1);
}


  .dropdown-content1 a:not(:last-child) {
  border-bottom: 1px solid #eee;
}


  .dropdown-content1 a {
  padding-left: 35px;
  position: relative;
}


  .dropbtn1::after {
  content: '▼';
  font-size: 0.7em;
  margin-left: 5px;
}
  

  .carousel {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
    min-width: 100%;
    position: relative;
  }
  
  .carousel-item video,
  .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: white;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
  }
  
  .caption h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .know-more {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000; 
    text-decoration: none;
    padding: 10px 25px; 
    border: none;
    border-radius: 25px; 
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  