/* 
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #007bff;
}


.menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}


@media (max-width: 1000px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
  }

  .menu-btn {
    display: block;
  }
}


.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("https://source.unsplash.com/1600x900/?india,travel")
    center/cover;
  color: white;
  position: relative;
  margin-top: 70px; 
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.cta {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cta:hover {
  background: #0056b3;
}


.carousel-section {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.carousel-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.carousel-card {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
} */
/* General Styles */
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 499;
  transition: all 0.3s ease-in-out;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: 0.3s;
}

.logo:hover {
  color: #0056b3;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 5px;
}

.nav-links a:hover {
  color: white;
  background: #007bff;
}

/* Dropdown Menu */
.dropdown-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px 15px;
  color: #333;
  transition: 0.3s;
  border-radius: 5px;
}

.dropdown-btn:hover {
  background: #007bff;
  color: white;
}

.dropdown-menu {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 500;
}

.dropdown-menu[data-state="open"] {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.dropdown-menu a:hover {
  background: #007bff;
  color: white;
}

/* Responsive mobile menu */
.menu-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("https://source.unsplash.com/1600x900/?india,travel") center/cover;
  color: white;
  position: relative;
  margin-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.cta {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.cta:hover {
  background: #0056b3;
}

/* Carousel Section */
.carousel-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.carousel-section h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: #333;
  font-weight: bold;
}

.carousel-card {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #007bff;
}

.carousel-card h3 {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #333;
}

.carousel-card p {
  font-size: 1rem;
  color: #666;
  padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 1.2rem;
  }

  .menu-btn {
    display: block;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .carousel-section h2 {
    font-size: 1.8rem;
  }
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 1rem;
}
