/* Reset and Base Styles */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --accent-primary: #3b82f6;
    --accent-secondary: #1d4ed8;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(26, 26, 26, 0.8);
    --hover-bg: rgba(59, 130, 246, 0.1);
    --glow-primary: rgba(59, 130, 246, 0.6);
    --glow-secondary: rgba(29, 78, 216, 0.6);
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    pointer-events: none;
}

/* Mouse Trail Effect */
.trail-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: fadeOut 1s ease-out forwards;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(even) {
    background: #8b5cf6;
}

.floating-element:nth-child(3n) {
    background: #06b6d4;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.6;
    }
}



/* Floating Elements */
.floating-element {
    position: absolute;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(even) {
    background: #8b5cf6;
}

.floating-element:nth-child(3n) {
    background: #06b6d4;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.6;
    }
}

/* Fancy Hover Effects */
@keyframes magneticPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-primary);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-primary), 0 0 60px var(--glow-secondary);
    }
}

@keyframes particleExplosion {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--accent-primary);
        box-shadow: 0 0 20px var(--glow-primary);
    }
    50% {
        border-color: var(--accent-secondary);
        box-shadow: 0 0 40px var(--glow-secondary);
    }
}

@keyframes textShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

@keyframes cardTilt {
    0% {
        transform: perspective(1000px) rotateX(0) rotateY(0);
    }
    100% {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 0 0 5px var(--accent-primary), 0 0 10px var(--accent-primary), 0 0 15px var(--accent-primary);
    }
    50% {
        text-shadow: 0 0 2px var(--accent-primary), 0 0 5px var(--accent-primary), 0 0 7px var(--accent-primary);
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}



/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn::after {
    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.6s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 20px var(--glow-primary);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

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

/* Enhanced Navigation Hover */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.nav-link:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--glow-primary);
    transform: translateY(-2px);
}

/* Enhanced Logo Hover */
.nav-logo h2:hover .logo-prism {
    animation: neonFlicker 2s ease-in-out infinite;
}

.nav-logo h2:hover .logo-node {
    animation: magneticPulse 1s ease-in-out;
}

/* Enhanced Process Step Hover */
.process-step {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.process-step:hover {
    transform: translateY(-6px) perspective(1000px) rotateX(3deg) rotateY(3deg);
    border-color: var(--accent-primary);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--glow-primary);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover::after {
    width: 250px;
    height: 250px;
}

.process-step:hover .step-number {
    animation: glowPulse 2s ease-in-out infinite;
    transform: scale(1.1);
}

/* Enhanced Testimonial Card Hover */
.testimonial-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg) rotateY(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px var(--glow-primary);
    border-color: var(--accent-primary);
}

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

.testimonial-card:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Team Member Hover */
.team-member {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.team-member:hover .member-avatar {
    animation: iconFloat 2s ease-in-out infinite;
    box-shadow: 0 0 25px var(--glow-primary);
}

/* Enhanced Form Input Hover */
.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 5px 15px rgba(59, 130, 246, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--glow-primary);
}

/* Enhanced Footer Social Hover */
.footer-social a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.footer-social a:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px var(--glow-primary);
}

/* Enhanced Stats Hover */
.stat-tracker {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.stat-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-tracker:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg) rotateY(2deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--glow-primary);
}

.stat-tracker:hover::before {
    left: 100%;
}

.stat-tracker:hover .stat-number {
    animation: textShine 2s linear infinite;
}

/* Enhanced Vulnerability Tracker Hover */
.vuln-category {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.vuln-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vuln-category:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(3deg) rotateY(3deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--glow-primary);
}

.vuln-category:hover::before {
    opacity: 1;
}

.vuln-category:hover .vuln-number {
    animation: textShine 2s linear infinite;
}

/* Magnetic Hover Effect for Cards */
.process-step,
.testimonial-card,
.team-member,
.stat-tracker,
.vuln-category {
    cursor: pointer;
}

