
body {
    background: linear-gradient(90deg, #d1eaff, #e8f4f9);
    font-family: "Segoe UI", sans-serif;
}

.section-title {
  font-weight: 700;
  font-size: 28px;
  color: #1b3b14;
  letter-spacing: 2px;
}

.section-intro {
  color: #2c3e1a;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.facility-heading{
    text-align: center;
    display: block;
    text-decoration: none;
    color: #0B3CA7;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.facility-rating {
  color: #e67e22;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 14px;
  color: #4b5c25;
  line-height: 1.5;
}


.slider{
  display: flex;
  justify-content: center;
}

.slider-wrapper {
     width: 80%;         
    margin: 0 auto;      
    overflow: hidden;
}

.facility-title,
.facility-description,
.explore-link {
    text-align: center;
    display: block;
    text-decoration: none;
    color: #0b3c8c;
    font-weight: 600;
}

.event-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.event-slider {
    width: 100%;
    overflow: hidden;
}

.event-card {
    position: relative;
    min-width: 420px;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.event-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 22s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}


/* Pause / Play Button */
.slider-control {
    position: absolute;
    right: 40px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #E5F4FB;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
