/* Marquee SVG O styling */
.marquee-svg-text {
  display: flex;
  align-items: center;
}
.marquee-svg-o {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: -0.08em;
  margin-top: 5px;
  margin-right: -10px;
}

.marquee-svg-rest {
  display: inline-block;
  margin-left: 2px;
  font-size: 32px;
}
/*=============
Main css
==============*/

body {
  /* font-family: 'Poppins', sans-serif; */
  font-size: 15px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  /* font-family: 'Lobster', cursive; */
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

/* error */
.error_page {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  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: #0b3b5d;
  position: relative;
}

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

/* 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;
}
.page-template-next-steps .logo-container img {
  filter: invert(1);
}
.page-template-next-steps .shadow-md .logo-container img {
  filter: invert(0);
}
.page-template-next-steps .backdrop-blur-md a.nav-link {
  color: #0a3958 !important;
}

.mno li a {
  font-size: 16px;
  font-weight: 600;
}
.mnt li a {
  font-size: 16px;
  font-weight: 600;
}
.backdrop-blur-md .desk-menu a:last-child {
  color: #fff !important;
}
/* 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: 72%;
  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);
}

.mobile-menu-content nav {
  backdrop-filter: none;
  box-shadow: none;
}

.my-button {
  /* Background and Text */
  background-color: #0a3b5c;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.025em;

  /* Padding */
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  /* Shape and Font */
  border-radius: 9999px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;

  /* Transition */
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Hover Effect */
.my-button:hover {
  background-color: #c41e3a;
}

/* Large Screens (lg: at 1024px) */
@media (min-width: 1024px) {
  .my-button {
    /* Large screen padding */
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    /* Large screen font size */
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 768px) {
  .circle-logo-position {
    top: calc(70vh - 100px);
  }
}
@media only screen and (min-width: 601px) and (max-width: 639px) {
  .circle-logo-position {
    top: calc(70vh - 300px);
  }
}
@media only screen and (min-width: 501px) and (max-width: 600px) {
  .circle-logo-position {
    top: calc(70vh - 300px);
  }
}
@media only screen and (min-width: 420px) and (max-width: 500px) {
  .circle-logo-position {
    top: calc(70vh - 255px);
  }
}

@media only screen and (min-width: 320px) and (max-width: 420px) {
  .circle-logo-position {
    top: calc(70vh - 255px);
  }
}

span.marquee-svg-o svg {
  width: 250px !important;
  margin-right: 6px;
}

.kanas-city img {
  height: 70vh;
  object-fit: cover;
  width: 100%;
}
.wcmy {
  position: relative;
  z-index: 1;
}

.wcmy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5e6d3c4;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}

/* Team Page Styles - Kings Denton Style */
.team-member-simple {
  opacity: 0;
  animation: simpleFadeIn 0.8s ease-out forwards;
}

.team-member-simple:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member-simple:nth-child(2) {
  animation-delay: 0.2s;
}

.team-member-simple:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member-simple:nth-child(4) {
  animation-delay: 0.4s;
}

.team-member-simple:nth-child(5) {
  animation-delay: 0.5s;
}

.team-member-simple:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes simpleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Circular Photo Hover Effect */
.team-member-simple img {
  transition: transform 0.3s ease;
}

.team-member-simple:hover img {
  transform: scale(1.05);
}

/* Responsive Team Grid */
@media (max-width: 768px) {
  .team-member-simple {
    animation-delay: 0.1s !important;
  }
}
