/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Breadcrumb Styles */
.breadcrumbs {
  display: none !important;
}

/* --- Breadcrumb Bar Modern Redesign --- */
.breadcrumb-bar {
  width: 100vw;
  min-height: 120px;
  background: url('../../assets/img/bredcrumbs/reason_bg.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 2.5vw;
  margin: 0;
  border: none;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.breadcrumb-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.breadcrumb-title,
.breadcrumb-links {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  margin: 0;
  padding: 0.2em 0.7em 0.2em 0;
  white-space: nowrap;
  flex: 1 1 0;
  text-align: left;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 400;
  text-align: right;
  flex: 2 1 0;
  justify-content: flex-end;
  padding: 0.2em 0 0.2em 0.7em;
  font-weight: 400;
}

.breadcrumb-links span {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0.1em;
  user-select: none;
}

.breadcrumb-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: none;
  transition: color 0.2s;
}

.breadcrumb-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb-links a:focus,
.breadcrumb-links a:active,
.breadcrumb-links a {
  text-decoration: none;
  outline: none;
}

.breadcrumb-links a:focus,
.breadcrumb-links a:active {
  text-decoration: none;
  outline: none;
}

/* See above: hover now uses white */
@media (max-width: 900px) {
  .breadcrumb-bar {
    /* min-height: 48px; */
    padding: 0 1vw;
  }

  .breadcrumb-title {
    font-size: 1.1rem;
    padding-right: 0.4em;
  }

  .breadcrumb-links {
    font-size: 0.97rem;
    padding-left: 0.4em;
  }
}

@media (max-width: 600px) {
  .breadcrumb-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    padding: 2em 0.5vw;
    gap: 0.1em;
  }

  .breadcrumb-title {
    font-size: 0.9rem;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.1em 0.2em 0.1em 0;
  }

  .breadcrumb-links {
    font-size: 0.75rem;
    flex: none;
    max-width: 60%;
    overflow-x: auto;
    padding: 0.1em 0 0.1em 0.2em;
    width: 100%;
    justify-content: flex-end;
  }
}

/* Suggestion Slider */
html,
body {
  overflow-x: hidden;
}

.suggestion-slider.fullscreen-slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
  margin-top: -80px;
  /* Offset for header */
  font-family: 'Akira', sans-serif;
}

@media (max-width: 900px) {
  .suggestion-slider.fullscreen-slider {
    height: calc(100vh - 60px);
  }
}

.suggestion-slider-wrapper {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.suggestion-slider-wrapper.slider-loaded {
  opacity: 1;
}

/* Loading state */
.suggestion-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
}

.slider-loaded::before {
  opacity: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.suggestion-slide {
  width: 100vw;
  height: 100%;
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  transform: scale(1.005);
}

.suggestion-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Removed fadeIn animation as requested */
.suggestion-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s;
  filter: brightness(0.98);
  will-change: transform, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: scale(1.01);
}

.suggestion-slide.active img {
  filter: brightness(0.97);
  transform: scale(1.01);
}

.suggestion-slide:hover img,
.suggestion-slide:focus img {
  filter: brightness(1);
  transform: scale(1.015);
}

.slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  color: #fff;
  padding: 1.2rem 1rem 0.7rem;
  text-align: left;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transform: translateY(32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.suggestion-slide.active .slide-overlay,
.suggestion-slide:hover .slide-overlay,
.suggestion-slide:focus .slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.suggestion-slide:not(.active) .slide-overlay {
  opacity: 0;
  transform: translateY(32px);
}

.slide-overlay .slide-arrow-up {
  display: inline-block;
  font-size: 1.1rem;
  color: #29b6f6;
  margin-bottom: 0.2rem;
  opacity: 0.88;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(8px);
}

.suggestion-slide.active .slide-arrow-up,
.suggestion-slide:hover .slide-arrow-up,
.suggestion-slide:focus .slide-arrow-up {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 600px) {
  .slide-overlay {
    padding: 0.7rem 0.5rem 0.4rem;
  }

  .slide-overlay .slide-arrow-up {
    font-size: 0.9rem;
    margin-bottom: 0.08rem;
  }
}

.slide-overlay .slide-arrow-up {
  display: inline-block;
  font-size: 1.3rem;
  color: #29b6f6;
  margin-bottom: 0.3rem;
  opacity: 0.9;
  transform: translateY(12px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggestion-slide .slide-overlay {
  opacity: 1;
  transform: translateY(24px);
}

.suggestion-slide.active .slide-overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggestion-slide:not(.active) .slide-overlay {
  opacity: 0;
  transform: scale(1.005);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggestion-slide:hover .slide-overlay,
.suggestion-slide:focus .slide-overlay,
.suggestion-slide.touch-active .slide-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.slide-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
  opacity: 1;
  transition: transform 0.4s ease;
}

.slide-duration {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.01em;
  transition: transform 0.4s ease;
}

.suggestion-slide.active .slide-title,
.suggestion-slide.active .slide-duration {
  transform: translateY(0);
}

.slider-arrow {
  display: none;
  /* Hide the arrows as requested */
}

.slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 4;
  pointer-events: auto;
}

.slider-dots-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.1rem;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #87CEEB 0%, #29b6f6 100%);
  border-radius: 1px;
  opacity: 0.6;
  z-index: 3;
}

.slider-dots .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #87ceeb;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
  opacity: 0.7;
  margin: 0 2px;
  border: none;
  box-shadow: none;
}

