html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #0a0a0a;
  font-family: "Montserrat", sans-serif;
  color: #e0e0e0;
  scroll-behavior: smooth;
}

/* Set a maximum width for the main content container */
main .container {
  max-width: 1288px;
}

.font-sans {
  font-family: Montserrat, sans-serif;
}

.group relative {
  margin-bottom: 50px;
}

.gradient-text {
  background: linear-gradient(90deg, #b026ff, #0091ff, #00ffb0, #00f0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-border {
  position: relative;
  border-radius: 9999px;
  background: linear-gradient(#121212, #121212) padding-box,
    linear-gradient(90deg, #b026ff, #0091ff, #00ffb0, #00f0ff) border-box;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gradient-border:hover {
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.5), 0 0 25px rgba(0, 240, 255, 0.3);
}

/* Updated Solution Card Styles with Background Image */
.gradient-border-card {
  position: relative;
  border-radius: 0.75rem;
  background: url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover,
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
  background-blend-mode: overlay;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Add a subtle gradient border */
.gradient-border-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(120deg, #b026ff, #0091ff, #00ffb0);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

/* Enhanced hover effect */
.gradient-border-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 176, 0.3), 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
  background: url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover,
    linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(18, 18, 18, 0.8));
  background-blend-mode: overlay;
}

/* Enhanced content overlay for better readability */
.gradient-border-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(18, 18, 18, 0.6) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content appears above the overlay */
.gradient-border-card > * {
  position: relative;
  z-index: 2;
}

/* Alternative: If you want a more subtle background effect */
.gradient-border-card-subtle {
  position: relative;
  border-radius: 0.75rem;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.85),
      rgba(26, 26, 26, 0.95)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.gradient-border-card-subtle::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(120deg, #b026ff, #0091ff, #00ffb0);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.6;
}

.gradient-border-card-subtle:hover {
  box-shadow: 0 0 25px rgba(176, 38, 255, 0.2);
  transform: translateY(-5px);
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.8),
      rgba(26, 26, 26, 0.9)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
}

/* Updated Technology Ecosystem Cards with Background Image */
.tech-ecosystem-card {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.85),
      rgba(26, 26, 26, 0.9)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Enhanced overlay for better text readability */
.tech-ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(18, 18, 18, 0.6) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content appears above overlay */
.tech-ecosystem-card > * {
  position: relative;
  z-index: 2;
}

.tech-ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(176, 38, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.8),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
}

/* Enhanced title styling for better visibility */
.tech-ecosystem-card h3 {
  color: #f4f4f4;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Logo container enhancements */
.tech-ecosystem-card .grid img {
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(1.3) contrast(1.1);
  opacity: 0.8;
}

.tech-ecosystem-card .grid img:hover {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Updated AI Framework Cards with Background Image */
.ai-framework-card {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.85),
      rgba(26, 26, 26, 0.9)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Enhanced overlay for AI framework cards */
.ai-framework-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(18, 18, 18, 0.6) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content appears above overlay */
.ai-framework-card > * {
  position: relative;
  z-index: 2;
}

.ai-framework-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 145, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.8),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
}

