* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  text-align: center;
}

.hero-content  h1{
  font-size: 50px;
}


header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.search{
  height:55px;
  width: 75%;
  margin-top: 25px;
  border-radius: 25px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 85px;
}

.search-bar{
  height: 50px;
  width: 90%;
  border: none;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-left: 50px;
  outline: none;
}

.search:focus-within{
  border: 3.5px solid orange;border-color: #fda738;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.search:hover{
  border: 3.5px solid orange;border-color: #fda738;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.search-button{
  border: none;
  height: 100%;
  width: 50px;
  background-color: #fff;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.search-button i{
  font-size: 20px;
}

.search-button i:hover{
  cursor: pointer;
}

.section-choose{
  height: 160px;
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 100px;
}

.trip {
  height: 100px;
  width: 100px;
}

.trip img {
  height: 100%;
  width: 100%;
  object-fit: contain; 
}

.trip h4{
  display: flex;
  justify-content: center;
}

.flight {
  height: 100px;
  width: 100px;
}

.flight img {
  height: 100%;
  width: 100%;
  object-fit: contain; 
}

.flight h4{
  display: flex;
  justify-content: center;
}


.visa {
  height: 100px;
  width: 100px;
}

.visa img {
  height: 100%;
  width: 100%;
  object-fit: contain; 
}

.visa h4{
  display: flex;
  justify-content: center;
}


.hotel {
  height: 100px;
  width: 100px;
}

.hotel img {
  height: 100%;
  width: 100%;
  object-fit: contain; 
}

.hotel h4{
  display: flex;
  justify-content: center;
}


header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

nav {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding-right: 40px;
  padding-left:  40px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 100;
}

.jaghumeiya-logo{
    height: 70px;
    width: 250px;
    background-image: url("Images/WhatsApp\ Image\ 2025-07-06\ at\ 22.38.47_95a947b2.jpg");
    background-size: cover;
    
}

nav h2 {
  color: #0e8c7e;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0e8c7e;
}
.popular-trips{
  color: #515151;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.popular-trips i{
  color: #fda738;
}

.popular-trips-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.popular-trips-heading h1 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
}

.popular-trips-heading h1 span {
  color: #d33a0b; /* orange highlight */
  font-weight: 600;
}


.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.save {
  background-color: #e7f8e9;
  color: green;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.callback-btn {
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  color: #000;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  /* .swiper-slide {
    width: 85% !important;
  } */
}

.section {
  padding: 80px 60px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #515151;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .content {
  padding: 15px;
}

.card .content h3 {
  margin-bottom: 10px;
  color: #0e8c7e;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background-color: #0e8c7e;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0a6e63;
}

footer {
  background-color: #0e8c7e;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.nav-two{
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fda738;

}

.nav-two p{
  color: white;
  font-weight: 700;
}

.nav-two p:hover{
  transform: scale(1.2);
  color: #333;
  cursor: pointer;
}

