/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #f8fafc;
    --secondary-bg: #f1f5f9;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-gradient: radial-gradient(64.18% 64.18% at 71.16% 35.69%,#def9fa .89%,#bef3f5 17.23%,#9dedf0 42.04%,#7de7eb 55.12%,#5ce1e6 71.54%,#33bbcf 100%);
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #a855f7;
    --border-color: #e2e8f0;
    --ring-color: rgb(99 102 241 / 0.5);
    --ring-offset-color: #fff;
    --ring-offset-shadow: 0 0 #0000;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --glow-primary: 0 0 20px rgb(99 102 241 / 0.3);
    --glow-secondary: 0 0 40px rgb(99 102 241 / 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Remove tap highlight (yellow circle) globally */
    -webkit-tap-highlight-color: transparent;
}

/* Remove all focus outlines and tap highlights globally */
*:focus,
*:focus-visible,
*:active,
*:hover {
    outline: none !important;
}

button,
a,
.btn-primary,
.btn-secondary,
.btn-outline,
button:hover,
button:active,
button:focus,
a:hover,
a:active,
a:focus {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    outline: none !important;
    box-shadow: none !important;
    /* Remove any cursor circles or overlays */
    cursor: pointer !important;
}

/* Override any custom cursor that might create circles */
button *,
.btn-primary *,
.btn-secondary *,
.btn-outline * {
    cursor: inherit !important;
    pointer-events: none !important;
}

/* Completely hide custom cursor element */
.custom-cursor {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Remove any cursor/pointer effects that create circles */
button::before,
button::after,
.btn-primary::before,
.btn-primary::after,
.btn-secondary::before,
.btn-secondary::after,
.btn-outline::before,
.btn-outline::after {
    -webkit-tap-highlight-color: transparent !important;
}

/* Specifically remove tap highlight on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.accent-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    position: relative;
    overflow: hidden;
    /* Remove default focus outline (yellow circle) */
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Remove focus outline on all buttons */
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active,
.btn-outline:focus,
.btn-outline:focus-visible,
.btn-outline:active,
button:focus,
button:focus-visible,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outline globally for buttons in training section */
.training-section button:focus,
.training-section button:focus-visible,
.training-section button:active,
.training-section .btn-primary:focus,
.training-section .btn-primary:focus-visible,
.training-section .btn-primary:active,
.training-section .btn-secondary:focus,
.training-section .btn-secondary:focus-visible,
.training-section .btn-secondary:active,
.training-section .btn-outline:focus,
.training-section .btn-outline:focus-visible,
.training-section .btn-outline:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: var(--shadow-md), var(--glow-primary);
    border: 1px solid rgb(99 102 241 / 0.3);
}

.btn-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.5s;
    /* Remove any tap highlight on pseudo-element */
    -webkit-tap-highlight-color: transparent !important;
    pointer-events: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-secondary);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: rgb(99 102 241 / 0.5);
    box-shadow: var(--shadow-md), 0 0 15px rgb(99 102 241 / 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgb(99 102 241 / 0.5);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: rgb(99 102 241 / 0.1);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), 0 0 15px rgb(99 102 241 / 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgb(99 102 241 / 0.1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-wrapper {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: white;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.header-logo-wrapper .logo-image {
    width: 100%;
    height: 100%;
    border-radius: 45%;
    object-fit: contain;
    object-position: center;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.logo-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.4);
}

.logo-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Training page navigation items - hidden by default */
.nav-links .nav-link.nav-training {
    display: none !important;
}

.nav-links .nav-link.nav-training.show {
    display: flex !important;
}

/* Homepage navigation items - shown by default */
.nav-links .nav-dropdown.nav-homepage {
    display: flex !important;
}

.nav-links .nav-dropdown.nav-homepage.hide {
    display: none !important;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
}

.dropdown-content {
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
}

.dropdown-section {
    flex: 1;
}

.dropdown-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin-bottom: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.05);
    color: var(--accent-color);
    transform: translateX(4px);
}

       .dropdown-item i {
           width: 16px;
           color: var(--accent-color);
           font-size: 0.875rem;
           filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
           transition: all 0.3s ease;
       }

       .dropdown-item:hover i {
           filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.8));
           transform: scale(1.1);
       }

.dropdown-sidebar {
    border-left: 1px solid rgba(99, 102, 241, 0.1);
    padding-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Dropdown arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    pointer-events: none;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(99, 102, 241, 0.1);
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 10px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgb(99 102 241 / 0.15), rgb(139 92 246 / 0.15));
    border: 1px solid rgb(99 102 241 / 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: #6366f1;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgb(99 102 241 / 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Globe Container */
.globe-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Advanced Globe with Enhanced Purple Theme */
.globe {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgb(99 102 241 / 0.1), transparent 60%),
        radial-gradient(circle at 70% 70%, rgb(99 102 241 / 0.05), transparent 60%),
        linear-gradient(45deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.9));
    border: 2px solid rgb(99 102 241 / 0.4);
    animation: rotate 60s linear infinite;
    box-shadow: 
        inset 0 0 50px rgb(99 102 241 / 0.1),
        0 0 30px rgb(99 102 241 / 0.2),
        0 0 60px rgb(99 102 241 / 0.1);
}

.globe-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgb(99 102 241 / 0.05), transparent 70%),
        radial-gradient(circle at 70% 70%, rgb(99 102 241 / 0.03), transparent 70%);
    border: 1px solid rgb(99 102 241 / 0.2);
    box-shadow: inset 0 0 20px rgb(99 102 241 / 0.1);
}

.globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: 
        linear-gradient(90deg, rgb(99 102 241 / 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgb(99 102 241 / 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}

/* Remove the glowing highlight dot */
.globe-highlight {
    display: none;
}

/* Dynamic connection lines will be created by JavaScript */

/* Traveling Data Packets */
.traveling-packet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 8px rgb(99 102 241 / 0.8);
    animation: travelPacket 2s linear infinite;
}

/* Enhanced Data Points with Simple Dots - Fixed position, no rotation */
.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* Dots stay completely fixed - no rotation */
}

.data-point {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.7);
}

.point-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgb(99 102 241 / 0.7);
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
}

/* Position dots inside the globe */
.point-1 { 
    top: 30%; 
    left: 25%; 
    animation-delay: 0s; 
}

.point-2 { 
    top: 40%; 
    right: 30%; 
    animation-delay: 0.5s; 
}

.point-3 { 
    bottom: 40%; 
    left: 30%; 
    animation-delay: 1s; 
}

.point-4 { 
    top: 60%; 
    right: 25%; 
    animation-delay: 1.5s; 
}

.point-5 { 
    bottom: 50%; 
    left: 20%; 
    animation-delay: 2s; 
}

/* Additional Community Data Points */
.point-6 { 
    top: 35%; 
    left: 50%; 
    animation-delay: 0.7s; 
}

.point-7 { 
    bottom: 35%; 
    right: 35%; 
    animation-delay: 1.2s; 
}

.point-8 { 
    top: 50%; 
    left: 15%; 
    animation-delay: 1.8s; 
}

.point-9 { 
    bottom: 45%; 
    right: 20%; 
    animation-delay: 0.3s; 
}

.point-10 { 
    top: 25%; 
    left: 65%; 
    animation-delay: 2.2s; 
}

/* Clean Security Overlay - Stats at bottom of globe */
.security-overlay {
    position: absolute;
    bottom: 15%; /* Move up a little bit from 10% to 15% */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row; /* Horizontal layout for stats */
    align-items: center;
    gap: 20px; /* Reduced gap from 40px to 20px */
    /* Stats stay completely fixed - no rotation */
}

/* Remove security shield completely */
.security-shield {
    display: none; /* Hide the security shield */
}

.security-stats {
    display: flex;
    gap: 20px; /* Reduced gap from 40px to 20px */
    /* No margin needed since we're positioning at bottom */
}

.security-stats .stat-item {
    text-align: center;
}

.security-stats .stat-number {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.security-stats .stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Enhanced Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gridMove {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(25px) translateY(25px); }
}

@keyframes dataFlow {
    0% { 
        opacity: 0; 
        transform: scaleX(0); 
    }
    20% { 
        opacity: 1; 
        transform: scaleX(1); 
    }
    80% { 
        opacity: 1; 
        transform: scaleX(1); 
    }
    100% { 
        opacity: 0; 
        transform: scaleX(0); 
    }
}

@keyframes travelPacket {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) translateY(50px);
        opacity: 0;
    }
}

@keyframes pointPulse {
    0% { 
        transform: scale(0.5); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2); 
        opacity: 0; 
    }
}

@keyframes shieldIconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgb(99 102 241 / 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgb(99 102 241 / 0.6);
    }
}

@keyframes dotFloat {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes shieldGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px rgb(99 102 241 / 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 35px rgb(99 102 241 / 0.8);
    }
}

@keyframes flowingLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
        box-shadow: 0 0 8px rgb(99 102 241 / 0.3);
    }
    20% {
        opacity: 1;
        transform: scaleX(1);
        box-shadow: 0 0 12px rgb(99 102 241 / 0.6);
    }
    80% {
        opacity: 1;
        transform: scaleX(1);
        box-shadow: 0 0 12px rgb(99 102 241 / 0.6);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
        box-shadow: 0 0 8px rgb(99 102 241 / 0.3);
    }
}

/* Shield Network Section */
.shield-network {
    padding: 0px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.shield-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shield-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.shield-text .section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.shield-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Shield Visual Design */
.shield-visual {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
}

.shield-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.shield-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 140px;
    background: linear-gradient(45deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.95));

    clip-path: polygon(10% 0%, 25% 0%, 40% 0%, 55% 0%, 70% 0%, 85% 0%, 100% 10%, 100% 25%, 100% 40%, 100% 55%, 100% 70%, 100% 85%, 90% 100%, 75% 100%, 60% 100%, 45% 100%, 30% 100%, 15% 100%, 0% 85%, 0% 70%, 0% 55%, 0% 40%, 0% 25%, 0% 10%);

}

.shield-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(10% 0%, 25% 0%, 40% 0%, 55% 0%, 70% 0%, 85% 0%, 100% 10%, 100% 25%, 100% 40%, 100% 55%, 100% 70%, 100% 85%, 90% 100%, 75% 100%, 60% 100%, 45% 100%, 30% 100%, 15% 100%, 0% 85%, 0% 70%, 0% 55%, 0% 40%, 0% 25%, 0% 10%);
    opacity: 0;
}

.shield-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shield-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;

    animation: shieldIconPulse 3s ease-in-out infinite;
    z-index: 2;
}

.icon-1 { top: 20%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.icon-2 { top: 40%; left: 25%; animation-delay: 0.5s; }
.icon-3 { top: 40%; left: 75%; animation-delay: 1s; }
.icon-4 { bottom: 20%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

/* Connection dots and static lines removed - only dynamic lines remain */

/* Flow Container - Connection Flow Design */
.flow-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 350px;
    width: 100%;
    background: transparent;
}

/* SVG container for connection lines - spans entire flow container */
.flow-container svg.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Left Side - User Devices */
.user-devices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.device {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 110px;
    animation: smoothFloat 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device:nth-child(1) {
    animation-delay: 0s;
}

.device:nth-child(2) {
    animation-delay: 1.3s;
}

.device:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes smoothFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes aiFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.device-icon {
    margin-bottom: 6px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon .icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(234deg) brightness(104%) contrast(97%);
}

.device:hover .icon-image {
    transform: scale(1.1);
}

.device-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3px;
}

.device-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.65rem;
    color: #64748b;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.connecting {
    background: #f59e0b;
}

.status-dot.disconnected {
    background: #ef4444;
    animation: none;
}

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

