/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  header {
    background: #f4a261;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  
  .i1
  {
     height: 1200px;
  }
  
  header h1 {
    margin: 0;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  section {
    padding: 2rem;
    margin: 1rem;
    background: #f7ede2;
    border-radius: 10px;
  }
  
  .gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .gallery img {
    width: calc(33.333% - 10px);
    border-radius: 5px;
  }

  form {
    max-width: 600px;
    margin: auto;
  }
  
  form label {
    display: block;
    margin: 10px 0 5px;
  }
  
  form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .map {
    margin-top: 20px;
    border: 2px solid #264653;
    border-radius: 10px;
    overflow: hidden;
  }
  

  footer {
    background: #264653;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }

  .carousel {
    position: absolute;
    top: 650px;
    left: 50px;
    height: 90%;
    width: 90%;
    overflow: hidden;
    border-radius: 10px;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Navigation Arrows */
  .carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .carousel-navigation button {
    background-color: white(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: background-color 0.3s;
  }

  .carousel-navigation button:hover {
    background-color:#fff(0, 0, 0, 0.7);
  }

   /* Dropdown Menu */
   .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(58, 56, 58, 0.867)(0, 0, 0, 0.2);
  }

  .dropdown-menu li a {
    padding: 10px 15px;
    color: black;
  }

  .dropdown-menu li a:hover {
    background-color: #575757;
  }

  /* Show dropdown on hover */
  .nav-item:hover .dropdown-menu {
    display: block;
  }

 /* Dropdown Menu */
 .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-width: 150px;
  min-height: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


.nav-menu {

  justify-content:right;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  display: block;
}

#para
{
  height: 150px;
  width: 500px;
  
}