/* Enhanced title styling for AI framework cards */
.ai-framework-card h3 {
  color: #f4f4f4;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Enhanced list items for better visibility */
.ai-framework-card ul li {
  color: #e0e0e0;
  font-size: 1.125rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.ai-framework-card ul li i {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Updated glassmorphism with dark theme */
.glassmorphism {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.85),
      rgba(26, 26, 26, 0.9)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.glassmorphism::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(18, 18, 18, 0.6) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.glassmorphism > * {
  position: relative;
  z-index: 2;
}

.glassmorphism:hover {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.8),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://preview.ora.tech/images/richard-horvath-_nWaeTF6qo0-unsplash.jpg")
      center/cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(176, 38, 255, 0.1);
}

/* Enhanced text visibility for glassmorphism cards */
.glassmorphism h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: #f4f4f4;
}

/*
================================================================
==> HEADER COMPATIBILITY AND Z-INDEX FIXES
================================================================
*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
/* Ensure header elements don't interfere with mobile menu */
header,
.header,
#header,
nav,
.nav,
.navbar {
  z-index: 1000 !important;
}

/* Override any potential header positioning conflicts */
header *,
.header *,
#header *,
nav *,
.nav *,
.navbar * {
  z-index: inherit;
}

/* Fix any potential backdrop filter conflicts */
header,
.header,
#header {
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Legacy hamburger styles removed - using bulletproof mobile menu styles instead */

/* Utility class for chevron rotation */
.rotate-180 {
  transform: rotate(180deg) !important;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.section-container {
  padding: 5rem 1.5rem;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #00ffb0, #00f0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #222;
  top: 0;
  bottom: 0;
  left: 30px;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: auto;
  left: 18px;
  background-color: #121212;
  border: 4px solid #00f0ff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  background-color: #00f0ff;
}

@media (min-width: 768px) {
  .timeline::after {
    left: 50%;
  }
  .timeline-item {
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .timeline-item.left {
    left: 0;
  }
  .timeline-item.right {
    left: 50%;
  }
  .timeline-item.left::after {
    left: auto;
    right: -14px;
  }
  .timeline-item.right::after {
    left: -12px;
  }
}

.zk-explainer-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.zk-card {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #333;
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}

.zk-card:hover {
  border-color: #b026ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.zk-icon-container {
  height: 80px;
  width: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a0a0a;
  border: 2px solid #333;
}

.zk-icon {
  font-size: 2.5rem;
}

.zk-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 1rem;
}

.zk-arrow {
  font-size: 3rem;
  color: #00ffb0;
  animation: zkp-pulse 1.5s infinite ease-in-out;
}

.zk-card-glow {
  border-color: #00ffb0;
  box-shadow: 0 0 15px rgba(0, 255, 176, 0.4), 0 0 25px rgba(0, 255, 176, 0.2);
}

.zk-card-glow .zk-icon-container {
  border-color: #00ffb0;
}

.zk-card-glow .zk-icon {
  color: #00ffb0;
}

.tech-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-item img {
  height: 50px;
  filter: grayscale(1) brightness(1.5) contrast(1.2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tech-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.case-card {
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.filter-button.active {
  background: linear-gradient(90deg, #b026ff, #0091ff);
  color: #f4f4f4;
  border-color: transparent;
}

.pillar {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px 20px;
  flex: 1;
  min-width: 150px;
  max-width: 170px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: #00f0ff;
}

.pillar.govern {
  border-color: #b026ff;
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.pillar:hover .pillar-icon {
  color: #00f0ff;
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #soft-white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar p {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
}

.highlighted-section {
  outline: 2px solid #3f20fb;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

.count-up {
  display: inline-block;
}

.metrics-container {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.metrics-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.bullet-point {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.bullet-point.visible {
  opacity: 1;
  transform: translateX(0);
}

.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(176, 38, 255, 0.5),
    rgba(0, 240, 255, 0.5)
  );
  transform: translateX(-50%);
}

.vertical-line::before,
.vertical-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.vertical-line::before {
  top: 0;
  background: #b026ff;
}

.vertical-line::after {
  bottom: 0;
  background: #00f0ff;
}

.input-field {
  background: rgba(18, 18, 18, 0.3);
  border: 1px solid rgba(224, 224, 224, 0.2);
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.location-card {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2),
    0 5px 15px rgba(176, 38, 255, 0.2);
}

.modal {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.solution-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.solution-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2),
    0 5px 15px rgba(176, 38, 255, 0.2);
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card:hover .read-more-link {
  background-size: 100% 2px;
}

.read-more-link {
  background-image: linear-gradient(90deg, #00f0ff, #b026ff);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.3s ease;
}

.typing-effect {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #00f0ff;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@media (min-width: 1024px) {
  html {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #b026ff #121212;
    /* Firefox thumb & track */
  }
  ::-webkit-scrollbar {
    display: block;
    width: 12px;
  }
  ::-webkit-scrollbar-track {
    background: #121212;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b026ff, #0091ff, #00ffb0, #00f0ff);
    border-radius: 10px;
    border: 2px solid #121212;
  }
  ::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
  }
}

.cta-button {
  display: inline-block;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: #f4f4f4;
  background: linear-gradient(90deg, #b026ff, #0091ff);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 145, 255, 0.5);
}

.logo-wall img {
  max-height: 40px;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-wall img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

.partner-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.partner-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2),
    0 5px 15px rgba(176, 38, 255, 0.2);
}

.integration-flow {
  position: relative;
}

.integration-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #b026ff,
    #0091ff,
    #00ffb0,
    transparent
  );
  animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  height: 80px;
}

.logo-item img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}

.warning-card {
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.1),
    rgba(255, 149, 0, 0.1)
  );
  border: 1px solid rgba(255, 59, 48, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.penalty-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.15),
    rgba(255, 149, 0, 0.15)
  );
  border-left: 4px solid #ff3b30;
}
#cookie-banner {
  backdrop-filter: blur(8px);
  background-color: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(224, 224, 224, 0.2);
  transition: all 0.3s ease;
}
#cookie-settings input[type="checkbox"] {
  accent-color: #00f0ff;
}