/* Center - Security Gateway */
.security-gateway {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gateway-shield {
    width: 100px;
    height: 100px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: shieldPulse 3s ease-in-out infinite;
}

.gateway-shield .shield-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.gateway-label {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

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

/* Right Side - Applications */
.applications {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.app-card {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 110px;
    animation: smoothFloat 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-card:nth-child(1) {
    animation-delay: 0.4s;
}

.app-card:nth-child(2) {
    animation-delay: 1.7s;
}

.app-card:nth-child(3) {
    animation-delay: 3s;
}

.app-icon {
    margin: 0 auto 6px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon .icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(234deg) brightness(104%) contrast(97%);
}

.app-card:hover .icon-image {
    transform: scale(1.1);
}

.app-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3px;
}

.app-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.65rem;
    color: #64748b;
}


/* Connection Lines Container - SVG for curved dotted lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.connection-lines svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-lines path {
    stroke: #6366f1;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    fill: none;
    opacity: 0.8;
}

/* Responsive for Flow Container */
@media (max-width: 1024px) {
    .flow-container {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }
    
    .shield-visual {
        min-height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .flow-container {
        gap: 40px;
    }
    
    .device-icon .icon-image,
    .app-icon .icon-image {
        width: 100px;
        height: 100px;
    }
}

/* Rocket Performance Section */
.rocket-performance {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.rocket-performance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.rocket-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rocket-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.rocket-text .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.rocket-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.related-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.related-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.related-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #6366f1;
}

.rocket-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rocket-container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Ignition - Hidden on desktop */
.mobile-ignition {
    display: none;
}

.rocket {
    position: relative;
    z-index: 3;
    animation: rocketFloat 3s ease-in-out infinite;
}

.rocket-body {
    width: 300px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 120px;
    position: relative;
    transform: rotate(-45deg);
}

.rocket-fire {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
}

.fire-particle {
    position: absolute;
    width: 8px;
    height: 20px;
    background: linear-gradient(to top, #ff6b35, #f7931e, #ffd700);
    border-radius: 50% 50% 0 0;
    animation: fireBurn 0.8s ease-in-out infinite;
}

.fire-1 { left: 10px; animation-delay: 0s; }
.fire-2 { left: 20px; animation-delay: 0.1s; }
.fire-3 { left: 30px; animation-delay: 0.2s; }
.fire-4 { left: 40px; animation-delay: 0.3s; }
.fire-5 { left: 15px; animation-delay: 0.4s; }
.fire-6 { left: 25px; animation-delay: 0.5s; }
.fire-7 { left: 35px; animation-delay: 0.6s; }
.fire-8 { left: 45px; animation-delay: 0.7s; }

.rocket-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.trail-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    animation: trailFade 2s linear infinite;
}

.trail-1 { top: 20%; left: 30%; animation-delay: 0s; }
.trail-2 { top: 40%; left: 60%; animation-delay: 0.4s; }
.trail-3 { top: 60%; left: 20%; animation-delay: 0.8s; }
.trail-4 { top: 80%; left: 70%; animation-delay: 1.2s; }
.trail-5 { top: 30%; left: 80%; animation-delay: 1.6s; }

.performance-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 { top: 10%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.dot-3 { bottom: 20%; left: 25%; animation-delay: 1s; }
.dot-4 { top: 70%; right: 25%; animation-delay: 1.5s; }
.dot-5 { bottom: 40%; left: 60%; animation-delay: 2s; }

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fireBurn {
    0%, 100% { 
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }
    50% { 
        transform: scaleY(1.5) translateY(5px);
        opacity: 0.8;
    }
}

@keyframes trailFade {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        opacity: 0;
        transform: scale(0.5);
    }
}

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

/* Firewall Flow Section */
.firewall-flow-section {
    padding: 120px 0;
    background: #1F1346;
    position: relative;
}

.firewall-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.firewall-flow-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.firewall-flow-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: white;
}

.firewall-flow-features {
    margin-bottom: 40px;
}

.firewall-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: white;
}

.firewall-feature-item i {
    color: white;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.firewall-feature-item span {
    font-size: 16px;
    line-height: 1.6;
}

.firewall-flow-cta {
    margin-top: 32px;
}

.firewall-flow-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.firewall-flow-container {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.firewall-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.firewall-node-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.firewall-node-icon:hover {
    transform: translateY(-5px);
}

.firewall-node-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.firewall-connection-line {
    position: absolute;
    height: 2px;
    background: white;
    opacity: 0.8;
    z-index: 2;
}

.firewall-line-1 {
    width: 120px;
    top: 50%;
    left: 90px;
    transform: translateY(-50%);
}

.firewall-line-2 {
    width: 120px;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
}

.firewall-data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    z-index: 4;
    animation: firewallDataFlow 3s linear infinite;
}

.firewall-particle-1 {
    top: 50%;
    left: 90px;
    animation-delay: 0s;
}

.firewall-particle-2 {
    top: 50%;
    left: 170px;
    animation-delay: 1s;
}

.firewall-particle-3 {
    top: 50%;
    right: 170px;
    animation-delay: 2s;
}

.firewall-particle-4 {
    top: 50%;
    right: 90px;
    animation-delay: 3s;
}

@keyframes firewallDataFlow {
    0% {
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(20px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(80px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(120px) scale(0.5);
    }
}

/* Global Services Section */
.global-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.global-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header .highlight {
    color: #8b5cf6;
}

.services-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 20px;
}

.stat-connector {
    position: relative;
    margin-bottom: 20px;
}

.stat-dot {
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.stat-line {
    width: 2px;
    height: 60px;
    background: #ff6b35;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive Design for Global Services */
@media (max-width: 1024px) {
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .services-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .global-services-section {
        padding: 80px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.features-content {
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(99 102 241 / 0.08), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.4);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(99 102 241 / 0.08), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
}

.product-card.featured {
    border-color: rgb(99 102 241 / 0.5);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgb(99 102 241 / 0.3);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.5);
}

.product-header {
    text-align: center;
    margin-bottom: 32px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-secondary);
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.product-features i {
    color: rgb(34 197 94 / 0.8);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(99 102 241 / 0.08), transparent);
    transition: left 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.testimonial-quote {
    margin-bottom: 24px;
}

.testimonial-quote i {
    color: rgb(99 102 241 / 0.8);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.testimonial-quote p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.4);
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgb(99 102 241 / 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* How We Can Help Section */
.help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 60px;
    line-height: 1.2;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.help-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.help-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.help-card:hover .help-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Help Icon Hover Effects */
.help-card:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.help-card:hover .help-icon::before {
    opacity: 1;
    transform: scale(1.2);
}

.help-card:hover .help-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Specific Icon Animations */
.help-card:nth-child(1) .help-icon i {
    animation: boltPulse 2s ease-in-out infinite;
}

.help-card:nth-child(2) .help-icon i {
    animation: shieldGlow 2.5s ease-in-out infinite;
}

.help-card:nth-child(3) .help-icon i {
    animation: imageFloat 3s ease-in-out infinite;
}

.help-card:nth-child(4) .help-icon i {
    animation: scaleBalance 2.8s ease-in-out infinite;
}

.help-card:nth-child(5) .help-icon i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.help-card:nth-child(6) .help-icon i {
    animation: chartGrow 2.2s ease-in-out infinite;
}

/* Floating particles around icons */
.help-card:nth-child(1) .help-icon::after {
    animation-delay: 0s;
}

.help-card:nth-child(2) .help-icon::after {
    animation-delay: 0.5s;
}

.help-card:nth-child(3) .help-icon::after {
    animation-delay: 1s;
}

.help-card:nth-child(4) .help-icon::after {
    animation-delay: 1.5s;
}

.help-card:nth-child(5) .help-icon::after {
    animation-delay: 2s;
}

.help-card:nth-child(6) .help-icon::after {
    animation-delay: 2.5s;
}

/* Help Tooltip Styles */
.help-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
    transform: translateY(100%);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.tooltip-content {
    padding: 20px;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.tooltip-content h4 {
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tooltip-content p {
    color: #e2e8f0;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Tooltip Hover Effects */
.help-card:hover .help-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.help-card:hover .tooltip-content {
    transform: translateY(0);
}

.help-dashboard-cta-wrap {
    margin-top: 8px;
}

.help-dashboard-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 4px 20px rgba(99, 102, 241, 0.28),
        0 0 32px rgba(167, 139, 250, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: helpDashboardCtaGlow 3.5s ease-in-out infinite;
}

.help-dashboard-cta:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 6px 26px rgba(99, 102, 241, 0.38),
        0 0 44px rgba(192, 181, 253, 0.35);
    animation: none;
}

@keyframes helpDashboardCtaGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.18) inset,
            0 4px 20px rgba(99, 102, 241, 0.26),
            0 0 28px rgba(167, 139, 250, 0.2);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.2) inset,
            0 4px 22px rgba(99, 102, 241, 0.34),
            0 0 40px rgba(199, 183, 254, 0.32);
    }
}

.help-icon {
    width: 60px;
    height: 60px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.help-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.help-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: iconParticle 3s ease-in-out infinite;
}

.help-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.help-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.4;
}

.help-cta {
    margin-top: 40px;
}

.help-btn {
    background: white;
    color: #1a1a2e;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Help Section */
@media (max-width: 1024px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .help-title {
        font-size: 2.2rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    .nav-container {
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hamburger-menu {
        display: flex;
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }
    
    /* Adjust hamburger position for training section */
    .training-section ~ .navbar .hamburger-menu,
    body:has(.training-section[style*="display: block"]) .hamburger-menu {
        margin-right: 8px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex !important;
        box-sizing: border-box;
    }
    
    .nav-links.active {
        max-height: 90vh;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 16px;
        display: flex !important;
        box-sizing: border-box;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Training page navigation items - hidden by default on mobile */
    .nav-links .nav-link.nav-training {
        display: none !important;
    }
    
    .nav-links .nav-link.nav-training.show {
        display: block !important;
    }
    
    /* Homepage navigation items - shown by default on mobile */
    .nav-links .nav-dropdown.nav-homepage {
        display: block !important;
    }
    
    .nav-links .nav-dropdown.nav-homepage.hide {
        display: none !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-trigger {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    /* Hide dropdown arrow on mobile */
    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-section {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 16px 0;
        box-sizing: border-box;
    }
    
    .dropdown-section:last-child {
        padding-bottom: 16px;
    }
    
    .dropdown-title {
        font-size: 0.7rem;
        margin: 0 0 16px 0;
        padding: 0 0 8px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .dropdown-column {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-category {
        font-size: 0.875rem;
        margin: 0 0 12px 0;
        padding: 0;
        color: var(--text-primary);
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-list {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        list-style: none;
        box-sizing: border-box;
    }
    
    .dropdown-list li {
        margin: 0 0 8px 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-list li:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-item {
        padding: 12px 0;
        margin: 0;
        font-size: 0.875rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .dropdown-item:hover {
        transform: none;
        background: transparent;
    }
    
    .dropdown-item:active {
        background: rgba(99, 102, 241, 0.05);
    }
    
    .dropdown-item i {
        width: 18px;
        min-width: 18px;
        max-width: 18px;
        font-size: 0.875rem;
        flex-shrink: 0;
        margin-right: 0.75rem;
    }
    
    /* Resources dropdown mobile styling */
    .dropdown-resource-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        box-sizing: border-box;
    }
    
    .dropdown-resource-list li {
        margin: 0 0 8px 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-resource-list li:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-resource-list a {
        padding: 12px 0;
        margin: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Company dropdown mobile styling */
    .company-dropdown .dropdown-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .company-dropdown .dropdown-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        box-sizing: border-box;
    }
    
    .company-dropdown .dropdown-list li {
        margin: 0 0 8px 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .company-dropdown .dropdown-list li:last-child {
        margin-bottom: 0;
    }
    
    .company-dropdown .dropdown-item {
        flex-direction: row;
        align-items: center;
        padding: 12px 0;
        margin: 0;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .company-dropdown .dropdown-item i {
        font-size: 0.875rem;
        margin: 0;
        flex-shrink: 0;
        width: 18px;
        min-width: 18px;
        max-width: 18px;
    }
    
    .company-dropdown .dropdown-item:hover {
        transform: none;
        background: transparent;
    }
    
    .company-dropdown .dropdown-item:active {
        background: rgba(99, 102, 241, 0.05);
    }
    
    /* ALWAYS hide nav-cta when it's outside nav-links (normal position) on mobile */
    .nav-container > .nav-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Show nav-cta ONLY when it's inside nav-links AND menu is active (mobile dropdown) */
    .nav-links.active .nav-cta {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    /* Hide nav-cta when menu is closed (even if inside nav-links) */
    .nav-links:not(.active) .nav-cta {
        display: none !important;
    }
    
    .nav-cta button,
    .nav-cta a {
        width: 100%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: 60px 0;
    }
    
    .help-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-card {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgb(99 102 241 / 0.15);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgb(99 102 241 / 0.15);
}

.footer-copyright {
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: rgb(99 102 241 / 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgb(99 102 241 / 0.2);
}



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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .globe-container {
        width: 400px;
        height: 400px;
    }
    
    .globe {
        width: 350px;
        height: 350px;
    }
    
    .globe-sphere {
        width: 330px;
        height: 330px;
    }

    .rocket-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .rocket-text h2 {
        font-size: 40px;
    }

    .rocket-container {
        width: 250px;
        height: 350px;
    }

    .firewall-flow-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .firewall-flow-text h2 {
        font-size: 40px;
    }

    .firewall-flow-container {
        width: 350px;
        height: 250px;
    }


}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .globe-container {
        width: 350px;
        height: 350px;
    }
    
    .globe {
        width: 300px;
        height: 300px;
    }
    
    .globe-sphere {
        width: 280px;
        height: 280px;
    }

    .rocket-text h2 {
        font-size: 32px;
    }

    .rocket-container {
        width: 200px;
        height: 300px;
    }

    .rocket-body {
        width: 60px;
        height: 90px;
        font-size: 24px;
    }

    .firewall-flow-text h2 {
        font-size: 32px;
    }

    .firewall-flow-container {
        width: 300px;
        height: 200px;
    }

    .firewall-node-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        flex-shrink: 0;
    }


}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-container,
    .features-container,
    .products-container,
    .testimonials-container,
    .cta-container,
    .footer-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-features {
        grid-template-columns: 1fr;
    }
    
    .insights-features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
    
    .globe {
        width: 250px;
        height: 250px;
    }
    
    .globe-sphere {
        width: 230px;
        height: 230px;
    }


} 

/* Latest Insights Section */
.latest-insights-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.latest-insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.insights-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insights-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.insights-header .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.insight-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.2);
}

.insight-visual {
    height: 200px;
    margin-bottom: 25px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

/* AI Brain Container */
.ai-brain-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.brain-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    animation: brainGlow 3s ease-in-out infinite;
}

.neuron-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neuron {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron-1 { top: 20%; left: 20%; animation-delay: 0s; }
.neuron-2 { top: 30%; right: 25%; animation-delay: 0.3s; }
.neuron-3 { bottom: 25%; left: 30%; animation-delay: 0.6s; }
.neuron-4 { bottom: 35%; right: 20%; animation-delay: 0.9s; }
.neuron-5 { top: 50%; left: 10%; animation-delay: 1.2s; }
.neuron-6 { top: 60%; right: 15%; animation-delay: 1.5s; }
.neuron-7 { bottom: 15%; left: 50%; animation-delay: 1.8s; }
.neuron-8 { top: 15%; right: 40%; animation-delay: 2.1s; }

.synapse-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.synapse {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    animation: synapseFlow 3s ease-in-out infinite;
}

.synapse-1 { top: 25%; left: 25%; width: 60px; transform: rotate(45deg); animation-delay: 0s; }
.synapse-2 { top: 40%; right: 30%; width: 50px; transform: rotate(-30deg); animation-delay: 0.5s; }
.synapse-3 { bottom: 30%; left: 35%; width: 70px; transform: rotate(60deg); animation-delay: 1s; }
.synapse-4 { bottom: 45%; right: 25%; width: 45px; transform: rotate(-45deg); animation-delay: 1.5s; }
.synapse-5 { top: 55%; left: 15%; width: 55px; transform: rotate(15deg); animation-delay: 2s; }
.synapse-6 { top: 70%; right: 20%; width: 65px; transform: rotate(-60deg); animation-delay: 2.5s; }

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: dataFlow 4s linear infinite;
}

.data-1 { top: 10%; left: 10%; animation-delay: 0s; }
.data-2 { top: 20%; right: 15%; animation-delay: 1s; }
.data-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.data-4 { bottom: 30%; right: 10%; animation-delay: 3s; }

/* Threat Map Container */
.threat-map-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-globe {
    width: 120px;
    height: 120px;
    position: relative;
}

.globe-surface {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: 0 0 30px rgba(30, 41, 59, 0.4);
    position: relative;
}

.threat-globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        linear-gradient(90deg, rgba(99, 102, 241, 0.2) 1px, transparent 1px),
        linear-gradient(0deg, rgba(99, 102, 241, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: globeRotate 20s linear infinite;
}

.threat-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-point {
    position: absolute;
    animation: threatPulse 2s ease-in-out infinite;
}

.threat-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.6);
    animation: threatPulse 2s ease-in-out infinite;
}

.threat-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.threat-1 { top: 20%; left: 30%; animation-delay: 0s; }
.threat-2 { top: 40%; right: 25%; animation-delay: 0.4s; }
.threat-3 { bottom: 30%; left: 40%; animation-delay: 0.8s; }
.threat-4 { bottom: 50%; right: 35%; animation-delay: 1.2s; }
.threat-5 { top: 60%; left: 20%; animation-delay: 1.6s; }

.threat-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    animation: threatFlow 3s ease-in-out infinite;
}

.line-1 { top: 30%; left: 20%; width: 80px; transform: rotate(30deg); animation-delay: 0s; }
.line-2 { top: 50%; right: 20%; width: 60px; transform: rotate(-45deg); animation-delay: 1s; }
.line-3 { bottom: 40%; left: 30%; width: 70px; transform: rotate(60deg); animation-delay: 2s; }

.threat-security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: shieldGlow 2s ease-in-out infinite;
}

.threat-security-shield i {
    color: white;
    font-size: 18px;
}

/* Automation Container */
.automation-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-core {
    width: 100px;
    height: 100px;
    position: relative;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.3);
    animation: corePulse 2s ease-in-out infinite;
}

.core-rotation {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.5);
    animation: coreRotate 10s linear infinite;
}

.automation-gears {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gear {
    position: absolute;
    width: 30px;
    height: 30px;
    color: #6366f1;
    animation: gearRotate 8s linear infinite;
}

.gear-1 { top: 10%; left: 20%; animation-delay: 0s; }
.gear-2 { top: 20%; right: 15%; animation-delay: 2s; }
.gear-3 { bottom: 15%; left: 30%; animation-delay: 4s; }

.gear i {
    font-size: 30px;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.6));
}

.automation-flow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    animation: flowMove 4s linear infinite;
}

.flow-1 { top: 15%; left: 10%; animation-delay: 0s; }
.flow-2 { top: 25%; right: 20%; animation-delay: 1s; }
.flow-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.flow-4 { bottom: 35%; right: 10%; animation-delay: 3s; }

.automation-status {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
}

.insight-content {
    flex: 1;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.insight-category {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.insight-date {
    color: var(--text-muted);
    font-size: 14px;
}

.insight-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.insight-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.insight-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.insight-link:hover {
    gap: 12px;
    color: #8b5cf6;
}

.insights-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Stories Section */
.success-stories-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stories-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stories-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.stories-header .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.story-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(16, 185, 129, 0.2);
}

.story-visual {
    height: 220px;
    margin-bottom: 25px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
}

/* Attack Scenario */
.attack-scenario {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attack-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.3);
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.attack-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.attack-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    animation: attackFlow 4s linear infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.particle-3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.particle-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.particle-5 { top: 60%; left: 15%; animation-delay: 2s; }
.particle-6 { top: 70%; right: 20%; animation-delay: 2.5s; }

.defense-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.defense-shield-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.4);
    animation: shieldPulse 2s ease-in-out infinite;
}

.defense-shield-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.defense-shield-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.defense-shield-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.defense-shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.defense-shield-core i {
    color: white;
    font-size: 18px;
}

.attack-stats {
    position: absolute;
    top: 20px;
    right: 20px;
}

.stat-display {
    background: rgba(239, 68, 68, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
}

.attack-stat-label {
    font-size: 10px;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Performance Dashboard */
.performance-dashboard {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #10b981;
}

.dashboard-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

.performance-charts {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.chart {
    flex: 1;
    height: 80px;
    position: relative;
}

.chart-1 {
    display: flex;
    align-items: end;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #6366f1, #8b5cf6);
    border-radius: 2px 2px 0 0;
    animation: chartGrow 2s ease-out;
}

.bar-1 { height: 60%; animation-delay: 0s; }
.bar-2 { height: 80%; animation-delay: 0.2s; }
.bar-3 { height: 40%; animation-delay: 0.4s; }
.bar-4 { height: 90%; animation-delay: 0.6s; }
.bar-5 { height: 70%; animation-delay: 0.8s; }

.chart-2 {
    position: relative;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    animation: chartLine 3s ease-out;
}

.chart-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chart-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    animation: pointPulse 2s ease-in-out infinite;
}

.chart-point-1 { bottom: 20%; left: 10%; animation-delay: 0s; }
.chart-point-2 { bottom: 40%; left: 30%; animation-delay: 0.5s; }
.chart-point-3 { bottom: 60%; left: 50%; animation-delay: 1s; }
.chart-point-4 { bottom: 80%; left: 70%; animation-delay: 1.5s; }
.chart-point-5 { bottom: 30%; left: 90%; animation-delay: 2s; }

.performance-metrics {
    display: flex;
    justify-content: space-around;
}

.metric-display {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 2px;
}

.dashboard-metric-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Threat Timeline */
.threat-timeline {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
}

.timeline-scale {
    font-size: 12px;
    color: #64748b;
}

.timeline-events {
    position: relative;
    margin-bottom: 20px;
}

.timeline-events::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.event {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.event-time {
    font-size: 12px;
    color: #94a3b8;
    min-width: 40px;
}

.event-dot {
    width: 12px;
    height: 12px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    animation: eventPulse 2s ease-in-out infinite;
}

.event-label {
    font-size: 12px;
    color: white;
    font-weight: 500;
}

.threat-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.threat-stat {
    text-align: center;
}

.threat-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 4px;
}

.threat-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content {
    flex: 1;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.story-category {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.story-date {
    color: var(--text-muted);
    font-size: 14px;
}

.story-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.story-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.metric-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-quote {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid #10b981;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.story-quote i {
    color: #10b981;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.story-quote p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-author strong {
    color: var(--text-primary);
    font-size: 14px;
}

.quote-author span {
    color: var(--text-muted);
    font-size: 12px;
}

.stories-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes brainGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

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

@keyframes synapseFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes dataFlow {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(100px, -50px); opacity: 0; }
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes threatFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes shieldGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes coreRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes flowMove {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(50px, -30px); opacity: 0; }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes attackFlow {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(-50px, 50px); opacity: 0; }
}

@keyframes defenseFlow {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(30px, -40px); opacity: 0; }
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--final-height); }
}

@keyframes chartLine {
    from { width: 0; }
    to { width: 100%; }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-grid,
    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .insights-header .section-title,
    .stories-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .latest-insights-section,
    .success-stories-section {
        padding: 40px 0;
    }
    
    .insights-header .section-title,
    .stories-header .section-title {
        font-size: 1.8rem;
    }
    
    .insights-header .section-description,
    .stories-header .section-description {
        font-size: 1rem;
    }
    
    .insights-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .insight-card,
    .story-card {
        padding: 25px;
    }
    
    .insight-visual,
    .story-visual {
        height: 180px;
    }
    
    .insight-stats,
    .story-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .insights-cta,
    .stories-cta {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .insights-header .section-title,
    .stories-header .section-title {
        font-size: 1.5rem;
    }
    
    .insight-card,
    .story-card {
        padding: 20px;
    }
    
    .insight-visual,
    .story-visual {
        height: 160px;
    }
    
    .insight-title,
    .story-title {
        font-size: 1.1rem;
    }
} 

/* === NEW TWO-COLUMN LAYOUT STYLES === */

/* Insights Section Layout */
.insights-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.insights-content {
    text-align: left;
}

.insights-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.insights-content .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.insights-content .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.insights-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.insights-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.insights-features .feature-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insights-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.insights-features .feature-card:hover::before {
    opacity: 1;
}

.insights-features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.2);
}



/* Enhanced Visual Elements for Insights Cards */
.insights-features .card-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.insights-features .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
}

.insights-features .floating-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.insights-features .floating-particle.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.insights-features .floating-particle.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.insights-features .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 4s infinite ease-in-out;
}

.insights-features .feature-icon {
    position: relative;
    z-index: 2;
}

.insights-features .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: iconGlow 3s infinite ease-in-out;
}

.insights-features .progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
    animation: progressGlow 2s infinite ease-in-out;
}

