@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes tech-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cursor-dot {
  position: fixed;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #002364, #1a1d3e);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 35, 100, 0.6);
}

@media (max-width: 768px) {
  .cursor-dot {
    display: none;
  }
}

.gradient-bg {
  background: linear-gradient(135deg, #1a1d3e 0%, #002364 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #1a1d3e, #002364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-yellow-blue {
  background: linear-gradient(135deg, #F8C104 0%, #002364 100%);
}

.gradient-blue-yellow {
  background: linear-gradient(135deg, #002364 0%, #F8C104 100%);
}

.gradient-text-yellow {
  background: linear-gradient(135deg, #F8C104, #002364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 29, 62, 0.3);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(26, 29, 62, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.tech-marquee {
  display: flex;
  width: max-content;
  animation: tech-marquee 18s linear infinite;
}

.tech-marquee .marquee-clone {
  animation: none;
}

@media (max-width: 640px) {
  .tech-marquee {
    animation-duration: 10s;
  }
}

.glass-btn {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(200,200,200,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.3s, box-shadow 0.3s;
}
.glass-btn:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

#main-navbar.navbar-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
#main-navbar.navbar-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.glass-navbar {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 1.25rem;
  border: 1px solid rgba(200,200,200,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: background 0.3s, box-shadow 0.3s;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .glass-navbar {
    gap: 2.5rem;
  }
}

.glass-navbar a {
  transition: color 0.2s, text-shadow 0.2s;
}
.glass-navbar a:hover {
  color: #1a1d3e;
  text-shadow: 0 2px 8px rgba(26,29,62,0.10);
  text-decoration: underline;
}

.gradient-bg:hover {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 4px 16px rgba(156, 116, 38, 0.10);
} 