/*
================================================================
==> BULLETPROOF MOBILE MENU STYLES - MAXIMUM COMPATIBILITY
================================================================
*/

/* Force override any conflicting styles */
.bulletproof-mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: rgba(10, 10, 10, 0.98) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: none !important;
  z-index: 999999 !important;
  transform: translateX(100%) !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  visibility: hidden !important;
  padding: 6rem 1rem 2rem 1rem !important;
  box-sizing: border-box !important;
  overflow-y: auto !important;
  font-family: "Montserrat", sans-serif !important;
}

.bulletproof-mobile-menu.menu-open {
  transform: translateX(0) !important;
  visibility: visible !important;
}

/* Ensure menu appears above everything */
.bulletproof-mobile-menu * {
  z-index: inherit !important;
}

/* Main Menu Links - Force styles */
.bulletproof-menu-item {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #f4f4f4 !important;
  margin: 1rem 0 !important;
  padding: 1rem 0 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: block !important;
  text-align: center !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  cursor: pointer !important;
  border: none !important;
  background: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.bulletproof-menu-item:hover {
  color: #00f0ff !important;
  transform: translateY(-2px) !important;
}

/* Menu Dropdown Container - Force styles */
.bulletproof-menu-dropdown-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  max-width: calc(100vw - 2rem) !important;
  box-sizing: border-box !important;
  margin: 1rem 0 !important;
}

/* Submenu Container - Force styles and fix visibility */
.bulletproof-submenu {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  background: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  width: 100% !important;
  max-width: calc(100vw - 4rem) !important;
  box-sizing: border-box !important;
  opacity: 0 !important;
  transform: translateY(-5px) !important;
}

.bulletproof-submenu.submenu-open {
  max-height: 800px !important;
  padding: 1.5rem !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Submenu Items - Force styles and ensure visibility */
.bulletproof-submenu-item {
  display: flex !important;
  align-items: center !important;
  text-align: left !important;
  width: 100% !important;
  font-size: 1rem !important;
  color: #d0d0d0 !important;
  padding: 16px 20px !important;
  margin: 6px 0 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  cursor: pointer !important;
  border: none !important;
  background: transparent !important;
}

.bulletproof-submenu-item:hover {
  color: #00ffb0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateX(8px) !important;
  box-shadow: 0 4px 12px rgba(0, 255, 176, 0.2) !important;
}

/* Submenu Icons - Force styles */
.bulletproof-submenu-icon {
  font-size: 1.2rem !important;
  margin-right: 18px !important;
  width: 24px !important;
  text-align: center !important;
  color: #a0a0a0 !important;
  flex-shrink: 0 !important;
}

.bulletproof-submenu-item:hover .bulletproof-submenu-icon {
  color: #00ffb0 !important;
}

/* Submenu text container - Force styles */
.bulletproof-submenu-item span {
  flex: 1 !important;
  min-width: 0 !important;
  line-height: 1.5 !important;
}

/* Close Button - Force styles and ensure visibility */
.bulletproof-close-btn {
  position: absolute !important;
  top: 2rem !important;
  right: 2rem !important;
  width: 56px !important;
  height: 56px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 1.8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 9999999 !important;
}

.bulletproof-close-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: #00f0ff !important;
  transform: rotate(90deg) scale(1.1) !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4) !important;
}

