/* BELLWAVE MEDICAL GROUP - WORLD-CLASS CORPORATION DESIGN */

/* Fortune 500 Color Palette */
:root {
    /* Primary Corporate Blues - Professional & Trustworthy */
    --corporate-blue: #003366;
    --corporate-blue-light: #0066cc;
    --corporate-blue-dark: #001f3f;

    /* Secondary Business Colors */
    --accent-blue: #0099ff;
    --navy-corporate: #1a2332;
    --light-corporate: #f0f7ff;
    --white-corporate: #ffffff;

    /* Professional Grays - Enterprise Level */
    --gray-50: #fafbfc;
    --gray-100: #f4f6f8;
    --gray-200: #e8ecf0;
    --gray-300: #d4d9df;
    --gray-400: #9aa0a6;
    --gray-500: #5f6368;
    --gray-600: #3c4043;
    --gray-700: #202124;
    --gray-800: #1a1a1a;
    --gray-900: #000000;

    /* Premium Gradients */
    --primary-gradient: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    --accent-gradient: linear-gradient(135deg, #0099ff 0%, #003366 100%);
    --premium-gradient: linear-gradient(135deg, #1a2332 0%, #003366 50%, #0066cc 100%);

    /* Enterprise Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 51, 102, 0.08);
    --shadow: 0 4px 12px rgba(0, 51, 102, 0.12);
    --shadow-md: 0 8px 16px rgba(0, 51, 102, 0.15);
    --shadow-lg: 0 12px 24px rgba(0, 51, 102, 0.18);
    --shadow-xl: 0 20px 40px rgba(0, 51, 102, 0.25);
    --shadow-premium: 0 32px 64px rgba(0, 51, 102, 0.3);

    /* Professional Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Global Enterprise Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    padding-top: 100px; /* Account for sticky navbar */
}

html {
    scroll-behavior: smooth;
}

/* WORLD-CLASS NAVIGATION */
.navbar {
    background: var(--corporate-blue) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0;
    z-index: 1050;
}

.navbar.scrolled {
    background: var(--navy-corporate) !important;
    box-shadow: var(--shadow-premium);
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--accent-blue);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem !important;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: white !important;
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.25rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(0, 153, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link.active {
    color: white !important;
    background-color: var(--accent-blue);
    box-shadow: var(--shadow);
}

/* PREMIUM HERO SECTIONS */
.hero-section {
    background: var(--premium-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(26, 35, 50, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ENTERPRISE BUTTONS */
.btn {
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 0.875rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    color: white;
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* PREMIUM CARDS */
.card, .feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before, .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before, .feature-card:hover::before {
    transform: scaleX(1);
}

.card:hover, .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.feature-card {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card i {
    color: var(--corporate-blue);
    font-size: 2rem;
    margin-bottom: 0rem;
}

.feature-card h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    margin-top: 20px;
}

.feature-card p {
    color: var(--gray-600);
    flex-grow: 1;
    line-height: 1.6;
}

/* ENTERPRISE SECTIONS */
section {
    padding: 6rem 0;
}

.bg-light {
    background: var(--gray-50) !important;
}

.bg-wight {
    background: #ffffff !important;
}

.bg-primary {
    background: var(--premium-gradient) !important;
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
}

.bg-primary .container {
    position: relative;
    z-index: 2;
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6 {
    color: white;
}

.bg-primary p, .bg-primary .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* PREMIUM IMAGES */
.professional-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.professional-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.image-overlay {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.05), rgba(0, 153, 255, 0.05));
    pointer-events: none;
}

/* ENTERPRISE STATISTICS */
.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--corporate-blue);
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

/* PREMIUM TESTIMONIALS */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-blue);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--corporate-blue);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-company {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ENTERPRISE TIMELINE */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    transform: translateX(-50%);
    border-radius: var(--radius);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    max-width: 400px;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-marker {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
}

/* PREMIUM FORMS */
.form-control, .form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    background: white;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* ENTERPRISE FOOTER */
footer {
    background: var(--navy-corporate) !important;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

/* PREMIUM BADGES */
.badge {
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.badge.bg-primary {
    background: var(--corporate-blue) !important;
}

.badge.bg-secondary {
    background: var(--accent-blue) !important;
}

/* ENTERPRISE ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WORLD-CLASS RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 8rem 0 6rem;
        min-height: auto;
    }

    .display-3, .display-4, .display-5 {
        font-size: 2.25rem;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
    }

    section {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
        justify-content: center;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .feature-card {
        text-align: center;
        padding: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }
}

/* ENTERPRISE UTILITIES */
.text-primary {
    color: var(--corporate-blue) !important;
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.border-primary {
    border-color: var(--corporate-blue) !important;
}

.shadow-enterprise {
    box-shadow: var(--shadow-premium) !important;
}

/* PREMIUM CONTENT BLOCKS */
.content-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-block:hover::before {
    transform: scaleX(1);
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.highlight-box {
    background: var(--light-corporate);
    border: 1px solid var(--accent-blue);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h5 {
    color: var(--corporate-blue);
    margin-bottom: 1rem;
}

/* PREMIUM ICON STYLING */
.icon-circle {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  flex-shrink: 0; /* verhindert Verformung */
  margin: auto;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ENTERPRISE HOVER EFFECTS */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* GRADIENT TEXT */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* WORLD-CLASS TYPOGRAPHY */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.lead {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.015em;
}

.text-muted {
    color: var(--gray-600) !important;
}

/* WORLD-CLASS PERFORMANCE */
* {
    will-change: auto;
}

.btn, .card, .feature-card, .stat-card {
    transform: translateZ(0);
}

/* ACCESSIBILITY ENHANCEMENTS */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* ENTERPRISE PRINT STYLES */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}









.white{
    color: #ffffff !important;
}


h4, h5{
    margin-top:20px;
}

.bg-light p{
    color: var(--corporate-blue) !important;
}



/* STICKY NAVIGATION */
.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0;
    background: rgba(0, 51, 102, 0.95) !important;
    border-bottom: 3px solid var(--accent-blue);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.3);
}

.sticky-nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(26, 35, 50, 0.98) !important;
    box-shadow: 0 12px 40px rgba(0, 51, 102, 0.4);
    border-bottom: 2px solid var(--accent-blue);
}

/* NAVIGATION LINKS */
.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 0 3px;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
}

.nav-link:hover {
    background-color: rgba(0, 153, 255, 0.15);
    transform: translateY(-1px);
    color: white !important;
}

.nav-link.active {
    background-color: var(--accent-blue);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

/* STABLE DROPDOWN HOVER */
.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu:hover {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 16px;
    padding: 1rem;
    margin-top: 0px !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.15);
    border: 1px solid rgba(0, 153, 255, 0.1);
    pointer-events: none;
}

/* STABLE MEGA MENU */
.mega-menu {
    padding: 1.5rem !important;
}

/* DROPDOWN ITEMS */
.dropdown-item {
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    margin: 2px 0;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--corporate-blue-light));
    color: white !important;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sticky-nav {
        padding: 1rem 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none !important;
    }
}

/* STICKY NAVIGATION ENDE */






.cs_video_section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.cs_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cs_video_overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 20, 0.4); /* optional: dunkler Overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
}

.cs_video_content {
  color: #fff;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cs_video_content .cs_section_subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs_video_content .cs_section_title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.cs_video_content .cs_section_text {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}




.cs_blue_bg,
.cs_blue_bg h5,
.cs_blue_bg h2{
	color:#fff !important;
}





























section {
  padding: 6rem 0;
  background: #fff;
}











.electromagnetic-hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.electromagnetic-field {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.energy-wave {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    animation: energyFlow 8s linear infinite;
}

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

.electric-text {
    background: linear-gradient(45deg, #4facfe, #00f2fe, #ff6b9d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: electricGradient 3s ease-in-out infinite;
}

@keyframes electricGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.power-core {
    position: relative;
    display: inline-block;
}

.magnetic-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(79, 172, 254, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: magneticRotate 10s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: magneticRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation: magneticRotate 20s linear infinite;
}

@keyframes magneticRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.center-icon {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 30px rgba(79, 172, 254, 0.8));
    animation: powerPulse 2s ease-in-out infinite;
}

@keyframes powerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.energy-sparks {
    position: absolute;
    inset: 0;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.spark-1 { top: 20%; left: 80%; animation-delay: 0s; }
.spark-2 { top: 80%; left: 20%; animation-delay: 0.5s; }
.spark-3 { top: 20%; left: 20%; animation-delay: 1s; }
.spark-4 { top: 80%; left: 80%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.technology-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xxl);
    padding: 30px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.technology-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(255, 107, 157, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.muscle-tech:hover::before { background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(79, 172, 254, 0.1)); opacity: 1; }
.electromagnetic-tech:hover::before { background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(255, 107, 157, 0.1)); opacity: 1; }

.technology-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.tech-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-icon {
    font-size: 4rem;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.tech-subtitle {
    color: var(--neon-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.95rem;
}

.power-meter {
    text-align: center;
}

.meter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.meter-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    background: var(--tech-gradient);
    border-radius: 10px;
    position: relative;
    animation: fillUp 2s ease-out;
}

.electromagnetic-fill {
    background: linear-gradient(90deg, #ff6b9d, #4facfe) !important;
}

.meter-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: meterShimmer 2s infinite;
}

@keyframes fillUp {
    from { width: 0; }
}

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

.meter-value {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--neon-blue);
    margin-top: 5px;
}

.zone-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.zone-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.zone-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.zone-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.zone-benefits li {
    padding: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.time-badge {
    background: var(--tech-gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--tech-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--tech-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.timeline-content {
    flex: 1;
    max-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
}

.electric-btn {
    position: relative;
    overflow: hidden;
}

.electric-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.electric-btn:hover::before {
    transform: translateX(100%);
}

.cs_footer_menu li{
    float: left;
    margin-right: 20px;
 list-style: none !important;
}