

/* General Reset and Scroll Fix */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
/* HERO SECTION */
.hero {
  background: url('../images/banner.jpg') center/cover no-repeat;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
}

/* Query Form */
.query-form {
  background-color: #ffe6e6;
  padding: 20px;
  text-align: center;
}

.query-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

.query-form input,
.query-form button {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.query-form input {
  flex: 1 1 200px;
}

.query-form button {
  background-color: #ff5722;
  color: white;
  cursor: pointer;
  border: none;
}

.query-form button:hover {
  background-color: #e64a19;
}

/* Tour Destinations */
.tour-destinations {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.tour-destinations h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.tour-destinations p {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.tour-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  background: #faedea;
  width: 100%;
}

.tour-card:hover {
  transform: scale(1.03);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tour-card .title {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  padding: 8px 0;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.tour-carousel-container {
	 position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}


/* About Us */
.about-us {
  background-color: #fdbdb2;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 50%;
  padding-right: 20px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin-top: 5px;
}

.about-text h4 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
  color: #000;
}

.about-text p {
  margin: 20px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00b300;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.read-more:hover {
  background-color: #009900;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* Services */
.services {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-subtitle {
  color: #ff5a2c;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.services-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-box {
  background-color: #ff5a2c;
  padding: 25px 20px;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-box img {
  height: 50px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  line-height: 1.5;
}

/* Tour Carousel */
.tour-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #000;
}

.tour-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}

.tour-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #000;
  margin: 10px auto 0;
}

.tour-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.card-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: left;
}

.card-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.card-buttons {
  display: flex;
  justify-content: center;
  padding: 15px;
  gap: 10px;
}

.view-btn, .enquire-btn {
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.view-btn {
  background-color: #0056b3;
}

.view-btn:hover {
  background-color: #003974;
}

.enquire-btn {
  background-color: #f4511e;
}

.enquire-btn:hover {
  background-color: #bf360c;
}

/* Navigation Button */
.nav-btn {
  background-color: #2c662d;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 3px;
  height: fit-content;
}

.nav-btn:hover {
  background-color: #1e4620;
}

/* Client Section */
.client-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #000;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.client-gallery,
.client-video {
  flex: 1 1 48%;
}

.gallery-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.gallery-heading .highlight {
  color: #f4511e;
  font-size: 16px;
  font-weight: bold;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.view-all-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #24a500;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background-color: #1e8600;
}

.video-wrapper {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border: none;
}














