/* Modern Grid Layout Design */

:root {
  --primary-color: #008cff;
  --secondary-color: #000826;
  --accent-color: #ffffff;
  --accent-light-blue: #98d2f9;
  --accent-purple: #6876a5;
  --light-gray: #c5c5c5;
  --dark-gray: #484848;
  --text-color: #000826;
  --light-text: #ffffff;
  --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --grid-gap: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f5f5f5;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

section {
  padding: 6rem 0;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Grid Layouts */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  display: flex;
  justify-content: center;
  padding: 0.3rem clamp(1rem, 5vw, 2rem);
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nav-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease, height 0.4s ease;
  height: 0; /* Start with no height when hidden */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo.visible {
  opacity: 1;
  transform: translateY(0);
  animation: logoAppear 0.6s ease-out;
  height: 75px; /* Show full height when visible */
}

.logo.disappearing {
  animation: logoDisappear 0.6s ease-out forwards;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: translateY(-15px);
    height: 0;
    margin-bottom: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    height: 75px;
    margin-bottom: 0.3rem;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logoDisappear {
  0% {
    opacity: 1;
    transform: translateY(0);
    height: 75px;
    margin-bottom: 0.3rem;
  }
  30% {
    opacity: 0.9;
    height: 75px;
    margin-bottom: 0.3rem;
  }
  100% {
    opacity: 0;
    transform: translateY(-15px);
    height: 0;
    margin-bottom: 0;
  }
}

.logo img {
  height: 75px;
  width: auto;
  transition: all 0.3s ease;
}

/* Mobile logo sizing */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: clamp(0.5rem, 3vw, 1.5rem);
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin-right: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.nav-links a {
  font-weight: 500;
  color: var(--light-text);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

/* Engage Button Styling */
.nav-links a.engage-btn {
  color: #008cff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.05em;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 140, 255, 0.6), 0 0 20px rgba(0, 140, 255, 0.4), 0 0 30px rgba(0, 140, 255, 0.2);
  animation: engageGlow 2.5s ease-in-out infinite;
}

@keyframes engageGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 140, 255, 0.6), 0 0 20px rgba(0, 140, 255, 0.4), 0 0 30px rgba(0, 140, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 140, 255, 0.8), 0 0 25px rgba(0, 140, 255, 0.5), 0 0 35px rgba(0, 140, 255, 0.3);
  }
}

.nav-links a.engage-btn::after {
  background-color: #008cff; /* Blue underline on hover */
}

.nav-links a.engage-btn:hover {
  color: #0070cc;
  text-shadow: 0 0 15px rgba(0, 140, 255, 0.9), 0 0 25px rgba(0, 140, 255, 0.6), 0 0 35px rgba(0, 140, 255, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-video {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: #000000;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  opacity: 1;
  /* iOS-specific fixes */
  -webkit-transform: translateX(-50%) translateY(-50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* Prevent overlay from causing horizontal scroll */
  pointer-events: none;
}

.hero-content {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(0.75rem, 8vw, 4rem);
  color: var(--light-text);
  position: relative;
  z-index: 2;
  /* Prevent horizontal overflow */
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.hero-logo img {
  max-width: 60%;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
  animation: pulse 3s infinite ease-in-out;
}

/* Mobile hero logo sizing */
@media (max-width: 768px) {
  .hero-logo img {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .hero-logo img {
    max-width: 75%;
  }
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 140, 255, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-cta .btn-primary {
  background: #008cff;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 140, 255, 0.4);
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-secondary i {
  font-size: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--light-text);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Fixed Background Image for About Section and Beyond */
body {
  --bg-y-pos: 50%;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-image: url("https://luminarygeneralstorage.blob.core.windows.net/prod/Stills/Aboutmeimage5.jpg");
  background-size: cover;
  background-position: 50% var(--bg-y-pos);
  background-repeat: no-repeat;
  z-index: -1;
  will-change: background-position;
}

/* New White About Section */
.white-about-section {
  background-color: #ffffff;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  padding: calc(1rem + 10px) 0;
  min-height: auto;
  display: flex;
  align-items: center;
  z-index: 1;
}

.white-about-content {
  text-align: center;
  padding: calc(1rem + 10px) 1.5rem;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.white-about-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Empty Background Showcase Section */
.background-showcase {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.background-showcase-content {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.background-showcase-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.intro-visual {
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 650px;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.intro-visual:hover .intro-image {
  transform: scale(1.05);
}

.intro-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #008cff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.intro-heading {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-color);
  line-height: 1.2;
  position: relative;
}

/* Mobile intro heading sizing */
@media (max-width: 768px) {
  .intro-heading {
    font-size: 2.5rem;
  }

  .intro-heading::before {
    font-size: 4rem;
    left: -25px;
    top: -15px;
  }
}

@media (max-width: 480px) {
  .intro-heading {
    font-size: 2rem;
  }

  .intro-heading::before {
    font-size: 3rem;
    left: -20px;
    top: -10px;
  }
}

.intro-heading::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--primary-color);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  transform: translateX(-50%);
}

.intro-heading::after {
  content: "\201D";
  position: absolute;
  right: 0;
  bottom: -10px;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--primary-color);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  transform: translateX(50%);
}

.intro-text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  opacity: 0.85;
  max-width: 90%;
}

/* Mobile intro text sizing */
@media (max-width: 768px) {
  .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .intro-text {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 95%;
  }
}

.intro-cta {
  position: relative;
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.intro-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 3rem;
  background: #008cff;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(0, 140, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.intro-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.intro-cta .btn:hover::before {
  left: 100%;
}

.intro-cta .btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 140, 255, 0.5);
}

.intro-cta .btn-brochure {
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.intro-cta .btn-brochure:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.intro-cta .btn-brochure i {
  font-size: 0.9rem;
}

/* Angled Image Showcase Section */
.showcase-section {
  padding: 0;
  background-color: rgba(30, 58, 123, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.showcase-item {
  display: flex;
  height: 500px;
  position: relative;
  overflow: hidden;
  background-color: rgba(30, 58, 123, 0.85);
}

.showcase-item.reverse {
  flex-direction: row-reverse;
  background-color: rgba(42, 68, 148, 0.85);
}

.showcase-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Horizontal clip for all showcase images */
.showcase-image {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  transition: clip-path 0.5s ease;
}

/* Reverse horizontal clip for alternating sections */
.showcase-item.reverse .showcase-image {
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

/* Horizontal overlay effect */
.showcase-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 140, 255, 0.2) 0%, transparent 25%, transparent 75%, rgba(152, 210, 249, 0.2) 100%);
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.showcase-item:hover .showcase-image::after {
  opacity: 0.5;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

/* Horizontal edge for content sections */
.showcase-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background-color: #1e3a7b;
  z-index: 1;
}

.showcase-item.reverse .showcase-content::before {
  background-color: #2a4494;
}

.showcase-item .showcase-content::before {
  top: -15px;
  transform: skewY(-1.5deg);
}

.showcase-item.reverse .showcase-content::before {
  bottom: -15px;
  top: auto;
  transform: skewY(1.5deg);
}

.showcase-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--light-text);
}

.showcase-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
}

.showcase-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* Industries Served Section */
.industries-served {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

/* Mobile section title sizing */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 0;
  opacity: 0.8;
  color: var(--light-text);
}

.section-brochure-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.section-brochure-cta .btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(0, 140, 255, 0.2);
  color: var(--accent-light-blue);
  border: 2px solid var(--accent-light-blue);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
  transition: all 0.3s ease;
}

.section-brochure-cta .btn-brochure:hover {
  background: rgba(0, 140, 255, 0.3);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 140, 255, 0.4);
}

.section-brochure-cta .btn-brochure i {
  font-size: 1rem;
}

/* Mobile section description sizing */
@media (max-width: 768px) {
  .section-title p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

.industries-served .section-title p {
  color: var(--light-text);
  opacity: 0.9;
}

.horizontal-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.horizontal-scroll-content {
  display: flex;
  gap: 20px;
  padding: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.horizontal-scroll-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.industry-card {
  flex: 0 0 300px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-light-blue);
}

.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.industry-card p {
  color: var(--light-text);
  opacity: 0.9;
  font-size: 0.9rem;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.scroll-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 140, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.scroll-btn:active::before {
  width: 100%;
  height: 100%;
}

.scroll-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 140, 255, 0.3);
}

.scroll-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

/* Technology & Contact Unified Section */
.technology-contact-section {
  background-color: rgba(0, 8, 38, 0.85);
  color: var(--light-text);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 6rem 0 0 0;
  position: relative;
  margin-bottom: -3rem;
  padding-bottom: 9rem;
  z-index: 1;
  overflow-x: hidden;
}

.technology-contact-section .section-title h2 {
  color: var(--light-text);
}

.technology-contact-section .section-title p {
  color: var(--light-text);
  opacity: 0.9;
}

/* Horizontal scroll for expertise cards */
.technology-contact-section .horizontal-scroll-container {
  position: relative;
  width: 100%;
  max-width: 1180px; /* 4 cards × 280px + 3 gaps × 20px = 1180px */
  margin: 0 auto;
  overflow-x: hidden;
  padding: 3rem 0 2rem 0;
}

.expertise-scroll {
  display: flex;
  gap: 20px;
  padding: 20px 0 0 0; /* Add top padding for cards to lift into */
  overflow-x: hidden;
  overflow-y: visible; /* Allow cards to extend upward on hover */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scroll-snap-type: x mandatory; /* Snap to cards on mobile */
}

.expertise-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.expertise-card {
  flex: 0 0 280px;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}

.expertise-card.expanded {
  min-height: 300px;
}

.expertise-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}

.expertise-icon i {
  font-size: 1.8rem;
  color: var(--accent-light-blue);
}

.expertise-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--light-text);
  flex-shrink: 0;
  line-height: 1.3;
}