/* Complex Visual Analytics for Insights Cards */
.insights-features .card-visual-analytics {
    position: relative;
    height: 120px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
    margin-bottom: 0;
}

.insights-features .ai-brain-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.insights-features .brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.insights-features .ai-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.insights-features .brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: brainPulse 2s infinite ease-in-out;
}

.insights-features .brain-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: brainGlow 3s infinite ease-in-out;
}

.insights-features .neuron-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .neuron {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    animation: neuronPulse 2s infinite ease-in-out;
}

.insights-features .neuron-1 { top: 20%; left: 20%; animation-delay: 0s; }
.insights-features .neuron-2 { top: 30%; right: 25%; animation-delay: 0.3s; }
.insights-features .neuron-3 { bottom: 25%; left: 30%; animation-delay: 0.6s; }
.insights-features .neuron-4 { bottom: 35%; right: 20%; animation-delay: 0.9s; }
.insights-features .neuron-5 { top: 50%; left: 10%; animation-delay: 1.2s; }
.insights-features .neuron-6 { top: 60%; right: 15%; animation-delay: 1.5s; }
.insights-features .neuron-7 { bottom: 15%; left: 50%; animation-delay: 1.8s; }
.insights-features .neuron-8 { top: 15%; right: 40%; animation-delay: 2.1s; }

.insights-features .synapse-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .synapse {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), transparent);
    animation: synapseFlow 3s infinite ease-in-out;
}

.insights-features .synapse-1 { top: 25%; left: 25%; width: 60px; transform: rotate(45deg); animation-delay: 0s; }
.insights-features .synapse-2 { top: 40%; right: 30%; width: 50px; transform: rotate(-30deg); animation-delay: 0.5s; }
.insights-features .synapse-3 { bottom: 30%; left: 35%; width: 70px; transform: rotate(60deg); animation-delay: 1s; }
.insights-features .synapse-4 { bottom: 45%; right: 25%; width: 45px; transform: rotate(-45deg); animation-delay: 1.5s; }
.insights-features .synapse-5 { top: 55%; left: 15%; width: 55px; transform: rotate(15deg); animation-delay: 2s; }
.insights-features .synapse-6 { top: 70%; right: 20%; width: 65px; transform: rotate(-60deg); animation-delay: 2.5s; }

.insights-features .data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: dataFlow 4s infinite linear;
}

.insights-features .data-1 { top: 10%; left: 10%; animation-delay: 0s; }
.insights-features .data-2 { top: 20%; right: 15%; animation-delay: 1s; }
.insights-features .data-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.insights-features .data-4 { bottom: 30%; right: 10%; animation-delay: 3s; }

/* Threat Map Visual Analytics */
.insights-features .threat-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.insights-features .map-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    z-index: 2;
}