.slider-dots .dot.active {
  background: #29b6f6;
  transform: scale(1.16);
  opacity: 1;
  box-shadow: 0 0 1.5px #29b6f6;
  border: none;
}

.slider-dots .dot.active {
  background: #29b6f6;
  /* Light blue color */
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(41, 182, 246, 0.3);
}

@media (max-width: 900px) {
  .suggestion-slider.fullscreen-slider {
    height: 100vh;
    margin-top: -60px;
  }

  .slide-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .slide-duration {
    font-size: 1.2rem;
  }

  .slider-arrow {
    font-size: 1.8rem;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.4);
  }

  .slider-dots .dot {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.4rem;
  }
}

@media (max-width: 600px) {

  .suggestion-slider.fullscreen-slider,
  .suggestion-slider-wrapper,
  .suggestion-slide,
  .suggestion-slide img {
    height: 100vh;
    min-width: 100vw;
  }

  .slide-overlay {
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  .slide-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .slide-duration {
    font-size: 1rem;
  }

  .slider-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }

  .slider-dots {
    bottom: 1.5rem;
  }

  .slider-dots .dot {
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.3rem;
  }

  .slide-title {
    font-size: 1.05rem;
  }

  .slide-duration {
    font-size: 0.82rem;
  }

  .slide-overlay {
    padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  }

  .slider-arrow {
    font-size: 1.1rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .slider-dots {
    bottom: 1.2rem;
  }
}

.suggestion-slider.fullscreen-slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  z-index: 2;
}

.suggestion-slider-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.suggestion-slide {
  min-width: 100vw;
  height: 100vh;
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.suggestion-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.77, 0, .18, 1);
  font-family: inherit;
}

.suggestion-slide:hover .slide-overlay,
.suggestion-slide:focus .slide-overlay,
.suggestion-slide.touch-active .slide-overlay {
  opacity: 1;
  pointer-events: auto;
}

.slide-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}

.slide-duration {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.slider-arrow.left {
  left: 2vw;
}

.slider-arrow.right {
  right: 2vw;
}

.slider-arrow:hover,
.slider-arrow:focus {
  background: rgba(0, 0, 0, 0.55);
}

.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.9rem;
  z-index: 4;
}

.slider-dots .dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.24s, border 0.24s;
  opacity: 0.7;
}

.slider-dots .dot.active {
  background: #fff;
  opacity: 1;
  border-color: #ffb800;
}

@media (max-width: 900px) {
  .slide-title {
    font-size: 1.5rem;
  }

  .slide-duration {
    font-size: 1rem;
  }

  .slider-arrow {
    font-size: 1.5rem;
    width: 2.1rem;
    height: 2.1rem;
  }

  .slider-dots .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
}

@media (max-width: 600px) {

  .suggestion-slider.fullscreen-slider,
  .suggestion-slider-wrapper,
  .suggestion-slide,
  .suggestion-slide img {
    height: 60vh;
    min-width: 100vw;
  }

  .slide-title {
    font-size: 1.05rem;
  }

  .slide-duration {
    font-size: 0.82rem;
  }

  .slide-overlay {
    padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  }

  .slider-arrow {
    font-size: 1.1rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .slider-dots {
    bottom: 1.2rem;
  }
}

/* --- Tour Card Typography Hierarchy */
.tour-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.15em;
  width: fit-content;
  line-height: 1.1;
}

.tour-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 0.15em;
  line-height: 1.1;
}

.tour-desc {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1.5;
  margin-bottom: 0.1em;
}

@media (max-width: 600px) {
  .tour-title {
    font-size: 1.3rem;
  }

  .tour-subtitle {
    font-size: 1rem;
  }

  .tour-desc {
    font-size: 0.95rem;
  }
}

