@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B1120;
  color: #F3F4F6;
  scroll-behavior: smooth;
}

/* Glassmorphism utilities */
.glass {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: linear-gradient(145deg, rgba(31, 95, 175, 0.1) 0%, rgba(11, 17, 32, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 144, 226, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(31, 95, 175, 0.2);
  border-color: rgba(74, 144, 226, 0.4);
}

/* Subtle Glows */
.glow-primary {
  position: relative;
}
.glow-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(31, 95, 175, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.glow-accent {
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}
.glow-accent:hover {
  box-shadow: 0 0 25px rgba(255, 59, 48, 0.6);
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #4A90E2 0%, #1F5FAF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Smooth Image Hover */
.img-hover-zoom {
  overflow: hidden;
  border-radius: 0.5rem;
}
.img-hover-zoom img {
  transition: transform 0.5s ease;
}
.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B1120;
}
::-webkit-scrollbar-thumb {
  background: #1F5FAF;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4A90E2;
}