.insights-features .global-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.insights-features .globe-surface {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.insights-features .threat-globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: globeRotate 20s infinite linear;
}

.insights-features .threat-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .threat-point {
    position: absolute;
    width: 8px;
    height: 8px;
}

.insights-features .threat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.6), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: threatPulse 2s infinite ease-in-out;
}

.insights-features .threat-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.insights-features .threat-1 { top: 20%; left: 30%; animation-delay: 0s; }
.insights-features .threat-2 { top: 40%; right: 25%; animation-delay: 0.4s; }
.insights-features .threat-3 { bottom: 30%; left: 40%; animation-delay: 0.8s; }
.insights-features .threat-4 { bottom: 50%; right: 35%; animation-delay: 1.2s; }
.insights-features .threat-5 { top: 60%; left: 20%; animation-delay: 1.6s; }

.insights-features .threat-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .threat-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
    animation: threatFlow 3s infinite ease-in-out;
}

.insights-features .line-1 { top: 30%; left: 20%; width: 80px; transform: rotate(30deg); animation-delay: 0s; }
.insights-features .line-2 { top: 50%; right: 20%; width: 60px; transform: rotate(-45deg); animation-delay: 1s; }
.insights-features .line-3 { bottom: 40%; left: 30%; width: 70px; transform: rotate(60deg); animation-delay: 2s; }

.insights-features .threat-security-shield {
    position: absolute;
    top: 35%;
    left: 46%;
    transform: translate(-50%, -50%);
}

.insights-features .threat-security-shield i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: shieldGlow 2s ease-in-out infinite;
    color: white;
    font-size: 16px;
}

/* Automation Visual Analytics */
.insights-features .automation-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.insights-features .automation-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.insights-features .automation-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.insights-features .core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: corePulse 2s infinite ease-in-out;
}

.insights-features .core-rotation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: coreRotate 4s infinite linear;
}

.insights-features .automation-gears {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .gear {
    position: absolute;
    width: 20px;
    height: 20px;
    color: rgba(99, 102, 241, 0.6);
    animation: gearRotate 6s infinite linear;
}

.insights-features .gear-1 { top: 10%; left: 20%; animation-delay: 0s; }
.insights-features .gear-2 { top: 20%; right: 15%; animation-delay: 2s; }
.insights-features .gear-3 { bottom: 15%; left: 30%; animation-delay: 4s; }

.insights-features .gear i {
    font-size: 1rem;
}

.insights-features .automation-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.insights-features .flow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: flowMove 3s infinite linear;
}

.insights-features .flow-1 { top: 15%; left: 10%; animation-delay: 0s; }
.insights-features .flow-2 { top: 25%; right: 20%; animation-delay: 1s; }
.insights-features .flow-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.insights-features .flow-4 { bottom: 35%; right: 10%; animation-delay: 3s; }

.insights-features .automation-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.insights-features .automation-status .status-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
}

.insights-features .automation-status .status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 2s infinite;
}

.insights-features .automation-status .status-text {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
}

.insights-features .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.insights-features .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.insights-features .card-content {
    padding: 1.5rem;
}

.insights-features .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.insights-features .feature-icon-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.insights-features .feature-icon-right:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.insights-features .feature-icon-right i {
    color: white;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.insights-features .feature-icon-right .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s infinite ease-in-out;
}

.insights-features .feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: left;
}

.insights-features .feature-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.insights-features .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.insights-features .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.insights-features .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Visual Elements for Insights */
.insights-features .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.insights-features .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 2px;
    transition: width 0.8s ease;
}

.insights-features .speed-indicator {
    display: flex;
    gap: 2px;
    margin-top: 0.5rem;
}

.insights-features .speed-dot {
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.insights-features .speed-dot.active {
    background: #6366f1;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

.insights-features .mini-chart {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 20px;
    margin-top: 0.5rem;
}

.insights-features .chart-bar {
    width: 4px;
    background: linear-gradient(to top, #6366f1, #3b82f6);
    border-radius: 2px;
    transition: height 0.6s ease;
}

.insights-features .status-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.5rem;
}

.insights-features .status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.insights-features .status-text {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
}

.insights-features .pulse-indicator {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 0.5rem;
}

.insights-features .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #6366f1;
    border-radius: 50%;
    animation: pulseRing 1.5s infinite;
}

.insights-features .pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.insights-features .pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

/* Success Stories Section Layout */
.stories-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.stories-content {
    text-align: left;
}

.stories-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.stories-content .section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stories-content .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.stories-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.stories-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.stories-features .feature-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stories-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.stories-features .feature-card:hover::before {
    opacity: 1;
}

.stories-features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.2);
}

/* Enhanced Visual Elements for Success Stories Cards */
.stories-features .card-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.stories-features .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
}

.stories-features .floating-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.stories-features .floating-particle.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.stories-features .floating-particle.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.stories-features .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 4s infinite ease-in-out;
}

.stories-features .feature-icon {
    position: relative;
    z-index: 2;
}

.stories-features .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: iconGlow 3s infinite ease-in-out;
}

/* Complex Visual Analytics for Success Stories Cards */
.stories-features .card-visual-analytics {
    position: relative;
    height: 120px;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
    margin-bottom: 0;
}

/* Attack Scenario Visual Analytics */
.stories-features .attack-scenario {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-features .attack-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stories-features .wave {
    position: absolute;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: waveExpand 3s infinite ease-out;
}

.stories-features .wave-1 {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.stories-features .wave-2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.stories-features .wave-3 {
    width: 80px;
    height: 80px;
    animation-delay: 2s;
}

.stories-features .attack-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stories-features .attack-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    animation: attackFlow 4s infinite linear;
}

.stories-features .particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.stories-features .particle-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.stories-features .particle-3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.stories-features .particle-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.stories-features .particle-5 { top: 60%; left: 15%; animation-delay: 2s; }
.stories-features .particle-6 { top: 70%; right: 20%; animation-delay: 2.5s; }

.stories-features .defense-shield {
    position: absolute;
    top: 65%;
    left: 54.5%;
    transform: translate(-50%, -50%);
}

.stories-features .defense-shield i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: shieldGlow 2s ease-in-out infinite;
    color: white;
    font-size: 18px;
}



.stories-features .defense-shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8), rgba(99, 102, 241, 0.3));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldGlow 2s infinite ease-in-out;
}

.stories-features .defense-shield-core i {
    color: white;
    font-size: 0.8rem;
}

.stories-features .attack-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.stories-features .stat-display {
    text-align: center;
}

.stories-features .stat-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
}

.stories-features .defense-stats .stat-value {
    color: #6366f1;
}

.stories-features .attack-stat-label {
    font-size: 0.6rem;
    color: rgba(239, 68, 68, 0.7);
    font-weight: 500;
    text-transform: uppercase;
}

/* Performance Dashboard Visual Analytics */
.stories-features .performance-dashboard {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.stories-features .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stories-features .dashboard-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stories-features .dashboard-status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stories-features .dashboard-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 2s infinite;
}

.stories-features .dashboard-status span {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
}

.stories-features .performance-charts {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.stories-features .chart {
    flex: 1;
    height: 40px;
    position: relative;
}

.stories-features .chart-1 {
    display: flex;
    align-items: end;
    gap: 2px;
}

.stories-features .chart-bar {
    flex: 1;
    background: linear-gradient(to top, #6366f1, #3b82f6);
    border-radius: 2px;
    animation: chartGrow 2s ease-out;
}

.stories-features .bar-1 { height: 60%; animation-delay: 0s; }
.stories-features .bar-2 { height: 80%; animation-delay: 0.2s; }
.stories-features .bar-3 { height: 40%; animation-delay: 0.4s; }
.stories-features .bar-4 { height: 90%; animation-delay: 0.6s; }
.stories-features .bar-5 { height: 70%; animation-delay: 0.8s; }

.stories-features .chart-2 {
    position: relative;
}

.stories-features .chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    animation: chartLine 3s ease-out;
}

.stories-features .chart-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stories-features .chart-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: pointPulse 2s infinite ease-in-out;
}

.stories-features .chart-point-1 { bottom: 20%; left: 10%; animation-delay: 0s; }
.stories-features .chart-point-2 { bottom: 40%; left: 30%; animation-delay: 0.5s; }
.stories-features .chart-point-3 { bottom: 60%; left: 50%; animation-delay: 1s; }
.stories-features .chart-point-4 { bottom: 80%; left: 70%; animation-delay: 1.5s; }
.stories-features .chart-point-5 { bottom: 30%; left: 90%; animation-delay: 2s; }

.stories-features .performance-metrics {
    text-align: center;
}

.stories-features .metric-display {
    text-align: center;
}

.stories-features .metric-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6366f1;
    line-height: 1.2;
    margin-bottom: 2px;
}

.stories-features .dashboard-metric-label {
    font-size: 0.55rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}

/* AI Defense Visual Analytics */
.stories-features .ai-defense-scenario {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-features .defense-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stories-features .defense-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: defenseFlow 4s infinite linear;
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.6);
}

.stories-features .defense-particle.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.stories-features .defense-particle.particle-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.stories-features .defense-particle.particle-3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.stories-features .defense-particle.particle-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.stories-features .defense-particle.particle-5 { top: 60%; left: 15%; animation-delay: 2s; }
.stories-features .defense-particle.particle-6 { top: 70%; right: 20%; animation-delay: 2.5s; }

.stories-features .defense-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.stories-features .defense-stat-label {
    font-size: 0.6rem;
    color: rgba(99, 102, 241, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Threat Timeline Visual Analytics */
.stories-features .threat-timeline {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.stories-features .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stories-features .timeline-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stories-features .timeline-scale {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stories-features .timeline-events {
    position: relative;
    height: 60px;
    margin-bottom: 10px;
}

.stories-features .timeline-events::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-50%);
}

.stories-features .event {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 20%;
}

.stories-features .event:nth-child(1) { left: 0%; }
.stories-features .event:nth-child(2) { left: 33%; }
.stories-features .event:nth-child(3) { left: 66%; }
.stories-features .event:nth-child(4) { left: 100%; }

.stories-features .event-time {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.stories-features .event-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    margin: 0 auto 6px;
    animation: eventPulse 2s infinite ease-in-out;
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.3);
}

.stories-features .event-label {
    font-size: 0.55rem;
    color: var(--text-secondary);
    line-height: 1.3;
    font-weight: 400;
}

.stories-features .threat-stats {
    text-align: center;
}

.stories-features .threat-stat {
    text-align: center;
}

.stories-features .threat-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
}

.stories-features .threat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
}

.stories-features .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.stories-features .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stories-features .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.stories-features .card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 3;
}

.stories-features .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
    position: relative;
}

.stories-features .feature-icon-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stories-features .feature-icon-right:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.stories-features .feature-icon-right i {
    color: white;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.stories-features .feature-icon-right .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s infinite ease-in-out;
}

.stories-features .feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.stories-features .feature-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.stories-features .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stories-features .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stories-features .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Visual Elements for Success Stories */
.stories-features .shield-indicator {
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 0.5rem;
}

.stories-features .shield-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #6366f1;
    border-radius: 50%;
    opacity: 0.3;
}

.stories-features .shield-layer:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    opacity: 0.5;
}

.stories-features .shield-layer:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    opacity: 0.7;
}

.stories-features .countdown-indicator {
    display: flex;
    gap: 2px;
    margin-top: 0.5rem;
}

.stories-features .countdown-segment {
    width: 4px;
    height: 12px;
    background: #6366f1;
    border-radius: 2px;
    animation: countdown 3s infinite;
}

.stories-features .countdown-segment:nth-child(2) { animation-delay: 0.6s; }
.stories-features .countdown-segment:nth-child(3) { animation-delay: 1.2s; }
.stories-features .countdown-segment:nth-child(4) { animation-delay: 1.8s; }
.stories-features .countdown-segment:nth-child(5) { animation-delay: 2.4s; }

.stories-features .performance-gauge {
    position: relative;
    width: 24px;
    height: 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.stories-features .gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 6px;
    transition: width 0.8s ease;
}

.stories-features .gauge-needle {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 2px;
    height: 8px;
    background: #6366f1;
    transform: translateY(-50%);
    border-radius: 1px;
}

.stories-features .speed-meter {
    display: flex;
    gap: 2px;
    margin-top: 0.5rem;
}

