/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
}

/* Gradient Themes */
.bg-gradient {
  /* background: linear-gradient(90deg, #ff69b4, #9b59b6, #2980b9) !important; */
  /* background: linear-gradient(90deg, #f7f7f7, #9b59b6, #ff69b4) !important; */
  /* background: linear-gradient(90deg, #6a11cb, #2575fc) !important; */
  /* background: linear-gradient(90deg, #ff6a88, #b45eff) !important; */
  /* background: linear-gradient(90deg, #2980b9, #00c6ff) !important; */
  background: linear-gradient(90deg, #00c6ff, #2980b9) !important;


}

.logo-glow {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 12px rgba(155, 89, 182, 0.8));
  transition: filter 0.3s ease-in-out;
}

.logo-glow:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1))
          drop-shadow(0 0 20px rgba(41, 128, 185, 0.9));
}

.slider-component {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(90deg, #2980b9, #9b59b6, #ff69b4) !important;
}
.btn-primary-gradient {
  background: linear-gradient(45deg, #ff69b4, #9b59b6);
  border: none;
  transition: 0.3s;
}
.btn-primary-gradient:hover {
  background: linear-gradient(45deg, #9b59b6, #2980b9);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #2980b9, #9b59b6, #ff69b4), 
              url('https://source.unsplash.com/1600x700/?salon,beauty,barber') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}
.hero p {
  font-size: 1.3rem;
}

.hero-section {
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.text-gradient {
  background: linear-gradient(45deg, #ff69b4, #9b59b6, #2980b9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-img.active {
  opacity: 1;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 14px;
}

.card-revenue {
  top: 20px;
  left: -40px;
}

.card-appointment {
  bottom: 40px;
  right: -20px;
}

.card-services {
  bottom: 120px;
  left: -30px;
}
.card-clients {
  top: 100px;
  right: -40px;
}

/* Floating cards base */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

/* Card specific positions */
.card-revenue {
  top: 20px;
  left: -40px;
  animation-delay: 0.5s;
}

.card-appointment {
  bottom: 40px;
  right: -20px;
  animation-delay: 1s;
}

.card-services {
  bottom: 120px;
  left: -30px;
  animation-delay: 1.5s;
}

/* Animation keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.02);
  transition: all 0.3s ease;
}



/* Features */
.feature-card {
  border-radius: 14px;
  padding: 30px;
  transition: 0.3s;
  border: 1px solid #eee;
  background: #fff;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.feature-card i {
  color: #9b59b6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2980b9, #9b59b6, #ff69b4);
  color: white;
  padding: 70px 20px;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

/* Pricing Cards */
#pricing .card {
  border-radius: 14px;
  border: 2px solid #eee;
}
#pricing .card:hover {
  border-color: #9b59b6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: #222;
  color: #bbb;
  padding: 40px 20px;
}
footer a:hover {
  color: #ff69b4;
}

.text-gradient {
  background: linear-gradient(45deg, #ff69b4, #9b59b6, #2980b9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
