/* Custom styles for Just A Click website */

/* Professional Fonts - Similar to Li & Fung */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Custom gradient backgrounds */
.gradient-bg-1 {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.gradient-bg-3 {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Custom button styles */
.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

/* Card hover effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Text gradient */
.text-gradient {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading animation */
.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

  0%,
  20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%,
  100% {
    content: '...';
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

iframe {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: none;
}


/* Navigation Logo Responsive Styles */
nav img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  nav img {
    max-width: 120px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  nav img {
    max-width: 150px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.focus-visible:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Custom utility classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

/* Interactive elements */
.interactive {
  cursor: pointer;
  user-select: none;
}

.interactive:active {
  transform: scale(0.98);
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success and error states */
.success {
  color: #10b981;
  background-color: #d1fae5;
  border-color: #10b981;
}

.error {
  color: #ef4444;
  background-color: #fee2e2;
  border-color: #ef4444;
}

/* Custom spacing utilities */
.space-y-8>*+* {
  margin-top: 2rem;
}

.space-x-4>*+* {
  margin-left: 1rem;
}


/* Supply Chain Section - Premium Design */
.supply-chain-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.supply-chain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.premium-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

@media (min-width: 640px) {
  .supply-chain-section {
    padding: 60px 0;
  }
}

@media (min-width: 1024px) {
  .supply-chain-section {
    padding: 80px 0;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 48px;
    padding: 0 24px;
  }

  .section-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 64px;
  }

  .section-header h2 {
    font-size: 3.5rem;
  }
}

.section-header {
  position: relative;
  z-index: 1;
}

.header-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #f87171, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientMove 3s ease infinite;
  position: relative;
}

@keyframes gradientMove {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 800px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.1px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

@media (min-width: 640px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .section-header p {
    font-size: 1.25rem;
  }
}

/* Tab Content Area */
.tab-content-area {
  margin-bottom: 64px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Main Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Circle Container - Premium */
/* Timeline Container - Ultra Premium */
.timeline-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 40px;
  overflow: visible;
  box-shadow:
    0 30px 100px rgba(220, 38, 38, 0.15),
    0 0 0 1px rgba(220, 38, 38, 0.1) inset,
    0 0 120px rgba(185, 28, 28, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.05);
  min-height: 480px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-container:hover {
  box-shadow:
    0 40px 120px rgba(220, 38, 38, 0.2),
    0 0 0 1px rgba(220, 38, 38, 0.15) inset,
    0 0 150px rgba(185, 28, 28, 0.12);
  transform: translateY(-2px);
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 480px;
  z-index: 1;
}

.timeline-svg {
  width: 100%;
  height: 100%;
}

.timeline-node {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node:hover {
  transform: scale(1.2);
}

.timeline-node:hover .elegant-marker {
  filter: url(#glow-premium) drop-shadow(0 0 25px rgba(220, 38, 38, 0.7)) !important;
  transform: scale(1.1);
}

.timeline-node .elegant-marker {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node.active .elegant-marker {
  animation: premiumMarkerPulse 2s ease-in-out infinite;
}

.timeline-node .process-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}

.timeline-node:hover .process-label {
  font-weight: 800;
  fill: #dc2626;
}

.creative-motion-line {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {

  0%,
  100% {
    opacity: 1;
    filter: url(#line-glow);
  }

  50% {
    opacity: 0.9;
    filter: url(#line-glow) brightness(1.1);
  }
}

/* Zig-zag layout enhancements */
.timeline-node .process-label {
  pointer-events: none;
  user-select: none;
}

.timeline-node .label-background {
  pointer-events: none;
}

@keyframes premiumMarkerPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.95;
  }
}

@keyframes boomPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes boomExpand {
  0% {
    r: 12;
    opacity: 0.8;
  }

  100% {
    r: 60;
    opacity: 0;
  }
}

@media (min-width: 640px) {
  .timeline-container {
    padding: 70px 50px;
    min-height: 580px;
  }

  .timeline-wrapper {
    height: 520px;
  }
}

@media (min-width: 1024px) {
  .timeline-container {
    padding: 90px 70px;
    min-height: 680px;
  }

  .timeline-wrapper {
    height: 580px;
  }
}

@media (max-width: 640px) {
  .timeline-container {
    padding: 50px 30px;
    min-height: 480px;
    border-radius: 28px;
  }

  .timeline-wrapper {
    height: 420px;
  }
}

/* Label Background Styling */
.label-background {
  transition: all 0.3s ease;
}

.timeline-node:hover .label-background {
  fill: rgba(255, 255, 255, 1);
  stroke: rgba(220, 38, 38, 0.4);
  filter: url(#glow-premium);
}

.timeline-node.active .label-background {
  fill: rgba(255, 255, 255, 1);
  stroke: rgba(220, 38, 38, 0.5);
  stroke-width: 2;
}

/* Ensure text stays on one line */
.process-label {
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ============================================
   NEW TIMELINE DESIGN - Modern Zig-Zag
   ============================================ */

/* New Timeline Wrapper */
.new-timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .new-timeline-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

/* New Timeline Container */
.new-timeline-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  background: #ffffff;
  border-radius: 32px;
  overflow: visible;
  box-shadow:
    0 40px 120px rgba(220, 38, 38, 0.12),
    0 0 0 1px rgba(220, 38, 38, 0.08) inset,
    0 0 150px rgba(185, 28, 28, 0.06),
    0 15px 50px rgba(0, 0, 0, 0.04);
  min-height: 500px;
  backdrop-filter: blur(30px);
  border: 1px solid rgba(220, 38, 38, 0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-timeline-container:hover {
  box-shadow:
    0 50px 140px rgba(220, 38, 38, 0.15),
    0 0 0 1px rgba(220, 38, 38, 0.12) inset,
    0 0 180px rgba(185, 28, 28, 0.08);
  transform: translateY(-4px);
}

.new-timeline-svg {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* New Timeline Nodes */
.new-timeline-node {
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new-timeline-node:hover {
  transform: scale(1.15);
}

.new-timeline-node:hover .new-node-circle {
  filter: url(#newHighlightGlow) !important;
  transform: scale(1.1);
}

.new-timeline-node .new-node-circle {
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new-timeline-node .new-node-circle {
  /* Animation will be applied dynamically via JavaScript */
}

@keyframes heartbeatPulse {
  0% {
    transform: scale(1);
    filter: url(#newGlow) drop-shadow(0 0 20px rgba(239, 68, 68, 0.6));
  }

  50% {
    transform: scale(1.1);
    filter: url(#newHighlightGlow) drop-shadow(0 0 35px rgba(239, 68, 68, 0.9));
  }

  100% {
    transform: scale(1);
    filter: url(#newGlow) drop-shadow(0 0 20px rgba(239, 68, 68, 0.6));
  }
}

.new-timeline-node .new-process-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.new-timeline-node:hover .new-process-label {
  font-weight: 900;
  fill: #dc2626;
}

.new-timeline-node .new-label-background {
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-timeline-node:hover .new-label-background {
  fill: rgba(255, 255, 255, 1);
  stroke: rgba(220, 38, 38, 0.4);
  filter: url(#newGlow);
}

/* New Timeline Lines */
.new-timeline-line {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  animation: newLineShimmer 4s ease-in-out infinite;
}

@keyframes newLineShimmer {

  0%,
  100% {
    opacity: 1;
    filter: url(#newLineGlow);
  }

  50% {
    opacity: 0.85;
    filter: url(#newLineGlow) brightness(1.15);
  }
}

/* New Content Display */
.new-content-display {
  background: #ffffff;
  backdrop-filter: blur(25px);
  border-radius: 32px;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.1) inset,
    0 0 80px rgba(220, 38, 38, 0.04);
  padding: 56px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.6s ease;
}

.new-content-display:hover {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(220, 38, 38, 0.15) inset,
    0 0 100px rgba(220, 38, 38, 0.06);
  transform: translateY(-2px);
}

.new-content-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

.new-content-inner {
  position: relative;
  z-index: 1;
}

/* New Stage Number */
.new-stage-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.new-stage-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.new-stage-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #dc2626, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* New Stage Heading */
.new-stage-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .new-stage-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .new-stage-heading {
    font-size: 2.5rem;
  }
}

/* New Content Divider */
.new-content-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444, #b91c1c);
  border-radius: 2px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* New Stage Description */
.new-stage-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
  letter-spacing: 0.2px;
}

@media (min-width: 640px) {
  .new-stage-description {
    font-size: 1.125rem;
  }
}

/* New Stage Indicators */
.new-stage-indicators {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.new-indicator {
  flex: 1;
  height: 6px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.15);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.new-indicator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.new-indicator:hover::before {
  transform: translateX(100%);
}

.new-indicator.new-active {
  background: linear-gradient(90deg, #f87171, #f87171, #ef4444);
  box-shadow: 0 0 25px rgba(248, 113, 113, 0.7);
  height: 8px;
}

.new-indicator.new-passed {
  background: linear-gradient(90deg, #ef4444, #f87171);
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .new-timeline-container {
    padding: 60px 30px;
    min-height: 450px;
    border-radius: 24px;
  }

  .new-timeline-svg {
    min-height: 450px;
  }

  .new-content-display {
    padding: 40px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .new-timeline-container {
    padding: 50px 20px;
    min-height: 400px;
    border-radius: 20px;
  }

  .new-timeline-svg {
    min-height: 400px;
  }

  .new-content-display {
    padding: 32px;
    border-radius: 20px;
  }

  .new-stage-heading {
    font-size: 1.75rem;
  }

  .new-stage-value {
    font-size: 2.5rem;
  }
}


/* Content Display - Premium Glassmorphism */
.content-display {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.08) inset,
    0 0 60px rgba(220, 38, 38, 0.03);
  padding: 48px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.5s ease;
}

.content-display:hover,
.premium-content-display:hover {
  box-shadow:
    0 45px 130px rgba(220, 38, 38, 0.25),
    0 0 0 1px rgba(220, 38, 38, 0.2) inset,
    0 0 180px rgba(185, 28, 28, 0.15);
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.35);
}

.content-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 640px) {
  .content-display {
    border-radius: 16px;
    padding: 32px;
    min-height: 300px;
  }
}

@media (min-width: 1024px) {
  .content-display {
    padding: 48px;
    min-height: 400px;
  }
}

.content-inner {
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.stage-number {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #6b7280;
  margin-bottom: 12px;
}

.stage-number span {
  color: #f87171;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Premium Typography & Content Styling */
.premium-content-display {
  background: #ffffff;
  box-shadow:
    0 35px 110px rgba(220, 38, 38, 0.18),
    0 0 0 1px rgba(220, 38, 38, 0.12) inset,
    0 0 140px rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.premium-stage-number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.premium-stage-number .stage-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #9ca3af;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.premium-stage-number .stage-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1;
}

.premium-heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -1px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #111827 0%, #374151 50%, #1f2937 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

@media (min-width: 640px) {
  .premium-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .premium-heading {
    font-size: 3rem;
  }
}

.premium-divider {
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  border-radius: 2px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.premium-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.premium-description {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #4b5563;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.premium-indicators {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.premium-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
}

.premium-indicators .indicator::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-indicators .indicator:hover::before {
  opacity: 1;
}

.premium-indicators .indicator.active {
  width: 40px;
  border-radius: 6px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
  transform: scale(1.1);
}

.premium-indicators .indicator.passed {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  opacity: 0.7;
  width: 12px;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
}

.icon-wrapper i {
  font-size: 28px;
  background: linear-gradient(135deg, #f87171, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-inner h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f87171, #f87171);
  border-radius: 2px;
  margin-bottom: 24px;
}

.content-inner p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  font-weight: 300;
}

/* Stage Indicators - Premium */
.stage-indicators {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.indicator {
  flex: 1;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.indicator:hover::before {
  transform: translateX(100%);
}

.indicator.active {
  background: linear-gradient(90deg, #f87171, #f87171);
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.6);
  height: 8px;
}

.indicator.passed {
  background: linear-gradient(90deg, #ef4444, #f87171);
  opacity: 0.7;
}

/* Video Content - Premium */
.video-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
  pointer-events: none;
  z-index: 1;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.play-button-wrapper {
  margin-bottom: 30px;
}

.play-button {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
  border-color: rgba(248, 113, 113, 0.5);
}

.play-button i {
  font-size: 36px;
  color: #ffffff;
  margin-left: 4px;
}

.video-placeholder h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-placeholder p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Speed Chart - Premium */
.speed-chart {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 52px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.08) inset,
    0 0 60px rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.speed-chart:hover {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.15) inset,
    0 0 80px rgba(220, 38, 38, 0.05);
  transform: translateY(-4px);
}

.speed-chart::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  animation: rotateGlow 25s linear infinite;
  pointer-events: none;
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.chart-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.chart-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, #f87171, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speed-chart h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.chart-bars {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.chart-bar {
  margin-bottom: 32px;
}

.bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.bar-value {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.bar-value.highlight {
  background: linear-gradient(135deg, #f87171, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bar-container {
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) inset;
}

.bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bar-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.bar-fill.gray {
  background: linear-gradient(90deg, #64748b, #94a3b8);
  box-shadow: 0 0 20px rgba(100, 116, 139, 0.4);
}

.bar-fill.red {
  background: linear-gradient(90deg, #ef4444, #f87171);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

/* Bottom Cards */
.bottom-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .bottom-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .bottom-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.info-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.08) inset;
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card.active {
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(220, 38, 38, 0.2),
    0 8px 20px rgba(185, 28, 28, 0.15),
    0 0 0 2px rgba(248, 113, 113, 0.3) inset,
    0 0 60px rgba(220, 38, 38, 0.1);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(248, 113, 113, 0.4);
}

.info-card:hover {
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(220, 38, 38, 0.12) inset;
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-card.active .card-icon {
  background: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 24px;
  background: linear-gradient(135deg, #f87171, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-content {
  flex: 1;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 300;
}

.card-arrow {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.info-card.active .card-arrow {
  background: #ffffff;
  transform: translateX(4px);
}

.card-arrow i {
  color: #f87171;
  font-size: 14px;
  transition: all 0.4s ease;
}

.info-card.active .card-arrow i {
  color: #dc2626;
  transform: scale(1.2);
}

/* Responsive - Premium */
@media (min-width: 640px) {
  .supply-chain-section {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .supply-chain-section {
    padding: 120px 0;
  }
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .circle-wrapper {
    max-width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .supply-chain-section {
    padding: 60px 0;
  }

  .bottom-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .content-display,
  .speed-chart {
    padding: 24px;
  }

  .speed-chart {
    padding: 24px;
  }

  .speed-chart h3 {
    font-size: 1.25rem;
  }

  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .content-inner h3 {
    font-size: 1.75rem;
  }

  .info-card {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  .card-arrow {
    align-self: center;
  }

  .circle-wrapper {
    max-width: 280px;
    height: 280px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button i {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

  .header-badge {
    padding: 6px 16px;
  }

  .badge-text {
    font-size: 0.625rem;
  }
}

/* Strategy Section - Premium Design */
.strategy-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.strategy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.strategy-section .premium-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
  opacity: 0.6;
}

.strategy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Team cards grid - 4 columns on large screens */
#team .strategy-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  #team .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #team .strategy-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* Services cards grid - 3 columns on large screens */
#services .strategy-cards,
#why-we-exist .strategy-cards,
#get-started .strategy-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {

  #services .strategy-cards,
  #why-we-exist .strategy-cards,
  #get-started .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {

  #services .strategy-cards,
  #why-we-exist .strategy-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  #get-started .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
  }
}

/* Products cards grid - 4 columns on large screens */
#products .strategy-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  #products .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #products .strategy-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Footer cards grid - 4 columns on large screens */
footer .strategy-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  footer .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  footer .strategy-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.strategy-card {
  background: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 52px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(220, 38, 38, 0.08) inset,
    0 0 60px rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

/* Image Overlay for 80% visibility (20% opacity overlay = 80% image visible) */
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
  transition: all 0.5s ease;
  border-radius: 28px;
}

.strategy-card:hover .card-image-overlay {
  background: rgba(255, 255, 255, 0.15);
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.strategy-card:hover::before {
  opacity: 1;
}

.service-card-with-bg {
  background: #ffffff;
}

.strategy-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.strategy-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 30px 80px rgba(220, 38, 38, 0.18),
    0 10px 30px rgba(185, 28, 28, 0.12),
    0 0 0 1px rgba(248, 113, 113, 0.25) inset,
    0 0 100px rgba(220, 38, 38, 0.08);
  border-color: rgba(248, 113, 113, 0.4);
  background: #ffffff;
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.strategy-card:hover .card-glow {
  opacity: 1;
}

.card-icon-wrapper {
  width: 88px;
  height: 88px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border: 1.5px solid rgba(220, 38, 38, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.strategy-card:hover .card-icon-wrapper {
  transform: scale(1.12) rotate(5deg);
  background: #ffffff;
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow:
    0 8px 20px rgba(220, 38, 38, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 0 30px rgba(248, 113, 113, 0.15);
}

.strategy-card:hover .card-icon-wrapper i.fa-spinner {
  animation: spin 1s linear infinite;
}

.icon-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strategy-card:hover .icon-bg {
  opacity: 1;
}

.card-icon-wrapper i {
  font-size: 36px;
  background: linear-gradient(135deg, #f87171, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.card-icon-wrapper i.fa-spinner {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Target-style Bullseye Animation */
.bullseye-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullseye-circle {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.bullseye-outer {
  width: 60px;
  height: 60px;
  border: 4px solid #dc2626;
  background: white;
  animation: bullseyeAppearOuter 2.5s ease-out infinite;
}

.bullseye-middle {
  width: 40px;
  height: 40px;
  border: 3px solid #dc2626;
  background: white;
  animation: bullseyeAppearMiddle 2.5s ease-out infinite;
}

.bullseye-center {
  font-size: 20px;
  color: #dc2626;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: bullseyeAppearCenter 2.5s ease-out infinite;
}

@keyframes bullseyeAppearOuter {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  15% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes bullseyeAppearMiddle {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  15% {
    opacity: 0;
  }

  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes bullseyeAppearCenter {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  45% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

<<<<<<< HEAD
/* Bullseye Emoji with Fluctuating Animation */
.bullseye-emoji-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bullseye-emoji {
  display: block;
  animation: fluctuate 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

@keyframes fluctuate {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-6px) scale(1.03);
  }
}

=======
>>>>>>> 2654654c90cace02688241fa5d22a01222a213f5
.card-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.card-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  color: #000000;
  font-weight: 700;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #dc2626;
  width: fit-content;
  margin-bottom: 20px;
  box-shadow:
    0 2px 8px rgba(220, 38, 38, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.4s ease;
}

.strategy-card:hover .card-badge {
  background: #ffffff;
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.card-content-wrapper h3 {
  font-size: 2.125rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.strategy-card:hover .card-content-wrapper h3 {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-divider {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #dc2626, #ef4444, #991b1b);
  border-radius: 3px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
}

.strategy-card:hover .card-divider {
  width: 90px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.card-content-wrapper p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.85;
  font-weight: 500;
  flex: 1;
  letter-spacing: 0.2px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 3;
}

.strategy-card:hover .card-content-wrapper p {
  color: #000000;
}

.card-arrow-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(226, 232, 240, 0.8);
  color: #dc2626;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.strategy-card:hover .card-arrow-link {
  border-top-color: rgba(220, 38, 38, 0.2);
}

.strategy-card:hover .card-arrow-link {
  transform: translateX(10px);
  color: #ef4444;
}

.card-arrow-link i {
  transition: transform 0.4s ease;
}

.strategy-card:hover .card-arrow-link i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .strategy-section {
    padding: 60px 0;
  }

  .strategy-card {
    padding: 32px;
    min-height: 350px;
  }

  .card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .card-icon-wrapper i {
    font-size: 28px;
  }

  .card-content-wrapper h3 {
    font-size: 1.5rem;
  }

  .card-content-wrapper p {
    font-size: 1rem;
  }
}

/* Team Card Specific Styles */
.team-image-wrapper {
  border-radius: 50% !important;
  width: 120px !important;
  height: 120px !important;
  margin: 0 auto 32px !important;
  padding: 0;
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.strategy-card:hover .team-member-image {
  transform: scale(1.1);
}

.team-social-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.9));
  border-radius: 50%;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.strategy-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-link {
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-social-link:hover {
  transform: scale(1.25);
  color: #f87171;
}

@media (max-width: 768px) {
  .team-image-wrapper {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 24px !important;
  }

  .team-social-link {
    font-size: 1rem;
  }
}

/* Service Card Background Images */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
  border-radius: 24px;
}

.service-card-with-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(51, 65, 85, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.service-card-with-bg .card-glow {
  z-index: 1;
}

.service-card-with-bg .card-icon-wrapper,
.service-card-with-bg .card-content-wrapper {
  position: relative;
  z-index: 2;
}

.service-card-with-bg:hover .service-card-bg {
  opacity: 0.3;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .service-card-bg {
    opacity: 0.15;
  }

  .service-card-with-bg:hover .service-card-bg {
    opacity: 0.25;
  }
<<<<<<< HEAD
}

/* Get in Touch Form Section */
.get-in-touch-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  overflow: hidden;
}

.get-in-touch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(220, 38, 38, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.get-in-touch-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.get-in-touch-header {
  text-align: center;
  margin-bottom: 48px;
}

.get-in-touch-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.get-in-touch-header h2 .gradient-text {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.get-in-touch-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.get-in-touch-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.get-in-touch-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group label .required {
  color: #dc2626;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9375rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #ffffff;
  color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: #d1d5db;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-submit-btn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 16px;
  border-radius: 12px;
  margin-top: 16px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

@media (max-width: 768px) {
  .get-in-touch-section {
    padding: 60px 0;
  }

  .get-in-touch-header h2 {
    font-size: 2rem;
  }

  .get-in-touch-form-wrapper {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .get-in-touch-form {
    gap: 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.875rem;
  }

  .form-submit-btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
  }
=======
>>>>>>> 2654654c90cace02688241fa5d22a01222a213f5
}