
.home-experience-slider {
    font-family: 'Montserrat', sans-serif;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.home-experience-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 0 32px;
  box-sizing: border-box;
}

/* === HEADER BAR === */
.home-experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 20 0px;
}

.home-experience-heading {
  font-size: 20px;
  font-weight: 600;
  color: #1c3a69;
}

@media (max-width: 768px) {
  .home-experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .home-experience-heading {
    font-size: 22px;
  }
}

/* === EXPLORE BUTTON === */
.home-experience-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid #000;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}

.home-experience-explore-btn:hover {
  background: #000;
  color: #fff;
}


/* === WRAPPER === */
.home-experience-slider-wrapper {
  position: relative;
  width: 100%;
}

/* === TRACK === */
.home-experience-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 5px 0;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* === CARD === */
.home-experience-card {
  flex: 0 0 360px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.home-experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* === IMAGE === */
.home-experience-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 250px;
}

.home-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === OPTIONAL IMAGE OVERLAY BADGE (if used) === */
.home-experience-image .experience-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* === CONTENT === */
.home-experience-content {
  gap: 6px; /* small, consistent spacing */
  padding: 22px 22px 26px;
  display: block;
  height: auto; 
  background: #ffffff;
}

/* === TITLE === */
.home-experience-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f2f3a;
  margin-bottom: 10px;
  min-height: unset;
}

/* === DESCRIPTION === */
.home-experience-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5f6f75;
  margin-bottom: 12px; /* was 22px */
  min-height: unset;   /* prevents artificial spacing */
}

/* === BUTTON === */
.home-experience-book-btn {
  margin-top: 30px;
  padding: 10px 18px;
  width: 100%;
  background: #1c3a69; /* BRAND-STYLE BLUE */
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-experience-book-btn:hover {
  background: #327c32;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* === RESPONSIVE POLISH === */
@media (max-width: 480px) {
  .home-experience-card {
    flex: 0 0 300px;
  }

  .home-experience-image {
    height: 190px;
  }
}

/* === ARROWS === */
.home-experience-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.home-experience-arrow:hover {
  background: #1c3a69;
  color: #fff;
}

.home-experience-arrow-left {
  left: -22px;
}

.home-experience-arrow-right {
  right: -22px;
}

.home-experience-arrow svg {
  width: 18px;
  height: 18px;
}