.nav-two a{
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.nav-two a:hover{
  transform: scale(1.2);
  color: #333;
  cursor: pointer;
}
  
  /* Swiper container */
/* .swiper {
  width: 100%;
  padding: 40px 60px;
  background: #f4f4f4;
  box-sizing: border-box;
}
.swiper-slide {
  width: 360px !important; /* set consistent width 
} */

.card {
  height: 100%; /* Let it fill the slide */
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  transition: 0.3s ease;
}
.card {
  height: 500px; /* Fixed card height */
}



.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-img {
  width: 100%;
  height: 250px; /* FIXED HEIGHT for all images */
  object-fit: cover;
}

.card-img {
  height: 300px; /* taller image */
}
.card-content {
  flex: 1; /* fill remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
}

.duration, .rating, .itinerary {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}
.save {
  background-color: #e7f8e9;
  color: green;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.callback-btn {
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  color: #000;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.callback-btn:hover{
  background-color: #f3b564;
}

/* Responsive */
@media (max-width: 768px) {
  /* .swiper-slide {
    width: 85% !important;
    } */
  }
  
 /* MODAL BACKGROUND */
.form-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* MODAL CONTENT */
.form-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* TOUR INFO BLOCK */
.tour-summary {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.tour-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.current-price {
  font-weight: bold;
}
.original-price {
  text-decoration: line-through;
  color: #999;
}
.save-tag {
  background: #e7f8e9;
  color: green;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 5px;
}

/* FORM INPUTS */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
textarea {
  resize: vertical;
  height: 80px;
}

/* PHONE FIELD WITH SELECT */
.phone-wrap {
  display: flex;
  gap: 10px;
}
.phone-wrap select {
  width: 70px;
}

/* 2-COLUMN ROW */
.row {
  display: flex;
  gap: 10px;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #f60;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #e55a00;
}

.tour-summary h3 {
  margin: 0;
  font-size: 16px;
}
.price-block {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.popup.open {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.popup-content h2 {
  margin-bottom: 15px;
  color: #333;
  font-size: 22px;
}

.popup-content input,
.popup-content textarea,
.popup-content button {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.popup-content button {
  background-color: #007bff;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.popup-content .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.destination-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
  color: #333;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.destination-card {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.destination-card h3 {
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}

.destination-card button {
  background-color: #ff8800;
  border: none;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.destination-card:hover {
  transform: scale(1.03);
}

.destination-card button:hover {
  background-color: #ff5500;
}

/* Responsive: 2 cards per row on tablets, 1 on phones */
@media (max-width: 1024px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }
}

.explore-btn {
  background: linear-gradient(to right, #ff512f, #f09819);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.explore-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #f09819, #ff512f);
}

.services-section {
  background: url('images/beach-bg.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.services-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  z-index: 1;
}

.services-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  color: #333;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.service-icon {
  font-size: 40px;
  color: #f57c00;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.enquire-btn {
  display: inline-block;
  background: #f57c00;
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.enquire-btn:hover {
  background: #e65100;
}

@media screen and (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

.heading-services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.heading-services-section h1 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
}

.heading-services-section h1 span {
  color: #d33a0b; /* orange highlight */
  font-weight: 600;
}

/* horizontal lines */
.heading-services-section::before,
.heading-services-section::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ff5500, transparent);
  max-width: 200px;
}
.heading-services-section::before {
  margin-right: 15px;
}
.heading-services-section::after {
  margin-left: 15px;
}

.services-hero {
  position: relative;
  background: url(Images/services.jpg) no-repeat center center/cover;
  padding: 80px 20px;
  color: #fff;
}

.services-overlay {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  padding: 40px;
  border-radius: 10px;
}

/* Section Heading */
.heading-services-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}
.heading-services-section h1 span {
  color: #ffb703;
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card Styling */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
}

/* Icons */
.service-icon {
  font-size: 40px;
  color: #f08404;
  margin-bottom: 15px;
}

/* Card Text */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}
.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Enquire Button */
.enquire-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f08404;  /* 🔵 Blue */
  color: #fff;          /* White text */
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.enquire-btn:hover {
  background: #d33a0b;  /* 🔵 Darker blue on hover */
}


.services-hero {
  background-color: #111;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.services-overlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
  border-radius: 20px;
  padding: 50px 30px;
  width: 100%;
  max-width: 1300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.heading-services-section h1 {
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
}
.heading-services-section span {
  color: #ffb703;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-icon {
  font-size: 35px;
  color: #f08404;
  margin-bottom: 15px;
}
.enquire-btn {
  background: #f08404;
  color: #111;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}
.enquire-btn:hover {
  background: #d33a0b;
}

.ladakh-feedback {
  padding: 70px 15px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}
.ladakh-feedback .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}
.section-title span {
  color: #f08404;
}

.rating-box {
  flex: 0 0 260px;
  background: #fff;
  border-right: 1px solid #ddd;
  text-align: center;
  padding: 20px 15px;
  min-width: 240px;
}
.rating-box .stars {
  font-size: 28px;
  color: #f08404;
  margin-bottom: 10px;
}
.rating-box .rating-value {
  font-size: 3rem;
  font-weight: bold;
  color: #2ecc71;
}
.review-link {
  color: #2ecc71;
  font-weight: 600;
  display: inline-block;
  margin: 10px 0;
  text-decoration: underline;
}
.country-info {
  color: #333;
  font-size: 14px;
}
/* .testimonial-row {
  flex: 1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  width: 320px;
} */
/* .user-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.user-details img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.user-details h4 {
  margin: 0;
  font-size: 16px;
}
.user-details .stars {
  font-size: 14px;
  color: #f08404;
} */
/* .testimonial-text {
  font-size: 15px;
  color: #444;
  margin: 10px 0;
} */
.img-row {
  display: flex;
  gap: 8px;
}
.img-row img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 768px) {
  /* .feedback-content {
    flex-direction: column;
    align-items: center;
  }
  .rating-box {
    border-right: none;
    border-bottom: 1px solid #ddd;
  } */
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 20px;
  text-align: center;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #3d3d3d;
  margin: 0;
  position: relative;
  transition: color 0.3s ease;
}

.section-heading h2 span {
  color: #f97306; /* Orange */
  font-weight: 700;
  transition: color 0.3s ease;
}

.section-heading h2:hover {
  color: #ff6d00;
}

.section-heading h2:hover span {
  color: #d35400;
}

/* Lines with gradient and hover animation */
.line {
  flex: 1;
  height: 2px;
  min-width: 60px;
  background: linear-gradient(to right, transparent, #ffa726, #ff7043, transparent);
  transition: all 0.4s ease;
}

.section-heading:hover .line.left-line {
  background: linear-gradient(to right, transparent, #fbc02d, #f57c00, transparent);
}

.section-heading:hover .line.right-line {
  background: linear-gradient(to right, transparent, #f57c00, #fbc02d, transparent);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section-heading {
    flex-direction: column;
  }

  .line {
    width: 60%;
    height: 2px;
    margin: 10px 0;
  }
}

/* .testimonials-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
} */
.testi-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.testi-heading span {
  color: #f97306;
}

/* .testimonials-swiper {
  padding-bottom: 40px;
} */

.star-rating {
  color: #4CAF50;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.user-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feedback-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.thumbs {
  display: flex;
  gap: 8px;
}
.thumbs img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}
/* .swiper-button-next, .swiper-button-prev {
  color: #f97306;
} */

.rating-box{
  margin-right: 35px;
  margin-left: 40px;
  height: 260px;
  border-radius: 10px;
}

.choose-us-section {
  background: linear-gradient(to right, #fffaf0, #fff);
  padding: 60px 20px;
  margin-top: 30px;
  width: 90%;
  margin-left: 70px;
  border-radius: 50px;
}

.choose-us-container {
  max-width: 1200px;
  margin: auto;
}

.choose-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  padding-left: 300px;
}
.choose-heading span {
  color: #ff6600;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.choose-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.choose-card .icon {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.choose-card p {
  color: #666;
  font-size: 14px;
}

.enhanced-footer {
  background: radial-gradient(circle at 10% 20%, #0c0c0c, #1b1b1b);
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 30px;
  position: relative;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  animation: slideIn 1s ease-out forwards;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.footer-logo span {
  color: #ffb703;
}
.footer-description {
  font-size: 14px;
  color: #aaa;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-heading {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-right: 210px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffb703;
  transition: width 0.4s ease;
}

/* Elongate on hover */
.footer-heading:hover::after {
  width: 100%;
}


.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #bbb;
}
.footer-column ul li i {
  color: #ffb703;
  margin-right: 10px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #ffb703;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-icons a {
  background: #2d2d2d;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #ffb703;
  color: #111;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2f2f2f;
  font-size: 13px;
  color: #888;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
  }
  .footer-description {
    text-align: center;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-column ul li {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
}

html {
  scroll-behavior: smooth;
}

.suggestions-box {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  width: 250px;
}
.suggestions-box div {
  padding: 10px;
  cursor: pointer;
}
.suggestions-box div:hover {
  background-color: #ffa726; /* orange hover */
  color: white;
}

#formPopup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  text-align: center;
}

.form-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.form-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-modal {
  display: none;
  /* your styles */
}

.form-modal.show {
  display: block;
}


#callbackModal {
  display: none;
}
#callbackModal.show {
  display: block;
}

#formPopup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


/* --- General Responsive Improvements (Apply to all screen sizes) --- */

/* Fixes for hero search bar spacing */
.hero-content {
    width: 90%;
    max-width: 600px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search {
    width: 100%; /* Make search bar fluid */
    margin: 25px auto 0; /* Center it */
}

/* Fixes for "Choose Us" section heading padding */
.choose-heading {
    padding-left: 0; /* Remove fixed padding */
    text-align: center;
}

/* --- Media Queries for screens smaller than 1024px (Laptops & Tablets) --- */
@media screen and (max-width: 1024px) {
    /* Main Navigation */
    nav {
        padding: 10px 20px;
    }
    
    .jaghumeiya-logo {
        width: 180px;
        height: 50px;
    }

    nav ul {
        gap: 15px;
    }

    /* Second Navigation Bar */
    .nav-two {
        display: none; /* Hide for cleaner mobile view */
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }

    /* Choose Section (Trips, Flights) */
    .section-choose {
        flex-wrap: wrap;
        padding: 0 10px;
        height: auto;
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .section-choose > a {
        width: 45%;
        margin: 10px 5px;
        text-align: center;
    }

    /* Popular Trips (Swiper)
    .swiper {
        padding: 20px;
    }

    /* Remove the fixed width that was causing issues */
    /* .swiper-slide {
        width: 80% !important; 
        /* The !important rule is often a sign of a conflict, but here it's
        /* necessary to override the inline Swiper styles. */
    /* }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    } */ 

    /* Services Section */
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .heading-services-section h1 {
        font-size: 2rem;
    }

    /* Destination Grid */
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-card {
        height: 250px;
    }

    /* Feedback Section */
    /* .feedback-content {
        flex-direction: column;
        align-items: center;
    } */
    
    .rating-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
        width: 100%;
        margin: 0 0 20px 0;
    }

    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-heading {
        padding-right: 0;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* --- Media Queries for screens smaller than 768px (Mobile Phones) --- */
@media screen and (max-width: 768px) {
    /* Main Navigation */
    nav {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }

    /* Choose Section (Trips, Flights) */
    .section-choose > a {
        width: 80%; /* Single column view */
    }

    /* Popular Trips (Swiper) */
    /* .swiper {
        padding: 10px;
    } */

    /* Destination Grid */
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Services Section */
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .heading-services-section h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        width: 90%;
        margin: auto;
    }

    /* Choose Us Section */
    .choose-grid {
        grid-template-columns: 1fr;
    }

    /* Modals */
    .form-modal .form-content,
    .modal .modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .phone-wrap {
        flex-direction: column;
        gap: 5px;
    }
    
    .phone-wrap select {
        width: 100%;
    }
    
    .row {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Global adjustments for all devices below 1024px --- */
@media screen and (max-width: 1024px) {
    /* Main Navigation */
    nav {
        padding: 10px 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-two {
        display: none;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Section Choose (Trips, Flights, etc.) */
    .section-choose {
        flex-wrap: wrap;
        padding: 0 20px;
        height: auto;
        justify-content: center;
        gap: 20px;
    }
    
    .section-choose a {
        width: 45%;
        text-align: center;
    }

    .section-choose img {
        width: 80px;
        height: auto;
    }

    /* Swiper Slider */
    /* .swiper-slide {
        width: 80% !important; /* Forces the slide to be wider on tablets */
    /* }

    .swiper-button-prev, .swiper-button-next {
        display: none; /* Hide navigation buttons on mobile
    } */
    
    /* Destination Grid */
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Services Section */
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Feedback Section */
    /* .feedback-content {
        flex-direction: column;
        align-items: center;
    } */

    .rating-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Choose Us Section */
    .choose-us-section {
        width: 95%;
        margin: 30px auto;
        border-radius: 20px;
        padding: 30px 15px;
    }

    .choose-heading {
        padding-left: 0;
        text-align: center;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-heading {
        padding-right: 0;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}


/* --- Mobile-Specific Adjustments below 768px --- */
@media screen and (max-width: 768px) {
    /* Overall Layout & Spacing */
    body {
        font-size: 14px;
    }
    
    .section-heading h2 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-content {
        padding: 10px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }

    .search {
        width: 90%;
        margin: 20px auto 0;
    }

    /* Swiper Slider */
    /* .swiper-slide {
        width: 95% !important; /* Full width for mobile 
    } */

    /* Destination & Services */
    .destination-grid,
    .services-container,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer-row {
        text-align: center;
        flex-direction: column;
    }
    
    .footer-heading, .footer-column, .social-icons {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    /* Modals */
    .form-modal .form-content,
    .modal .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .phone-wrap, .row {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Global adjustments for all devices below 1024px --- */
@media screen and (max-width: 1024px) {
    /* Main Navigation */
    nav {
        padding: 10px 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Second Navigation Bar - Now Visible & Responsive */
    .nav-two {
        display: flex; /* Make it visible */
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 10px;
        gap: 10px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Section Choose (Trips, Flights, etc.) */
    .section-choose {
        flex-wrap: wrap;
        padding: 0 20px;
        height: auto;
        justify-content: center;
        gap: 20px;
    }
    
    .section-choose a {
        width: 45%;
        text-align: center;
    }

    .section-choose img {
        width: 80px;
        height: auto;
    }

    /* Swiper Slider */
    /* .swiper-slide {
        width: 80% !important;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    } */
    
    /* Destination Grid */
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Services Section */
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Feedback Section */
    /* .feedback-content {
        flex-direction: column;
        align-items: center;
    } */

    .rating-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Choose Us Section */
    .choose-us-section {
        width: 95%;
        margin: 30px auto;
        border-radius: 20px;
        padding: 30px 15px;
    }

    .choose-heading {
        padding-left: 0;
        text-align: center;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-heading {
        padding-right: 0;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}


/* --- Mobile-Specific Adjustments below 768px --- */
@media screen and (max-width: 768px) {
    /* Overall Layout & Spacing */
    body {
        font-size: 14px;
    }
    
    .section-heading h2 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-content {
        padding: 10px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }

    .search {
        width: 90%;
        margin: 20px auto 0;
    }

    /* Section Choose - Fixed for Mobile */
    .section-choose a {
        width: 100%; /* Now stacks in a single column */
    }

    /* Swiper Slider */
    /* .swiper-slide {
        width: 95% !important;
    } */

    /* Destination & Services */
    .destination-grid,
    .services-container,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer-row {
        text-align: center;
        flex-direction: column;
    }
    
    .footer-heading, .footer-column, .social-icons {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    /* Modals */
    .form-modal .form-content,
    .modal .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .phone-wrap, .row {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- SECTION CHOOSE (ICONS) --- */
.section-choose {
    padding: 25px 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 100px;
}

/* Base styles for the icon cards - applies to all screens */
.section-choose a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px; /* A consistent size */
    padding: 25px 15px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-choose a:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section-choose img {
    height: 80px;
    width: 80px;
    object-fit: contain; 
    margin-bottom: 10px;
}

.section-choose h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* --- Responsive Adjustments for Tablets & Mobile --- */
@media screen and (max-width: 1024px) {
    .section-choose {
        padding: 20px;
        gap: 20px;
    }

    .section-choose a {
        width: 45%; /* Two cards per row on tablets */
        padding: 20px 10px;
    }
}

@media screen and (max-width: 768px) {
    .section-choose {
        padding: 10px;
        gap: 15px;
    }
    
    .section-choose a {
        width: 100%; /* Single column for mobile */
        max-width: 300px; /* Prevents them from getting too wide on large phones */
    }

    .section-choose img {
        height: 70px;
        width: 70px;
    }
    
    .section-choose h4 {
        font-size: 0.95rem;
    }
}

/* --- Popular Trips & Testimonial Sliders --- */
/* .swiper {
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
} */

/* Trip Card & Testimonial Card Base Styles */
.card, .testimonial-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%; /* Important: Makes all cards in a row the same height */
    width: 90%; /* Fluid width for the card itself */
    max-width: 400px;
}

/* Card image and content adjustments for fluid layout */
.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 768px) {
    /* .swiper-button-prev,
    .swiper-button-next {
        display: none;
    } */
}

/* Make card titles and text more readable */
.card-content .title {
    font-size: 1rem;
}

.card-content .duration, .card-content .rating {
    font-size: 0.9rem;
}

/* .testimonial-card {
    padding: 20px;
    width: 90%;
} */

/* .swiper-wrapper{
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
} */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Hover effect for desktop */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 12px;
    right: 12px;
  }
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

.search-container {
   position: relative;
   max-width: 420px;
   margin: 30px auto;
   width: 90%;
   }

#search-input {
   width: 100%; 
   padding: 12px 16px;
   border: none; 
   border-radius: 25px; 
   font-size: 16px; 
   outline: none; 
   font-family: "Poppins", sans-serif; 
   transition: 0.3s ease; }

#search-input:hover{
  border: 2px solid #ff7b00; 
   border-radius: 25px; 
}

#search-input:focus{
  border: 2px solid #ff7b00; 
   border-radius: 25px; 
}
   
   
#search-input:focus {
   box-shadow: 0 0 10px rgba(255, 123, 0, 0.4); } 
   
#suggestions {
   position: absolute; 
   background: #fff; 
   color: #000;
   list-style: none; 
   width: 100%; 
   border-radius: 12px; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
   max-height: 250px; 
   overflow-y: auto; 
   margin-top: 5px;
   margin-bottom: 15px; 
   z-index: 10;
   } 
   
#suggestions li { 
  padding: 10px 15px; 
  cursor: pointer; 
  font-size: 15px; 
  font-family: "Poppins", sans-serif; 
  transition: 0.2s ease; } 
  
#suggestions li:hover { 
  background: #f88922; 
  color: #fff; } 
  
.no-result { 
  text-align: center; 
  color: #777; 
  padding: 10px; } 
  
/* Responsive */ 

@media (max-width: 600px) { 
  #search-input { 
    font-size: 14px; 
    padding: 10px 12px; } 
  }

/* Input field */
.search-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 25px;
    border: 2px solid #ff7f00; /* Orange border */
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

/* Dropdown container */
.search-dropdown {
    position: absolute;
    width: 100%;
    max-height: 200px; /* Adjust height as needed */
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ff7f00;
    border-radius: 10px;
    margin-top: 5px; /* Gap between input and dropdown */
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Dropdown item */
.search-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s;
    margin-bottom: 5px;
}

/* Hover effect */
.search-dropdown li:hover {
    background-color: #ff7f00;
    color: #fff;
}

/* Scrollbar styling (optional) */
.search-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-dropdown::-webkit-scrollbar-thumb {
    background-color: #ff7f00;
    border-radius: 4px;
}

.search-dropdown::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
}

/* Default dropdown spacing */
#suggestions {
   margin-top: 5px;
   margin-bottom: 15px; /* Default bottom margin */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    #suggestions {
        margin-top: 5px;
        margin-bottom: 10px; /* Slightly smaller margin on mobile */
    }

    #search-input {
        font-size: 14px; 
        padding: 10px 12px;
    }
}

.search-container {
   position: relative;
   max-width: 420px;
   margin: 30px auto;
   width: 90%;
   padding-bottom: 25px; /* Added space below dropdown */
}

@media (max-width: 600px) {
  .search-container {
      padding-bottom: 35px; /* Slightly smaller space on mobile */
  }
}

/* .img-row video {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.img-row {
  margin-top: 15px;
  width: 100%;
  max-width: 350px; 
  height: 200px;    
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto; 
}

.img-row video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
} */

