/* ===== PREMIUM HERO SECTION ===== */
.premium-hero-section {
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  animation: videoFadeIn 2s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 100, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 100, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 100, 255, 0.1) 0%, transparent 50%);
  z-index: 2;
  animation: meshFloat 20s infinite alternate ease-in-out;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Hero Elements */
.premium-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  animation: badgeGlow 3s ease-in-out infinite, fadeInUp 0.8s ease-out 0.3s forwards;
  margin-bottom: 1.5rem !important;
  opacity: 0;
}

.badge-icon {
  color: #ffd700;
  margin-right: 10px;
  font-size: 1.2rem;
}

.badge-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* Neon Text Effect */
.neon-text-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 0.5rem;
}

.neon-text {
  position: relative;
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00a8ff 0%, #0066cc 50%, #00a8ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: neonPulse 3s infinite alternate ease-in-out;
  text-shadow: 
    0 0 10px rgba(0, 168, 255, 0.5),
    0 0 20px rgba(0, 102, 204, 0.3),
    0 0 30px rgba(0, 168, 255, 0.2);
}

.neon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 120%;
  background: rgba(0, 168, 255, 0.15);
  filter: blur(30px);
  z-index: -1;
  animation: neonGlow 3s infinite alternate ease-in-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.text-highlight {
  color: #ffd700 !important;
  font-weight: 500;
  position: relative;
  padding: 0 2px;
}

.underline-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffd700;
  opacity: 0.7;
  animation: highlightUnderline 3s ease-in-out infinite;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.btn-cta-primary {
  background: #0066cc;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn-cta-primary:hover::before {
  left: 100%;
}

.btn-cta-primary:hover {
  background: #0055aa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-cta-secondary:hover .btn-icon {
  transform: translate(3px, -3px);
}

.trust-indicators {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.trust-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00a8ff;
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== MOTIVATION RIBBON ===== */
.motivation-ribbon {
  background: #0066cc;
  color: white;
  padding: 2rem 0;
}

.ribbon-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ribbon-text {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

/* ===== ELEGANT PROCESS SECTION ===== */
.process-elegant-section {
  background: #f8fafc;
}

.process-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 168, 255, 0.1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 168, 255, 0.15);
  background: white !important;
}

.process-card.active {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.2);
  background: white !important;
  border-color: #00a8ff;
}

.card-number {
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.process-card:hover .card-number,
.process-card.active .card-number {
  transform: scale(1.05);
}

.explore-btn {
  opacity: 0.7;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.process-card:hover .explore-btn,
.process-card.active .explore-btn {
  opacity: 1;
  transform: translateY(0);
}

.process-detail-panel {
  position: relative;
  border: 1px solid rgba(0, 168, 255, 0.1);
  transition: all 0.4s ease;
}

.process-detail-panel.show {
  display: block !important;
  animation: fadeInUp 0.5s ease;
}

.illustration-wrapper {
  background: #e0f2ff;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== COMBINED ABOUT SECTION ===== */
.combined-about-section {
  background: #f8fafc;
  position: relative;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -100px;
  animation-delay: 5s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 30%;
  animation-delay: 10s;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.gradient-badge {
  background: #0066cc;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 168, 255, 0.2);
}

.gradient-text-primary {
  color: #0066cc;
}

.value-point-item {
  background: white;
  border-left: 4px solid #e2e8f0;
  transition: all 0.3s ease;
}

.value-point-item:hover {
  border-left-color: #00a8ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 168, 255, 0.1);
}

.value-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #e0f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-point-item:hover .value-icon-wrapper {
  background: #0066cc;
  transform: scale(1.05);
}

.value-point-item:hover .value-icon-wrapper i {
  color: white !important;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
}

.image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
  transition: all 0.4s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 255, 0.05);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.floating-stats-card {
  position: absolute;
  bottom: 30px;
  left: -50px;
  background: #0066cc;
  color: white;
  min-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 168, 255, 0.3);
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 1.5s forwards;
}

.floating-stats-card .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-stats-card .stat-item:last-child {
  border-bottom: none;
}

.gradient-counter {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.floating-stats-card .stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.gradient-border-card {
  position: relative;
  overflow: hidden;
  border: none;
  color: white;
  transition: all 0.4s ease;
}

.gradient-border-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #00a8ff;
  z-index: -1;
  border-radius: inherit;
}

.gradient-border-card .card-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gradient-border-card:hover .card-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.gradient-border-card:hover {
  transform: translateY(-10px);
}

.insights-wrapper {
  position: relative;
  z-index: 1;
  background: #e0f2ff;
  border: 1px solid rgba(0, 168, 255, 0.1);
}

.insight-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-icon {
  transition: all 0.3s ease;
}

.insight-card:hover .insight-icon {
  transform: translateY(-5px);
}

.insight-stat {
  position: relative;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.insight-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00a8ff;
}

.stat-highlight {
  font-weight: 700;
  color: #0066cc;
  font-size: 1.25rem;
}

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

/* ===== VISUAL ROADMAP SECTION ===== */
.roadmap-visual-section {
  background: #f0f9ff;
  position: relative;
  overflow: hidden;
}

.roadmap-visual-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #00a8ff;
}

