* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
    }


/* icone */
.bounce {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* endicone */


  /* Header styling */
.site-header {
  background-color: #b4d6f9;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Flexbox container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 100px;
  
}

/* Logo */
.logo img {
  height: 30px;
  width: auto;
  
}
.logo {
  flex-shrink: 0;
}

/* Header Styles */
.site-header {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
.header-container1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-container1 {
    margin: 0 20px;  /* reduce side margin on small screens */
    padding: 0 10px;
  }
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  gap: 25px;
}
/*.navbar .nav-links {*/
/*  display: flex;*/
/*  gap: 20px;*/
/*  list-style: none;*/
/*  margin: 0;*/
/*}*/

.navbar .nav-links li a {
  text-decoration: none;
  color: #1e3a8a;
  font-weight: 500;
}

.call-btn i, .whatsapp-btn i {
  margin-right: 6px;
  color: green;
}

.menu-toggle {
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  display: none; /* Will be shown only on mobile via media query */
}

/* Mobile Styles */
@media (max-width: 1100px) {
  .header-container1 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
    padding-left: 100px;
  }

  .navbar {
    display: none;
    width: 100%;
  }

  .navbar.active {
    display: block;
  }
}



   .hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.hero-content {
  margin-top: 2%;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #b4d6f9;
  color: rgb(21, 20, 20);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e64a19;
}

    /* call button */
    .contact-options {
  text-align: center;
  margin: 40px 0;
}

.contact-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}






/* destination */
   .popular-destinations {
      width: 100%;
      padding: 40px 40px; /* Removed horizontal space */
    }

.popular-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 30px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.destination-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.destination-card p {
  padding: 10px;
  margin: 0;
  font-weight: 600;
  color: #0066cc;
}
/* end destination */

    .contact form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact input,
    .contact textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }

    .contact button {
      align-self: flex-start;
    }
/* 
    footer {
      background-color: #0066cc;
      padding: 20px 0;
      text-align: center;
      color: white;
    } */

    /* whatsapp button */
    .whatsapp-float {
  position: fixed;
  bottom: 80px; /* Adjusted to appear below top button */
  right: 20px;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}



    /* footer */
      .site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #00aced;
  margin-bottom: 10px;
}

.footer-section.links ul {
  list-style: none;
  padding: 0;
}

.footer-section.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
  color: #fff;
}

