
  .price-range-section{
    margin-top: 130px;
  }
 @media (max-width: 769px) {
 .price-range-section {
    margin-top: 50px ;    
  }
}
/* 🌈 Price Range Section */
.price-range-section {
  background: linear-gradient(180deg, #fff8fc, #fff);
}

.section-title {
  color: #ff3c8a;
  letter-spacing: 0.5px;
  font-size: 2rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* 💰 Circle Styles */
.price-circle-wrapper {
  gap: 1.5rem;
}

.price-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.price-circle span {
  position: relative;
  z-index: 2;
}

/* 🎨 Individual Circle Colors */
.circle-1 { background: linear-gradient(135deg, #ff6ec4, #7873f5); }
.circle-2 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.circle-3 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.circle-4 { background: linear-gradient(135deg, #42e695, #3bb2b8); }

/* ✨ Hover Effect */
.price-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.price-circle:hover::before {
  transform: scale(1.2);
}

.price-circle:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 📱 Responsive for Mobile */
@media (max-width: 765px) {
  .price-circle {
    width: 65px;
    height: 65px;
    font-size: 0.56rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }
}

