.min-h-screen {
  min-height: 90vh !important;
}
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(224, 224, 224, 0.5);
}
.industrial-gradient {
  background: radial-gradient(circle at 70% 30%, #303030 0%, #1b1c1c 100%);
}
.red-glow {
  box-shadow: 0 0 20px rgba(187, 0, 19, 0.3);
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
@keyframes pulse-red {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
.animate-pulse-red {
  animation: pulse-red 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Slider Styles */
.hero-slider-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-slider-container {
    width: 55%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (max-width: 768px) {
  .px-margin-desktop {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1b1c1c 0%,
    transparent 40%,
    transparent 60%,
    #1b1c1c 100%
  );
  opacity: 0.4;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.neon-red-glow {
  box-shadow: 0 0 15px rgba(187, 0, 19, 0.3);
}
.neon-text-red {
  text-shadow: 0 0 10px rgba(187, 0, 19, 0.5);
}
@keyframes pulse-red {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-pulse-red {
  animation: pulse-red 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
