.guide-box {
    transition: all 0.3s ease;
  }

  .guide-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .guide-thumb {
    height: 220px; /* adjust card image height */
    overflow: hidden;
  }

  .guide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }

  .guide-box:hover .guide-thumb img {
    transform: scale(1.08);
  }

  .guide-content {
    background: #fff;
  }
  /* Make all columns stretch equal height */
.travel-guides .row.g-4 {
  align-items: stretch;
}

/* Make card take full height */
.guide-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Fixed image height (already good, keep it) */
.guide-thumb {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Content fills remaining space */
.guide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Optional: limit text lines to avoid height jump */
.guide-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* max 3 lines */
  -webkit-box-orient: vertical;
}
.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: all 0.4s ease;
  height:320px;
  border: 2px solid transparent;
}
.vision-card:hover,
.mission-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color, #0099cc);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  z-index: 0;
}
.vision-icon i,
.mission-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.vision-card:hover i,
.mission-card:hover i {
  transform: scale(1.2);
  color: var(--second-theme-color, #f7b731);
}
p {
  position: relative;
  z-index: 1;
  text-align:justify;
}
</style>
<style>
    .logo-marquee {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left-right 15s linear infinite;
}

.logo-track img {

  margin: 0 50px;
  flex-shrink: 0;
}

/* LEFT ➜ RIGHT animation */
@keyframes scroll-left-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


.amazing-team-section {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  padding: 20px 0px;
}

.amazing-title {
  font-size: 36px;
  font-weight: 800;
}

.amazing-subtitle {
  color: #6c757d;
  font-size: 15px;
}

.glass-card {
  padding: 30px;
  border-radius: 18px;
  color: #ffffff;
  text-align: justify;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
}


.glass-card h4 {
  margin-bottom: 15px;
}

.feature-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  text-align: justify;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card h4 {
  color: #0d6efd;
  margin-bottom: 15px;
}

.values-title {
  font-weight: 800;
}

.value-glass-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 16px;
  text-align: justify;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.value-glass-card h5 {
  color: #0d6efd;
  margin-bottom: 10px;
}

.closing-glass {
  background: linear-gradient(135deg, #223740, #223740);
  color: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.closing-glass p {
  text-align: justify;
}

@media (max-width: 768px) {
  .amazing-title {
    font-size: 26px;
  }
}
