/* ===== VARIABLES ===== */
:root {
    --neon-pink: #FF006E;
    --neon-magenta: #FF0080;
    --neon-cyan: #00F0FF;
    --neon-blue: #0066FF;
    --dark-blue: #000B29;
    --darker-blue: #000515;
    --grid-blue: #0A1F44;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #8B9DC3;
    --dark-gray: #2D2D2D;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark-blue);
    overflow-x: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* Arabic Font */
body.lang-ar,
body[dir="rtl"] {
    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* RTL Typography Adjustments */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
    font-weight: 800;
}

[dir="rtl"] .hero-title {
    letter-spacing: 0;
    line-height: 1.3;
}

[dir="rtl"] p {
    line-height: 1.9;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

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

section {
    padding: 100px 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 11, 41, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 5px 30px rgba(255, 0, 110, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}

.ssh-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.ssh-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta));
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--white) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 10px 30px rgba(255, 0, 110, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    background: rgba(0, 40, 90, 0.4);
    border: 2px solid var(--neon-cyan);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 20px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.lang-toggle:hover {
    background: rgba(0, 40, 90, 0.6);
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    transform: translateY(-2px);
}

[dir="rtl"] .lang-toggle {
    margin-left: 0;
    margin-right: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000B29 0%, #001540 50%, #000B29 100%);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    box-shadow: 0 0 60px var(--neon-cyan);
}

.particle:nth-child(even) {
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    box-shadow: 0 0 60px var(--neon-pink);
}

.particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

.particle:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

.particle:nth-child(5) {
    width: 180px;
    height: 180px;
    bottom: 30%;
    left: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

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

.neon-frame {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    box-shadow: 
        0 0 40px rgba(255, 0, 110, 0.6),
        0 0 80px rgba(0, 240, 255, 0.4);
    animation: neonPulse 3s ease-in-out infinite;
}

.neon-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--neon-cyan);
    border-radius: 20px;
    border-left: none;
    border-bottom: none;
}

.image-placeholder {
    background: linear-gradient(135deg, #001540, #000B29);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Voice Indicator Circles */
.image-placeholder::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: voiceRipple 2s ease-out infinite;
    opacity: 0;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: voiceRipple 2s ease-out infinite 1s;
    opacity: 0;
}

@keyframes voiceRipple {
    0% {
        width: 150px;
        height: 150px;
        opacity: 0.8;
    }
    50% {
        width: 250px;
        height: 250px;
        opacity: 0.4;
    }
    100% {
        width: 350px;
        height: 350px;
        opacity: 0;
    }
}

.ai-icon {
    font-size: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.8));
    /* animation: robotTalking 4s ease-in-out infinite; */
    position: relative;
}

/* Talking & Explaining Animation - Subtle */
@keyframes robotTalking {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.8));
    }
    50% {
        transform: scale(1.02) translateY(-3px);
        filter: drop-shadow(0 0 35px rgba(255, 0, 110, 0.8));
    }
}

/* Speech Bubbles Effect (Teaching) */
.ai-icon::before,
.ai-icon::after {
    position: absolute;
    font-size: 28px;
    opacity: 0;
    animation: teachingBubble 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.8));
}

.ai-icon::before {
    content: '💭';
    top: -30px;
    right: -40px;
    animation-delay: 0s;
}

.ai-icon::after {
    content: '💡';
    top: -30px;
    left: -40px;
    animation-delay: 2s;
}

@keyframes teachingBubble {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: scale(1) translateY(-20px);
    }
}

