html {
  scroll-behavior: smooth;
}
.glass-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.glow-effect {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(76, 29, 149, 0.1) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-left {
  top: 20%;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(88, 28, 135, 0.6) 0%,
    rgba(30, 58, 138, 0.2) 50%,
    transparent 80%
  );
  filter: blur(80px);
}
.text-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fade-in-up 0.3s ease-out forwards;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll {
  animation: scroll 30s linear infinite;
}
.animate-scroll:hover {
  animation-play-state: paused;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.float-slow {
  animation: float 6s ease-in-out infinite;
}
.float-medium {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}
.float-fast {
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}
.float-widget {
  transition: transform 0.3s ease-out;
}
.float-widget:hover {
  transform: scale(1.1) !important;
  z-index: 50 !important;
}
.float-widget {
  transition: transform 0.3s ease-out;
}
.float-widget:hover {
  transform: scale(1.1) !important;
  z-index: 50 !important;
}
.arrow-icon {
  transform: rotate(315deg);
}
.bg-blue-glow {
  background: radial-gradient(
    circle at top right,
    rgba(37, 99, 235, 0.5) 0%,
    transparent 40%
  );
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}
.nebula-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.4) 0%,
    rgba(6, 182, 212, 0.15) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  top: 20%;
  left: -20%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.italic-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.avatar-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.serif-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}
.bg-glow {
  background: radial-gradient(
    circle at bottom left,
    rgba(29, 78, 216, 0.15),
    transparent 40%
  );
}
.experience-nebula-glow {
  background: radial-gradient(
    circle at 90% 50%,
    rgba(6, 182, 212, 0.15) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}
.light-mode-glow {
  background: radial-gradient(
    circle at 90% 50%,
    rgba(6, 182, 212, 0.05) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.accordion-content {
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out;
  max-height: 2000px;
  opacity: 1;
  overflow: hidden;
}
.accordion-content.collapsed {
  max-height: 0;
  opacity: 0;
}
.rotate-icon {
  transition: transform 0.3s ease;
}
.rotate-icon.collapsed {
  transform: rotate(-90deg);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050912;
}
::-webkit-scrollbar-thumb {
  background: #2a2e37;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.3);
  border-radius: 20px;
}
.text-gradient-white {
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d1d5db;
  font-size: 0.75rem;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bg-teal-dark {
  background-color: #0d3c40;
}
.squiggle-underline {
  position: relative;
  display: inline-block;
}
.squiggle-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5C15 5 15 9 28 9C41 9 41 5 54 5C67 5 67 9 80 9C93 9 93 5 98 5' stroke='%23D1F349' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.circle-highlight {
  position: relative;
  display: inline-block;
}
.circle-highlight::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  border: 2px solid #d1f349;
  border-radius: 50%;
  transform: rotate(-2deg);
}
.hover-gradient-blue:hover {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  color: white;
}
.hover-gradient-blue:hover .bg-white,
.hover-gradient-blue:hover .bg-gray-100 {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
