body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.navbar {
   position: sticky;
   background-color: #1c2251;
   top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
      /* color: #e62f2f; */
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-links {
  padding-right: 20px;
  list-style: none;
  display: flex;
  gap: 20px;
}
.logo img{
  margin: 0;
  padding: 0;
  display: block; /* Ensures no extra space is added */
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #fefefe;
  font-size: 1rem;
  transition: color 0.3s ease;
}


/* Toggle Button Styling */
.toggle-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }
 .logo{
  height: 90px;
  width: 180px;
 }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0px;
    background-color: #1c2251;
    width:100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 15px;
    text-align: center;
  }
}

/* sliders */
.slider-container {
  /* padding: 50px; */
  /* margin: 50px; */
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 90vh;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  padding-top: 350px;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  background-size: cover;
  background-position: center;
}

.content {
  width: auto;
  color: white;
  background-color: rgba(188, 184, 184, 0.5);
  border-radius: 10px;
  margin-left: 30px;
  padding: 20px;
}

.content h1 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.content p {
  color: #ffffff;
  animation: fadeIn 2s ease-in-out;
}

.content button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
}

.content button:hover {
  background-color: #000000;
  color: #ffffff;
 }

.navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.navigation button {
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 50%;
  background-color: white;
  opacity: 0.7;
  cursor: pointer;
}

.navigation button.active {
  opacity: 1;
  background-color: #0a0e4e;
}


  /* about us  */
  .container {
    display: flex;
    
    /* max-width:1000px; */
    margin: 30px 170px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}
.image-container {
    flex: 1;
    max-width: 50%;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
}
.text-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    text-align: left;
}
h1 {
    color: #333;
}
p {
    font-size: 18px;
    color: #555;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 100%;
        margin: auto;
        /* text-align: center; */
    }
    .image-container, .text-container {
        max-width: 100%;
    }
    
}

.content {
  text-align: center;
  padding: 50px;
}

.download-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f0a500;
  color: rgb(255, 253, 253);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(19, 25, 88, 0.8);
  cursor: pointer;
}

.download-button:hover {
  background-color: #271750;
  color: rgb(255, 253, 253);

}

.download-button .icon {
  margin-right: 10px;
}
header {
  /* background-color: #007bff; */
align-items: center;
text-align: center;
  color: white;
  /* padding: 20px; */
}

.amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.amenity {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.amenity img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.amenity h2 {
  margin: 15px 0 10px;
  color: #007bff;
}

.amenity p {
  color: #555;
}

.amenity:hover {
  transform: translateY(-5px);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .amenities-container {
      grid-template-columns: 1fr;
  }
}
.body {
  font-family: Arial, sans-serif;
  /* background-color: #f4f4f4; */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* height: 100vh; */
}
.containers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1200px;
}

/* Styling for individual image boxes */
.image-box {
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 1024px) {
  .containers {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .containers {
      grid-template-columns: 1fr;
  }
}


.footer {
  background: #1c2251;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer p{
  color: #ffffff;
  font-size: 1rem;
}
.footer div {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}
.footer h3 {
  margin-bottom: 15px;
}
.footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer iframe {
  width: 100%;
  height: 200px;
  border: none;
}
@media (max-width: 768px) {
  .footer {
      flex-direction: column;
      text-align: center;
  }
}