@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}
.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 1024px) {
  .blob {
    width: 500px;
    height: 500px;
  }
}

/* Premium Custom Scrollbar for Main Page */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: #818cf8;
}

/* Specialized Scrollbar for Scroll Containers */
.scroll-premium::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.scroll-premium::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-premium::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.scroll-premium::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

/* Modal Animation */
.modal-enter {
  opacity: 0;
  transform: scale(0.95);
}
.modal-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.no-scroll {
  overflow: hidden;
}

/* Scroll Reveal Styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Input Styling */
.form-field {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-input {
  width: 100%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  outline: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.form-input:focus {
  border-color: #4f46e5;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1);
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.brand-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.5s ease;
}
.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* SVG Dividers */
.divider-top {
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
  line-height: 0;
}
@media (min-width: 768px) {
  .divider-top {
    height: 60px;
  }
}
.divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
  fill: #f8fafc;
}