.stories-features .meter-dot {
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stories-features .meter-dot.active {
    background: #6366f1;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

.stories-features .threat-counter {
    display: flex;
    gap: 2px;
    margin-top: 0.5rem;
}

.stories-features .counter-dot {
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    animation: threatBlink 1s infinite;
}

.stories-features .counter-dot:nth-child(2) { animation-delay: 0.2s; }
.stories-features .counter-dot:nth-child(3) { animation-delay: 0.4s; }
.stories-features .counter-dot:nth-child(4) { animation-delay: 0.6s; }
.stories-features .counter-dot:nth-child(5) { animation-delay: 0.8s; }

.stories-features .timeline-indicator {
    position: relative;
    width: 24px;
    height: 12px;
    margin-top: 0.5rem;
}

.stories-features .timeline-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.stories-features .timeline-point.active {
    background: #6366f1;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

.stories-features .timeline-point:first-child {
    left: 0;
}

.stories-features .timeline-point.active {
    right: 0;
}

.stories-features .timeline-line {
    position: absolute;
    top: 50%;
    left: 3px;
    right: 3px;
    height: 2px;
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-50%);
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-layout,
    .stories-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .insights-content,
    .stories-content {
        padding-right: 0;
        text-align: center;
    }
    
    .insights-content .section-title,
    .stories-content .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .insights-layout,
    .stories-layout {
        padding: 2rem 1rem;
    }
    
    .insights-content .section-title,
    .stories-content .section-title {
        font-size: 1.75rem;
    }
    
    .insights-content .section-description,
    .stories-content .section-description {
        font-size: 1rem;
    }
    
    .insights-features .feature-card,
    .stories-features .feature-card {
        padding: 1.25rem;
    }
}

/* Animations for Visual Elements */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes countdown {
    0%, 80%, 100% { opacity: 1; }
    40% { opacity: 0.3; }
}

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

/* Enhanced Animation Keyframes */
@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

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

/* Enhanced Features Section - Enterprise Security Built for Scale */
.features-grid .feature-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.features-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.features-grid .feature-card:hover::before {
    opacity: 1;
}

.features-grid .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.2);
}

/* Animated Background */
.features-grid .card-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.features-grid .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 6s ease-in-out infinite;
}

.features-grid .floating-particle.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.features-grid .floating-particle.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.features-grid .floating-particle.particle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.features-grid .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Visual Analytics */
.features-grid .card-visual-analytics {
    position: relative;
    height: 120px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
    margin-bottom: 0;
}

/* DDoS Protection Visual Analytics */
.features-grid .ddos-protection-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.features-grid .attack-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-grid .wave {
    position: absolute;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.features-grid .wave-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.features-grid .wave-2 {
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

.features-grid .wave-3 {
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.features-grid .protection-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-grid .shield-core {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: shieldGlow 2s ease-in-out infinite;
}

.features-grid .shield-core i {
    color: white;
    font-size: 18px;
}



.features-grid .threat-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.features-grid .threat-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: threatBlink 2s ease-in-out infinite;
}

.features-grid .dot-1 { top: 20%; left: 20%; animation-delay: 0s; }
.features-grid .dot-2 { top: 30%; right: 25%; animation-delay: 0.5s; }
.features-grid .dot-3 { bottom: 25%; left: 30%; animation-delay: 1s; }
.features-grid .dot-4 { bottom: 35%; right: 20%; animation-delay: 1.5s; }

/* Global CDN Visual Analytics */
.features-grid .cdn-network-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.features-grid .network-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.features-grid .globe-surface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    animation: globeRotate 10s linear infinite;
}

.features-grid .cdn-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: gridMove 8s linear infinite;
}

.features-grid .cdn-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.features-grid .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: pointPulse 3s ease-in-out infinite;
}

.features-grid .node-1 { top: 15%; left: 25%; animation-delay: 0s; }
.features-grid .node-2 { top: 35%; right: 20%; animation-delay: 0.5s; }
.features-grid .node-3 { bottom: 20%; left: 35%; animation-delay: 1s; }
.features-grid .node-4 { bottom: 40%; right: 30%; animation-delay: 1.5s; }
.features-grid .node-5 { top: 55%; left: 15%; animation-delay: 2s; }
.features-grid .node-6 { top: 65%; right: 25%; animation-delay: 2.5s; }

.features-grid .data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}



/* WAF Protection Visual Analytics */
.features-grid .waf-traffic-flow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.features-grid .traffic-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.features-grid .customer-node {
    top: 20%;
    left: 10%;
}

.features-grid .cloud-server-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-grid .origin-server-node {
    top: 20%;
    right: 10%;
}

.features-grid .node-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    animation: shieldGlow 2s ease-in-out infinite;
}

.features-grid .node-icon i {
    color: white;
    font-size: 16px;
}

.features-grid .node-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.features-grid .traffic-flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Red dots (threats) flowing to cloud server */
.features-grid .threat-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    animation: threatFlowToCloud 1.2s linear infinite;
}

.features-grid .threat-particle.threat-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.features-grid .threat-particle.threat-2 {
    top: 40%;
    left: 25%;
    animation-delay: 0.8s;
}

.features-grid .threat-particle.threat-3 {
    top: 55%;
    left: 35%;
    animation-delay: 1.6s;
}

/* Green dots (clean traffic) flowing to cloud server */
.features-grid .clean-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: cleanFlowToCloud 1s linear infinite;
}

.features-grid .clean-particle.clean-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0.2s;
}

.features-grid .clean-particle.clean-2 {
    top: 35%;
    left: 30%;
    animation-delay: 1s;
}

.features-grid .clean-particle.clean-3 {
    top: 50%;
    left: 40%;
    animation-delay: 1.8s;
}

.features-grid .clean-particle.clean-4 {
    top: 65%;
    left: 50%;
    animation-delay: 2.6s;
}

/* Green dots (filtered traffic) flowing from cloud to origin server */
.features-grid .filtered-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: filteredFlowToOrigin 1.2s linear infinite;
}

.features-grid .filtered-particle.filtered-1 {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
}

.features-grid .filtered-particle.filtered-2 {
    top: 40%;
    right: 35%;
    animation-delay: 1.3s;
}

.features-grid .filtered-particle.filtered-3 {
    top: 55%;
    right: 45%;
    animation-delay: 2.1s;
}

/* Content Section */
.features-grid .card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 3;
}

.features-grid .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
    position: relative;
}

.features-grid .feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.features-grid .feature-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.features-grid .stat-item {
    text-align: center;
    flex: 1;
}