.image-placeholder p {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* ===== VOICE WAVE INDICATORS ===== */
.voice-waves {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

.voice-waves-right {
    left: auto;
    right: 30px;
}

.wave-bar {
    width: 5px;
    height: 20px;
    background: linear-gradient(to top, var(--neon-pink), var(--neon-cyan));
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: waveAnimation 1.5s ease-in-out infinite;
}

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

.wave-bar:nth-child(2) {
    animation-delay: 0.15s;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.3s;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.45s;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes waveAnimation {
    0%, 100% {
        height: 20px;
        opacity: 0.5;
    }
    50% {
        height: 35px;
        opacity: 0.8;
    }
}

/* RTL Support for Voice Waves */
[dir="rtl"] .voice-waves {
    left: auto;
    right: 30px;
}

[dir="rtl"] .voice-waves-right {
    right: auto;
    left: 30px;
}

/* Mobile Adjustments for Voice Waves */
@media (max-width: 640px) {
    .voice-waves,
    .voice-waves-right {
        gap: 5px;
    }
    
    .wave-bar {
        width: 3px;
        height: 15px;
    }
    
    .explanation-icon {
        font-size: 25px;
    }
    
    .pointer-hand {
        font-size: 35px;
        right: -40px;
    }
    
    [dir="rtl"] .pointer-hand {
        left: -40px;
    }
    
    @keyframes waveAnimation {
        0%, 100% {
            height: 15px;
            opacity: 0.6;
        }
        25% {
            height: 35px;
            opacity: 1;
        }
        50% {
            height: 25px;
            opacity: 0.8;
        }
        75% {
            height: 40px;
            opacity: 1;
        }
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 0, 110, 0.6),
            0 0 80px rgba(0, 240, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 0, 110, 0.8),
            0 0 100px rgba(0, 240, 255, 0.6);
    }
}

/* ===== SPEAKING INDICATOR ===== */
.neon-frame::after {
    content: '🔊';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    /* animation: speakerPulse 1.5s ease-in-out infinite; */
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

@keyframes speakerPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.08);
        opacity: 0.8;
    }
}

/* ===== EXPLANATION ICONS (Teaching Mode) ===== */
.explanation-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.explanation-icon {
    position: absolute;
    font-size: 30px;
    /* animation: explainFloat 4s ease-in-out infinite; */
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
    opacity: 0.6;
    /* Fixed position - no movement */
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 3s;
}

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

/* ===== POINTER HAND (Gesturing) ===== */
.pointer-hand {
    position: absolute;
    bottom: 15%;
    right: -60px;
    font-size: 50px;
    animation: pointGesture 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.6));
    z-index: 10;
}

@keyframes pointGesture {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-10px);
        opacity: 0.8;
    }
}

[dir="rtl"] .pointer-hand {
    right: auto;
    left: -60px;
    transform: scaleX(-1);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 
        0 0 20px rgba(0, 240, 255, 0.3),
        0 0 40px rgba(0, 240, 255, 0.2);
}

.hero-subtitle {
    font-size: 24px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.value-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    max-width: 250px;
}

.value-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}

.value-point strong {
    color: var(--white);
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.value-point p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta));
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.6s backwards;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 0, 110, 1), 0 15px 40px rgba(255, 0, 110, 0.5);
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-pink));
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--darker-blue);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
}

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

.about-card {
    background: rgba(0, 40, 90, 0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 50px rgba(255, 0, 110, 0.3);
}

.about-card h3 {
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h3 {
    font-size: 32px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    background: rgba(0, 40, 90, 0.3);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--neon-pink);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
    border-left-color: var(--neon-cyan);
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.vision-2030 {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 240, 255, 0.1));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
}

.vision-2030 h3 {
    font-size: 32px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-2030 p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== COMPANY STORY ===== */
.company-story {
    background: rgba(0, 40, 90, 0.3);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    animation: rotate360 20s linear infinite;
}

.story-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.8));
    /* animation: float 6s ease-in-out infinite; */
    position: relative;
    z-index: 2;
}

.company-story h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.company-story p {
    color: var(--white);
    font-size: 17px;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== LOGO MEANING ===== */
.logo-meaning {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 110, 0.1));
    padding: 35px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid var(--neon-pink);
    text-align: center;
}

.logo-meaning h3 {
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.logo-meaning p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--dark-blue);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(0, 40, 90, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px var(--neon-pink);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
    border-color: var(--neon-cyan);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-benefit {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 240, 255, 0.3);
}