/* --- Footer Styles: Clean Modern Responsive --- */
.footer {
  background: #202b38;
  color: #e3f2fd;
  width: 100%;
  margin-top: 2rem;
  font-size: 1rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.5rem 2.3rem 1.3rem 2.3rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.footer-info-col {
  min-width: 250px;
  max-width: 340px;
}

.footer-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #29b6f6;
  margin-bottom: 0.2em;
  line-height: 1.1;
  text-align: left;
  display: block;
}

.footer-subtitle {
  font-size: 1.07rem;
  color: #b3e5fc;
  margin-bottom: 0.1em;
}

.footer-address,
.footer-phone,
.footer-email {
  font-size: 1rem;
  color: #e3f2fd;
  margin-bottom: 0.1em;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 1rem;
  white-space: nowrap;
  overflow-x: auto;
}

.footer-email a {
  color: #29b6f6;
  text-decoration: underline;
  margin-left: 0.2em;
  word-break: break-all;
}

.footer-links {
  display: flex;
  flex: 2 1 450px;
  gap: 3.2rem;
  min-width: 240px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-link-group {
  min-width: 120px;
}

.footer-link-group h3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.footer-col-list li {
  list-style-type: none !important;
  background: none !important;
  margin-bottom: 0.35em;
}

.footer-col-list li a {
  color: #e3f2fd;
  text-decoration: none;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0.2px;
  transition: color 0.2s, text-decoration 0.2s;
  line-height: 1.7;
  display: inline-block;
}

.footer-col-list li a:hover {
  color: #29b6f6;
  text-decoration: none;
  font-weight: 400;
}

.footer-col-title {
  color: #29b6f6;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
  text-align: left;
  font-family: inherit;
  line-height: 1.2;
  display: block;
}

.footer-social-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
  max-width: 220px;
  height: 100%;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
  width: 100%;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(41, 182, 246, 0.08);
  color: #29b6f6;
  font-size: 17px;
  box-shadow: 0 2px 8px 0 rgba(41, 182, 246, 0.10);
  border: 1.5px solid rgba(41, 182, 246, 0.18);
  backdrop-filter: blur(4px);
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.16s, box-shadow 0.18s;
  text-decoration: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus {
  background: #29b6f6;
  color: #fff;
  border: 1.5px solid #29b6f6;
  transform: scale(1.09);
  box-shadow: 0 4px 16px 0 rgba(41, 182, 246, 0.18);
}

.footer-social-icons i {
  pointer-events: none;
  transition: color 0.18s, transform 0.16s;
}

@media (max-width: 900px) {
  .footer-social-icons a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .footer-social-icons a {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .footer-social-icons {
    gap: 8px;
    margin-bottom: 14px;
  }
}

.footer-social-icons a:hover,
.footer-social-icons a:focus {
  background: linear-gradient(135deg, #29b6f6 80%, #232b36 100%);
  color: #fff;
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 6px 16px 0 rgba(41, 182, 246, 0.16);
}

.footer-social-icons i {
  pointer-events: none;
  transition: color 0.25s, transform 0.18s;
}

.footer-logos-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  justify-content: flex-end;
}

.footer-logo-img-vertical {
  width: 140px;
  max-width: 90vw;
  height: auto;
  filter: grayscale(60%) brightness(0.93);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30, 40, 60, 0.07);
  transition: filter 0.5s cubic-bezier(.4, 2, .6, 1), box-shadow 0.4s, transform 0.4s cubic-bezier(.4, 2, .6, 1), opacity 0.7s;
  margin: 0 auto;
  opacity: 1;
  display: block;
}

.footer-logo-img-vertical:hover {
  filter: grayscale(0%) brightness(1.01) drop-shadow(0 4px 16px #29b6f6aa);
  box-shadow: 0 8px 32px 0 rgba(41, 182, 246, 0.13);
  transform: scale(1.08);
  z-index: 1;
}

.footer-bottom {
  background: #232b36;
  color: #bfc7d2;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 0.72rem;
  padding: 0.18rem 0.8rem 0.22rem 0.8rem;
  min-height: unset;
  box-shadow: none;
  border: none;
  letter-spacing: 0.01em;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


.footer-bottom-copyright {
  display: block;
  font-size: 0.72rem;
  color: #bfc7d2;
  opacity: 0.6;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: left;
}

.footer-bottom-powered {
  /* display: block; */
  font-size: 0.72rem;
  color: #bfc7d2;
  opacity: 0.6;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: right;
}

.footer-bottom-powered a {
  color: #7eb9e6;
  text-decoration: none;
  font-weight: 400;
  border: none;
  opacity: 0.7;
  transition: color 0.18s, opacity 0.18s;
  padding-left: 0.1em;
}

.footer-bottom-powered a:hover {
  color: #bfc7d2;
  opacity: 1;
  text-decoration: underline dotted #7eb9e6 1px;
}

.footer-bottom-powered a:hover {
  color: #fff;
  border-bottom: 0px solid #fff;
}

@media (max-width: 700px) {
  .footer-bottom {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.92rem;
    gap: 0.2em;
    padding: 0.8rem 0.5rem;
    min-height: 0;
  }

  .footer-bottom-copyright,
  .footer-bottom-powered {
    text-align: center;
    width: 100%;
    font-size: 0.97rem;
  }
}

@media (max-width: 1100px) {
  .footer-main {
    gap: 1.2rem;
    padding: 2rem 0.7rem 1rem 0.7rem;
    flex-wrap: wrap;
  }

  .footer-col {
    min-width: 120px;
  }

  .footer-social-logo-col {
    min-width: 120px;
    max-width: 170px;
  }

  .footer-logo-img-vertical {
    width: 120px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 1.2rem 1rem 1.2rem;
  }

  .footer-col {
    /* min-width: 45vw; */
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }

  .footer-social-logo-col {
    min-width: 45vw;
    max-width: 100vw;
    align-items: center;
    justify-content: flex-end;
  }

  .footer-logo-img-vertical {
    width: 100px;
  }
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  }

  .footer-col {
    min-width: 0;
    max-width: 100vw;
    margin-bottom: 1.2rem;
    align-items: flex-start;
  }

  .footer-social-logo-col {
    min-width: 0;
    max-width: 100vw;
    align-items: center;
    justify-content: flex-end;
  }

  .footer-logo-img-vertical {
    width: 90vw;
    max-width: 90vw;
    padding: 0.5rem 0.2rem;
  }
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding-top: 70px;
  /* header height */
}

/* --- Sticky Header: Bulletproof Fixed --- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo img {
  height: 50px;
}

nav {
  flex-grow: 1;
  margin-left: 30px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 17px;
  position: relative;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #0056b3;
  transform: translateY(-2px);
}

.dropdown>a {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 12px 0;
  margin-top: 0;
  min-width: 120px;
  width: max-content;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
  border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 24px;
}

.dropdown-menu a {
  color: #333;
  font-weight: normal;
  white-space: nowrap;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  color: #0056b3;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 4px;
}

.social-media a {
  text-decoration: none;
  margin-left: 10px;
}

.social-media i {
  font-size: 20px;
  color: #333;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-media a:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #0056b3;
}

main {
  padding: 0;
}

nav a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #1a73e8;
  text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Akira+Expanded:wght@400&display=swap');

.marquee-section {
  background: #ffffff;
  padding: 0.25rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  height: 1.5rem;
  line-height: 1.5rem;
}

.marquee-container {
  overflow: hidden;
  height: 100%;
}

.marquee-wrapper {
  display: flex;
  animation: marquee 25s linear infinite;
  gap: 1rem;
  height: 100%;
  align-items: center;
}

.marquee-content {
  font-family: 'Akira Expanded', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
  white-space: nowrap;
  color: #000000;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Responsive Header Tweaks */

/* Breadcrumb ultra-small screens */
@media (max-width: 480px) {
  .breadcrumb-bar {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 1.5rem 2vw;
    gap: 2px;
  }

  .breadcrumb-title {
    font-size: 0.95rem;
    width: 100%;
  }

  .breadcrumb-links {
    font-size: 0.75rem;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Mobile nav behaviour */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  nav ul {
    flex-direction: column;
    justify-content: flex-start;
  }

  nav ul li {
    margin: 8px 0;
  }

  .social-media {
    display: none;
    width: 100%;
    margin-top: 6px;
    gap: 10px;
  }

  .social-media.open {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.open {
    display: block;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  nav {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  nav ul li {
    margin: 5px 10px;
  }

  nav a {
    font-size: 12px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee-section {
    height: 1.25rem;
    line-height: 1.25rem;
  }

  .marquee-content {
    font-size: 0.48rem;
    padding: 0 0.3rem;
  }

  .marquee-wrapper {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .marquee-section {
    height: 1rem;
    line-height: 1rem;
  }

  .marquee-content {
    font-size: 0.36rem;
    padding: 0 0.2rem;
  }

  .marquee-wrapper {
    gap: 0.5rem;
  }
}

.plus-sign {
  font-size: 0.55em;
  font-weight: normal;
  color: #ffffff;
  margin-left: 2px;
  position: relative;
  top: -0.3em;
  left: 1px;
  letter-spacing: 0;
  transform: translateY(-10%);
  opacity: 1;
}

/* Service Cards Section Styles */
.service-cards-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

/* Luxary Bus Card */
.service-card.luxary-bus .service-icon {
  color: #fff;
}

.service-card.luxary-bus {
  background: inherit;
  border: inherit;
}

.service-card.luxary-bus .service-name {
  color: #fff;
}

.service-cards-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 40px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}



#hero {
  display: none;
}


.bus-background {
  background: url('../img/index page/service/bus service/Bus Service Background.png') no-repeat center center;
  background-size: cover;
  padding: 2rem;
  position: relative;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bus-scroll-container {
  position: relative;
  height: 100%;
}

.bus-images {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bus-images::-webkit-scrollbar {
  display: none;
}

.bus-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.bus-images img:hover {
  transform: scale(1.05);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.scroll-btn.prev {
  left: 10px;
}

.scroll-btn.next {
  right: 10px;
}

.taxi-note {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }

  .bus-background {
    height: 300px;
  }

  .bus-images img {
    width: 200px;
    height: 150px;
  }

  .scroll-btn {
    padding: 8px 15px;
    font-size: 16px;
  }

  .service-cards,
  .service-cards-4 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}


@media (max-width: 480px) {
  .services-section h2 {
    font-size: 1.8rem;
  }

  .bus-background {
    height: 250px;
  }

  .bus-images img {
    width: 150px;
    height: 100px;
  }

  .taxi-note {
    font-size: 12px;
  }
}

*/

/* ------------------------------
   Hero Banner Section
--------------------------------*/
#hero-banners {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.banner {
  position: relative;
  display: block;
  overflow: hidden;
  height: 50vh;
  /* margin: 2rem; */
  /* border-radius: 10px; */
  /* Slightly larger banner height */
  max-height: 450px;
  /* Prevent overly tall banners on very large screens */
}

.banner img {
  width: 100%;
  height: 100%;
  /* Fill the banner container */
  display: block;
  object-fit: cover;
  /* Crop to maintain aspect ratio without distortion */
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner:hover .overlay,
.banner:focus .overlay {
  opacity: 1;
}

.banner h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.banner p {
  font-size: 1.1rem;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  #hero-banners {
    gap: 5px;
  }

  .banner h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .banner h2 {
    font-size: 3.2rem;
  }
}




.cta-button {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 1rem;
  border-radius: 5px;
}


/* Coming Soon Message Style */
.coming-soon-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2.5rem 1.5rem;
  background: #e3f2fd;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(23, 97, 160, 0.09);
  margin: 3.5rem auto 2.5rem auto;
  max-width: 620px;
  text-align: center;
}

.coming-soon-message h2 {
  color: #1565c0;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.5px;
}

.coming-soon-message p {
  color: #2266aa;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 700px) {
  .coming-soon-message {
    min-height: 180px;
    padding: 1.4rem 0.6rem;
    max-width: 98vw;
  }

  .coming-soon-message h2 {
    font-size: 1.3rem;
  }

  .coming-soon-message p {
    font-size: 1rem;
  }
}

/* Stats Section with Sky Blue Map Background */
.stats-section {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  overflow: hidden;
}

.stats-section .stats-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  padding: 2.5rem 0 2rem 0;
}

.stats-section .stats-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url('./assets/img/index page/About/sky blue map.png') center center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.stats-section .stat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-width: 120px;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.473);
}

.stats-section .counter {
  font-size: 3.3rem;
  font-weight: bold;
  color: white;
  /* text-shadow : 0px 0px 7px white; */
  letter-spacing: 1px;
  transition: color 0.3s;
}

.stats-section .plus {
  font-size: 2rem;
  color: #1a237e;
  margin-left: 2px;
}

.stats-section .label {
  margin-top: 0.7rem;
  font-size: 13rem;
  /* font-weight: bold; */
  color: #333;
  text-align: center;
}

@media (max-width: 900px) {
  .stats-section .counter {
    font-size: 2.4rem;
  }

  .stats-section .plus {
    font-size: 1.4rem;
  }

  .stats-section .label {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .stats-section .counter {
    font-size: 1.7rem;
  }

  .stats-section .plus {
    font-size: 1rem;
  }

  .stats-section .label {
    font-size: 0.97rem;
  }
}

.stats-section .plus {
  font-size: 1.5rem;
  color: #1a237e;
  margin-left: 2px;
}

.stats-section .label {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);

  text-align: center;
}

@media (max-width: 900px) {
  .stats-section .stats-content {
    gap: 1.5rem;
    padding: 2rem 0 1.5rem 0;
  }

  .stats-section .counter {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .stats-section .stats-content {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0 1rem 0;
  }

  .stats-section .stat {
    min-width: 0;
  }

  .stats-section .counter {
    font-size: 1.5rem;
  }

  .stats-section .label {
    font-size: 1rem;
  }
}

/* Approvals Section */
.approvals-section {
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approvals-title {
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.approvals-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 16px 0;
}




.approvals-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}


.approval-logo {
  height: 90px;
  width: auto;
  opacity: 0.5;
  transform: scale(1.0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), background 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  filter: grayscale(30%);
  flex-shrink: 0;
  margin: 0 0.5rem;
  cursor: pointer;
  background: transparent !important;
  image-rendering: auto;
  object-fit: contain;
  box-shadow: none !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
  border-radius: 12px;
}

.approval-logo.center {
  opacity: 1;
  filter: none;
  transform: scale(1.05) translateY(-4px);
  z-index: 2;
  box-shadow: none !important;
  background: transparent !important;
}

.approval-logo:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: none !important;
  background: transparent !important;
  opacity: 1;
  filter: none;
}

.approval-logo.center {
  opacity: 1;
  filter: none;
  transform: scale(1.05) translateY(-4px);
  z-index: 2;
  box-shadow: none;
  background: transparent !important;
}

.approval-logo:hover {
  transform: scale(1.13) translateY(-10px);
  box-shadow: 0 12px 32px 0 rgba(41, 182, 246, 0.18);
  opacity: 1;
  filter: none;
}


.approval-logo.center {
  opacity: 1;
  filter: none;
  transform: scale(1.2);
  z-index: 2;
}

@media (max-width: 900px) {
  .approvals-carousel {
    height: 75px;
  }

  .approval-logo {
    height: 50px;
  }

  .approvals-track {
    gap: 1.1rem;
  }
}

@media (max-width: 600px) {
  .approvals-carousel {
    height: 48px;
  }

  .approval-logo {
    height: 32px;
  }

  .approvals-track {
    gap: 0.5rem;
  }
}


.services-title-section {
  width: 100%;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}

.services-title {
  font-size: 2.5rem;
  color: #1a237e;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  background: none;
}

.services-hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 450px;
  margin-bottom: 0;
  overflow: hidden;
  background: url('./assets/img/index page/service/bus service/Bus Service Background.png') center center/cover no-repeat;
  background-size: cover;
  background-position: center;
}

.services-subheading {
  position: absolute;
  left: 2.5vw;
  bottom: 2.5vw;
  font-size: 2rem;
  color: #fff;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}

.services-note {
  position: absolute;
  right: 2.5vw;
  bottom: 2.5vw;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  z-index: 2;
}

@media (max-width: 900px) {
  .services-subheading {
    font-size: 1.3rem;
    left: 3vw;
    bottom: 3vw;
  }

  .services-note {
    font-size: 0.8rem;
    right: 3vw;
    bottom: 3vw;
    padding: 0.3rem 0.7rem;
  }
}

@media (max-width: 600px) {
  .services-subheading {
    font-size: 1rem;
    left: 4vw;
    bottom: 4vw;
  }

  .services-note {
    font-size: 0.7rem;
    right: 4vw;
    bottom: 4vw;
    padding: 0.2rem 0.5rem;
  }
}

.about-title-section {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
  margin: 0;
  border: none;
}

.about-title {
  font-size: 2.5rem;
  color: #1a237e;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  background: none;
}

/* --------------------------------------------------
   Services Section (index.html)
-------------------------------------------------- */
.service-section {
  width: 100%;
  padding: 40px 3vw;
  background: linear-gradient(to bottom right, #1a237e, #1a237e);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

.section-title {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
}

.service-cards,
.service-cards-4 {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {

  .service-cards,
  .service-cards-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {

  .service-cards,
  .service-cards-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.service-card {
  position: relative;
  width: 240px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: filter 0.3s;
  z-index: 0;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 60, 0.38);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover .service-overlay,
.service-card:focus .service-overlay {
  opacity: 1;
}

.service-icon,
.service-name {
  position: relative;
  z-index: 2;
}

.service-icon {
  font-size: 2.5rem;
  color: #ffffff;
  z-index: 1;
  margin-bottom: 8px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hotel::before {
  background-image: url('./assets/img/index page/service/hotel.jpg');
}

.flight::before {
  background-image: url('./assets/img/index page/service/flight.jpg');
}

.taxi::before {
  background-image: url('./assets/img/index page/service/taxi.jpg');
}

@media (max-width: 600px) {
  .service-card {
    width: 80vw;
    max-width: 300px;
    height: 150px;
  }
}

/* Tour Grid Styles */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px;
}



.tour-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s;
  background: #fff;
}

.tour-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.tour-item:hover img {
  transform: scale(1.05);
}

.tour-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.92);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 1.1rem;
}

.tour-detail-icons {
  display: flex;
}

.tour-detail-icons img.family-tour-icons {
  display: flex;
  height: 20px !important;
  margin: 0px 0.5rem;
}

.tour-item:hover .tour-info,
.tour-item:focus .tour-info {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer Logos Section (Updated) --- */
.footer-logos-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0.5rem 0;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 220px;
  max-width: 95vw;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo-img {
  width: 200px;
  max-width: 85vw;
  height: auto;
  filter: grayscale(60%) brightness(0.93);
  opacity: 0;
  transform: scale(0.98);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30, 40, 60, 0.07);
  transition: filter 0.5s cubic-bezier(.4, 2, .6, 1), box-shadow 0.4s, transform 0.4s cubic-bezier(.4, 2, .6, 1), opacity 0.7s;
  animation: logoFadeIn 1.2s ease forwards;
  margin: 0;
}

.footer-logos-wrapper {
  margin-top: 30px;
}

.footer-social {
  margin-bottom: 26px;
}

.footer-logo-img:hover {
  filter: grayscale(0%) brightness(1.01) drop-shadow(0 2px 4px #29b6f655);
  box-shadow: 0 2px 6px 0 rgba(41, 182, 246, 0.08);
  transform: scale(1.03);
  z-index: 1;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .footer-logos {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    align-items: center;
  }

  .footer-logo-img {
    max-width: 95vw;
    width: 98%;
    padding: 0.5rem 0.2rem;
    animation: logoFadeInMobile 1.2s ease forwards;
  }
}

@keyframes logoFadeInMobile {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Service Section Overlay Animation */
.service-section .section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 60, 0.18);
  /* lighter overlay */
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}

.service-section:hover .section-overlay,
.service-section:focus-within .section-overlay {
  opacity: 1;
}

.service-cards,
.section-title {
  position: relative;
  z-index: 2;
}

/* =============================
   About Us Page Styles (migrated from about-us.html)
   ============================= */
html {
  scroll-behavior: smooth;
}

/* ---------- HERO ---------- */
.about-hero {
  min-height: 60vh;
  background: url('./assets/img/about/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #29b6f6;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: #1ca0da;
}

/* ---------- STORY ---------- */
.about-story {
  padding: 4rem 1rem;
  scroll-margin-top: 120px;
}

.about-story .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.story-text p {
  line-height: 1.7;
  color: #475569;
}

/* ---------- ACCORDION ---------- */
.mission-section {
  padding: 4rem 1rem;
  background: #f8fafc;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item+.accordion-item {
  margin-top: 1rem;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s;
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: max-height 0.35s ease;
}

.accordion-body p {
  padding: 1rem 1.2rem;
  color: #475569;
}

.accordion-item.open .accordion-body {
  max-height: 300px;
}

.accordion-item.open .accordion-header i {
  transform: rotate(180deg);
}

.accordion-header i {
  transition: transform 0.3s;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 4rem 1rem;
  background: #29b6f6;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom-mobile {
  margin-top: 3em;
}


@media (max-width: 1024px) {


  .tour-info {
    opacity: 1;
    transform: translateY(0);
  }

  .tour-info .tour-title {
    font-size: 1rem;
  }

  .tour-info .package-duration {
    font-size: 0.8rem;
  }

  .tour-info .tour-desc {
    font-size: 0.8rem;
  }

  .tour-grid .tour-item .tour-link>img {
    height: 450px !important;
  }

  .tour-grid .tour-item>img {
    height: 450px !important;
  }

  .tour-hero-section {
    gap: 1rem !important;
  }

  .tour-dates-col {
    flex: 1 !important;
  }

  #brochure-btn {
    height: 50px;
    width: 50px;
  }

  .tour-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tour-info .family-tour-icons {
    display: flex;
    margin: 0 !important;
  }

  .tour-info .tour-detail-icons {
    gap: 10px;
  }

  .banner .overlay {
    opacity: 1;
  }
}

/* Modern Services Section */
.services-modern-section {
  padding: 1.5rem 2rem;
  background-color: #fdfdff;
  /* Refined off-white theme */
  text-align: center;
}

.services-modern-header {
  margin-bottom: 1.5rem;
}

.services-modern-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #212529;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* .services-modern-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
} */

.services-modern-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.service-modern-card {
  background-color: #fff;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding: 2.5rem 2rem; */
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* gap: 1rem; */
}

.service-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.service-modern-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.service-modern-card:hover .service-modern-card-icon {
  transform: scale(1.1);
}

.service-modern-card-content {
  flex-grow: 1;
  padding: 2rem;
  padding-left: 1rem;
}

.service-modern-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-modern-card-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .services-modern-section {
    padding: 4rem 1rem;
  }

  .services-modern-title {
    font-size: 2.2rem;
  }

  .service-modern-card-title {
    font-size: 1.2rem;
  }

  .service-modern-card-description {
    font-size: 0.9rem;
  }
}

.stats-section {
  background-image: url('./assets/img/index page/About/sky blue map.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* min-height: 50vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Subtle overlay for contrast */
  z-index: 1;
}

.stats-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(10px); */
  /* Glassmorphism effect */
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* .stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.counter {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  color: #00d4ff;
  /* Vibrant accent color */
}

.label {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px white;
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
  text-shadow: 0px 0px 5px #66666663;
  /* text-shadow: 2px 2px 3px black; */
}

/* Animation for fade-in effect */
.stat {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
  border: 0;
}

.stat:nth-child(1) {
  animation-delay: 0.2s;
}

.stat:nth-child(2) {
  animation-delay: 0.4s;
}

.stat:nth-child(3) {
  animation-delay: 0.6s;
}

.stat:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-content {
    grid-template-columns: 1fr;
  }

  .counter {
    font-size: 2.5rem;
  }

  .label {
    font-size: 1rem;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .service-modern-card {
    width: 100%;
    flex-direction: column;
  }

  .footer-logos-vertical img {
    width: 45vw;
  }

  .counter {
    font-size: 3rem !important;
    margin: 0;
  }

  .stat>.label {
    margin: 0;
  }

  .footer-logos-vertical {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .overlay h2 {
    font-size: 1.5rem;
  }

  .service-icon-box {
    width: 100%;
    border-radius: 15px 15px 0px 0px !important;
    justify-content: center;
  }
}

.stats-section {
  background-image: url('./assets/img/index page/About/sky blue map.png');
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: brightness(1.2) blur(5px);
  z-index: -1;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    filter: brightness(1.2) blur(5px);
  }

  to {
    filter: brightness(1.5) blur(8px);
  }
}

.service-icon-box {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #00a8ff;
  border-radius: 15px 0px 0px 15px;
}

/* Hamburger Menu Styles */
/* .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    background: none;
    border: none;
    color: #333;
}

#header-placeholder nav {
    display: block;
}

#header-placeholder .social-media {
    display: block;
}

.menu-toggle .fa-times {
    display: none;
}

.menu-toggle.open .fa-bars {
    display: none;
}

.menu-toggle.open .fa-times {
    display: inline-block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    #header-placeholder nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        padding: 10px;
    }

    #header-placeholder nav.open {
        display: block;
    }

    #header-placeholder .social-media {
        display: none;
    }

    #header-placeholder .social-media.open {
        display: block;
    }

    #header-placeholder nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #header-placeholder nav ul li {
        margin: 10px 0;
    }

    #header-placeholder nav ul li a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }
} */

.other-footer-boxes {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap !important;
}

.copy-right {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 600px) {
  .other-footer-boxes {
    display: flex;
    flex-direction: column;
  }

  .copy-right {
    flex-direction: column;
  }

  .tour-grid {
    padding: 1rem;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Inner wrapper for logos */
.marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee 20s linear infinite;
  /* Adjusted duration for smoother scroll */
  will-change: transform;
  /* Optimize for performance */
}

/* Logo styling */
.marquee-content img.approval-logo {
  margin: 0 1.5rem;
  /* Increased spacing between logos */
  height: 75px;
  /* Match original logo height */
  object-fit: contain;
}

/* Animation keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move half the content width for seamless loop */
  }
}

/* Pause animation on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Ensure approvals-section and approvals-carousel are styled appropriately */
.approvals-section {
  text-align: center;
}

.approvals-carousel {
  width: 100%;
  overflow: hidden;
}

.approvals-title {
  margin-bottom: 1rem;
}

.tour-info-details {
  width: fit-content;
}

@media (max-width: 768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}