:root {
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --accent-color: #8b5cf6;
  --dark-bg: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-white: #ffffff;
  --text-muted: #94a3b8;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(236, 72, 153, 0.15) 0%,
      transparent 40%
    );
  background-attachment: fixed;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Outfit", sans-serif;
}

/* Utilities */
.gradient-text {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}
.bg-secondary-gradient {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}
.bg-accent-gradient {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.tracking-widest {
  letter-spacing: 0.15em;
}
.text-accent {
  color: #c4b5fd;
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.hover-text-white:hover {
  color: #fff !important;
  transition: color 0.3s;
}

/* Glassmorphism Components */
.glass-navbar {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: scale(1.05);
}

.btn-gradient {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border: none;
  color: white;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: white;
}

.glass-badge {
  background: rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
  padding: 0.5em 1em;
  font-weight: 500;
}

.glass-accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.glass-accordion .accordion-button {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem !important;
  color: white;
  box-shadow: none;
}

.glass-accordion .accordion-button:not(.collapsed) {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  color: white;
}

.glass-accordion .accordion-button::after {
  filter: invert(1);
}

.glass-accordion .accordion-collapse {
  border: none;
}

.glass-accordion .accordion-body {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  margin-top: -5px;
  padding-top: 1.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
}

/* Hero Elements */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.border-glass {
  border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-anim {
  animation: float 6s ease-in-out infinite;
}

/* Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.blob-1 {
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: #6366f1;
  animation: moveBlob 20s infinite alternate;
}

.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: #ec4899;
  animation: moveBlob 15s infinite alternate-reverse;
}

@keyframes moveBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* Fade In Animation classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
