:root {
  --background: rgba(10, 10, 15, 0.72);
  --card-background: rgba(20, 20, 28, 0.78);
  --card-radius: 18px;
  --blur-intensity: 18px;
}

body {
  background-image: url("https://images.unsplash.com/photo-1527443154391-507e9dc6c5cc");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#page_container {
  backdrop-filter: blur(18px);
}

.service-card {
  backdrop-filter: blur(20px);
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(255,255,255,0.18);
}

.card {
  border-radius: 18px !important;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
}

.search-container {
  backdrop-filter: blur(12px);
  border-radius: 16px;
}