.features-grid .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.features-grid .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .features-grid .card-visual-analytics {
        height: 100px;
    }
    
    .features-grid .feature-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .features-grid .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .features-grid .stat-value {
        font-size: 1rem;
    }
    
    .features-grid .stat-label {
        font-size: 0.7rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES FOR SERVICES PAGE
   ============================================ */

/* Hero Section - Mobile */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px 40px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        height: 460px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .globe-container {
        width: 380px;
        height: 380px;
    }
    
    .globe {
        width: 320px;
        height: 320px;
    }
    
    .globe-sphere {
        width: 300px;
        height: 300px;
    }
    
    .data-point {
        width: 24px;
        height: 24px;
    }
    
    .data-point .point-dot {
        width: 10px;
        height: 10px;
    }
    
    .data-point .point-pulse {
        width: 24px;
        height: 24px;
    }
    
    .security-overlay {
        width: 240px;
        height: auto;
        bottom: 8%;
    }
    
    .security-shield {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .security-stats {
        gap: 10px;
        margin-top: 6px;
    }
    
    .security-stats .stat-item {
        gap: 1px;
    }
    
    .security-stats .stat-item:first-child {
        margin-left: 12px;
    }
    
    .security-stats .stat-number {
        font-size: 0.85rem;
    }
    
    .security-stats .stat-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 50px 16px 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .globe-container {
        width: 340px;
        height: 340px;
    }
    
    .globe {
        width: 280px;
        height: 280px;
    }
    
    .globe-sphere {
        width: 260px;
        height: 260px;
    }
    
    .data-point {
        width: 20px;
        height: 20px;
    }
    
    .data-point .point-dot {
        width: 8px;
        height: 8px;
    }
    
    .data-point .point-pulse {
        width: 20px;
        height: 20px;
    }
    
    .security-overlay {
        width: 200px;
        height: auto;
        bottom: 10%;
    }
    
    .security-stats {
        gap: 8px;
        margin-top: 4px;
    }
    
    .security-stats .stat-item {
        gap: 1px;
    }
    
    .security-stats .stat-item:first-child {
        margin-left: 10px;
    }
    
    .security-stats .stat-number {
        font-size: 0.75rem;
    }
    
    .security-stats .stat-label {
        font-size: 0.5rem;
    }
    
    .security-shield {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Shield Network Section - Mobile */
@media (max-width: 768px) {
    .shield-network {
        padding: 60px 0;
    }
    
    .shield-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .shield-text {
        text-align: center;
        order: 1;
    }
    
    .shield-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .shield-text .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .shield-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .shield-cta .btn-primary,
    .shield-cta .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .shield-visual {
        order: 2;
        min-height: 400px;
        padding: 20px 0;
    }
    
    .flow-container {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 15px;
        min-height: 400px;
        max-width: 100%;
        overflow: visible;
    }
    
    .user-devices {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        align-items: center;
    }
    
    .device {
        max-width: 90px;
        padding: 10px;
    }
    
    .device-icon .icon-image {
        width: 50px;
        height: 50px;
    }
    
    .device-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .device-status {
        font-size: 0.65rem;
    }
    
    .security-gateway {
        order: 0;
        margin: 0;
    }
    
    .gateway-shield {
        width: 70px;
        height: 70px;
    }
    
    .gateway-label {
        font-size: 0.65rem;
        margin-top: 5px;
    }
    
    .applications {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        align-items: center;
        order: 0;
    }
    
    .app-card {
        max-width: 90px;
        padding: 10px;
    }
    
    .app-icon .icon-image {
        width: 50px;
        height: 50px;
    }
    
    .app-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .app-status {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .shield-network {
        padding: 40px 0;
    }
    
    .shield-content {
        padding: 0 16px;
        gap: 30px;
    }
    
    .shield-text h2 {
        font-size: 28px;
    }
    
    .shield-text .section-description {
        font-size: 14px;
    }
    
    .shield-visual {
        min-height: 380px;
    }
    
    .flow-container {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 12px;
        min-height: 380px;
        max-width: 100%;
        overflow: visible;
    }
    
    .user-devices {
        gap: 12px;
    }
    
    .device {
        max-width: 80px;
        padding: 8px;
    }
    
    .device-icon .icon-image {
        width: 45px;
        height: 45px;
    }
    
    .device-label {
        font-size: 0.65rem;
    }
    
    .device-status {
        font-size: 0.6rem;
    }
    
    .applications {
        gap: 12px;
    }
    
    .app-card {
        max-width: 80px;
        padding: 8px;
    }
    
    .app-icon .icon-image {
        width: 45px;
        height: 45px;
    }
    
    .app-label {
        font-size: 0.65rem;
    }
    
    .app-status {
        font-size: 0.6rem;
    }
    
    .gateway-shield {
        width: 60px;
        height: 60px;
    }
    
    .gateway-label {
        font-size: 0.6rem;
    }
}

/* Rocket Performance Section - Mobile */
@media (max-width: 768px) {
    .rocket-performance {
        padding: 60px 0;
    }
    
    .rocket-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .rocket-text {
        text-align: center;
        order: 1;
    }
    
    .rocket-text .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .rocket-text .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .rocket-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .rocket-cta .btn-primary,
    .rocket-cta .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .rocket-visual {
        order: 2;
        height: 350px;
    }
    
    .rocket-container {
        width: 250px;
        height: 350px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .rocket {
        order: 2;
        margin-top: 20px;
        position: relative;
    }
    
    .rocket-body {
        width: 200px;
        height: 300px;
        font-size: 80px;
        transform: rotate(-45deg);
    }
    
    /* Hide original ignition on mobile */
    .rocket .rocket-fire {
        display: none !important;
    }
    
    /* Mobile Ignition below Rocket */
    .mobile-ignition {
        position: absolute;
        top: 250px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 70px;
        z-index: 4;
        display: block;
    }
    
    .mobile-ignition .fire-particle {
        position: absolute;
        width: 6px;
        height: 16px;
        background: linear-gradient(to top, #ff6b35, #f7931e, #ffd700);
        border-radius: 50% 50% 0 0;
        animation: fireBurn 0.8s ease-in-out infinite;
    }
    
    .mobile-ignition .fire-1 { left: 8px; top: 0; animation-delay: 0s; }
    .mobile-ignition .fire-2 { left: 16px; top: 0; animation-delay: 0.1s; }
    .mobile-ignition .fire-3 { left: 24px; top: 0; animation-delay: 0.2s; }
    .mobile-ignition .fire-4 { left: 32px; top: 0; animation-delay: 0.3s; }
    .mobile-ignition .fire-5 { left: 12px; top: 10px; animation-delay: 0.4s; }
    .mobile-ignition .fire-6 { left: 20px; top: 10px; animation-delay: 0.5s; }
    .mobile-ignition .fire-7 { left: 28px; top: 10px; animation-delay: 0.6s; }
    .mobile-ignition .fire-8 { left: 36px; top: 10px; animation-delay: 0.7s; }
    
    .fire-particle {
        width: 6px;
        height: 16px;
    }
    
    .fire-1 { left: 8px; }
    .fire-2 { left: 16px; }
    .fire-3 { left: 24px; }
    .fire-4 { left: 32px; }
    .fire-5 { left: 12px; }
    .fire-6 { left: 20px; }
    .fire-7 { left: 28px; }
    .fire-8 { left: 36px; }
    
    .rocket-trail {
        top: 60%;
        width: 150px;
        height: 150px;
    }
    
    .performance-dots {
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .rocket-performance {
        padding: 40px 0;
    }
    
    .rocket-content {
        padding: 0 16px;
        gap: 30px;
    }
    
    .rocket-text .section-title {
        font-size: 28px;
    }
    
    .rocket-text .section-description {
        font-size: 14px;
    }
    
    .rocket-visual {
        height: 300px;
    }
    
    .rocket-container {
        width: 220px;
        height: 300px;
        padding-top: 0;
    }
    
    .rocket {
        margin-top: 15px;
        position: relative;
    }
    
    .rocket-body {
        width: 180px;
        height: 260px;
        font-size: 70px;
    }
    
    .rocket .rocket-fire {
        display: none !important;
    }
    
    .mobile-ignition {
        top: 220px;
        width: 45px;
        height: 60px;
    }
    
    .mobile-ignition .fire-particle {
        width: 5px;
        height: 14px;
    }
    
    .mobile-ignition .fire-1 { left: 6px; }
    .mobile-ignition .fire-2 { left: 12px; }
    .mobile-ignition .fire-3 { left: 18px; }
    .mobile-ignition .fire-4 { left: 24px; }
    .mobile-ignition .fire-5 { left: 9px; top: 8px; }
    .mobile-ignition .fire-6 { left: 15px; top: 8px; }
    .mobile-ignition .fire-7 { left: 21px; top: 8px; }
    .mobile-ignition .fire-8 { left: 27px; top: 8px; }
    
    .fire-particle {
        width: 5px;
        height: 14px;
    }
    
    .rocket-trail {
        width: 130px;
        height: 130px;
    }
}

/* Firewall Flow Section - Mobile */
@media (max-width: 768px) {
    .firewall-flow-section {
        padding: 60px 0;
    }
    
    .firewall-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .firewall-text {
        text-align: center;
        order: 1;
    }
    
    .firewall-text .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .firewall-text .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .firewall-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .firewall-cta .btn-primary,
    .firewall-cta .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .firewall-visual {
        order: 2;
        height: 300px;
    }
    
    .firewall-flow-container {
        height: 100%;
    }
    
    .firewall-flow-node {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .firewall-node-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        flex-shrink: 0;
    }
    
    .firewall-node-label {
        font-size: 12px;
        text-align: center;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .firewall-flow-section {
        padding: 40px 0;
    }
    
    .firewall-content {
        padding: 0 16px;
        gap: 30px;
    }
    
    .firewall-text .section-title {
        font-size: 28px;
    }
    
    .firewall-text .section-description {
        font-size: 14px;
    }
    
    .firewall-visual {
        height: 250px;
    }
    
    .firewall-flow-node {
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .firewall-node-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        flex-shrink: 0;
    }
    
    .firewall-node-label {
        font-size: 11px;
        text-align: center;
        word-wrap: break-word;
    }
}

/* Enterprise Security Section - Mobile */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .features-content {
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .features-content .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid .card-visual-analytics {
        height: 120px;
    }
    
    .features-grid .card-content {
        padding: 1.25rem;
    }
    
    .features-grid .feature-title {
        font-size: 1.1rem;
    }
    
    .features-grid .feature-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 40px 0;
    }
    
    .features-container {
        padding: 0 16px;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .features-grid .card-visual-analytics {
        height: 100px;
    }
    
    .features-grid .card-content {
        padding: 1rem;
    }
    
    .features-grid .feature-title {
        font-size: 1rem;
    }
    
    .features-grid .feature-description {
        font-size: 0.85rem;
    }
}

/* Latest Insights Section - Mobile */
@media (max-width: 768px) {
    .latest-insights-section {
        padding: 60px 0;
    }
    
    .insights-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .insights-content {
        text-align: center;
    }
    
    .insights-content .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .insights-content .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .insights-content .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .insights-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .insights-features .card-visual-analytics {
        height: 120px;
    }
    
    .insights-features .card-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .latest-insights-section {
        padding: 40px 0;
    }
    
    .insights-layout {
        padding: 0 16px;
        gap: 30px;
    }
    
    .insights-content .section-title {
        font-size: 28px;
    }
    
    .insights-content .section-description {
        font-size: 14px;
    }
    
    .insights-features {
        gap: 20px;
    }
    
    .insights-features .card-visual-analytics {
        height: 100px;
    }
    
    .insights-features .card-content {
        padding: 1rem;
    }
}

/* Success Stories Section - Mobile */
@media (max-width: 768px) {
    .success-stories-section {
        padding: 60px 0;
    }
    
    .stories-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .stories-content {
        text-align: center;
    }
    
    .stories-content .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .stories-content .section-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .stories-content .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stories-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stories-features .card-visual-analytics {
        height: 120px;
    }
    
    .stories-features .card-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .success-stories-section {
        padding: 40px 0;
    }
    
    .stories-layout {
        padding: 0 16px;
        gap: 30px;
    }
    
    .stories-content .section-title {
        font-size: 28px;
    }
    
    .stories-content .section-description {
        font-size: 14px;
    }
    
    .stories-features {
        gap: 20px;
    }
    
    .stories-features .card-visual-analytics {
        height: 100px;
    }
    
    .stories-features .card-content {
        padding: 1rem;
    }
}

/* Global Services Section - Mobile */
@media (max-width: 768px) {
    .global-services-section {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .global-services-section {
        padding: 40px 0;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-container {
        padding: 0 16px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 14px;
    }
}

/* Help Section - Mobile */
@media (max-width: 768px) {
    .help-section {
        padding: 60px 0;
    }
    
    .help-container {
        padding: 0 20px;
    }
    
    .help-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .help-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 40px 0;
    }
    
    .help-container {
        padding: 0 16px;
    }
    
    .help-content h2 {
        font-size: 28px;
    }
    
    .help-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-grid .card-content {
        padding: 1rem;
    }
    
    .features-grid .feature-title {
        font-size: 1.1rem;
    }
    
    .features-grid .feature-description {
        font-size: 0.9rem;
    }
}

/* Traffic Flow Animation */
@keyframes trafficFlow {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 1;
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateX(40px) translateY(-5px);
    }
    75% {
        opacity: 1;
        transform: translateX(60px) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(80px) translateY(5px);
    }
}

/* WAF Protection Traffic Flow Animations - Fast & Straight */
@keyframes threatFlowToCloud {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% {
        opacity: 1;
        transform: translateX(25px) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateX(75px) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100px) translateY(0);
    }
}

@keyframes cleanFlowToCloud {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    15% {
        opacity: 1;
        transform: translateX(30px) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(60px) translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateX(90px) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(120px) translateY(0);
    }
}

@keyframes filteredFlowToOrigin {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% {
        opacity: 1;
        transform: translateX(-25px) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50px) translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateX(-75px) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100px) translateY(0);
    }
}

/* Help Icons Animation Keyframes */
@keyframes iconParticle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes boltPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }
}

@keyframes shieldGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.05);
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
    75% {
        transform: scale(1.05);
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes scaleBalance {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

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

@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Resources dropdown specific styling */
.dropdown-resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown-resource-list li {
    margin-bottom: 0;
}

.dropdown-resource-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-resource-list a:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(2px);
}

/* Company dropdown specific styling */
.company-dropdown .dropdown-content {
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.company-dropdown .dropdown-section {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.company-dropdown .dropdown-section:last-child {
    border-bottom: none;
}

.company-dropdown .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.company-dropdown .dropdown-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.company-dropdown .dropdown-list li {
    margin-bottom: 0;
}

.company-dropdown .dropdown-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    text-align: left;
}

.company-dropdown .dropdown-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.company-dropdown .dropdown-item:hover {
    transform: translateY(-2px);
}

/* Dropdown arrow */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(99, 102, 241, 0.1);
}

/* ============================================
   TRAINING SECTION STYLES
   ============================================ */

/* Spinner Overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.spinner-container {
    text-align: center;
    position: relative;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgb(99 102 241 / 0.2);
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.spinner-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

.floating-message {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(99, 102, 241, 0.6), 0 0 30px rgba(99, 102, 241, 0.4);
    animation: floatUp 0.5s ease-out;
    white-space: nowrap;
    z-index: 10001;
    border: none;
    box-shadow: none;
}

.floating-message p {
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(99, 102, 241, 0.6), 0 0 30px rgba(99, 102, 241, 0.4);
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        filter: blur(0);
    }
}

.mobile-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 16px 20px;
    z-index: 10002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-warning-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-warning-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.mobile-warning-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mobile-warning-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Training Section */
.training-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Ensure training section is visible when shown */
.training-section[style*="display: block"],
.training-section:not([style*="display: none"]) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.training-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Training Header */
.training-header {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.training-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.training-text-left {
    padding-left: 40px;
    max-width: 600px;
}

.training-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    white-space: normal;
    word-wrap: break-word;
}

.training-main-title .title-line-1 {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    white-space: nowrap;
}

.training-main-title .title-line-2 {
    display: block;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
    white-space: nowrap;
}

.training-main-title .title-line-3 {
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.training-header-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Security Shield Container - Course Cards Positioning */
.security-shield-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Course Cards Positioning */
.course-cards-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.course-card-positioned {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 50%;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.course-card-positioned:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.course-card-vapt:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.course-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    overflow: hidden;
}

.course-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}

.course-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
    line-height: 1.2;
}

.course-card-level {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.course-card-badge {
    display: inline-block;
    padding: 3px 6px;
    background: linear-gradient(135deg, rgb(99 102 241 / 0.15), rgb(139 92 246 / 0.15));
    border: 1px solid rgb(99 102 241 / 0.3);
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    color: #6366f1;
    line-height: 1.2;
}

/* Position Cards - SOC L1 and L2 at top, VAPT at bottom */
.course-card-soc-l1 {
    top: 5%;
    left: 5%;
    right: auto;
    bottom: auto;
}

.course-card-soc-l2 {
    top: 5%;
    right: 5%;
    left: auto;
    bottom: auto;
}

.course-card-vapt {
    bottom: 5%;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
}

/* Connection Lines SVG */
.connection-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hide particles initially until JavaScript positions them */
/* Only apply to training section particles to avoid affecting other sections */
/* Only hide on mobile/tablet, not desktop */
@media (max-width: 1024px) {
    .training-section .security-shield-container .floating-particle {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Show particles after positioning (JavaScript will set visibility and opacity) */
    .training-section .security-shield-container .floating-particle.positioned {
        /* Visibility is controlled by JavaScript/inline styles - allow override */
        visibility: visible !important;
    }
    
    /* Allow inline styles to override opacity when positioned class is added */
    .training-section .security-shield-container .floating-particle.positioned[style*="opacity"] {
        opacity: inherit !important;
    }
    
    .training-section .security-shield-container .floating-particle.positioned[style*="visibility"] {
        visibility: inherit !important;
    }
}

/* On desktop, show particles with default animations (they use CSS keyframes) */
@media (min-width: 1025px) {
    .training-section .security-shield-container .floating-particle {
        /* Don't force hide on desktop - let default animations work */
        opacity: inherit !important;
        visibility: visible !important;
    }
    
    /* But still respect positioned class if set */
    .training-section .security-shield-container .floating-particle.positioned {
        opacity: inherit !important;
        visibility: visible !important;
    }
    
    /* Hide particle 1b and 1c on desktop (mobile-only variants) */
    .training-section .security-shield-container .floating-particle.particle-1b,
    .training-section .security-shield-container .floating-particle.particle-1c {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Particle 1 should be visible on desktop - allow default animations */
    .training-section .security-shield-container .floating-particle.particle-1 {
        /* Don't force hide - let default animations work */
        opacity: inherit !important;
        visibility: visible !important;
        display: block !important;
    }
}

/* Hide SVG lines initially until positioned (all screens) */
.training-section .security-shield-container .connection-line-svg line {
    opacity: 0 !important;
    visibility: hidden !important;
}

.training-section .security-shield-container .connection-line-svg line.positioned {
    opacity: inherit !important;
    visibility: visible !important;
}

/* On desktop, show lines immediately (they use CSS animations) */
@media (min-width: 1025px) {
    .training-section .security-shield-container .connection-line-svg line {
        opacity: inherit !important;
        visibility: visible !important;
    }
}

/* Show dotted line between SOC L1 and L2 on all screens */
.connection-line-svg .line-soc-l1-to-l2,
.connection-line-svg line:nth-child(1) {
    opacity: 0.6 !important;
    display: block !important;
    visibility: visible !important;
}

/* On mobile/tablet, make the line more visible */
@media (max-width: 768px) {
    .connection-line-svg .line-soc-l1-to-l2,
    .connection-line-svg line:nth-child(1) {
        opacity: 0.8 !important;
        stroke: #6366f1 !important;
        stroke-dasharray: 4, 4 !important;
    }
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 12px rgb(99 102 241 / 0.8);
    z-index: 2;
    transition: box-shadow 0.3s ease;
}

/* Glow effect for particles on mobile */
.floating-particle.glow-active {
    box-shadow: 0 0 20px rgb(99 102 241 / 1), 0 0 30px rgb(99 102 241 / 0.6), 0 0 40px rgb(99 102 241 / 0.3);
}

/* Animations for Training Header */
@keyframes floatToRight {
    0% {
        left: 165px;
        top: 95px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 335px;
        top: 95px;
        opacity: 0;
    }
}

@keyframes floatToBottomLeft {
    0% {
        left: 165px;
        top: 125px;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        left: 250px;
        top: 375px;
        opacity: 0;
    }
}

@keyframes floatToBottomRight {
    0% {
        left: 335px;
        top: 125px;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        left: 250px;
        top: 375px;
        opacity: 0;
    }
}

/* Mobile Animation Adjustments */
@media (max-width: 768px) {
    @keyframes floatToRightMobile {
        0% {
            left: 50%;
            transform: translateX(-50%) translateX(-60px);
            top: 5%;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(50%) translateX(60px);
            top: 5%;
            opacity: 0;
        }
    }

    @keyframes floatToBottomLeftMobile {
        0% {
            left: 50%;
            transform: translateX(-50%) translateX(-60px);
            top: 5%;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: 95%;
            opacity: 0;
        }
    }

    @keyframes floatToBottomRightMobile {
        0% {
            left: 50%;
            transform: translateX(50%) translateX(60px);
            top: 5%;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: 95%;
            opacity: 0;
        }
    }

    /* Bubbles will be positioned dynamically via JavaScript for mobile */
    /* CSS animations disabled - JavaScript calculates positions based on actual card positions */
    .floating-particle.particle-1,
    .floating-particle.particle-2,
    .floating-particle.particle-3 {
        /* Animation will be set dynamically by JavaScript */
    }

    /* SVG lines will be updated via JavaScript for mobile */
    .connection-line-svg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    @keyframes floatToRightMobileSmall {
        0% {
            left: 50%;
            transform: translateX(-50%) translateX(-50px);
            top: 5%;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(50%) translateX(50px);
            top: 5%;
            opacity: 0;
        }
    }

    @keyframes floatToBottomLeftMobileSmall {
        0% {
            left: 50%;
            transform: translateX(-50%) translateX(-50px);
            top: 5%;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: 95%;
            opacity: 0;
        }
    }

    @keyframes floatToBottomRightMobileSmall {
        0% {
            left: 50%;
            transform: translateX(50%) translateX(50px);
            top: 5%;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 50%;
            transform: translateX(-50%);
            top: 95%;
            opacity: 0;
        }
    }

    /* Bubbles will be positioned dynamically via JavaScript for small mobile */
    /* CSS animations disabled - JavaScript calculates positions based on actual card positions */
    .floating-particle.particle-1,
    .floating-particle.particle-2,
    .floating-particle.particle-3 {
        /* Animation will be set dynamically by JavaScript */
    }

    /* SVG lines will be updated via JavaScript for mobile */
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.courses-section .course-card {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.courses-section .course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.courses-section .course-card-image {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 0 !important;
}

.courses-section .course-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    display: block;
    margin: 0;
    padding: 0;
}

.courses-section .course-card:hover .course-image {
    transform: scale(1.05);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    opacity: 0.9;
}

.course-card-content {
    padding: 24px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgb(99 102 241 / 0.15), rgb(139 92 246 / 0.15));
    border: 1px solid rgb(99 102 241 / 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 16px;
}

.course-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.course-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.course-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 13px;
}

.course-feature-item i {
    color: rgb(34 197 94 / 0.8);
    font-size: 16px;
}

.course-btn {
    width: 100%;
    margin-top: auto;
}

/* Labs Section */
.labs-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.labs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.labs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.labs-features {
    margin: 32px 0;
}

.labs-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.labs-buttons .btn-primary,
.labs-buttons .btn-outline {
    flex: 1;
    min-width: 150px;
}

.labs-buttons #tryLabsBtn {
    background: rgb(99 102 241 / 0.1);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), 0 0 15px rgb(99 102 241 / 0.3);
}

.labs-buttons #tryLabsBtn:hover {
    background: rgb(99 102 241 / 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgb(99 102 241 / 0.4);
}

.labs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.labs-feature-item i {
    color: rgb(34 197 94 / 0.8);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.labs-visual-container {
    position: relative;
    height: 400px;
}

.browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    background: #f1f5f9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { 
    background: #ffbd2e; 
}

/* Yellow dot hiding rules removed - will fix later */
.dot-green { background: #27c93f; }

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.browser-content {
    padding: 20px;
    background: #000000;
    min-height: 300px;
    overflow: hidden;
}

.lab-screen {
    width: 100%;
    height: 100%;
}

.lab-terminal {
    font-family: 'Courier New', monospace;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    height: 260px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 10px;
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    word-wrap: break-word;
}

.terminal-line.visible {
    opacity: 1;
}

/* Hide scrollbar but keep functionality */
.lab-terminal::-webkit-scrollbar {
    width: 6px;
}

.lab-terminal::-webkit-scrollbar-track {
    background: #000000;
}

.lab-terminal::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 3px;
}

.lab-terminal::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

.terminal-prompt {
    color: #3b82f6;
    margin-right: 8px;
}

.terminal-prompt-root {
    color: #ef4444;
    margin-right: 8px;
}

.terminal-user {
    color: #00ff00;
    margin-right: 4px;
}

.terminal-text {
    color: #ffffff;
}

.terminal-output {
    color: #cccccc;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #ffffff;
    margin-left: 4px;
    animation: blink 1s infinite;
    opacity: 0;
}

.terminal-cursor.active {
    opacity: 1;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10000;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-modal-content {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    background: #000;
}

.video-modal-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 32px;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-play-button:active {
    transform: scale(0.95);
}

.video-play-button i {
    margin-left: 4px; /* Slight offset for better visual centering */
}

/* Trusted By Section */
.trusted-by-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.trusted-scroll-container {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}

.trusted-scroll-content {
    display: flex;
    gap: 60px;
    animation: scrollTrusted 30s linear infinite;
    white-space: nowrap;
}

.trusted-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.trusted-item img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.trusted-item:hover {
    transform: translateY(-2px);
}

.trusted-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@keyframes scrollTrusted {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333%));
    }
}

/* Collaboration Partners Carousel Section */
.collaboration-partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.partners-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.partners-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: calc(3 * 280px + 2 * 40px); /* 3 items + 2 gaps */
}

