/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.top-bar {
  background-color: #fecd1a;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  gap: 50px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  gap: 10px;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-top: -70px;
  margin-bottom: -30px;
}


.search-bar {
  display: flex;
  align-items: center;
  background-color: #f1f1f4;
  border-radius: 25px;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  border-bottom: 4px solid #fecd1a;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  box-sizing: border-box;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.search-bar i {
  margin-right: 10px;
  color: #888;
  font-size: 18px;
}

#suggestionsList {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 6px;
  padding: 0;
  list-style: none;
  z-index: 10;
}

#suggestionsList li {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

#suggestionsList li:hover {
  background-color: #f0f0f0;
}

#suggestionsList img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.navbar-links {

  display: flex;
  gap: 15px;
}
.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}
.navbar-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fecd1a;
}
.navbar-icons {
  display: flex;
  gap: 25px;
}
.navbar-icons a {
  color: #333;
  font-size: 18px;
  transition: 0.3s ease;
}
.navbar-icons a:hover {
  color: #fecd1a;
}
.request-btn {
  background-color: #fecd1a;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  margin-left: 20px;
}
.request-btn:hover {
  background-color: #e0b800;
  transform: scale(1.05);
}
.request-btn i {
  margin-right: 8px;
}
.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 360px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popIn 0.3s ease;
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}
.form-container input:focus,
.form-container textarea:focus {
  border-color: #fecd1a;
  outline: none;
}
.form-container button {
  width: 100%;
  background-color: #fecd1a;
  border: none;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.form-container button:hover {
  background-color: #e0b800;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fefefe;
  color: #333;
}

.about-hero {
  background: linear-gradient(to right, #92ca32, #b67316);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  line-height: 1.8;
}

.about-section h2 {
  font-size: 2em;
  margin-top: 40px;
  color: #2a5298;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 10px 0;
  font-size: 1.1em;
  color: #444;
}

.features i {
  color: #bee719;
  margin-right: 8px;
}

.team-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.team-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  border-radius: 10px;
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #2a5298;
  color: white;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #1e3c72;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }
  .about-hero h1 {
    font-size: 2.2em;
  }
  .about-hero p {
    font-size: 1em;
  }
  .about-section h2 {
    font-size: 1.5em;
  }
}
.site-footer {
  background-color: #fff9c4;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 2px solid #f9e36a;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-section h3,
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #000;
  font-weight: 500;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #333;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #000;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* Top bar */
  .top-bar {
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    padding: 8px;
  }

  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo img {
    height: 100px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .navbar-icons {
    gap: 15px;
  }

  .request-btn {
    width: 100%;
    margin: 10px 0 0 0;
  }

  /* Search Bar */
  .search-bar {
    width: 100%;
    max-width: 100%;
    padding: 8px 15px;
    border-radius: 20px;
  }

  .search-bar input {
    font-size: 14px;
  }

  /* Popup Form */
  .form-container {
    width: 90%;
    padding: 25px;
  }

  /* About Hero */
  .about-hero {
    padding: 50px 15px;
  }

  .about-hero h1 {
    font-size: 2em;
  }

  .about-hero p {
    font-size: 1em;
  }

  /* About Section */
  .about-section {
    padding: 30px 15px;
  }

  .about-section h2 {
    font-size: 1.4em;
  }

  .features li {
    font-size: 1em;
  }

  /* Team Section */
  .team-container {
    flex-direction: column;
    gap: 20px;
  }

  .team-card {
    width: 100%;
  }

  /* Include/Exclude Section (from earlier) */
  .include-exclude-boxes {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .include-box,
  .exclude-box {
    width: 100%;
    padding: 20px;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .include-title,
  .exclude-title {
    text-align: center;
    font-size: 18px;
  }

  .include-box li,
  .exclude-box li {
    font-size: 15px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-section {
    min-width: unset;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 10px 0;
  }
}


/* ================= MOBILE FIXES ================== */
@media screen and (max-width: 768px) {
  /* Center navbar and spacing fixes */
  .navbar {
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .logo-search-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -80px;
  }

  .logo img {
    height: 80px;
    align-items: center;
    margin: 0px auto -30px;
    
  
  }

  .navbar-links {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .navbar-icons {
    justify-content: center;
  }

  .search-bar {
    width: 95%;
    margin: 10px auto;
  }
  @media screen and (max-width: 768px) {
  .request-btn {
    display: block;
    width: 80%;
    max-width: 250px;
    margin: 15px auto;
    padding: 12px;
    font-size: 15px;
    text-align: center;
  }
}


  /* Hero Image */
  .hero-slider {
    height: 220px;
  }

  .slide {
    height: 220px;
  }

  /* Section spacing and centering */
  .package-buttons {
    padding: 10px 0;
  }

  .trending-section,
  .himachal-section,
  .international-section,
  .ladakh-spiti-section,
  .kashmir-section {
    padding: 30px 10px;
  }

  .trending-title,
  .section-title {
    font-size: 20px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .trending-line,
  .section-line {
    margin-bottom: 20px;
  }

  /* Cards Grid Fix */
  .trending-cards,
  .ladakh-spiti-cards,
  .himachal-section .trending-cards,
  .international-section .trending-cards,
  .kashmir-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .package-card {
    width: 95%;
    margin: auto;
  }

  /* Popup Form Responsiveness */
  .form-container {
    width: 90%;
    padding: 20px;
  }

  /* Footer */
  .site-footer {
    text-align: center;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .search-bar input {
    font-size: 14px;
  }

  .package-buttons button {
    font-size: 13px;
    padding: 8px 12px;
  }

  .review-section {
    padding: 30px 10px;
  }

  .review-card {
    padding: 15px;
  }

  .section-title {
    font-size: 18px;
  }

  .footer-section h3 {
    font-size: 15px;
  }

  .footer-section ul li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .show-more-btn {
    font-size: 13px;
    padding: 8px 15px;
  }
}




