/* Advanced Effects CSS for BlueBlack Company Website */

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.2s;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #0092c8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform;
}

.trail-active {
  filter: blur(1px);
}

/* Cursor States */
.cursor-click {
  animation: cursor-click 0.3s ease forwards;
}

.cursor-hover {
  width: 60px;
  height: 60px;
  background-color: transparent !important;
  border-color: var(--primary-blue);
  mix-blend-mode: normal;
}

@keyframes cursor-click {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* 3D Model Container */
.model-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
}

.model-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Text Glitch Effects */
.glitch-text {
  position: relative;
  display: inline-block;
  font-weight: bold;
  overflow: hidden;
  color: var(--primary-blue);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -1px 0 red;
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: 1px 0 blue;
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0%, 80%, 100% {
    clip-path: inset(0 0 15% 0);
  }
  20% {
    clip-path: inset(25% 0 55% 0);
  }
  40% {
    clip-path: inset(50% 0 10% 0);
  }
  60% {
    clip-path: inset(10% 0 90% 0);
  }
}

@keyframes glitch-anim-2 {
  0%, 80%, 100% {
    clip-path: inset(0 15% 0 0);
  }
  20% {
    clip-path: inset(10% 50% 0 30%);
  }
  40% {
    clip-path: inset(70% 10% 0 65%);
  }
  60% {
    clip-path: inset(30% 50% 0 45%);
  }
}

/* Typing Effect */
.typing-effect {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.typing-cursor {
  display: inline-block;
  vertical-align: middle;
  animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Liquid Section */
[data-liquid-section] {
  position: relative;
  overflow: hidden;
}

.liquid-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* Add a fallback for liquid sections */
[data-liquid-section]:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(0, 146, 200, 0.1));
  z-index: 0;
  pointer-events: none;
}

