/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
}

/* General Section Styling */
.tour-service-section {
  padding: 40px 20px;
  background: #F5FCFD;
  font-family: 'Segoe UI', sans-serif;
}

/* Section Heading */
.tour-service-heading {
  display: block;
  background-color: #B8E3E9;
  color: #0B2E33;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 2rem;
  font-weight: 700;
  margin: 20px auto 40px;
  text-align: center;
  letter-spacing: 1px;
  transition: 0.3s ease;
  max-width: fit-content;
}
.tour-service-heading:hover {
  background-color: #4F7C82;
  color: #ffffff;
  transform: scale(1.05);
  cursor: pointer;
}

/* Subheading (h4) Styling */
.tour-subheading {
  font-size: 1.6rem;
  margin-bottom: 15px;
  
  position: relative;
  transition: color 0.3s ease;
}
.tour-subheading::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: #4F7C82;
  transition: width 0.3s ease;
  margin-top: 5px;
}
.tour-subheading:hover {
  color: #4F7C82;
}
.tour-subheading:hover::after {
  width: 40%;
}

/* Layout Blocks */
.service-block1,
.service-block2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

/* Reverse second block layout */
.service-block2 {
  flex-direction: row-reverse;
}

/* Text Content */
.text-content1,
.text-content2 {
  flex: 1;
  padding: 20px 30px;
}

/* Image Content */
.div-photos1,
.div-photos2 {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}
.div-photos1 img,
.div-photos2 img {
  width: 100%;
  height: auto;
  border-radius: 0 0 16px 16px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .service-block1,
  .service-block2 {
    flex-direction: column;
  }
  .text-content1,
  .text-content2 {
    padding: 20px;
  }
}


    
/* Section Styling */
.tour-slider-section {
  background-color: #e8f4f7;
  padding: 40px 5%;
  position: relative;
  overflow: hidden;
}

/* Section Heading */
.tour-slider-heading {
  
  text-align: center;
  background-color: #B8E3E9;
  color: #0B2E33;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.tour-slider-heading:hover {
  background-color: #4F7C82;
  color: #ffffff;
  transform: scale(1.05);
  cursor: pointer;
}

/* Controls */
.tour-slider-controls {
  text-align: center;
  margin-bottom: 20px;
}
.tour-slider-controls button {
  background: #4F7C82;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  transition: background 0.3s;
}
.tour-slider-controls button:hover {
  background: #3b5f64;
}

/* Slider Track */
.tour-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Hide Scrollbar */
.tour-slider-track::-webkit-scrollbar {
  display: none;
}
.tour-slider-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Slide Card */
.tour-slide-card {
  background: white;
  border-radius: 10px;
  flex: 0 0 calc(33.33% - 20px); /* for 3 cards in desktop */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  min-width: 250px;
}
.tour-slide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.tour-slide-card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 180px;
  object-fit: cover;
}
.tour-slide-card h4 {
  padding: 10px;
  margin: 0;
  color: #0B2E33;
}
.tour-slide-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 5px 0;
  padding: 0 10px;
  text-align: left;
}
.tour-card-actions {
  display: flex;
  justify-content: flex-start;  /* Align to the left */
  gap: 10px;                    /* Space between buttons */
  padding: 10px 15px 15px;      /* Add some horizontal padding */
}

.tour-card-actions a {
  background: #4F7C82;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.tour-card-actions a:hover {
  background: #365b60;
}
/* Responsive: 1 Card in Mobile */
@media (max-width: 768px) {
  .tour-slide-card {
    flex: 0 0 100%;
  }
  .tour-slider-heading {
    font-size: 1.5rem;
  }
  .tour-slide-card p {
    font-size: 0.95rem;
  }
}