.bg-gradient-primary {
  background: #0066cc !important;
}

.roadmap-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  position: relative;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: #cbd5e1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.timeline-item.active .timeline-number {
  background: #0066cc;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
  animation: pulseRing 2s infinite;
}

.timeline-progress {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 60px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 2px;
}

.timeline-item:not(:last-child) .timeline-progress {
  opacity: 0.2;
}

.timeline-content {
  flex: 1;
  padding-top: 0.75rem;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-visual {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.timeline-visual i {
  font-size: 1.2rem;
  color: #0066cc;
}

/* Timeline Colors - All blue variations */
.timeline-item[data-color="#00a8ff"] .timeline-number { background: #0066cc; }
.timeline-item[data-color="#ff6b35"] .timeline-number { background: #0055aa; }
.timeline-item[data-color="#00d97e"] .timeline-number { background: #004488; }
.timeline-item[data-color="#ffc107"] .timeline-number { background: #003366; }

/* Feature Cards */
.feature-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.1;
}

.feature-card:hover .feature-card-icon::before {
  opacity: 0.2;
}

.feature-card-icon i {
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon i {
  transform: scale(1.2);
}

.feature-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card-text {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Card Colors - All blue variations */
.feature-card-blue { --card-color: #0066cc; border-color: rgba(0, 102, 204, 0.2); }
.feature-card-orange { --card-color: #0055aa; border-color: rgba(0, 85, 170, 0.2); }
.feature-card-green { --card-color: #004488; border-color: rgba(0, 68, 136, 0.2); }
.feature-card-yellow { --card-color: #003366; border-color: rgba(0, 51, 102, 0.2); }

.feature-card-blue .feature-card-icon { color: #0066cc; }
.feature-card-orange .feature-card-icon { color: #0055aa; }
.feature-card-green .feature-card-icon { color: #004488; }
.feature-card-yellow .feature-card-icon { color: #003366; }

.feature-card-blue .feature-card-title { color: #0066cc; }
.feature-card-orange .feature-card-title { color: #0055aa; }
.feature-card-green .feature-card-title { color: #004488; }
.feature-card-yellow .feature-card-title { color: #003366; }

/* Progress Bar */
.card-progress-bar {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 75%;
  background: var(--card-color);
  border-radius: 3px;
}

/* Stats */
.feature-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.stat {
  text-align: center;
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.5rem;
  width: 1px;
  height: 30px;
  background: #e2e8f0;
  transform: translateY(-50%);
}

.stat:first-child::before {
  display: none;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* CTA Box */
.roadmap-cta-box {
  background: rgba(0, 168, 255, 0.05);
  border: 2px solid rgba(0, 168, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-visual {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  animation: floatIcon 6s ease infinite;
  z-index: 1;
}

@keyframes floatIcon {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -10px) rotate(5deg); }
}

.cta-visual i {
  font-size: 3rem;
  color: white;
}

.roadmap-cta-box h3,
.roadmap-cta-box p,
.roadmap-cta-box a {
  position: relative;
  z-index: 2;
}

.btn-gradient {
  background: #0066cc;
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:hover {
  background: #0055aa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

/* ===== BEFORE/AFTER SECTION ===== */
.before-after-section {
  padding: 80px 0;
  background-color: white;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  z-index: 1;
}

.after-image {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-handle::after {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #0066cc;
}

.comparison-label {
  position: absolute;
  top: 20px;
  padding: 8px 15px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  border-radius: 4px;
  font-weight: 500;
  z-index: 4;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 4rem 0;
}

.events-slider-container {
  position: relative;
  padding: 2rem 0;
}

.events-carousel-wrapper {
  overflow: hidden;
}

.events-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.events-carousel-item {
  min-width: 100%;
  padding: 0 15px;
}

.events-carousel-item .row {
  display: flex;
  flex-wrap: nowrap;
}

.events-carousel-item .col-lg-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.event-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  background: white;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.event-card .event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: -20px;
  right: 20px;
  background: #0066cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.event-date .fw-bold {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-date .fs-4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.events-carousel-indicators {
  position: static;
  margin-top: 1.5rem;
}

.events-carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #ccc;
  border: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.events-carousel-indicators button.active {
  opacity: 1;
  background-color: #0066cc;
  transform: scale(1.2);
}

/* ===== MODAL STYLES ===== */
.event-meta {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.event-description {
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

.event-description::-webkit-scrollbar {
  width: 6px;
}

.event-description::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.event-description::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

/* ===== GALLERY SECTION ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 300px;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== CTA SECTION ===== */
.cta-container {
  position: relative;
  background: #0066cc !important;
  box-shadow: 0 25px 50px -12px rgba(0, 102, 204, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
      radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
      radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  z-index: 1;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
  animation: floatOrb 15s infinite ease-in-out;
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  right: 10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: -50px;
  animation-delay: 10s;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

.badge-icon {
  color: #ffd700;
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.cta-text {
  line-height: 1.6;
}

.cta-trust .trust-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust .trust-tag i {
  color: #ffd700;
}

.cta-action .btn-light {
  background: #ffffff;
  border: none;
  color: #0066cc;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.cta-action .btn-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}

.cta-action .btn-light:hover::before {
  left: 100%;
}

.cta-action .btn-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #0056b3;
}

.btn-label-small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  line-height: 1;
}

.btn-label-large {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.quick-contact {
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffd700;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.cta-secondary a {
  color: #ffd700 !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-secondary a:hover {
  text-decoration: underline !important;
  color: #ffed4a !important;
}

/* ===== COMMON SECTIONS ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.center-title {
  text-align: center;
}

.office-gallery,
.services-section,
.events-section,
.cta-section-below-slider {
  padding: 4rem 0;
}

.office-gallery .carousel-item img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.office-gallery .carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
}

/* ===== FADE IN UTILITY ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1.0s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes videoFadeIn {
  from {
    opacity: 0;
    filter: brightness(0.2) blur(10px);
  }
  to {
    opacity: 1;
    filter: brightness(0.7) contrast(1.1);
  }
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
  50% { 
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

@keyframes neonPulse {
  0% {
    text-shadow: 
      0 0 10px rgba(0, 168, 255, 0.5),
      0 0 20px rgba(0, 102, 204, 0.3),
      0 0 30px rgba(0, 168, 255, 0.2),
      0 0 40px rgba(0, 102, 204, 0.1);
    transform: scale(1);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(0, 168, 255, 0.8),
      0 0 25px rgba(0, 102, 204, 0.5),
      0 0 35px rgba(0, 168, 255, 0.3),
      0 0 45px rgba(0, 102, 204, 0.2);
    transform: scale(1.02);
  }
}

@keyframes neonGlow {
  0% {
    opacity: 0.5;
    filter: blur(25px);
  }
  100% {
    opacity: 0.8;
    filter: blur(35px);
  }
}

@keyframes highlightUnderline {
  0%, 100% { 
    opacity: 0.5; 
    width: 0; 
    left: 50%; 
  }
  50% { 
    opacity: 0.8; 
    width: 100%; 
    left: 0; 
  }
}

@keyframes meshFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  100% {
    transform: translate(50px, -30px) rotate(1deg);
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 10px) scale(1.02);
  }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 currentColor; }
  70% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 15px) scale(0.9);
    opacity: 0.4;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .neon-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .neon-text {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .events-carousel-item .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .events-carousel-item .row {
    flex-wrap: wrap;
  }
  .ribbon-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-container {
    padding: 3rem 1.5rem !important;
  }
  .cta-title {
    font-size: 2.5rem !important;
  }
  .cta-text {
    font-size: 1.25rem !important;
  }
  .quick-contact {
    justify-content: flex-start !important;
  }
  .contact-method {
    min-width: 100%;
  }
  .floating-stats-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 2rem;
    min-width: 100%;
  }
  .about-image-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .neon-text {
    font-size: 2.5rem;
  }
  .events-carousel-item .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .premium-hero-section .trust-indicators .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .premium-hero-section .trust-indicators .col-auto {
    flex: 0 0 33.333% !important;
    width: 33.333% !important;
    max-width: 33.333% !important;
    min-width: 0 !important;
    padding: 0 3px !important;
    margin: 0 !important;
  }
  .premium-hero-section .trust-item {
    width: 100% !important;
    padding: 8px 2px !important;
  }
  .premium-hero-section .trust-number {
    font-size: 1.1rem !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
  }
  .premium-hero-section .trust-label {
    font-size: 0.55rem !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
  }
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .timeline-progress {
    display: none;
  }
  .roadmap-cta-box .cta-visual {
    display: none;
  }
  .cta-title {
    font-size: 2rem !important;
  }
  .cta-text {
    font-size: 1.125rem !important;
  }
  .cta-action .btn-light {
    min-width: 100%;
  }
  .contact-method {
    min-width: 100%;
  }
  .gradient-border-card,
  .insight-card {
    margin-bottom: 1.5rem;
  }
  .content-blocks .content-block {
    margin-bottom: 2rem !important;
  }
  .value-points-grid .col-md-6 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .neon-text {
    font-size: 2.25rem;
  }
  .comparison-slider {
    height: 300px;
  }
  .gallery-item {
    height: 250px;
  }
  .cta-container {
    padding: 2rem 1rem !important;
  }
  .cta-title {
    font-size: 1.75rem !important;
  }
  .cta-text {
    font-size: 1rem !important;
  }
  .cta-badge {
    padding: 0.5rem 1rem;
  }
  .contact-method {
    padding: 0.75rem 1rem;
  }
  .orb-1, .orb-2, .orb-3 {
    opacity: 0.2;
  }
}

/* ===== UTILITY CLASSES ===== */
.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.mt-7 {
  margin-top: 5rem !important;
}

.max-w-3xl {
  max-width: 900px;
}





/* Enhanced Before/After Styles */
.before-after-section {
    background: #f8fafc;
}

.transformation-card {
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.15);
}

.comparison-wrapper {
    height: 320px;
    overflow: hidden;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: white;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-handle::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #0066cc;
    font-weight: bold;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    z-index: 4;
    font-size: 0.875rem;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.transformation-stats {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insights-box {
    background: rgba(0, 168, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.text-purple {
    color: #6f42c1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .comparison-wrapper {
        height: 280px;
    }
    
    .transformation-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .comparison-wrapper {
        height: 240px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .comparison-label {
        top: 15px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .comparison-wrapper {
        height: 200px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Animation for slider handle */
@keyframes handlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.slider-handle {
    animation: handlePulse 2s infinite ease-in-out;
}

/* Add smooth transition for after image */
.after-image {
    transition: clip-path 0.1s ease-out;
}


/* ===== ENHANCED ABOUT SECTION STYLES ===== */

/* Event Badges */
.event-badges {
    margin-bottom: 1.5rem;
}

.event-badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-badge.bg-ift {
    background: #2E7D32;
    color: white;
}

.event-badge.bg-ofc {
    background: #0D47A1;
    color: white;
}

.event-badge.bg-adlm {
    background: #C62828;
    color: white;
}

/* Feature Tags */
.feature-tag {
    background: rgba(0, 168, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #0066cc;
    border: 1px solid rgba(0, 168, 255, 0.2);
    display: inline-flex;
    align-items: center;
}

/* Coverage Visual */
.coverage-visual {
    background: rgba(0, 168, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.coverage-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Warehouse Cards */
.warehouse-card {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.warehouse-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warehouse-card:nth-child(1) {
    border-left-color: #dc3545;
}

.warehouse-card:nth-child(2) {
    border-left-color: #ffc107;
}

.warehouse-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-card:nth-child(2) .warehouse-icon {
    background: rgba(255, 193, 7, 0.1);
}

/* Strategic Advantages Card */
.strategic-advantages-card {
    max-width: 250px;
    z-index: 2;
    animation: slideInRight 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateX(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.strategic-advantages-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #00a8ff;
    border-radius: 50%;
    opacity: 0.2;
}

.advantages-icon {
    width: 50px;
    height: 50px;
    background: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* USA Map Visualization */
.usa-map-card {
    max-width: 220px;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateX(-20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-point i {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.point-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    color: #333;
}

.map-point.west .point-label {
    color: #dc3545;
}

.map-point.east .point-label {
    color: #28a745;
}

/* Event Representation Cards */
.event-rep-icon .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper.bg-ift {
    background: #2E7D32;
}

.icon-wrapper.bg-ofc {
    background: #0D47A1;
}

.icon-wrapper.bg-adlm {
    background: #C62828;
}

.event-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.event-stats .stat {
    text-align: center;
}

.event-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-stats .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Logistics Card */
.logistics-features .feature-item {
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.warehouse-comparison .warehouse-detail {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.warehouse-comparison .warehouse-detail:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

/* Benefits Summary */
.benefits-summary-wrapper {
    border: 1px solid rgba(0, 168, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.05);
}

.benefit-item {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8ff;
}

/* Card Colors */
.card-orchestrator::before {
    background: #0066cc;
}

.card-exhibitor::before {
    background: #0055aa;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .strategic-advantages-card,
    .usa-map-card {
        position: relative !important;
        top: auto !important;
        end: auto !important;
        bottom: auto !important;
        start: auto !important;
        max-width: 100%;
        margin-top: 1rem;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .event-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .coverage-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .coverage-icon {
        margin: 0 auto 1rem auto;
    }
    
    .event-stats .stat-number {
        font-size: 1.25rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .event-badges {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .event-badge {
        justify-content: center;
    }
    
    .coverage-features {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .feature-tag {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ENHANCED ABOUT SECTION STYLES - NO PHOTO COVERAGE ===== */

/* Image Container */
.image-container-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-container-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container-wrapper:hover img {
    transform: scale(1.03);
}

.image-overlay-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 168, 255, 0.05);
    pointer-events: none;
}

/* Event Badges */
.event-badges {
    margin-bottom: 1.5rem;
}

.event-badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-badge.bg-ift {
    background: #2E7D32;
    color: white;
}

.event-badge.bg-ofc {
    background: #0D47A1;
    color: white;
}

.event-badge.bg-adlm {
    background: #C62828;
    color: white;
}

/* Coast-to-Coast Coverage Map */
.coverage-map {
    border: 1px solid rgba(0, 168, 255, 0.2);
    background: rgba(0, 168, 255, 0.05);
}

.map-point {
    text-align: center;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.map-point.west .point-icon {
    border-color: #dc3545;
}

.map-point.east .point-icon {
    border-color: #28a745;
}

.map-line {
    border-radius: 2px;
    position: relative;
}

.map-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0066cc;
    opacity: 0.3;
    transform: translateY(-50%);
}

/* Warehouse Cards */
.warehouse-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.warehouse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.warehouse-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-card:nth-child(2) .warehouse-icon {
    background: rgba(255, 193, 7, 0.1);
}

/* Strategic Advantages */
.strategic-card {
    border-top: 4px solid #0066cc;
}

.advantage-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.1);
    border-color: rgba(0, 168, 255, 0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Event Representation */
.event-detail-card {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-detail-card:nth-child(1) {
    border-left-color: #4CAF50;
}

.event-detail-card:nth-child(2) {
    border-left-color: #2196F3;
}

.event-detail-card:nth-child(3) {
    border-left-color: #FF5722;
}

.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon.bg-ift {
    background: #2E7D32;
}

.event-icon.bg-ofc {
    background: #0D47A1;
}

.event-icon.bg-adlm {
    background: #C62828;
}

/* Logistics Cards */
.logistics-features .feature-item,
.warehouse-comparison .warehouse-detail {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logistics-features .feature-item:hover,
.warehouse-comparison .warehouse-detail:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

/* Benefits Summary */
.benefits-summary-wrapper {
    border: 1px solid rgba(0, 168, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.05);
}

.benefit-item {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8ff;
}

/* Card Colors */
.card-orchestrator::before {
    background: #0066cc;
}

.card-exhibitor::before {
    background: #0055aa;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .image-container-wrapper {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .coverage-map {
        flex-direction: column;
        text-align: center;
    }
    
    .map-line {
        width: 100% !important;
        height: 40px !important;
        margin: 1rem 0;
        background: #0066cc !important;
        opacity: 0.3;
    }
    
    .map-point {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .image-container-wrapper {
        height: 300px;
    }
    
    .event-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-item,
    .event-detail-card {
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .image-container-wrapper {
        height: 250px;
    }
    
    .event-badges {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .event-badge {
        justify-content: center;
        width: 100%;
    }
    
    .coverage-map {
        padding: 1.5rem !important;
    }
    
    .map-point .point-label {
        font-size: 0.875rem;
    }
    
    .benefits-summary-wrapper {
        padding: 2rem 1rem !important;
    }
}

/* Animation Delays */
.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; }


/* ===== ELEGANT BLUE CARDS WITH GOLD SHINE ===== */

.elegant-blue-card {
    position: relative;
    background: #1a5276;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-blue-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(10, 61, 98, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 215, 0, 0.05) 30%,
        transparent 70%
    );
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.elegant-blue-card:hover .card-glow {
    opacity: 0.8;
    animation: glowPulse 3s ease-in-out infinite;
}

/* Gold Shine Effect */
.gold-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.1) 40%,
        rgba(255, 215, 0, 0.2) 45%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 60%
    );
    transform: rotate(30deg);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elegant-blue-card:hover .gold-shine {
    opacity: 0.8;
    animation: shineSlide 3s ease-in-out infinite;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

/* Card Icon Wrapper */
.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.elegant-blue-card:hover .card-icon-wrapper {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Feature Items */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

/* Warehouse Details */
.warehouse-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.warehouse-detail:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

/* Gold Button */
.btn-gold {
    background: #ffd700;
    border: none;
    color: #1a5276;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(255, 215, 0, 0.2);
    color: #0a3d62;
}

.btn-gold:hover::before {
    left: 100%;
}

/* Animations */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shineSlide {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }
    100% {
        transform: rotate(30deg) translateX(100%);
    }
}

/* Card Border Effect */
.elegant-blue-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(255, 215, 0, 0.3),
        transparent,
        rgba(255, 215, 0, 0.1));
    border-radius: inherit;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elegant-blue-card:hover::after {
    opacity: 1;
    animation: borderShine 2s ease-in-out infinite;
}

@keyframes borderShine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .elegant-blue-card {
        padding: 2rem 1.5rem !important;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-wrapper i {
        font-size: 1.5rem !important;
    }
    
    .warehouse-detail {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .elegant-blue-card {
        padding: 1.5rem 1rem !important;
    }
    
    .card-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon-wrapper {
        margin: 0 auto 1rem auto;
    }
    
    .feature-item {
        font-size: 0.875rem;
    }
}