/* Hamburger Icon - Force styles and ensure visibility */
.mobile-menu-hamburger {
  position: relative !important;
  width: 32px !important;
  height: 26px !important;
  cursor: pointer !important;
  z-index: 9999999 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Hide hamburger on desktop (lg and larger) */
@media (min-width: 1024px) {
  .mobile-menu-hamburger {
    display: none !important;
  }
}

.mobile-menu-hamburger span {
  width: 100% !important;
  height: 4px !important;
  background: white !important;
  transition: all 0.3s ease !important;
  display: block !important;
  border-radius: 2px !important;
}

.mobile-menu-hamburger.hamburger-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px) !important;
}

.mobile-menu-hamburger.hamburger-active span:nth-child(2) {
  opacity: 0 !important;
}

.mobile-menu-hamburger.hamburger-active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .bulletproof-mobile-menu {
    padding: 5rem 0.5rem 2rem 0.5rem !important;
  }

  .bulletproof-submenu {
    max-width: calc(100vw - 2rem) !important;
  }

  .bulletproof-submenu-item {
    padding: 14px 16px !important;
    font-size: 0.95rem !important;
  }

  .bulletproof-submenu-icon {
    margin-right: 16px !important;
    width: 22px !important;
    font-size: 1.1rem !important;
  }

  .bulletproof-menu-item {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 320px) {
  .bulletproof-submenu-item {
    padding: 12px 14px !important;
    font-size: 0.9rem !important;
  }

  .bulletproof-submenu-icon {
    margin-right: 14px !important;
    width: 20px !important;
    font-size: 1rem !important;
  }

  .bulletproof-menu-item {
    font-size: 1rem !important;
  }
}

/* Custom styles for section headings and descriptions */
section .text-center h2 {
  font-size: 36px !important;
}

section .text-center p {
  font-size: 20px !important;
}

/* Make each section fill the viewport and center content */
main > section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*
================================================================
==> HERO SLIDER STYLES (CORRECTED)
================================================================
*/

#hero {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: 1;
}

/* New decorative element for slides */
.hero-slide::after {
  content: "ORA";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(
    45deg,
    rgba(176, 38, 255, 0.05),
    rgba(0, 240, 255, 0.05)
  );
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 2;
  pointer-events: none; /* Make it unclickable */
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

#slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  #slider-controls {
    left: 4rem;
    bottom: calc(4rem + 20px);
  }
}

.slide-content {
  position: relative;
  z-index: 3; /* Increased z-index to be on top of the new ::after element */
  animation: slide-in-bottom 1s both;
  animation-delay: 0.3s;
}

.hero-slide.active .slide-content {
  opacity: 1;
}

.slider-arrow {
  background-color: transparent;
  border: 1px solid rgba(224, 224, 224, 0.3);
  color: #e0e0e0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(224, 224, 224, 0.1);
  border-color: #00f0ff;
  transform: scale(1.1);
}

#slide-counter {
  font-variant-numeric: tabular-nums;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*
================================================================
==> Industry Flip Card Styles (Updated)
================================================================
*/