.expertise-card p {
  color: var(--light-text);
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.expertise-card p.preview {
  display: block;
}

.expertise-card p.full {
  display: none;
}

.expertise-card.expanded p.preview {
  display: block;
  margin-bottom: 0.5rem;
}

.expertise-card.expanded p.full {
  display: block;
}

.read-more-btn {
  background: rgba(0, 140, 255, 0.2);
  color: var(--accent-light-blue);
  border: 1px solid var(--accent-light-blue);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-btn:hover {
  background: rgba(0, 140, 255, 0.3);
  transform: translateY(-2px);
}

.expertise-card.expanded .read-more-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Client Partnerships Section */
.client-partnerships {
  background-color: #0a1a40;
  color: var(--light-text);
}

.client-partnerships .section-title h2 {
  color: white;
}

.client-partnerships .section-title p {
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partnership-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.5s ease;
  border-radius: 10px;
  background-color: #e0e0e0;
  padding: 1rem;
}

.partnership-logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.partnership-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Content within unified section */
.contact-content {
  margin-top: 6rem;
}

/* Mobile contact content */
@media (max-width: 768px) {
  .contact-content {
    margin-top: 4rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  text-align: left;
  color: var(--light-text);
  position: relative;
  padding-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-light-blue);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-family: var(--font-family);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
  padding-right: 3rem;
  white-space: normal;
  line-height: 1.4;
  min-height: 3rem;
}

.contact-form select option {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Form status messages */
.form-status {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.success {
  background-color: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  border-left: 4px solid #2ecc71;
}

.form-status.error {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

.form-status.loading {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border-left: 4px solid #3498db;
}

.submit-button {
  background: #008cff;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #000000;
  color: var(--light-text);
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  height: 120px;
  width: auto;
}

/* Social links removed as requested */

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.copyright p {
  margin: 0;
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--accent-light-blue);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .intro-visual {
    height: 550px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-column: 1;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
  }

  .intro-visual {
    height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo,
  .footer-links,
  .social-links,
  .copyright {
    grid-column: 1;
  }

  .footer-links,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }

  /* Hide navigation on mobile */
  .nav-links {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .white-about-content {
    padding: 3rem 2rem;
  }

  .intro-cta .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .intro-cta .btn-brochure {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-item.large {
    grid-column: 1;
    height: 400px;
  }

  /* Mobile styles for expertise cards - show 1 at a time */
  .technology-contact-section .horizontal-scroll-container {
    max-width: 100%;
    padding: 2rem 0;
    overflow: visible;
  }

  .expertise-scroll {
    padding: 0;
    overflow-x: auto;
    scroll-padding: 0;
    gap: 0;
  }

  .expertise-card {
    flex: 0 0 100%;
    max-width: 100vw;
    min-height: 360px;
    padding: 1.5rem;
    margin: 0;
    scroll-snap-align: start;
  }

  .expertise-card h3 {
    font-size: 1.3rem;
  }

  .expertise-card p {
    font-size: 0.95rem;
  }

  /* Show scroll buttons on mobile with touch-friendly size */
  .technology-contact-section .scroll-controls {
    display: flex;
  }

  .technology-contact-section .scroll-btn {
    min-width: 44px;
    min-height: 44px;
  }

  /* Responsive styles for showcase section */
  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    height: auto;
  }

  .showcase-image {
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }

  .showcase-item.reverse .showcase-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  }

  .showcase-content {
    padding: 2.5rem 1.5rem;
  }

  .showcase-content h3 {
    font-size: 1.8rem;
  }

  .showcase-content p {
    font-size: 1rem;
  }

  /* Contact section - single column on mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info h2 {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  /* Reduce form container padding on mobile and center it */
  .contact-form-container {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }

  /* Reduce form field gaps on mobile and ensure full width */
  .contact-form {
    gap: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .hero-logo img {
    max-width: 90%;
  }

  .showcase-image {
    height: 250px;
  }

  .showcase-content {
    padding: 2.5rem 1.5rem;
  }

  .showcase-content h3 {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
  }

  .showcase-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  nav {
    padding: 0.3rem 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-logo img {
    max-width: 85%;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .white-about-content {
    padding: 2.5rem 1.5rem;
  }

  .intro-cta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .intro-cta .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 280px;
  }

  .intro-cta .btn-brochure {
    padding: 0.6rem 1.3rem;
    font-size: 0.75rem;
  }

  .industry-card {
    flex: 0 0 240px;
    height: 280px;
    padding: 1.5rem;
  }

  .industry-card h3 {
    font-size: 1.3rem;
  }

  .industry-card p {
    font-size: 0.85rem;
  }

  /* Smaller expertise cards on very small screens */
  .expertise-card {
    flex: 0 0 100%;
    max-width: 100vw;
    min-height: 340px;
    padding: 1.3rem;
  }

  .expertise-card h3 {
    font-size: 1.2rem;
  }

  .expertise-card p {
    font-size: 0.85rem;
  }

  .read-more-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  .showcase-image {
    height: 200px;
  }

  .showcase-content {
    padding: 2rem 1rem;
  }

  .showcase-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .showcase-content h3::after {
    width: 60px;
    height: 2px;
  }

  .showcase-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.9rem;
    font-size: 0.9rem;
  }

  .contact-form select {
    padding-right: 2.5rem;
    min-height: 3.5rem;
  }

  .contact-grid {
    padding: 0 1rem;
  }

  .contact-form-container {
    padding: 1.2rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .submit-button {
    padding: 0.9rem;
    font-size: 0.9rem;
  }
}

/* Extra small screens (< 400px) - Critical fixes for horizontal overflow */
@media (max-width: 400px) {
  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-logo {
    padding: 0 0.5rem;
  }

  .hero-logo img {
    max-width: 85%;
  }

  .hero-cta {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  .hero-cta .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    width: calc(100% - 1rem);
    max-width: calc(100vw - 2rem);
  }

  nav {
    padding: 0.3rem 0.5rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .section-title p {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }

  /* Contact section optimizations for very small screens */
  .contact {
    padding: 3rem 0;
  }

  .contact-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .contact-form-container {
    padding: 1rem;
  }

  .contact-form {
    gap: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .submit-button {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   MOBILE BURGER MENU STYLES
   ============================================ */

/* Hamburger Button - Hidden on desktop, visible on mobile */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger-btn:hover {
  transform: scale(1.1);
}

.hamburger-btn:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--accent-light-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 140, 255, 0.5);
}

/* Hamburger animation when menu is open */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1002;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  padding-top: 80px;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Navigation Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1.5rem 2rem;
  color: var(--light-text);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(0, 140, 255, 0.15);
  transition: width 0.3s ease;
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:last-child::after {
  display: none;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--accent-light-blue);
  transform: scale(1.05);
}

/* Special styling for Engage button in mobile menu */
.mobile-nav-link.engage-btn {
  color: #008cff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 140, 255, 0.6);
  margin-bottom: 1rem;
  padding-bottom: 2rem;
}

.mobile-nav-link.engage-btn::after {
  height: 2px;
  background: rgba(0, 140, 255, 0.3);
  left: 15%;
  right: 15%;
}

.mobile-nav-link.engage-btn:hover {
  color: #0070cc;
  text-shadow: 0 0 15px rgba(0, 140, 255, 0.9);
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  /* Show hamburger button on mobile */
  .hamburger-btn {
    display: flex;
  }

  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
  }
}

/* iPhone 12 Pro specific optimizations (390px width) */
@media (max-width: 390px) {
  .mobile-menu {
    width: 260px;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    padding-left: 2rem;
  }

  /* Contact section specific fixes for iPhone 12 */
  .contact {
    min-height: auto;
    padding: 3rem 0 2rem 0;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-form-container {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .contact-form {
    gap: 0.9rem;
  }

  .contact-form input,
  .contact-form select {
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .contact-form textarea {
    min-height: 120px;
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .contact-form select {
    min-height: 3.2rem;
  }

  .submit-button {
    padding: 0.85rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}

/* Smooth animations for menu items */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .mobile-nav-link {
  animation: slideInRight 0.3s ease forwards;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
  animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
  animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-link:nth-child(5) {
  animation-delay: 0.3s;
}
