/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1ECCD6;
    --secondary-color: #17B5BD;
    --accent-color: #1ECCD6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #1ECCD6 0%, #17B5BD 100%);
    --gradient-2: linear-gradient(135deg, #1ECCD6 0%, #0EA5E9 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(30, 204, 214, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(15, 23, 42, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-image,
.custom-logo {
    height: auto;
    width: auto;
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
    display: inline-block;
}

/* Site başlığı stilleri */
.site-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: var(--primary-color);
}

.site-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Logo olmadığında site başlığını daha belirgin yap */
.site-branding:not(:has(.logo-image)) .site-title {
    font-size: 1.75rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WordPress responsive logo */
@media screen and (max-width: 768px) {
    .logo-image,
    .custom-logo {
        max-width: 140px;
        max-height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .logo-image,
    .custom-logo {
        max-width: 120px;
        max-height: 45px;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-description {
        display: none;
    }
}

/* Site başlığını gizleme seçeneği için özel sınıf */
.hide-site-title .site-title,
.hide-site-title .site-description {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Force visibility in header: ensure title is readable next to logo */
.site-branding .site-title,
.site-branding .site-description {
    color: var(--text-primary) !important;
    display: block !important;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(30, 204, 214, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Network Animation Canvas */
.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(30, 204, 214, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 204, 214, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 6s infinite ease-in-out;
}

.float-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(30, 204, 214, 0.5));
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg) scale(1.1);
    }
    75% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
}

/* Professional Cyber Security Animation */
.cyber-expert-animation {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.expert-workspace {
    position: relative;
    width: 520px;
    height: 480px;
    filter: drop-shadow(0 20px 60px rgba(30, 204, 214, 0.25));
    overflow: visible;
}

/* Workspace Glow */
.workspace-glow {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 204, 214, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s infinite ease-in-out;
}

/* Workstation Setup */
.workstation {
    position: absolute;
    top: 30px;
    left: 80px;
    z-index: 10;
}

.monitor-setup {
    position: relative;
}

.main-monitor {
    position: relative;
    perspective: 1000px;
}

.monitor-frame {
    position: relative;
    transform: rotateY(-5deg);
    transform-style: preserve-3d;
}

.screen {
    width: 240px;
    height: 150px;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
    border: 4px solid #2d3a4f;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px rgba(30, 204, 214, 0.3),
        0 0 40px rgba(30, 204, 214, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.terminal-window {
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.98);
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 8px;
    color: #10b981;
    position: relative;
}

.window-header {
    height: 18px;
    background: linear-gradient(180deg, #2d3a4f 0%, #1e2838 100%);
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid rgba(30, 204, 214, 0.2);
}

.window-buttons {
    display: flex;
    gap: 5px;
}

.window-buttons span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.3);
}

.btn-close { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); }
.btn-minimize { background: linear-gradient(135deg, #feca57 0%, #f9b234 100%); }
.btn-maximize { background: linear-gradient(135deg, #1dd1a1 0%, #10b981 100%); }

.window-title {
    margin-left: auto;
    font-size: 7px;
    color: #64748b;
    font-weight: 500;
}

.terminal-content {
    padding: 10px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 5px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.prompt {
    color: #8b5cf6;
    font-weight: bold;
}

.command {
    color: #10b981;
}

.typing-effect {
    animation: typing 4s steps(25) infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #10b981;
}

.terminal-output {
    margin-left: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.output-icon {
    color: #10b981;
    font-size: 7px;
}

.success-text {
    color: #10b981;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 12px;
    background: #10b981;
    animation: blink 1s infinite;
    margin-left: 6px;
    border-radius: 1px;
}

/* Screen Status Indicators */
.screen-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.status-dot.online { background: #10b981; box-shadow: 0 0 8px #10b981; }
.status-dot.secure { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; animation-delay: 0.3s; }
.status-dot.active { background: #8b5cf6; box-shadow: 0 0 8px #8b5cf6; animation-delay: 0.6s; }

.monitor-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}

.monitor-neck {
    width: 20px;
    height: 15px;
    background: linear-gradient(180deg, #3d4a5f 0%, #2d3a4f 100%);
    border-radius: 0 0 4px 4px;
}

.monitor-stand {
    width: 70px;
    height: 8px;
    background: linear-gradient(180deg, #2d3a4f 0%, #1e2838 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced Desk */
.desk {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    position: relative;
}

.desk-surface {
    position: absolute;
    bottom: -5px;
    left: -10px;
    right: -10px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(30, 204, 214, 0.2), transparent);
    border-radius: 2px;
}

.keyboard {
    width: 150px;
    height: 40px;
    background: linear-gradient(180deg, #3d4a5f 0%, #2d3a4f 100%);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.keyboard-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 204, 214, 0.6), transparent);
    border-radius: 2px;
    animation: keyboardGlow 2s infinite ease-in-out;
}

.key-row {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.key {
    width: 12px;
    height: 9px;
    background: linear-gradient(180deg, #1e2838 0%, #151d28 100%);
    border: 1px solid #3d4a5f;
    border-radius: 3px;
    transition: all 0.15s;
    box-shadow: 0 2px 0 #0a0f1a;
}

.key.spacebar {
    width: 40px;
}

.key.active {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color), 0 2px 0 var(--secondary-color);
    animation: keyPress 0.8s infinite;
}

.key.active:nth-child(odd) { animation-delay: 0.1s; }
.key.active:nth-child(even) { animation-delay: 0.3s; }

.mouse {
    width: 24px;
    height: 36px;
    background: linear-gradient(180deg, #3d4a5f 0%, #2d3a4f 100%);
    border-radius: 12px 12px 16px 16px;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mouse-wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #1e2838;
    border-radius: 2px;
    border: 1px solid #3d4a5f;
}

.mouse-glow {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(30, 204, 214, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: mousePulse 2s infinite;
}

/* Coffee Mug */
.coffee-mug {
    width: 18px;
    height: 22px;
    background: linear-gradient(180deg, #64748b 0%, #475569 100%);
    border-radius: 3px 3px 5px 5px;
    position: relative;
    margin-left: 5px;
}

.coffee-mug::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 4px;
    width: 8px;
    height: 10px;
    border: 2px solid #64748b;
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.mug-steam {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.mug-steam span {
    width: 2px;
    height: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 2px;
    animation: steam 2s infinite ease-out;
}

.mug-steam span:nth-child(1) { animation-delay: 0s; height: 8px; }
.mug-steam span:nth-child(2) { animation-delay: 0.3s; height: 12px; }
.mug-steam span:nth-child(3) { animation-delay: 0.6s; height: 8px; }

/* ========================================
   3D ISOMETRIC IT EXPERT CHARACTER
   Modern, Professional, Pseudo-3D Design
   ======================================== */

.iso-character {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 20;
    width: 120px;
    animation: isoFloat 3s ease-in-out infinite;
}

/* Character Shadow */
.iso-shadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

/* Character Glow */
.iso-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(30, 204, 214, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* HEAD */
.iso-head {
    position: relative;
    width: 70px;
    height: 75px;
    margin: 0 auto 0;
}

/* Face - Main head shape */
.iso-head-front {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 58px;
    background: linear-gradient(135deg, #f5d0b5 0%, #e8b998 50%, #daa87a 100%);
    border-radius: 20px 20px 24px 24px;
    box-shadow: 
        5px 5px 0 #c99b6d,
        inset 0 -10px 20px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.15);
}

/* Hair */
.iso-hair {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 42px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 22px 22px 10px 10px;
    z-index: 2;
    box-shadow: 
        4px 4px 0 #0a0a0a,
        0 3px 10px rgba(0,0,0,0.3);
}

.iso-hair::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 18px;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    transform: rotate(-5deg);
}

/* Hair side extension */
.iso-hair::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5px;
    right: 5px;
    height: 18px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

/* Hide unused 3D faces */
.iso-head-top,
.iso-head-side {
    display: none;
}

/* FACE FEATURES */
.iso-face-features {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 40px;
    z-index: 5;
}

/* Glasses */
.iso-glasses {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.iso-lens {
    width: 22px;
    height: 18px;
    background: linear-gradient(135deg, rgba(30, 204, 214, 0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 3px solid #1a2e3d;
    border-radius: 6px;
    position: relative;
    box-shadow: 
        2px 2px 0 rgba(0,0,0,0.15),
        inset 0 0 6px rgba(30, 204, 214, 0.15);
}

.iso-lens::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 7px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.iso-lens-bridge {
    width: 7px;
    height: 4px;
    background: #1a2e3d;
    border-radius: 2px;
}

/* Eyes */
.iso-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-pupil {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle at 30% 30%, #4a3728 0%, #1a1008 100%);
    border-radius: 50%;
    animation: isoEyeMove 4s ease-in-out infinite;
    position: relative;
}

.iso-pupil::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

/* Smile */
.iso-smile {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 7px;
    border: none;
    border-bottom: 3px solid #c4897a;
    border-radius: 0 0 12px 12px;
}

/* TORSO */
.iso-torso {
    position: relative;
    width: 90px;
    height: 80px;
    margin: -8px auto 0;
}

.iso-torso-front {
    position: absolute;
    width: 90px;
    height: 75px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px 20px 30px 30px;
    box-shadow: 
        6px 6px 0 #0a6b72,
        inset 0 2px 0 rgba(255,255,255,0.25),
        inset 0 -15px 25px rgba(0,0,0,0.12),
        0 10px 30px rgba(0,0,0,0.2);
}

/* Hide unused 3D faces */
.iso-torso-top,
.iso-torso-side {
    display: none;
}

/* Collar */
.iso-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 14px;
    z-index: 3;
}

.iso-collar::before,
.iso-collar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 17px;
    height: 14px;
    background: linear-gradient(180deg, #17c5cf 0%, var(--primary-color) 100%);
}

.iso-collar::before {
    left: 0;
    transform: skewX(15deg);
    border-radius: 4px 0 0 0;
}

.iso-collar::after {
    right: 0;
    transform: skewX(-15deg);
    border-radius: 0 4px 0 0;
}

/* Logo on shirt */
.iso-logo {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 3;
}

.iso-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* ARMS */
.iso-arms {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 60px;
}

.iso-arm {
    position: absolute;
    top: 0;
}

.iso-arm.left { left: -20px; }
.iso-arm.right { right: -20px; }

.iso-sleeve {
    width: 26px;
    height: 48px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 13px;
    box-shadow: 
        3px 3px 0 #0a6b72,
        0 4px 10px rgba(0,0,0,0.15);
}

.iso-arm.left .iso-sleeve {
    transform-origin: top center;
    animation: isoArmLeft 1.2s ease-in-out infinite;
}

.iso-arm.right .iso-sleeve {
    transform-origin: top center;
    animation: isoArmRight 1.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.iso-hand {
    width: 20px;
    height: 18px;
    background: linear-gradient(180deg, #f5d0b5 0%, #daa87a 100%);
    border-radius: 10px;
    margin: -5px auto 0;
    box-shadow: 2px 2px 0 #c99b6d;
}

.iso-fingers {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.iso-finger {
    width: 5px;
    height: 10px;
    background: linear-gradient(180deg, #f5d0b5 0%, #daa87a 100%);
    border-radius: 3px;
    box-shadow: 1px 1px 0 #c99b6d;
}

.iso-arm.left .iso-fingers {
    animation: isoFingersLeft 0.6s ease-in-out infinite;
}

.iso-arm.right .iso-fingers {
    animation: isoFingersRight 0.6s ease-in-out infinite;
    animation-delay: 0.15s;
}

/* FLOATING ELEMENTS */
.iso-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.iso-float-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 
        4px 4px 0 rgba(0,0,0,0.2),
        0 0 20px rgba(30, 204, 214, 0.3);
}

.iso-float-code {
    top: -25px;
    right: -45px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(30, 204, 214, 0.95) 0%, rgba(14, 116, 144, 0.95) 100%);
    animation: isoFloatCode 3s ease-in-out infinite;
}

.iso-float-code i {
    font-size: 1.2rem;
    color: white;
}

.iso-float-shield {
    top: 25px;
    left: -50px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    animation: isoFloatShield 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.iso-float-shield i {
    font-size: 1.1rem;
    color: white;
}

.iso-float-lock {
    bottom: 30px;
    right: -40px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(109, 40, 217, 0.95) 100%);
    animation: isoFloatLock 4s ease-in-out infinite;
    animation-delay: 1s;
}

.iso-float-lock i {
    font-size: 0.9rem;
    color: white;
}

/* ANIMATIONS */
@keyframes isoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shadowPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.35;
    }
    50% { 
        transform: translateX(-50%) scale(0.9);
        opacity: 0.25;
    }
}

@keyframes isoEyeMove {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(1px); }
    75% { transform: translateX(-1px); }
}

@keyframes isoArmLeft {
    0%, 100% { transform: rotate(4deg); }
    50% { transform: rotate(-6deg); }
}

@keyframes isoArmRight {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(6deg); }
}

@keyframes isoFingersLeft {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes isoFingersRight {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes isoFloatCode {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-12px) rotate(-5deg); }
}

@keyframes isoFloatShield {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes isoFloatLock {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

/* Network Infrastructure */
.network-infrastructure {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
}

.cloud-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: cloudFloat 4s infinite ease-in-out;
}

.cloud-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success-color);
    box-shadow: 0 0 10px var(--success-color);
    animation: statusPulse 2s infinite;
}

.server-rack-unit {
    position: absolute;
    top: 100px;
    right: 30px;
    width: 70px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(30, 204, 214, 0.4);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.rack-header {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(30, 204, 214, 0.3);
}

.rack-slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rack-slot {
    background: rgba(51, 65, 85, 0.6);
    border-radius: 4px;
    padding: 4px;
    border: 1px solid rgba(30, 204, 214, 0.2);
}

.slot-lights {
    display: flex;
    gap: 4px;
    margin-bottom: 3px;
}

.led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.led-green {
    background: #10b981;
    animation: ledBlink 2s infinite ease-in-out;
}

.led-amber {
    background: #f59e0b;
    animation: ledBlink 1.5s infinite ease-in-out;
}

.slot-lights .led:nth-child(2) { animation-delay: 0.3s; }
.slot-lights .led:nth-child(3) { animation-delay: 0.6s; }

.slot-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 2px;
    animation: dataTransfer 3s infinite ease-in-out;
}

.router-device {
    position: absolute;
    bottom: 140px;
    right: 40px;
    width: 60px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(30, 204, 214, 0.4);
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.device-body {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.device-lights {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 4px;
}

.blink-fast { animation: ledBlink 0.8s infinite ease-in-out; }
.blink-medium { animation: ledBlink 1.5s infinite ease-in-out; }
.blink-slow { animation: ledBlink 2.5s infinite ease-in-out; }

.device-ports {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.port {
    width: 8px;
    height: 6px;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 1px;
}

.port.active {
    background: var(--primary-color);
    box-shadow: 0 0 6px var(--primary-color);
}

.database-icon {
    position: absolute;
    bottom: 60px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    animation: dbPulse 3s infinite ease-in-out;
    position: relative;
}

.db-activity {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 15px;
    height: 15px;
    border: 2px solid var(--success-color);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

/* Security Elements */
.security-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.threat-notification {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(239, 68, 68, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: notificationSlide 4s infinite ease-in-out;
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 200px;
}

.notification-icon {
    font-size: 1.5rem;
    animation: shake 0.5s infinite;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.notification-text {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.notification-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.notification-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    animation: progressBar 4s infinite ease-in-out;
}

.protection-shield-icon {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--success-color);
    position: relative;
    animation: shieldFloat 4s infinite ease-in-out;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s infinite ease-in-out;
}

.shield-checkmark {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
    animation: checkmarkPop 2s infinite ease-in-out;
}

.lock-icon {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    animation: lockBounce 3s infinite ease-in-out;
    position: relative;
}

.lock-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

/* Data Connections & Particles */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.data-line {
    stroke-dasharray: 10;
    animation: dashFlow 2s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.7s; }
.line-3 { animation-delay: 1.4s; }

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 1.6s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 3.2s;
}

.particle:nth-child(4) {
    bottom: 30%;
    left: 50%;
    animation-delay: 4.8s;
}

.particle:nth-child(5) {
    top: 70%;
    right: 10%;
    animation-delay: 6.4s;
}

.particle:nth-child(6) {
    top: 15%;
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(7) {
    bottom: 20%;
    right: 30%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

/* Security Scan Effect */
.security-scan {
    position: absolute;
    top: 60px;
    left: 30px;
    width: 250px;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.3;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
    animation: scanMove 3s linear infinite;
}

/* Cloud Data Flow */
.cloud-data-flow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.data-packet {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 2px;
    animation: dataPacketFlow 1.5s infinite ease-in-out;
    box-shadow: 0 0 6px var(--primary-color);
}

.data-packet:nth-child(1) { animation-delay: 0s; }
.data-packet:nth-child(2) { animation-delay: 0.2s; }
.data-packet:nth-child(3) { animation-delay: 0.4s; }

/* Professional Animations */
@keyframes typing {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@keyframes breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes eyeMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(1px, 0); }
    75% { transform: translate(-1px, 0); }
}

@keyframes armTypeLeft {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes armTypeRight {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

@keyframes handTypeLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes handTypeRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes keyPress {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 12px var(--primary-color), 0 2px 0 var(--secondary-color); }
    50% { transform: translateY(2px); box-shadow: 0 0 6px var(--primary-color), 0 0 0 var(--secondary-color); }
}

@keyframes fingerType {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes characterBreath {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes steam {
    0% { opacity: 0; transform: translateY(0) scaleY(0.5); }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-15px) scaleY(1); }
}

@keyframes keyboardGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes mousePulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

@keyframes lensShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes statusFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes dataTransfer {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

@keyframes dbPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes notificationSlide {
    0% { transform: translate(-50%, -20px); opacity: 0; }
    10%, 90% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, -20px); opacity: 0; }
}

@keyframes progressBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shieldFloat {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-50%, -10px) scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes checkmarkPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes lockBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ripple {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

@keyframes dashFlow {
    to { stroke-dashoffset: -20; }
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes dataPacketFlow {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translate(20px, -30px); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 204, 214, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features i {
    color: var(--success-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-badge strong {
    font-size: 1.5rem;
    display: block;
}

.about-badge span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.about-feature h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.client-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.client-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.client-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.success-stories {
    margin-top: 4rem;
}

.stories-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.story-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 204, 214, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.story-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.story-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Expertise Section */
.expertise {
    padding: 6rem 0;
    background-color: var(--darker-bg);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.expertise-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 1.5s ease;
    width: 0;
}

.progress-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 { display: none; }

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

.form-group select + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    height: 2rem;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo .custom-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo i {
    color: var(--text-primary);
    font-size: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

/* WordPress default footer widgets (Archives, Categories, etc.) */
.footer-widget ul,
.footer-widget ul li,
.footer-widget ul li a,
.footer .widget_archive ul,
.footer .widget_categories ul,
.footer .widget_recent_entries ul,
.footer .widget_recent_comments ul,
.footer .widget_pages ul,
.footer .widget_meta ul,
.footer .widget_nav_menu ul {
    list-style: none;
}

.footer .widget a,
.footer .widget a:link,
.footer .widget a:visited,
.footer-widget a,
.footer-widget a:link,
.footer-widget a:visited {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.footer .widget a:hover,
.footer-widget a:hover {
    color: var(--text-primary) !important;
}

/* WP block widgets in footer (Archives, Categories, etc.) */
.footer .wp-block-archives-list,
.footer .wp-block-categories-list,
.footer .wp-block-latest-posts__list,
.footer .wp-block-page-list,
.footer .wp-block-list,
.footer .widget_archive ul,
.footer .widget_categories ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.footer .wp-block-archives-list li::marker,
.footer .wp-block-categories-list li::marker,
.footer .wp-block-latest-posts__list li::marker,
.footer .wp-block-page-list li::marker,
.footer .wp-block-list li::marker {
    content: '';
}

.footer .wp-block-archives-list a,
.footer .wp-block-archives-list a:link,
.footer .wp-block-archives-list a:visited,
.footer .wp-block-categories-list a,
.footer .wp-block-categories-list a:link,
.footer .wp-block-categories-list a:visited,
.footer .wp-block-latest-posts__list a,
.footer .wp-block-latest-posts__list a:link,
.footer .wp-block-latest-posts__list a:visited,
.footer .wp-block-page-list a,
.footer .wp-block-page-list a:link,
.footer .wp-block-page-list a:visited {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

/* Remove left padding from WP widget lists */
.footer .widget ul,
.footer-widget ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
    list-style: none !important;
}

.footer .widget ul li::marker,
.footer-widget ul li::marker {
    content: '';
}

/* Style for phone link (always white) */
.phone-link,
.phone-link:link,
.phone-link:visited,
.phone-link:hover,
.phone-link:active {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.footer-section ul li i {
    color: var(--text-primary);
    width: 20px;
    flex: 0 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Ensure all tel: links are white and not underlined in contact/footer */
footer a[href^="tel"],
.contact a[href^="tel"],
.footer a[href^="tel"]:link,
.footer a[href^="tel"]:visited,
.footer a[href^="tel"]:hover,
.footer a[href^="tel"]:active,
.contact a[href^="tel"]:link,
.contact a[href^="tel"]:visited,
.contact a[href^="tel"]:hover,
.contact a[href^="tel"]:active {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

/* Responsive Design */
@media (max-width: 968px) {
    .cyber-expert-animation {
        display: none;
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
    }
    
    .float-icon i {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--darker-bg);
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
