/* Custom Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fef5f9;
}

::-webkit-scrollbar-thumb {
  background: rgba(233, 30, 140, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(233, 30, 140, 0.5);
}

/* Gradient Blobs */
.gradient-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.gradient-blob-pink {
  background: radial-gradient(circle, #e91e8c 0%, transparent 70%);
  top: 5rem;
  right: -12rem;
}

.gradient-blob-rose {
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  top: 15rem;
  left: -10rem;
}

/* Header scroll effect */
.header-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Form focus states */
input:focus,
textarea:focus {
  border-color: #e91e8c;
}

/* Smooth transitions */
a,
button {
  transition: all 0.3s ease;
}




.model-viewer {
  box-shadow: 0 0 20px rgba(233, 30, 140, 0.3);
  transition: box-shadow 0.5s ease;
}

.model-viewer:hover {
  box-shadow: 0 0 40px rgba(233, 30, 140, 0.6);
}

