body {
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Technical Grid Lines */
.tech-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

/* Hover Reveal Logic */
.card-reveal-trigger:hover .card-reveal-content {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal animation helpers */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Thin lines */
.hairline {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
}

.hairline-vertical {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Portfolio Slider - Active/Inactive states */
.slide {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-active {
  opacity: 1 !important;
  transform: scale(1.02);
  border-color: rgba(255, 107, 0, 0.5) !important;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
}

.slide-inactive {
  opacity: 0.4;
  transform: scale(1);
}

.slide-inactive:hover {
  opacity: 0.8;
}

/* Custom animations for Hero section */
@keyframes pulse-slow {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) scale(1.05);
    opacity: 0.8;
  }
}
.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, 10px) scale(1.05); }
  66% { transform: translate(-10px, -20px) scale(0.95); }
}
.animate-float-1 {
  animation: float-1 15s ease-in-out infinite alternate;
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-15px, -10px) scale(0.98); }
  66% { transform: translate(10px, 20px) scale(1.03); }
}
.animate-float-2 {
  animation: float-2 18s ease-in-out infinite alternate-reverse;
}

@keyframes scroll-indicator {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
.animate-scroll-indicator {
  animation: scroll-indicator 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}