/* ===== SSH PRODUCTS SECTION ===== */
.ssh-products {
    background: var(--dark-blue);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(0, 40, 90, 0.2);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: left 0.4s ease;
}

.product-card:hover::before {
    left: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.4);
}

.product-card.featured {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 110, 0.05);
}

.product-card.featured:hover {
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.5);
}

.product-card.highlight {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 110, 0.1));
    border: 2px solid var(--neon-cyan);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
}

[dir="rtl"] .product-badge {
    right: auto;
    left: 15px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 110, 0.7);
    }
}

.product-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
    /* animation: float 5s ease-in-out infinite; */
}

.product-card h3 {
    font-size: 22px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    line-height: 1.4;
}

.product-card.featured h3 {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    background: var(--darker-blue);
    position: relative;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(0, 40, 90, 0.2);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.industry-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
}

.industry-card h3 {
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.industry-problem,
.industry-solution,
.industry-benefit {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid;
    line-height: 1.7;
}

.industry-problem {
    border-left-color: #FF6B6B;
    color: var(--text-gray);
}

.industry-solution {
    border-left-color: var(--neon-cyan);
    color: var(--text-gray);
}

.industry-benefit {
    border-left-color: var(--neon-pink);
    color: var(--text-gray);
}

.industry-problem strong,
.industry-solution strong,
.industry-benefit strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

/* ===== USE CASES SECTION ===== */
.use-cases {
    background: var(--dark-blue);
    position: relative;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: rgba(0, 40, 90, 0.2);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.use-case-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
    transform: translateY(-5px);
}

.use-case-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.use-case-card h3 {
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.use-case-card p {
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: linear-gradient(135deg, #000B29 0%, #001540 50%, #000B29 100%);
    color: var(--white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose .section-header h2 {
    color: var(--white);
}

.why-choose .section-line {
    background: linear-gradient(90deg, var(--primary-gold), var(--electric-blue));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(0, 40, 90, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    background: rgba(0, 40, 90, 0.4);
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.why-card h3 {
    font-size: 22px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--darker-blue);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(0, 40, 90, 0.2);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
}

.testimonial-quote {
    font-size: 80px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid var(--neon-pink);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--neon-cyan);
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--dark-blue);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 28px;
    width: 50px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--neon-cyan);
    font-size: 16px;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(0, 40, 90, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(0, 40, 90, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-blue);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

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

.footer-brand p {
    color: var(--text-gray);
    margin-top: 15px;
    line-height: 1.7;
}

.footer-links h4 {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .value-point {
    text-align: right;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .hero-subtitle {
    text-align: right;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .value-points {
    direction: rtl;
}

[dir="rtl"] .deco-arrows {
    left: auto;
    right: 3%;
    transform: scaleX(-1);
}

[dir="rtl"] .deco-arrows-right {
    right: auto;
    left: 5%;
    transform: scaleX(-1);
}

[dir="rtl"] .deco-cross {
    right: auto;
    left: 12%;
}

[dir="rtl"] .deco-plus {
    left: auto;
    right: 8%;
}

[dir="rtl"] .section-header {
    text-align: center;
}

[dir="rtl"] .about-card,
[dir="rtl"] .service-card,
[dir="rtl"] .industry-card,
[dir="rtl"] .use-case-card,
[dir="rtl"] .testimonial-card {
    text-align: right;
}

[dir="rtl"] .value-item {
    text-align: right;
    border-left: none;
    border-right: 4px solid var(--neon-pink);
}

[dir="rtl"] .value-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .use-case-number {
    right: auto;
    left: 20px;
}

[dir="rtl"] .why-number {
    right: auto;
    left: 20px;
}

[dir="rtl"] .contact-item {
    direction: rtl;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* RTL Button Adjustments */
[dir="rtl"] .btn-primary,
[dir="rtl"] .btn-nav {
    letter-spacing: 0;
}

/* RTL Form Adjustments */
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

/* RTL Hero Container */
[dir="rtl"] .hero-container {
    direction: rtl;
}

/* RTL Neon Frame Position */
[dir="rtl"] .neon-frame::before {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 3px solid var(--neon-cyan);
}

/* RTL Navigation */
[dir="rtl"] .nav-wrapper {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .ssh-logo {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .nav-links {
    direction: rtl;
}

/* RTL About Grid */
[dir="rtl"] .about-grid,
[dir="rtl"] .services-grid,
[dir="rtl"] .industries-grid,
[dir="rtl"] .use-cases-grid,
[dir="rtl"] .why-grid,
[dir="rtl"] .testimonials-grid {
    direction: rtl;
}

/* RTL Contact Wrapper */
[dir="rtl"] .contact-wrapper {
    direction: rtl;
}

/* RTL Footer */
[dir="rtl"] .footer-content {
    direction: rtl;
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 11, 41, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid var(--neon-cyan);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 240, 255, 0.1);
    }
    
    .btn-nav {
        display: inline-block;
        padding: 15px 40px !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .lang-toggle {
        margin-left: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    [dir="rtl"] .lang-toggle {
        margin-left: 0;
        margin-right: 15px;
    }
    
    [dir="rtl"] .nav-links {
        right: 0;
        left: auto;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 20px;
    }
    
    /* Show image first on mobile */
    .hero-image-container {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .value-points {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-container {
        display: block !important;
        width: 100%;
    }
    
    .neon-frame {
        display: block;
        width: 100%;
    }
    
    .image-placeholder {
        min-height: 350px;
        padding: 60px 30px;
        display: flex !important;
    }
    
    .ai-icon {
        font-size: 80px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deco-arrows,
    .deco-cross,
    .deco-plus,
    .deco-arrows-right {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image-container {
        display: block !important;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .neon-frame {
        padding: 15px;
    }
    
    .image-placeholder {
        min-height: 280px;
        padding: 40px 20px;
        display: flex !important;
    }
    
    .ai-icon {
        font-size: 60px;
    }
    
    .image-placeholder p {
        font-size: 18px;
    }
    
    /* Hide decorative elements on small screens */
    .explanation-icons,
    .pointer-hand,
    .thought-bubble {
        display: none;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .industries-grid,
    .use-cases-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .deco-arrows,
    .deco-cross,
    .deco-plus,
    .deco-arrows-right {
        display: none;
    }
}

/* ===== DECORATIVE ELEMENTS ===== */
.deco-arrows {
    position: absolute;
    top: 15%;
    left: 3%;
    font-size: 50px;
    font-weight: 900;
    color: var(--neon-cyan);
    opacity: 0.4;
    z-index: 1;
    animation: slideRight 3s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.deco-arrows-right {
    position: absolute;
    top: 60%;
    right: 5%;
    font-size: 60px;
    font-weight: 900;
    color: var(--neon-cyan);
    opacity: 0.4;
    z-index: 1;
    animation: slideRight 3s ease-in-out infinite reverse;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.deco-cross {
    position: absolute;
    top: 25%;
    right: 12%;
    font-size: 80px;
    font-weight: 900;
    color: var(--neon-pink);
    opacity: 0.4;
    z-index: 1;
    animation: rotate360 10s linear infinite;
    text-shadow: 0 0 30px var(--neon-pink);
}

.deco-plus {
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 70px;
    font-weight: 900;
    color: var(--neon-cyan);
    opacity: 0.4;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon-cyan);
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

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

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

/* ===== NEON GLOW TEXT ===== */
.neon-text {
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
}

/* ===== TECH GRID LINES ===== */
.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.2;
    z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GLOWING DOTS & CIRCUIT ELEMENTS ===== */
.hero-background::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    animation: glowPulse 2s ease-in-out infinite 0.5s;
}

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

/* Additional Circuit Dots */
.animated-bg::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 30%;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.animated-bg::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 35%;
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-pink);
}

/* ===== CIRCUIT LINES ===== */
.about::after,
.services::after,
.industries::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
    opacity: 0.3;
}