.footer-section.contact p {
  margin: 8px 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-icons a:nth-child(1) { color: #00aced; }
.social-icons a:nth-child(2) { color: #3b5998; }
.social-icons a:nth-child(3) { color: #e4405f; }
.social-icons a:nth-child(4) { color: #0077b5; }

.social-icons a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}


   /* end footer */
    
    /* Tour Section */
   .tour-section {
  padding: 60px 0;
}

.tour-container {
  width: 100%;
  padding: 0 40px;   /* Reduced left-right spacing */
  margin: 0 auto;
  max-width: 100%;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card-body {
  padding: 15px;
}

.tour-card-body h3 {
  color: #0066cc;
  font-size: 20px;
  margin-bottom: 10px;
}

.tour-card-body p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.tour-btn {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tour-btn:hover {
  background-color: #004c99;
}


    @media (max-width: 768px) {
      .hero h2 {
        font-size: 24px;

      }
      .hero p {
        font-size: 13px;
      }

      nav ul {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul li {
        margin: 10px 0;
      }
    }

.window-scroll {
  overflow: hidden;
  padding: 30px 0;
 /* background-image: url('../img/back.jpg');  Optional dark background */
  opacity: inherit;
  margin-top: 80px;
}

.scroll-track {
  display: flex;
  gap: 40px;
  animation: scroll-slide 20s linear infinite;
  align-items: center;
}

.window-item {
  flex: 0 0 auto;
  text-align: center;
  color: white;
  scroll-snap-align: start;
}

.window-item img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #ccc;
  background: #fff;
  padding: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.window-item:hover img {
  transform: scale(1.08);
}

.window-item p {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

/* Auto scroll animation */
@keyframes scroll-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.window-scroll:hover .scroll-track {
  animation-play-state: paused;
}
/* Trending Group Holidays Start*/
.trending-section {
  padding: 81px 3px;
  background-color: #fff;
  text-align: center;
}

.trending-container {
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.trending-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trending-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trending-card {
  background-size: cover;
  background-position: center;
  height: 250px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.trending-card:hover {
  transform: scale(1.03);
}

.trending-card-content {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 10px;
  border-radius: 8px;
}

.trending-card-content h3 {
  margin: 0;
  font-size: 1.2rem;
}

.trending-card-content p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.trending-card-content strong {
  font-size: 0.85rem;
  color: #ffce00;
}


/* wiz's Popular Tours */

.popular-tours {
  padding: 40px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.popular-tours h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tours-card {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-color: #0a0202;
}

.tours-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* === Updated section === */
.tours-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6); /* dark background */
  color: #fff;
  backdrop-filter: blur(2px); /* subtle blur */
}

.tours-title {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 5px;
}

.tours-price {
  font-size: 0.9rem;
}

.tours-price span {
  font-weight: normal;
}


/* end Kesari's Popular Tours */

/* ---------------------------------------------about.php-------------------------------- */

/* About Page Styles */

/* Hero Section */
.about-hero {
  background: url('../img/about-banner.jpg') no-repeat center center/cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.about-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-overlay p {
  font-size: 1.2rem;
}

/* Content Section */
.about-content {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about-container h2 {
  font-size: 2rem;
  color: #00aced;
  margin-bottom: 15px;
}

.about-container p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-list {
  text-align: left;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
}

.about-list li {
  font-size: 1rem;
  color: #222;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
}

.about-list li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00aced;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Stats Boxes */
.about-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: #00aced;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
}
/* group tour */
.group-tours-modern {
  background: url('../img/tour2.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.group-tours-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  text-align: center;
}

.group-tours-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.group-tours-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #ddd;
}

.group-tours-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.group-tour-card {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  text-align: left;
}

.group-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  z-index: 0;
}

.group-tour-card h3,
.group-tour-card p,
.group-tour-card a {
  position: relative;
  z-index: 1;
}

.group-tour-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.group-tour-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.group-tour-card a {
  background: #00aced;
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.group-tour-card a:hover {
  background: #007fa4;
}

.group-tour-card:hover {
  transform: translateY(-10px);
}

/* Background images for each card */
.bg-card1 {
  background-image: url('../img/himachal.jpg');
}

.bg-card2 {
  background-image: url('../img/goa1.jpg');
}

.bg-card3 {
  background-image: url('../img/europe.jpg');
}


/* group tour */

/* .wmt-speciality-section */

.wmt-speciality-section {
  background: url('../img/wtm.jpg') no-repeat center center/cover;
  position: relative;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.wmt-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #ddd;
  text-align: center;
}

.speciality-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

.speciality-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.speciality-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.speciality-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.speciality-card p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
}

.explore-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff5722;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.explore-btn:hover {
  background: #e64a19;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .speciality-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .speciality-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/*  end .wmt-speciality-section */

/* Our Story Section */
.our-story {
  background-color: #fff;
  padding: 80px 20px;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 59px;
}

.story-image {
  flex: 1 1 45%;
}

.story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.story-text {
  flex: 1 1 50%;
}

.story-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.btn-story {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00aced;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-story:hover {
  background-color: #e64a19;
}

/* Our Mission Section */
.mission-section {
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
  padding: 80px 20px;
  text-align: center;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
}

.mission-section h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.mission-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.mission-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-box {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.mission-box:hover {
  transform: translateY(-8px);
}

.mission-box i {
  font-size: 36px;
  color: #ff5722;
  margin-bottom: 15px;
}

.mission-box h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.mission-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Our Vision Section */
.vision-section {
  background-image: url('../img/vision.jpg'); /* use your own image */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  color: #fff;
}

.vision-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 10px;
}

.vision-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.vision-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.vision-lead {
  font-size: 18px;
  color: #f1f1f1;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vision-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 300px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.vision-card i {
  font-size: 40px;
  color: #ffeb3b;
  margin-bottom: 15px;
}

.vision-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.vision-card p {
  font-size: 15px;
  color: #ddd;
}

/* why people choose use */
.why-img img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.why-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  margin-top: 10px;
  background: #f8f9ff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.why-feature.left {
  flex-direction: row;
}

.why-feature.right {
  flex-direction: row-reverse;
}

.why-text {
  max-width: 500px;
}

.why-text h3 {
  font-size: 24px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.why-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-feature {
    flex-direction: column !important;
    text-align: center;
  }

  .why-img img {
    width: 100%;
    height: auto;
  }

  .why-text {
    max-width: 100%;
  }
}
/* top-button */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #047df6;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#topBtn:hover {
  background-color: #ffcc00;
  color: #1e3a8a;
}


/* -----------------------------------packages----------------------------------- */
.packages-hero {
  background: url('../img/about-banner.jpg') no-repeat center center/cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.packages-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.packages-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.packages-section {
    background: #fff;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.packages-section h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    border-bottom: 4px solid #ff6b6b;
    display: inline-block;
    padding-bottom: 10px;
}

.region-block {
    margin-bottom: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.region-block h3 {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    border-left: 5px solid #ff6b6b;
    padding-left: 15px;
}

.region-subsection {
    margin-bottom: 20px;
    padding-left: 20px;
}

.region-subsection h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.destination-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.destination-list li {
    background: #ff6b6b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s;
}

.destination-list li:hover {
    background: #e64a4a;
    cursor: default;
}
.destination-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
}

.destination-box {
    flex: 1 1 calc(25% - 20px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.destination-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.destination-box span {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    color: #333;
    background-color: #f9f9f9;
}

.destination-box:hover {
    transform: translateY(-10px);
}
