/* ---------- SECTION BG ---------- */
.section-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1f, #111d3a, #0d131f);
  background-size: 400% 400%;
  animation: bgShift 12s ease infinite;
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ---------- CARD ---------- */
.pro-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
}
@media (max-width: 575px) {
  .pro-card .pro-card {
    border-radius: 12px;
    padding: 20px;
  }
}

/* appear animation */
.pro-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* hover glow */
.pro-card:hover {
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.35);
  border-color: rgba(0, 255, 255, 0.6);
}

/* neon strip */
.pro-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00eaff, #008cff, #00eaff);
  animation: neonSlide 3.5s linear infinite;
}

@keyframes neonSlide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.pro-title {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pro-text {
  color: #d0d5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pro-btn {
  color: #00eaff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.pro-btn:hover {
  padding-left: 8px;
  color: #69f7ff;
}

/* image box */
.image-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.image-box img {
  width: 100%;
  transition: 0.6s ease;
}

.pro-card:hover .image-box img {
  transform: scale(1.15) rotate(1deg);
}/*# sourceMappingURL=our-location.css.map */