     .timeline-horizontal {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
}

.timeline-item {

 
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
 
}

.timeline-item:hover {
  transform: translateY(-10px) scale(1.05);
  /* box-shadow: 0 10px 25px rgba(231, 195, 79, 0.4), 0 0 20px rgba(0, 0, 0, 0.15);
  background: none; */
  
}



.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(20, 85, 225, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.timeline-item:hover .card-glow {
    width: 85%;
    height: 60%;
}







.category-style-one-carousel {
  width: 100%;
  overflow: hidden;
 
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.category-style-one-item {
  background: #001845;
  color: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  
  /* ✅ Equal height fix */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 280px; /* fixed height for all cards */
  width: 300px;
}

.category-style-one-item h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.category-style-one-item p {
  font-size: 14px;
  line-height: 1.6;
}

.swiper-pagination {
  bottom: 0 !important;
}



















/* === Cursor Follow Glow (localized circular effect) === */
.cursor-glow {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  /* background: #fff; */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cursor-glow .glow-circle {
  position: absolute;
  width: 150px; /* size of glow */
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 191, 40, 0.45) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cursor-glow:hover .glow-circle {
  opacity: 1;
}

/* keep content above glow */
.cursor-glow > *:not(.glow-circle) {
  position: relative;
  z-index: 1;
}




















.location-section:hover iframe {
  filter: brightness(90%) blur(0);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}


.location-subtitle {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
}

.view-location-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2563eb;
  color: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  transition: all 0.3s ease;
}

.view-location-btn:hover {
  background: #1e40af;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.7);
  transform: translateY(-3px);
}





.location-section {
  position: relative;
  width: 100%;
  height: 80vh; /* or 100vh if you want fullscreen */
  overflow: hidden;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
}

.location-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
