/* ================= Hero Section ================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
  animation: zoomPan 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Canvas for particles */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Hero Content */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffd60a;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 2s;
}

.hero-btn:hover {
  background-color: #e6c500;
  transform: scale(1.05);
}

/* Fade-in animation for button */
@keyframes fadeIn { 0% {opacity:0;} 100% {opacity:1;} }

/* Typewriter effect */
#typewriter {
  border-right: 3px solid #ffd60a;
  white-space: pre-wrap;
  overflow: hidden;
  font-size: 2.2rem;
  display: inline-block;
}

/* Video zoom/pan */
@keyframes zoomPan {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -48%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scroll-down span {
  display: block;
  width: 3px;
  height: 15px;
  background: #ffd60a;
  animation: scrollAnim 1.5s infinite;
  margin: 0 auto;
}

.scroll-down span:nth-child(2) { animation-delay: 0.2s; }
.scroll-down span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollAnim {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Dark mode support */
body.dark-mode .hero-btn { background-color: #00b4d8; color:#000; }
body.dark-mode .hero-btn:hover { background-color: #009ecf; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-btn { padding: 12px 25px; font-size: 0.9rem; }
  #typewriter { font-size: 1.4rem; }
  .scroll-down { bottom: 20px; }
}
/* ================= Clients Section ================= */
/* Clients Section */
.clients-section {
  background-color: var(--bg-color);
  text-align: center;
  padding: 80px 20px;
  transition: background 0.5s ease;
  overflow: hidden;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.clients-motto {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 20px auto 50px;
  max-width: 800px;
  animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.clients-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.marquee-line {
  overflow: hidden;
  height: 100px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  flex-wrap: nowrap;
}

.marquee-track img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  filter: drop-shadow(0 4px 6px rgba(184, 134, 11, 0.5));
  animation: pulseGlow 2s infinite alternate;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@keyframes pulseGlow {
  0% { filter: drop-shadow(0 2px 5px rgba(184, 134, 11, 0.5)); }
  50% { filter: drop-shadow(0 6px 10px rgba(212, 175, 55, 0.8)); }
  100% { filter: drop-shadow(0 2px 5px rgba(184, 134, 11, 0.5)); }
}

.marquee-track img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 12px rgba(212, 175, 55, 0.9));
}
