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

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

/* Navbar */
.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;
}

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

/* Show menu button and hide links on small screens */
@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 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; /* to offset fixed navbar */
}

.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 */
.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 (if needed, you can add one later) */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
