body {
  font-family: 'Inter', sans-serif;
}

.hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  width: 100%;
}

.bg-image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 40, 0.7);
  pointer-events: none;
}

.card-image-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.85));
  pointer-events: none;
}

.theme-bg-dark {
  background-color: #0A1128;
}

.theme-text-orange {
  color: #FF6B00;
}

.theme-bg-orange {
  background-color: #FF6B00;
}

.theme-border-orange {
  border-color: #FF6B00;
}

.animate-marquee-speed {
  animation: marquee 25s linear infinite;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes marquee {
  0% { transform: translateX(3%); }
  100% { transform: translateX(-3%); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float3d {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-12px, -10px, 0) rotate(1.5deg); }
}

.animated-3d-background {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform-style: preserve-3d;
  overflow: hidden;
}

.animated-3d-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
  animation: float3d 14s ease-in-out infinite;
}

.animated-3d-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.92));
  pointer-events: none;
}

.contact-card-3d {
  transform: perspective(1000px) translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-card-3d:hover {
  transform: perspective(1000px) translateZ(18px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 38px 80px rgba(15, 23, 42, 0.35);
}

.glass-card {
  background: rgba(15, 23, 42, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.card-highlight {
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.20);
}

.button-primary-glow {
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.24);
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}
