.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
/* #cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: 
    transform 0.15s ease-out,
    opacity 0.3s ease;
  backdrop-filter: blur(6px);
  z-index: 9999;
}
#cursor-ring.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
} */
.education-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.timeline-line {
  background: linear-gradient(to bottom, #bdc2ff, #5de6ff);
}
.glow-hover:hover {
  box-shadow: 0 0 30px rgba(189, 194, 255, 0.15);
  border-color: rgba(189, 194, 255, 0.4);
}
.featured-border {
  position: relative;
}
.featured-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #bdc2ff, #5de6ff);
  z-index: -1;
  border-radius: 0.5rem;
  opacity: 0.5;
}
.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.glass-card {
  background: rgba(45, 52, 73, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.hero-gradient {
  background: radial-gradient(circle at 50% 50%, #171f33 0%, #0b1326 100%);
}
.accent-glow {
  filter: blur(120px);
  opacity: 0.15;
}
.glass-panel {
  background: rgba(11, 19, 38, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.text-gradient-primary {
  background: linear-gradient(135deg, #bdc2ff 0%, #7c87f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.progress-bar {
  width: 0%;
  transition: width 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.progress-label {
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.8s ease-out 0.5s;
}
.animate-in .progress-label {
  opacity: 1;
  transform: translateY(0);
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.leading-relaxed {
  line-height: 1.5 !important;
}
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-glow:hover {
  box-shadow: 0 0 30px 10px rgba(189, 194, 255, 0.05);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.animate-scroll-left {
  animation: scroll-left 40s linear infinite;
}
.animate-scroll-right {
  animation: scroll-right 40s linear infinite;
}
.group:hover .animate-scroll-left,
.group:hover .animate-scroll-right {
  animation-play-state: paused;
}
.mask-fade {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}
.project-glass-card {
  background: rgba(19, 27, 46, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(144, 143, 160, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.project-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 19, 38, 0.95),
    rgba(11, 19, 38, 0.4)
  );
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-glass-card:hover .project-overlay {
  opacity: 1;
}
.project-glass-card:hover img {
  transform: scale(1.05);
}
.filter-transition {
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.filter-hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  visibility: hidden;
  display: none !important;
}
.filter-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  display: block;
}
.testimonial-glass {
  backdrop-filter: blur(20px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.testimonial-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
