* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
body {
  color: #333;
  line-height: 1.6;
  background: #fafafa;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  z-index: 1000;
  transition: 0.3s;
}
nav.scrolled {
  background: #111;
}
nav h1 {
  color: white;
  font-size: 1.4rem;
  /* font-weight: 500; */
  line-height: 1.5;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 13px;
}
nav ul li a:hover {
  color: #ff5722;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    right: 10%;
    background: #111;
    flex-direction: column;
    width: 200px;
    display: none;
    border-radius: 8px;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    margin: 15px 0;
    text-align: center;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero Slider */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slides {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.slides img.active {
  opacity: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 10px;
}
.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px #000;
}
.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0;
}
.hero-content a {
  padding: 12px 30px;
  background: #ff5722;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.hero-content a:hover {
  background: #e64a19;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  nav h1 {
    font-size: 1rem;
  }
}

section {
  padding: 80px 10%;
  text-align: center;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #ff5722;
}

/* About */
#about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* Services */
.services,
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Counters */
.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.counter-box {
  margin: 20px;
  text-align: center;
  color: #4c4a4a;
}
.counter {
  font-size: 2.5rem;
  font-weight: bold;
  /* color: #ff5722; */
}

/* Testimonials Carousel */
.testimonial-container {
  max-width: 700px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.testimonial {
  display: none;

  padding: 30px;
  border-radius: 12px;
}
.background_color {
  padding: 10px 0;
  background: #dbd9d9;
  border-radius: 5px;
}
.uppercase {
  text-transform: uppercase;
  opacity: 0.8;
}
.testimonial.active {
  display: block;
}

/* Contact */
form {
  max-width: 600px;
  margin: auto;
}
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}
form button {
  background: #ff5722;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
form button:hover {
  background: #e64a19;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 10%;
  text-align: center;
}
footer p {
  margin: 10px 0;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff5722;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 2rem;
  height: 50px;
  width: 50px;
  /* padding: 15px; */
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.whatsapp-float:hover {
  background: #1ebc59;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.mg-top {
  margin-top: 60px;
}
.mg-top .card {
  padding: 5px;
  border-radius: 5px;
  padding-bottom: 0;
}

.mg-top .card img {
  margin-bottom: 0;
  border-radius: 5px;
}
.hotal-link {
  margin: 0 auto;
  margin-top: 10px;
  background-color: #cec9c9;
  width: 20%;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hotal-link a {
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hotal-link svg {
  margin-left: 6px;
}
.services_img {
  position: relative;
}
.new::before {
  content: "Hotel Services";
  position: absolute;
  top: -30px;
  left: 3px;
  font-weight: bold;
}
body {
  background-color: #e2dbdb;
}

/* hotal images */
.container {
  background-color: #e2dbdb;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, auto);
  row-gap: 10px;
  column-gap: 10px;
  margin: 20px;
}

.images img {
  max-width: 100%;
  border-radius: 5px;
  transition: all 0.3s;
}

.images img:hover {
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  .hotal-link {
    width: 100%;
  }
}