.industry-card-container {
  background-color: transparent;
  width: 100%;
  aspect-ratio: 4 / 3;
  perspective: 1200px;
  perspective-origin: center center;
  position: relative;
}

.industry-card-container::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  z-index: 0;
}

.industry-card-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  transform-origin: center center;
  z-index: 1;
}

.industry-card-container:hover .industry-card-flipper {
  transform: rotateY(180deg);
}

.industry-card-front,
.industry-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  box-sizing: border-box;
}

.industry-card-front {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.industry-card-back {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
  transform: rotateY(180deg);
}

.gradient-cyan-blue {
  background: linear-gradient(135deg, #00f0ff, #0091ff);
}
.gradient-purple-blue {
  background: linear-gradient(135deg, #b026ff, #0091ff);
}
.gradient-green-cyan {
  background: linear-gradient(135deg, #00ffb0, #00f0ff);
}
.gradient-purple-cyan {
  background: linear-gradient(135deg, #b026ff, #00f0ff);
}

/*
================================================================
==> Mobile View Adjustments
================================================================
*/

@media (max-width: 767px) {
  /* Center the hero slide content on mobile */
  .slide-content .max-w-3xl {
    text-align: center;
  }

  /* Center the buttons on the first slide on mobile */
  .slide-content .flex {
    justify-content: center;
  }

  /* Hide the decorative "ORA" text on mobile */
  .hero-slide::after {
    display: none;
  }
}

/*
================================================================
==> INDUSTRY CARD BACKGROUND IMAGES
================================================================
*/

/* Finance Card Background */
.finance-card {
  background: linear-gradient(
      135deg,
      rgba(0, 240, 255, 0.75),
      rgba(0, 145, 255, 0.75)
    ),
    url("images/finance.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.finance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Healthcare Card Background */
.healthcare-card {
  background: linear-gradient(
      135deg,
      rgba(176, 38, 255, 0.75),
      rgba(0, 145, 255, 0.75)
    ),
    url("images/healthcare.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.healthcare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Supply Chain Card Background */
.supplychain-card {
  background: linear-gradient(
      135deg,
      rgba(0, 255, 176, 0.75),
      rgba(0, 240, 255, 0.75)
    ),
    url("images/supplychain.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.supplychain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Legal Card Background */
.legal-card {
  background: linear-gradient(
      135deg,
      rgba(176, 38, 255, 0.75),
      rgba(0, 240, 255, 0.75)
    ),
    url("images/legal.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Education Card Background */
.education-card {
  background: linear-gradient(
      135deg,
      rgba(176, 38, 255, 0.75),
      rgba(0, 145, 255, 0.75)
    ),
    url("images/education.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.education-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Real Estate Card Background */
.realestate-card {
  background: linear-gradient(
      135deg,
      rgba(0, 240, 255, 0.75),
      rgba(176, 38, 255, 0.75)
    ),
    url("images/realestate.jpeg") center/cover;
  background-blend-mode: overlay;
  position: relative;
}

.realestate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Enhanced text visibility for industry cards */
.finance-card h3,
.healthcare-card h3,
.supplychain-card h3,
.legal-card h3,
.education-card h3,
.realestate-card h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-weight: 800;
  position: relative;
  z-index: 2;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

/* Fix z-index for overlay elements */
.finance-card::before,
.healthcare-card::before,
.supplychain-card::before,
.legal-card::before,
.education-card::before,
.realestate-card::before {
  z-index: 1;
}

/* Ensure text stays on top but don't interfere with flip */
.finance-card h3,
.healthcare-card h3,
.supplychain-card h3,
.legal-card h3,
.education-card h3,
.realestate-card h3 {
  position: relative;
  z-index: 2;
}

/*
================================================================
==> FADE-IN ON SCROLL ANIMATIONS
================================================================
*/

/* Base animation classes */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for elements that appear together */
.fade-in-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Different directions for variety */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation for cards and special elements */
.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delayed animations for staggered effect */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* Specific animation for different content types */
.fade-in-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-text {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}