.partners-carousel-content {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.partner-item {
    flex-shrink: 0;
    width: 280px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

.partners-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.partners-arrow:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
    transform: scale(1.1);
}

.partners-arrow:active {
    transform: scale(0.95);
}

/* Partner Image Modal */
/* Partner Modal - No Scrolling, Fixed to Screen */
.partner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.partner-modal.active {
    display: flex !important;
}

.partner-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 100000;
    background: transparent;
}

.partner-modal-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-align: center;
}

.partner-modal-content img {
    max-width: 85vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: block !important;
    object-fit: contain;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 100002;
}

.partner-modal-content img[src=""] {
    display: none !important;
}

.partner-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100003;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.partner-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.partner-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partner-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .partner-modal-content {
        max-width: 90vw;
        max-height: 80vh;
    }
    
    .partner-modal-content img {
        max-width: 90vw;
        max-height: 80vh;
    }
}

/* Responsive Design for Partners Carousel */
@media (max-width: 1024px) {
    .partner-item {
        width: 240px;
        height: 140px;
    }
    
    .partners-carousel-container {
        max-width: calc(3 * 240px + 2 * 30px);
    }
    
    .partners-carousel-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .collaboration-partners-section {
        padding: 40px 0;
    }
    
    .partner-item {
        width: 200px;
        height: 120px;
        padding: 15px;
    }
    
    .partners-carousel-container {
        max-width: calc(2 * 200px + 1 * 30px); /* Show 2 items on tablet */
    }
    
    .partners-carousel-content {
        gap: 30px;
    }
    
    .partners-carousel-wrapper {
        padding: 0 20px;
        gap: 15px;
    }
    
    .partners-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .partner-item {
        width: 180px;
        height: 100px;
        padding: 12px;
    }
    
    .partners-carousel-container {
        max-width: calc(1 * 180px); /* Show 1 item on mobile */
    }
    
    .partners-carousel-content {
        gap: 20px;
    }
    
    .partners-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(99 102 241 / 0.08), transparent);
    transition: left 0.5s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.4);
}

.why-choose-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-choose-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Expert Instructors Card - Certifications Display */
.certifications-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.certifications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications-list li {
    font-size: 11px;
    color: var(--text-secondary);
    padding: 5px 8px;
    background: rgb(99 102 241 / 0.05);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

/* Instructors Section */
.instructors-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.instructors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.instructors-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.instructors-profile {
    margin-bottom: 60px;
}

.instructors-profile-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.instructors-profile-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
}

.instructors-certifications {
    margin-top: 50px;
}

.instructors-certifications-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    cursor: pointer;
}

.certification-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.certification-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 36px;
    position: relative;
    overflow: hidden;
}

.certification-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    padding: 8px;
    z-index: 1;
}

.certification-icon svg {
    color: #3b82f6;
    width: 36px;
    height: 36px;
}

/* Hide all icons when images are present */
.certification-icon img {
    display: block;
}

/* Hide all icons by default - only show fallback when image fails */
.certification-icon i {
    display: none !important;
}

/* Fallback icons - hidden by default, shown only when image fails */
.fallback-icon {
    display: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    z-index: 2;
    color: #3b82f6;
}

