* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Background */
.hero-bg {
  background-image: url("assets/images/0.jpg");
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* About Page Hero Background */
.about-hero-bg {
  background-image: url("assets/images/about.jpg");
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}

/* Marquee Animation */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-content-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate content for seamless loop */
.marquee-content-wrapper::after {
  content: attr(data-content);
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Slow Spin Animation */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spinSlow 20s linear infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

/* Slide Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-down {
  animation: slideDown 1s ease-out;
}

.animate-slide-right {
  animation: slideRight 1s ease-out;
}

.animate-slide-left {
  animation: slideLeft 1s ease-out;
}

/* Navigation Active State */
.nav-link.active {
  color: #c41e3a !important;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c41e3a;
}

/* Map Placeholder */
.map-placeholder {
  position: relative;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

/* FAQ Items */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  opacity: 0.9;
}

.faq-item.active span {
  transform: rotate(45deg);
}

/* OKC Badge */
.okc-badge {
  transition: all 0.3s ease;
}

.okc-badge:hover {
  transform: scale(1.1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0a3b5c;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c41e3a;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Background Container */
.hero-bg-container {
  position: relative;
  overflow: hidden;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease,
    visibility 0.4s;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mobile-menu-logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  z-index: 10000;
}

.mobile-menu-close:hover {
  color: #c41e3a;
  transform: rotate(90deg);
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
}

/* Circle Logo Responsive Positioning */
.circle-logo-position {
  top: calc(70vh - 60px);
}

@media (min-width: 640px) {
  .circle-logo-position {
    top: calc(75vh - 70px);
  }
}

@media (min-width: 768px) {
  .circle-logo-position {
    top: calc(80vh - 80px);
  }
}

@media (min-width: 1024px) {
  .circle-logo-position {
    top: calc(85vh - 90px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-bg {
    background-position: center;
  }

  h1 {
    font-size: 3rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  .okc-badge {
    width: 80px !important;
    height: 80px !important;
  }

  .okc-badge span {
    font-size: 1.5rem !important;
  }
}

/* Hover Effects */
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

a {
  transition: all 0.3s ease;
}

/* Button Hover Effects */
button,
.btn {
  transition: all 0.3s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Hover Effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