/* Particle Explosion Effect */
@keyframes particleExplosion {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Loading Animation */
.loading-spinner {
    position: relative;
    overflow: hidden;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--accent-secondary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

/* Enhanced scroll progress */
.scroll-progress {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: textShine 3s linear infinite;
}

/* Responsive Hover Effects */
@media (max-width: 768px) {
    .process-step:hover,
    .testimonial-card:hover,
    .team-member:hover,
    .stat-tracker:hover,
    .vuln-category:hover {
        transform: translateY(-4px) scale(1.02);
    }
    
    .btn:hover {
        transform: translateY(-2px) scale(1.03);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .process-step,
    .testimonial-card,
    .team-member,
    .stat-tracker,
    .vuln-category,
    .btn,
    .nav-link {
        transition: none;
        animation: none;
    }
    
    .process-step:hover,
    .testimonial-card:hover,
    .team-member:hover,
    .stat-tracker:hover,
    .vuln-category:hover,
    .btn:hover {
        transform: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
}

.logo-prism {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.9rem;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-node {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    font-size: 1.7rem;
    letter-spacing: 1px;
    position: relative;
    padding: 2px 6px;
    border: 1px solid transparent;
    border-radius: 6px;
}

.logo-node::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 6px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
}

.logo-prism::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-prism:hover::after {
    width: 100%;
}

.logo-node:hover {
    transform: translateY(-1px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-node:hover::before {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-logo h2:hover .logo-prism {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.request-quote-btn {
    background: var(--accent-primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.request-quote-btn:hover {
    background: var(--accent-secondary);
    color: white !important;
    transform: translateY(-2px);
}

.request-quote-btn i {
    margin-left: 6px;
    font-size: 0.9rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--hover-bg);
    color: var(--accent-primary);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.04) 0%, transparent 40%),
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(59, 130, 246, 0.02) 60deg, transparent 120deg, rgba(147, 51, 234, 0.02) 180deg, transparent 240deg, rgba(59, 130, 246, 0.02) 300deg, transparent 360deg);
    background-size: 400px 400px, 600px 600px, 800px 800px;
    background-position: 0 0, 200px 200px, 0 0;
    animation: blockchainRotate 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes blockchainRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInWord 0.8s ease-out forwards;
    margin-right: 0.2rem;
}

.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.8s; }
.hero-title .word:nth-child(3) { animation-delay: 1.1s; }
.hero-title .word:nth-child(4) { animation-delay: 1.4s; }
.hero-title .word:nth-child(5) { animation-delay: 1.7s; }

@keyframes slideInWord {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    line-height: 1.6;
    transform: translateX(-50px);
    animation: slideInFromLeft 1.2s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1.2s ease-out 1.1s forwards;
}

/* Hero Stats Tracker */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 1.2s ease-out 1.4s forwards;
}

.stat-tracker {
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-tracker:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trusted By Section */
.trusted-by {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    animation: scrollLogos 15s linear infinite;
    width: max-content;
    position: relative;
}

.trusted-logos:hover {
    animation-play-state: paused;
}

.trusted-logos::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), transparent);
    z-index: 2;
    pointer-events: none;
}

.trusted-logos::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.8), transparent);
    z-index: 2;
    pointer-events: none;
}

.trusted-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.trusted-logo:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.trusted-logo i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.trusted-logo span {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Vulnerability Tracker */
.vulnerability-tracker {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 320px;
}

.vuln-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
}