/* Scroll Animations */
[data-scroll-animation="fade-in"] {
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

[data-scroll-animation="fade-in"].animate,
.fade-in {
  opacity: 1;
}

[data-scroll-animation="slide-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

[data-scroll-animation="slide-up"].animate,
.slide-up {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-animation="slide-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

[data-scroll-animation="slide-right"].animate,
.slide-right {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-animation="slide-left"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

[data-scroll-animation="slide-left"].animate,
.slide-left {
  opacity: 1;
  transform: translateX(0);
}

[data-scroll-animation="zoom-in"] {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

[data-scroll-animation="zoom-in"].animate,
.zoom-in {
  opacity: 1;
  transform: scale(1);
}

[data-scroll-animation="flip"] {
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

[data-scroll-animation="flip"].animate,
.flip {
  opacity: 1;
  transform: perspective(800px) rotateY(0);
}

/* Interactive Card Effect */
.interactive-card {
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.interactive-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.interactive-card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.interactive-card:hover .interactive-card-glare {
  opacity: 1;
}

/* Neon Text Effect */
.neon-text {
  color: #fff;
  text-shadow: 
    0 0 5px #0092c8,
    0 0 10px #0092c8,
    0 0 20px #0092c8,
    0 0 40px #0092c8;
  animation: neon-pulse 1.5s infinite alternate;
}

@keyframes neon-pulse {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 
      0 0 5px #0092c8,
      0 0 10px #0092c8,
      0 0 20px #0092c8,
      0 0 40px #0092c8;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Data visualization section */
.data-visualization {
  background: linear-gradient(135deg, #151515 0%, #202020 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.data-bars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.data-bar {
  width: 30px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-color) 100%);
  border-radius: 15px 15px 0 0;
  position: relative;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px rgba(0, 146, 200, 0.4);
  z-index: 2;
}

.data-bar::before {
  content: attr(data-value);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.data-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -40px; /* Moved further down */
  left: 50%;
  transform: translateX(-50%) rotate(-35deg); /* Less rotation for better readability */
  font-size: 12px;
  font-weight: 500;
  color: white; /* Brighter color */
  background-color: rgba(0, 0, 0, 0.5); /* Added background for contrast */
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  transform-origin: top left;
  z-index: 5; /* Ensure it's above other elements */
}

.data-bar:hover {
  box-shadow: 0 0 25px rgba(0, 146, 200, 0.8);
}

.data-bar:hover::before {
  opacity: 1;
}

.data-bar.pulse {
  animation: bar-pulse 0.5s ease;
}

@keyframes bar-pulse {
  0% { transform: scaleY(1); }
  50% { transform: scaleY(1.2); }
  100% { transform: scaleY(1); }
}

/* Data tooltip */
.data-tooltip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.data-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary-blue);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background-color: rgba(0, 146, 200, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: float-around 20s linear infinite;
}

/* Metrics Cards */
.metrics-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px; /* Reduced spacing to fit after Real-Time Analytics */
  position: relative;
  z-index: 2;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-color));
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 146, 200, 0.3);
}

.metric-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.metric-value {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.metric-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Code Window */
.tech-demo {
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tech-demo-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.code-window {
  background-color: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.code-header {
  background-color: #252526;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.code-dot:nth-child(1) {
  background-color: #ff5f56;
}

.code-dot:nth-child(2) {
  background-color: #ffbd2e;
}

.code-dot:nth-child(3) {
  background-color: #27c93f;
}

.code-title {
  margin-left: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.code-content {
  padding: 20px;
  overflow-x: auto;
}

.code-content pre {
  margin: 0;
}

.code-content code {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.5;
}

.code-comment {
  color: #6a9955;
}

.code-keyword {
  color: #569cd6;
}

.code-function {
  color: #dcdcaa;
}

.code-class {
  color: #4ec9b0;
}

.code-this {
  color: #569cd6;
}

/* Case Study Section */
.case-study {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
}

.case-study-slider {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

.case-study-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
}

.case-study-slide.active {
  opacity: 1;
  position: relative;
}

.case-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.case-text {
  flex: 1;
  min-width: 300px;
}

.case-title {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.case-subtitle {
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.case-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.case-stat {
  background-color: rgba(0, 146, 200, 0.1);
  padding: 15px;
  border-radius: 8px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--dark-blue);
}

.case-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.case-quote {
  background-color: rgba(0, 146, 200, 0.05);
  padding: 20px;
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.case-quote i {
  color: var(--primary-blue);
  font-size: 24px;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 10px;
}

.case-quote blockquote {
  margin: 0 0 15px 0;
  padding-left: 25px;
  font-style: italic;
}

.quote-author {
  text-align: right;
}

.author-name {
  font-weight: 600;
  color: var(--dark-blue);
}

.author-position {
  font-size: 14px;
  color: var(--primary-blue);
}

.case-visual {
  flex: 1;
  min-width: 300px;
}

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.device-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 15px solid #252525;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.device-screen {
  background-color: #f0f0f0;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}

.dashboard-demo {
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  padding: 15px;
}

.dashboard-alt {
  background-color: #f2f6fa;
}

.dashboard-alt .widget-chart {
  background: linear-gradient(180deg, rgba(0, 146, 200, 0.05) 0%, rgba(0, 146, 200, 0.2) 100%);
}

.dashboard-alt .widget-content {
  background-color: #edf1f7;
}

.dashboard-alt-2 {
  background-color: #f5f9f5;
}

.dashboard-alt-2 .widget-chart {
  background: linear-gradient(180deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.2) 100%);
}

.dashboard-alt-2 .widget-content {
  background-color: #ebf5eb;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.logo-placeholder {
  width: 120px;
  height: 30px;
  background-color: var(--primary-blue);
  border-radius: 4px;
}

.header-menu {
  display: flex;
  gap: 10px;
}

.header-menu::before {
  content: '';
  width: 30px;
  height: 10px;
  background-color: #dee2e6;
  border-radius: 3px;
}

.header-menu::after {
  content: '';
  width: 30px;
  height: 10px;
  background-color: #dee2e6;
  border-radius: 3px;
}

.dashboard-widgets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.widget {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-large {
  grid-column: span 2;
}

.widget-header {
  height: 20px;
  width: 60%;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 15px;
}

.widget-chart {
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 146, 200, 0.1) 0%, rgba(0, 146, 200, 0.3) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.widget-chart::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
  animation: chart-shimmer 3s infinite;
}

@keyframes chart-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.widget-content {
  height: 100px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.widget-list {
  height: 100px;
}

.widget-list::before {
  content: '';
  display: block;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 2px;
  margin-bottom: 10px;
}

.widget-list::after {
  content: '';
  display: block;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 2px;
  margin-top: 10px;
}

.case-study-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.case-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-nav-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.2);
}

/* Contact Form */
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-form-container {
  flex: 1;
  min-width: 350px;
}

.interactive-form {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

.contact-form {
  padding: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.floating-label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.animated-input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent;
  font-size: 16px;
  transition: all 0.3s ease;
}

.animated-input:focus {
  outline: none;
}

.animated-input:focus ~ .floating-label,
.animated-input:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  left: 0;
  font-size: 12px;
  color: var(--primary-blue);
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
}

.animated-input:focus ~ .input-line {
  width: 100%;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 146, 200, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 146, 200, 0.4);
}

.submit-btn i {
  transition: all 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Social Badges */
.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 146, 200, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-badge:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 146, 200, 0.2);
}

/* Map Container */
.map-container {
  width: 90%;
  max-width: 900px;
  height: 300px;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

/* Platform Cards */
.platforms {
  padding: 100px 0;
  background-color: var(--white);
}

.platform-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.platform-card {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 146, 200, 0.2);
}

.platform-card.featured {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
  transform: scale(1.05);
}

.platform-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.platform-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff5757;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 5px 10px rgba(255, 87, 87, 0.3);
}

.platform-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.platform-card.featured .platform-icon {
  color: white;
}

.platform-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: A15px;
  color: var(--dark-blue);
}

.platform-card.featured .platform-name {
  color: white;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature {
  background-color: rgba(0, 146, 200, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary-blue);
}

.platform-card.featured .feature {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Footer Styles */
.footer-wave {
  line-height: 0;
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  margin-bottom: 0;
  background-color: transparent;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* Removed fallback to eliminate the dark part */

.footer-main {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-right: 15px;
}

.logo-text h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.logo-text h3 span {
  color: var(--primary-blue);
}

.logo-text p {
  opacity: 0.8;
  font-size: 14px;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-blue);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-section ul li a i {
  margin-right: 10px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-section ul li a:hover i {
  color: var(--primary-blue);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--primary-blue);
  margin-right: 15px;
  margin-top: 5px;
}

.newsletter p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.newsletter-form .form-group {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--dark-blue);
}

.privacy-note {
  font-size: 12px;
  opacity: 0.7;
}

.footer-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-blue);
  transform: translateY(-5px);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

.footer-bottom-bar {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}

.footer-bottom-bar p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-bar i {
  color: #ff5757;
  animation: heart-beat 1.5s infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, 10px) rotate(90deg);
  }
  50% {
    transform: translate(0, 20px) rotate(180deg);
  }
  75% {
    transform: translate(-10px, 10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
  
}

/* Deins ... */
.footer {
  background: #0e3a5b;
  color: #fff;
}

/* >>> Mein Block ab hier einfügen <<< */
.experience-card,
.experience-card h3,
.experience-card p {
  color: #222 !important;
}

.experience {
  background: #fff;
  padding: 60px 0 50px 0;
}

.experience .section-title {
  color: #0e3a5b;
}

.platform-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #229aff;
}

.experience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.experience-card {
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  padding: 28px 18px;
  margin: 10px;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  text-align: center;
}