.fallback-icon[style*="display: flex"],
.fallback-icon[style*="display:flex"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* CEH - Padlock with circular outline */
.ceh-icon {
    border: 3px solid #3b82f6;
    background: transparent;
}

/* Hide all icons when images are present - using more specific selectors */
.certification-icon img ~ i:not(.fallback-icon),
.certification-icon:has(img) i:not(.fallback-icon) {
    display: none !important;
}

/* CND - Shield icon */
.cnd-icon {
    border: 3px solid #3b82f6;
    background: transparent;
}

/* CPENT - Spy/Hacker icon */
.cpent-icon {
    border: 3px solid #3b82f6;
    background: transparent;
}

/* LPT - Solid padlock */
.lpt-icon {
    border: 3px solid #3b82f6;
    background: transparent;
}

/* OSCP - Owl/Hood icon */
.oscp-icon {
    background: transparent;
}

/* Certification Tooltip */
.certification-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.certification-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.certification-item:hover .certification-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.certification-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.instructor-social a {
    width: 36px;
    height: 36px;
    background: rgb(99 102 241 / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    transition: all 0.3s ease;
}

.instructor-social a:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Training Section */
.testimonials-training-section {
    padding: 120px 0;
    position: relative;
    overflow: visible;
}

.testimonials-training-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-carousel-wrapper {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 40px 40px 100px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.testimonials-more-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 40px;
}

.btn-more-reviews {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-more-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5856eb, #7c3aed);
}

.btn-more-reviews:active {
    transform: translateY(0);
}

.testimonials-carousel-container {
    overflow: hidden;
    position: relative;
    margin: 50px 0;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 32px;
    overflow: visible;
}

.testimonial-training-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 0;
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, height 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 400px;
    margin: 0;
    will-change: transform, height;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid rgb(99 102 241 / 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.testimonial-arrow-left {
    left: 0;
}

.testimonial-arrow-right {
    right: 0;
}

.testimonial-training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(99 102 241 / 0.08), transparent);
    transition: left 0.5s;
}

.testimonial-training-card:hover::before {
    left: 100%;
}

.testimonial-training-card .testimonial-quote {
    margin-bottom: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-training-card .testimonial-quote i {
    color: rgb(99 102 241 / 0.8);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
    flex-shrink: 0;
}

.testimonial-training-card .testimonial-quote p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    max-height: 150px;
    transition: all 0.3s ease;
}

.testimonial-training-card:hover {
    height: auto !important;
    min-height: 400px;
    z-index: 10;
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
}

.testimonial-training-card:hover .testimonial-quote p {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-height: none !important;
}

.testimonial-training-card:hover .testimonial-author {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.testimonial-training-card .testimonial-author {
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.testimonial-tooltip .tooltip-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    font-size: 14px;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

.testimonial-training-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-top: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.testimonial-training-card .author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgb(99 102 241 / 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-training-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-training-card .author-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial-training-card .author-info {
    flex: 1;
}

.testimonial-training-card .author-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.testimonial-training-card .author-title {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Blogs Section */
.blogs-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(99 102 241 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(99 102 241 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.blogs-carousel-wrapper {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.blogs-carousel-container {
    overflow: hidden;
    position: relative;
}

.blogs-carousel {
    display: flex;
    transition: transform 1.5s ease;
    gap: 32px;
}

.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid rgb(99 102 241 / 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-arrow:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.blog-arrow-left {
    left: 0;
}

.blog-arrow-right {
    right: 0;
}

.blogs-more-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 40px;
}

.btn-view-more-blogs {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-view-more-blogs:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5856eb, #7c3aed);
}

.btn-view-more-blogs:active {
    transform: translateY(0);
}

.blog-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 0;
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, height 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 450px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 20px rgb(99 102 241 / 0.15);
    border-color: rgb(99 102 241 / 0.4);
    height: auto;
    min-height: 450px;
    z-index: 10;
}

.blog-card:hover .blog-excerpt {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
    max-height: none;
}

.blog-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: all 0.3s ease;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.blog-link:hover {
    gap: 12px;
    color: #8b5cf6;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(99 102 241 / 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(99 102 241 / 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgb(99 102 241 / 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgb(99 102 241 / 0.3);
}

.faq-item.active {
    border-color: rgb(99 102 241 / 0.4);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgb(99 102 241 / 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Ensure touch targets are at least 44px */
    .testimonial-arrow,
    .blog-arrow,
    .certification-item {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve carousel touch scrolling */
    .testimonials-carousel,
    .blogs-carousel {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-training-card,
    .blog-card {
        scroll-snap-align: center;
    }

    /* Disable hover effects on touch devices */
    .testimonial-training-card:hover,
    .blog-card:hover,
    .course-card:hover {
        transform: none;
    }

    /* Better button spacing */
    .labs-buttons,
    .training-text-left .btn-primary + .btn-outline {
        margin-top: 12px;
    }
}

/* Responsive Design for Training Sections */
@media (max-width: 1024px) {
    /* Tablet Adjustments */
    .training-header {
        padding: 100px 0 60px; /* Increased top padding to clear navbar on tablets */
    }

    .training-header-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .training-text-left {
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .training-main-title {
        font-size: 36px;
    }

    .training-main-title .title-line-1 {
        font-size: 32px;
    }

    .training-main-title .title-line-2 {
        font-size: 26px;
    }

    .training-main-title .title-line-3 {
        font-size: 20px;
    }

    .security-shield-container {
        width: 100%;
        max-width: 380px;
        height: 380px;
        margin: 0 auto;
        display: block !important; /* Override desktop flex */
    }

    .course-card-positioned {
        width: 120px;
        height: 120px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 30px;
    }
    
    .labs-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .certifications-grid {
        gap: 20px;
    }

    .testimonial-training-card {
        flex: 0 0 calc(50% - 16px);
    }

    .blog-card {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    /* Training Header Mobile */
    .training-header {
        padding: 100px 0 40px; /* Increased top padding to clear navbar */
        margin-top: 0;
    }

    .training-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .training-text-left {
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .training-main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .training-main-title .title-line-1 {
        font-size: 28px;
        white-space: normal;
        line-height: 1.3;
    }

    .training-main-title .title-line-2 {
        font-size: 22px;
        white-space: normal;
        line-height: 1.3;
    }

    .training-main-title .title-line-3 {
        font-size: 18px;
        white-space: normal;
        line-height: 1.3;
    }

    .training-header-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .training-text-left .btn-primary,
    .training-text-left .btn-outline {
        width: 100%;
        max-width: 280px;
        margin: 8px auto;
        display: block;
    }

    .security-shield-container {
        width: 100%;
        max-width: min(280px, 85vw);
        height: min(280px, 85vw);
        margin: 0 auto;
        position: relative;
        display: block !important; /* Override desktop flex to prevent flexbox reordering */
    }

    /* Course Cards Positioning - Smaller for mobile, centered */
    .course-card-positioned {
        width: min(100px, 30vw);
        height: min(100px, 30vw);
        padding: 12px;
    }

    /* Center the course cards on mobile - SOC L1 and L2 at top, VAPT at bottom */
    /* Ensure both SOC L1 and SOC L2 are at the EXACT same height at top */
    /* Using higher specificity with security-shield-container to ensure rules apply */
    /* Using responsive viewport-based offsets for better scaling */
    .security-shield-container .course-card-soc-l1,
    .course-cards-container .course-card-soc-l1 {
        position: absolute !important;
        top: 5% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(calc(-50% - min(65px, 18vw))) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .security-shield-container .course-card-soc-l2,
    .course-cards-container .course-card-soc-l2 {
        position: absolute !important;
        top: 5% !important;
        bottom: auto !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(calc(-50% + min(65px, 18vw))) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .security-shield-container .course-card-vapt,
    .course-cards-container .course-card-vapt {
        position: absolute !important;
        bottom: 5% !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        /* Force VAPT to bottom - never at top */
        order: 999 !important; /* If flexbox somehow applies, VAPT goes last */
    }

    /* Hide any yellow dots or unwanted particles */
    .floating-particle:not(.particle-1):not(.particle-2):not(.particle-3) {
        display: none !important;
    }

    /* Yellow dot hiding rules removed - will fix later */

    /* Ensure course cards are perfectly aligned */
    .course-cards-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Remove duplicate rules - positioning is handled above with higher specificity */

    .course-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 3px;
    }

    .course-card-title {
        font-size: 11px;
    }

    .course-card-level {
        font-size: 9px;
    }

    .course-card-badge {
        font-size: 7px;
        padding: 2px 4px;
    }

    /* Floating particles - smaller */
    .floating-particle {
        width: 4px;
        height: 4px;
    }

    /* Courses Section Mobile */
    .courses-section {
        padding: 60px 0;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
        margin-top: 32px;
    }

    .courses-section .course-card {
        max-width: 100%;
        min-height: auto;
    }

    .courses-section .course-card-image {
        height: 180px;
    }

    .course-card-content {
        padding: 20px;
    }

    .course-title {
        font-size: 20px;
    }

    .course-description {
        font-size: 14px;
    }

    .course-features {
        gap: 12px;
    }

    .course-feature-item {
        font-size: 13px;
    }

    /* Labs Section Mobile */
    .labs-section {
        padding: 60px 0;
    }

    .labs-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .labs-text h2 {
        font-size: 28px;
    }

    .labs-text p {
        font-size: 15px;
    }

    .labs-visual {
        height: auto;
        min-height: 300px;
    }

    .browser-container {
        height: 280px;
    }

    .lab-terminal {
        font-size: 12px;
        height: 220px;
        line-height: 1.6;
    }

    .labs-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .labs-buttons button {
        width: 100%;
    }

    /* Trusted By Section Mobile */
    .trusted-by-section {
        padding: 60px 0;
    }

    .trusted-scroll-container {
        padding: 0 20px;
    }

    .trusted-item {
        padding: 0 15px;
    }

    .trusted-item img {
        max-height: 50px;
    }

    /* Why Choose Us Mobile */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        margin-top: 32px;
    }

    .why-choose-card {
        padding: 20px;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .why-choose-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-choose-description {
        font-size: 13px;
    }

    /* Instructors Section Mobile */
    .instructors-section {
        padding: 60px 0;
    }

    .instructors-content {
        padding: 0 20px;
    }

    .instructors-profile-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .instructors-profile-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .instructors-certifications-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .certifications-grid {
        gap: 16px;
        justify-content: center;
    }

    .certification-item {
        min-width: 80px;
        padding: 16px;
    }

    .certification-icon {
        width: 60px;
        height: 60px;
    }

    .certification-name {
        font-size: 14px;
    }

    .certification-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 200px;
        white-space: normal;
    }

    /* Testimonials Mobile */
    .testimonials-training-section {
        padding: 60px 0;
    }

    .testimonials-carousel-wrapper {
        padding: 0 20px 80px;
    }

    .testimonial-training-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 0;
        height: auto;
        min-height: 350px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .testimonial-arrow-left {
        left: -10px;
    }

    .testimonial-arrow-right {
        right: -10px;
    }

    .testimonials-more-button-container {
        padding: 0 20px;
    }

    /* Blogs Mobile */
    .blogs-section {
        padding: 60px 0;
    }

    .blogs-carousel-wrapper {
        padding: 0 20px;
    }

    .blog-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 0;
        height: auto;
        min-height: 400px;
    }

    .blog-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .blog-arrow-left {
        left: -10px;
    }

    .blog-arrow-right {
        right: -10px;
    }

    .blogs-more-button-container {
        padding: 0 20px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 20px;
        gap: 16px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 30px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .section-description {
        font-size: 15px;
        padding: 0 20px;
    }

    /* Video Modal Mobile */
    .video-modal-container {
        width: 95%;
        max-width: 100%;
        padding: 20px;
    }

    .video-modal-content {
        border-radius: 12px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Training Header - Extra Small */
    .training-header {
        padding: 100px 0 30px; /* Increased top padding to clear navbar */
        margin-top: 0;
    }

    .training-header-content {
        padding: 0 16px;
        gap: 30px;
    }

    .training-main-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .training-main-title .title-line-1 {
        font-size: 22px;
    }

    .training-main-title .title-line-2 {
        font-size: 18px;
    }

    .training-main-title .title-line-3 {
        font-size: 16px;
    }

    .training-header-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .security-shield-container {
        max-width: min(240px, 80vw);
        height: min(240px, 80vw);
        position: relative;
    }
}

/* Medium Mobile - Between 481px and 600px for better spacing */
@media (max-width: 600px) and (min-width: 481px) {
    .security-shield-container {
        max-width: min(260px, 82vw) !important;
        height: min(260px, 82vw) !important;
        display: block !important; /* Override desktop flex */
    }

    .course-card-positioned {
        width: min(90px, 28vw) !important;
        height: min(90px, 28vw) !important;
    }

    .security-shield-container .course-card-soc-l1,
    .course-cards-container .course-card-soc-l1 {
        transform: translateX(calc(-50% - min(55px, 16vw))) !important;
    }

    .security-shield-container .course-card-soc-l2,
    .course-cards-container .course-card-soc-l2 {
        transform: translateX(calc(-50% + min(55px, 16vw))) !important;
    }
}

@media (max-width: 480px) {
    .security-shield-container {
        max-width: min(240px, 80vw);
        height: min(240px, 80vw);
        position: relative;
        display: block !important; /* Override desktop flex to prevent flexbox reordering */
    }

    .course-card-positioned {
        width: min(80px, 25vw);
        height: min(80px, 25vw);
        padding: 8px;
    }

    /* Center the course cards on extra small mobile - ensure same height */
    /* Using higher specificity to ensure rules apply */
    /* Using responsive viewport-based offsets for smaller screens */
    .security-shield-container .course-card-soc-l1,
    .course-cards-container .course-card-soc-l1 {
        position: absolute !important;
        top: 5% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(calc(-50% - min(50px, 14vw))) !important;
    }

    .security-shield-container .course-card-soc-l2,
    .course-cards-container .course-card-soc-l2 {
        position: absolute !important;
        top: 5% !important;
        bottom: auto !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(calc(-50% + min(50px, 14vw))) !important;
    }

    .security-shield-container .course-card-vapt,
    .course-cards-container .course-card-vapt {
        position: absolute !important;
        bottom: 5% !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        /* Force VAPT to bottom - never at top */
        order: 999 !important; /* If flexbox somehow applies, VAPT goes last */
    }

    .course-card-icon {
        width: 35px;
        height: 35px;
    }

    .course-card-title {
        font-size: 9px;
    }

    .course-card-level {
        font-size: 8px;
    }

    .course-card-badge {
        font-size: 6px;
        padding: 1px 3px;
    }

    /* Courses Section - Extra Small */
    .courses-section {
        padding: 40px 0;
    }

    .courses-grid {
        padding: 0 16px;
        gap: 20px;
    }

    .courses-section .course-card-image {
        height: 160px;
    }

    .course-card-content {
        padding: 16px;
    }

    .course-title {
        font-size: 18px;
    }

    .course-description {
        font-size: 13px;
    }

    .course-feature-item {
        font-size: 12px;
    }

    /* Labs Section - Extra Small */
    .labs-section {
        padding: 40px 0;
    }

    .labs-content {
        padding: 0 16px;
    }

    .labs-text h2 {
        font-size: 24px;
    }

    .labs-text p {
        font-size: 14px;
    }

    .browser-container {
        height: 240px;
    }

    .lab-terminal {
        font-size: 11px;
        height: 180px;
    }

    /* Trusted By - Extra Small */
    .trusted-by-section {
        padding: 40px 0;
    }

    .trusted-scroll-container {
        padding: 0 16px;
    }

    .trusted-item img {
        max-height: 40px;
    }

    /* Why Choose Us - Extra Small */
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-grid {
        padding: 0 16px;
        gap: 16px;
    }

    .why-choose-card {
        padding: 16px;
    }

    .why-choose-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .why-choose-title {
        font-size: 15px;
    }

    .why-choose-description {
        font-size: 12px;
    }

    /* Instructors - Extra Small */
    .instructors-section {
        padding: 40px 0;
    }

    .instructors-content {
        padding: 0 16px;
    }

    .instructors-profile-title {
        font-size: 20px;
    }

    .instructors-profile-description {
        font-size: 13px;
    }

    .instructors-certifications-title {
        font-size: 20px;
    }

    .certifications-grid {
        gap: 12px;
    }

    .certification-item {
        min-width: 70px;
        padding: 12px;
    }

    .certification-icon {
        width: 50px;
        height: 50px;
    }

    .certification-name {
        font-size: 12px;
    }

    /* Testimonials - Extra Small */
    .testimonials-training-section {
        padding: 40px 0;
    }

    .testimonials-carousel-wrapper {
        padding: 0 16px 60px;
    }

    .testimonial-training-card {
        flex: 0 0 100%;
        padding: 24px;
        min-height: 320px;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Blogs - Extra Small */
    .blogs-section {
        padding: 40px 0;
    }

    .blogs-carousel-wrapper {
        padding: 0 16px;
    }

    .blog-card {
        flex: 0 0 100%;
        min-height: 380px;
    }

    .blog-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* FAQ - Extra Small */
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 16px;
        gap: 12px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* Section Titles - Extra Small */
    .section-title {
        font-size: 24px;
        padding: 0 16px;
    }

    .section-description {
        font-size: 14px;
        padding: 0 16px;
    }

    /* Buttons - Extra Small */
    .btn-primary, .btn-outline {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }
} 
