.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

html {
  scroll-behavior: smooth;
}
.glass-nav {
  background: rgba(16, 19, 26, 0.7);
  backdrop-filter: blur(20px);
}

.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(16, 19, 26, 0.4),
    rgba(16, 19, 26, 0.9)
  );
}

.primary-gradient-btn {
  background: linear-gradient(135deg, #48f6dc 0%, #00d9c0 100%);
}
#timeline::-webkit-scrollbar {
  display: none;
}

.globe-glow {
  filter: drop-shadow(0 0 20px rgba(72, 246, 220, 0.4));
}
.timeline-line {
  background: linear-gradient(to right, transparent, #48f6dc, transparent);
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

.brand-card {
  height: 120px;
  background: var(--surface-container-low);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.brand-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-card:hover {
  filter: grayscale(0%);
  background: var(--surface-container-high);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-card:hover img {
  transform: scale(1.05);
}
