
/* Operational Expertise list styling */
.text-gray-300.pl-5 li {
    list-style-type: disc;
    padding-left: 0;
    margin-left: 1rem;
    line-height: 1.6;
}
/* Gold shimmer animation for hero sections */
.hero-gold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    animation: gold-shimmer 12s infinite linear;
    background: linear-gradient(
        120deg,
        rgba(212,175,55,0) 0%,
        rgba(212,175,55,0.04) 30%,
        rgba(249,212,35,0.06) 50%,
        rgba(212,175,55,0.04) 70%,
        rgba(212,175,55,0) 100%
    );
}

@keyframes gold-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title, .hero-subtitle, .hero-description {
    position: relative;
    z-index: 2; /* ensures text is above the gold overlay */
}
.hero-gold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        120deg,
        rgba(212,175,55,0) 0%,
        rgba(212,175,55,0.08) 30%,
        rgba(249,212,35,0.12) 50%,
        rgba(212,175,55,0.08) 70%,
        rgba(212,175,55,0) 100%
    );
    animation: gold-shimmer 6s infinite linear;
}

@keyframes gold-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title, .hero-subtitle, .hero-description {
    position: relative;
    z-index: 2; /* ensures text is above the gold overlay */
}

/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* Hero section styles */
.hero-section {
  background: black;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-title::before,
.hero-title::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  border-radius: 4px;
  mix-blend-mode: overlay;
  opacity: 0.8;
  filter: blur(3px);
}

.hero-title::before {
  background: 
    linear-gradient(135deg, 
      rgba(212, 175, 55, 0) 0%, 
      rgba(212, 175, 55, 0.3) 50%, 
      rgba(212, 175, 55, 0) 100%);
  animation: metallicShine 6s linear infinite;
  transform: translateX(-100%) translateY(-100%);
}

.hero-title::after {
  background: 
    radial-gradient(circle, 
      rgba(249, 212, 35, 0.3) 0%, 
      rgba(249, 212, 35, 0) 70%);
  animation: metallicPulse 4s ease-in-out infinite alternate;
}

@keyframes metallicShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

@keyframes metallicPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-subtitle {
  position: relative;
  display: inline-block;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: 
    linear-gradient(45deg, 
      rgba(212, 175, 55, 0.1) 0%, 
      rgba(212, 175, 55, 0.3) 50%, 
      rgba(212, 175, 55, 0.1) 100%);
  z-index: -1;
  border-radius: 4px;
  animation: subtitleShine 8s linear infinite;
  opacity: 0.6;
  filter: blur(2px);
  transform: rotate(5deg) translateX(-100%);
}

@keyframes subtitleShine {
  0% {
    transform: rotate(5deg) translateX(-100%);
  }
  100% {
    transform: rotate(5deg) translateX(100%);
  }
}
.hero-subtitle::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(212, 175, 55, 0.3) 8px,
      rgba(212, 175, 55, 0.3) 16px
    );
  z-index: -1;
  border-radius: 4px;
  animation: metallicShine 10s linear infinite reverse;
  opacity: 0.6;
  filter: blur(3px);
  transform: translateX(-100%) translateY(-100%);
  mix-blend-mode: overlay;
}

@keyframes metallicShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}
.hero-subtitle::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0) 0%, 
    rgba(212, 175, 55, 0.3) 20%, 
    rgba(249, 212, 35, 0.4) 50%,
    rgba(212, 175, 55, 0.3) 80%,
    rgba(212, 175, 55, 0) 100%);
  z-index: -1;
  border-radius: 4px;
  animation: metallicShine 10s linear infinite;
  opacity: 0.6;
  filter: blur(6px);
  transform: translateX(-100%) translateY(-100%);
  animation-delay: 1s;
}
.hero-subtitle {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 800px;
  line-height: 1.4;
  position: relative;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.hero-subtitle {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 800px;
  line-height: 1.4;
}
@keyframes shine {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(249, 212, 35, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
}
.container.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@keyframes shimmer {
  0% {
    transform: rotate(30deg) translate(-30%, -30%);
  }
  100% {
    transform: rotate(30deg) translate(30%, 30%);
  }
}
/* Animation classes */
[data-animate] {
  opacity: 0;
  transition: all 0.6s ease-out;
}
[data-animate="slide-down"] {
  transform: translateY(-30px);
}

[data-animate="slide-up"] {
  transform: translateY(30px);
}

[data-animate="fade-in"] {
  opacity: 0;
  transform: none;
}

[data-animate="stagger"] li {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease-out;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Section spacing */
section {
  padding: 5rem 0;
}
/* Video styling */
.fade-video {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.fade-video.animated {
  opacity: 1;
  transform: translateY(0);
}

.content-video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
}