.vuln-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.vuln-categories {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.vuln-category {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.vuln-category:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.vuln-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.vuln-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.vuln-category.critical .vuln-number {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.vuln-category.critical .vuln-label {
    color: #ff6b6b;
}

.vuln-category.critical {
    border-color: rgba(255, 68, 68, 0.3);
}

.vuln-category.high .vuln-number {
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.vuln-category.high .vuln-label {
    color: #ffa500;
}

.vuln-category.high {
    border-color: rgba(255, 140, 0, 0.3);
}

.vuln-category.medium .vuln-number {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.vuln-category.medium .vuln-label {
    color: #ffed4e;
}

.vuln-category.medium {
    border-color: rgba(255, 215, 0, 0.3);
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}










/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Audit Process Section */
.audit-process {
    padding: 60px 0;
    background: rgba(15, 15, 20, 0.9);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.audit-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 280px;
    justify-content: flex-start;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: relative;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 35px;
    height: 35px;
    background: rgba(59, 130, 246, 0.9);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 100;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.step-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-step h3::before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 1px;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

/* Remove connecting lines since we're using a grid */
.process-step::after {
    display: none;
}

/* Responsive design for audit process */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .process-step {
        min-height: 260px;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .audit-process {
        padding: 40px 0;
        min-height: auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .process-step {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Portfolio Section */
.portfolio {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.project-info {
    flex: 1;
    margin-bottom: 0.75rem;
}

.project-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.4rem 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.project-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.portfolio-card:hover .project-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.vulnerability-summary {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.vuln-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vuln-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vuln-item:hover::before {
    opacity: 1;
}

.vuln-item.critical {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.vuln-item.medium {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.vuln-item.low {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.vuln-item.info {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.vuln-count {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.05rem;
    line-height: 1;
}

.vuln-type {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: var(--text-secondary);
    line-height: 1;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.audit-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.audit-date i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.view-report-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.view-report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.view-report-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-report-btn:hover i {
    transform: translateX(3px);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        margin-top: 2rem;
    }
    
    .portfolio-card {
        padding: 1.5rem;
    }
    
    .portfolio-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .project-name {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .vulnerability-summary {
        gap: 0.4rem;
        max-width: 200px;
    }
    
    .vuln-item {
        padding: 0.75rem;
    }
    
    .vuln-count {
        font-size: 1.5rem;
    }
    
    .portfolio-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--accent-primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonial animations */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Section */
.team-section {
    margin-top: 60px;
    text-align: center;
}

.team-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
}

.member-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-avatar::after {
    opacity: 0.6;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
}

/* Team Member Links */
.member-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.member-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.member-link.personal-site {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    border-color: rgba(59, 130, 246, 0.3);
}

.member-link.personal-site:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.member-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.3);
}

.member-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1da1f2;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-tertiary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

/* Required field indicator */
.form-group label[for*="name"]::after,
.form-group label[for*="email"]::after,
.form-group label[for*="message"]::after {
    content: " *";
    color: #ef4444;
}

/* Success message styles */
.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-brand h3 {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
    }

    .stat-tracker {
        min-width: 250px;
        padding: 1rem;
    }

    .vuln-categories {
        flex-direction: column;
        gap: 1rem;
    }

    .vulnerability-tracker {
        min-width: 280px;
        padding: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
    }
    
    .member-avatar::after {
        width: 20px;
        height: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}



/* Scroll progress bar styles */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Enhanced Loading and Animations */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideIn 0.3s ease;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        font-size: 1.2rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--accent-primary);
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-tracker {
        min-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .trusted-by {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .trusted-logo {
        min-width: 70px;
        padding: 0.6rem;
    }
    
    .trusted-logo i {
        font-size: 1.8rem;
    }
    
    .trusted-logo span {
        font-size: 0.7rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.nav-link:focus,
.btn:focus,
.fab-button:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Enhanced form focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Particle Effects */
.explosion-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    animation: particleExplosion 1s ease-out forwards;
}

.click-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    animation: particleExplosion 0.8s ease-out forwards;
}

.logo-particle {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    animation: particleExplosion 2s ease-out forwards;
}

/* Process Connection Lines */
.process-connection-line {
    position: absolute;
    top: 50%;
    right: -75px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    transform: translateY(-50%);
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Enhanced Scroll Progress */
.scroll-progress {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: textShine 3s linear infinite;
}

/* Enhanced Loading Spinner */
.loading-spinner {
    position: relative;
    overflow: hidden;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--accent-secondary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}



/* Enhanced Navigation Hover Effects */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.nav-link:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--glow-primary);
    transform: translateY(-2px);
}

/* Enhanced Logo Hover Effects */
.nav-logo h2:hover .logo-prism {
    animation: neonFlicker 2s ease-in-out infinite;
}

.nav-logo h2:hover .logo-node {
    animation: magneticPulse 1s ease-in-out;
}

/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn::after {
    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.6s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 20px var(--glow-primary);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

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

/* Enhanced Form Input Hover Effects */
.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 5px 15px rgba(59, 130, 246, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--glow-primary);
}

/* Enhanced Footer Social Hover Effects */
.footer-social a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.footer-social a:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px var(--glow-primary);
}

/* Enhanced Stats Hover Effects */
.stat-tracker {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.stat-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-tracker:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg) rotateY(2deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--glow-primary);
}

.stat-tracker:hover::before {
    left: 100%;
}

.stat-tracker:hover .stat-number {
    animation: textShine 2s linear infinite;
}

/* Enhanced Vulnerability Tracker Hover Effects */
.vuln-category {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.vuln-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vuln-category:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(3deg) rotateY(3deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--glow-primary);
}

.vuln-category:hover::before {
    opacity: 1;
}

.vuln-category:hover .vuln-number {
    animation: textShine 2s linear infinite;
}

/* Magnetic Hover Effect for Cards */
.process-step,
.testimonial-card,
.team-member,
.stat-tracker,
.vuln-category {
    cursor: pointer;
}

/* Responsive Hover Effects */
@media (max-width: 768px) {
    .process-step:hover,
    .testimonial-card:hover,
    .team-member:hover,
    .stat-tracker:hover,
    .vuln-category:hover {
        transform: translateY(-4px) scale(1.02);
    }
    
    .btn:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    .process-connection-line {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .process-step,
    .testimonial-card,
    .team-member,
    .stat-tracker,
    .vuln-category,
    .btn,
    .nav-link {
        transition: none;
        animation: none;
    }
    
    .process-step:hover,
    .testimonial-card:hover,
    .team-member:hover,
    .stat-tracker:hover,
    .vuln-category:hover,
    .btn:hover {
        transform: none;
    }
    
    .explosion-particle,
    .click-particle,
    .logo-particle {
        display: none;
    }
}
