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

:root {
    /* 60/30/10 Color Rule */
    --primary-black: #0a0a0a; /* 60% - Main background */
    --primary-blue: #0066ff; /* 30% - Accent color */
    --primary-white: #ffffff; /* 10% - Highlights */
    
    /* Additional colors */
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --blue-glow: #00aaff;
    --blue-dark: #004499;
    --blue-light: #3399ff;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px var(--blue-glow);
}

.custom-cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    box-shadow: 0 0 10px var(--blue-glow);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    z-index: 1000;
    transition: var(--transition-medium);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
    text-decoration: none;
}

.nav-logo i {
    color: var(--primary-blue);
    font-size: 28px;
    text-shadow: 0 0 20px var(--blue-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
    box-shadow: 0 0 10px var(--blue-glow);
}

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

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

.nav-link.active {
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--blue-glow);
}

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

.call-btn {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

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

.hero-title .highlight {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--blue-glow);
}

.glow-text {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--blue-glow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    color: var(--primary-white);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.hero-text {
    flex: 1;
    text-align: left;
}

/* Security Shield */
.security-shield {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: shieldFloat 4s ease-in-out infinite;
}

.shield-body {
    position: relative;
    width: 300px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 4px solid #0066ff;
    box-shadow: 
        0 0 30px rgba(0, 102, 255, 0.3),
        inset 0 0 30px rgba(0, 102, 255, 0.1);
    animation: shieldPulse 3s ease-in-out infinite alternate;
}

.shield-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 50%, #0066ff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 3px solid #ffffff;
    box-shadow: 
        0 0 20px rgba(0, 102, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: shieldGlow 2s ease-in-out infinite alternate;
}

.shield-center {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #0066ff;
    box-shadow: 
        0 0 25px rgba(0, 102, 255, 0.6),
        inset 0 0 15px rgba(0, 102, 255, 0.1);
    animation: centerPulse 2.5s ease-in-out infinite alternate;
}

.shield-center i {
    font-size: 60px;
    color: #0066ff;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite alternate;
    z-index: -1;
}

.security-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0066ff;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

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

.particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1.5s;
}

/* Shield Animations */
@keyframes shieldFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shieldPulse {
    0% { 
        box-shadow: 
            0 0 30px rgba(0, 102, 255, 0.3),
            inset 0 0 30px rgba(0, 102, 255, 0.1);
        transform: scale(1);
    }
    100% { 
        box-shadow: 
            0 0 50px rgba(0, 102, 255, 0.6),
            inset 0 0 40px rgba(0, 102, 255, 0.2);
        transform: scale(1.05);
    }
}

@keyframes shieldGlow {
    0% { 
        box-shadow: 
            0 0 20px rgba(0, 102, 255, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 35px rgba(0, 102, 255, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes centerPulse {
    0% { 
        box-shadow: 
            0 0 25px rgba(0, 102, 255, 0.6),
            inset 0 0 15px rgba(0, 102, 255, 0.1);
        transform: scale(1);
    }
    100% { 
        box-shadow: 
            0 0 40px rgba(0, 102, 255, 0.9),
            inset 0 0 25px rgba(0, 102, 255, 0.2);
        transform: scale(1.1);
    }
}

@keyframes iconGlow {
    0% { 
        color: #0066ff;
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    }
    100% { 
        color: #ffffff;
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
    }
}

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

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0px) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
}

/* Services Hero Animation */
.services-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
}

.services-hero .hero-text {
    flex: 1;
    text-align: left;
}

.services-hero .hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.animated-security-scene {
    width: 100%;
    height: 400px;
    position: relative;
    animation: sceneGlow 3s ease-in-out infinite alternate;
}



/* CCTV Camera */
.cctv-camera {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: cameraScan 4s ease-in-out infinite;
}

.camera-body {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #333 0%, #666 50%, #333 100%);
    border-radius: 20px;
    position: relative;
    border: 2px solid #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.camera-lens {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #000 0%, #333 70%, #666 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lensFocus 2s ease-in-out infinite;
}

.camera-light {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 5px;
    animation: lightBlink 1s ease-in-out infinite;
}

.camera-mount {
    width: 4px;
    height: 30px;
    background: #444;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Security Sensors */
.security-sensors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sensor {
    width: 12px;
    height: 12px;
    background: #00FF00;
    border-radius: 50%;
    position: absolute;
    animation: sensorPulse 2s ease-in-out infinite;
}

.sensor-1 {
    top: 80px;
    left: 50px;
    animation-delay: 0s;
}

.sensor-2 {
    top: 120px;
    right: 60px;
    animation-delay: 0.5s;
}

.sensor-3 {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

/* Security Grid */
.security-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    animation: gridScan 3s ease-in-out infinite;
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 25%;
    animation-delay: 0s;
}

.line-2 {
    width: 100%;
    height: 1px;
    top: 50%;
    animation-delay: 0.5s;
}

.line-3 {
    width: 100%;
    height: 1px;
    top: 75%;
    animation-delay: 1s;
}

.line-4 {
    width: 1px;
    height: 100%;
    left: 50%;
    animation-delay: 1.5s;
}

/* Data Stream */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-bit {
    width: 4px;
    height: 4px;
    background: #00FFFF;
    border-radius: 50%;
    position: absolute;
    animation: dataFlow 2s linear infinite;
}

.bit-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bit-2 {
    top: 40%;
    left: 20%;
    animation-delay: 0.4s;
}

.bit-3 {
    top: 60%;
    left: 30%;
    animation-delay: 0.8s;
}

.bit-4 {
    top: 80%;
    left: 40%;
    animation-delay: 1.2s;
}

.bit-5 {
    top: 30%;
    left: 50%;
    animation-delay: 1.6s;
}

/* Animations */
@keyframes cameraScan {
    0%, 100% { transform: translateX(-50%) rotateY(0deg); }
    25% { transform: translateX(-30%) rotateY(15deg); }
    50% { transform: translateX(-50%) rotateY(0deg); }
    75% { transform: translateX(-70%) rotateY(-15deg); }
}

@keyframes lensFocus {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

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

@keyframes sensorPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 10px #00FF00;
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 20px #00FF00;
    }
}

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

@keyframes dataFlow {
    0% { 
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% { 
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    80% { 
        opacity: 1;
        transform: translateY(-60px) scale(1);
    }
    100% { 
        opacity: 0;
        transform: translateY(-80px) scale(0);
    }
}





/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-white), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: transparent;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: var(--transition-medium);
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
}

.service-features i {
    color: var(--primary-blue);
    font-size: 14px;
}

.service-btn {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-btn:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--light-gray);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-white);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--blue-glow);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-card {
    position: absolute;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 0;
    right: 0;
    animation-delay: 1.5s;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--blue-glow);
}

.floating-card h4 {
    color: var(--primary-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.floating-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

.feature-card {
    background: rgba(51, 51, 51, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.feature-card h4 {
    color: var(--primary-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about-cta h3 {
    color: var(--primary-white);
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--blue-glow);
}

.about-cta p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    color: var(--primary-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

.cta-btn i {
    font-size: 1.2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(51, 51, 51, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--blue-glow);
}

.stat-item p {
    color: var(--light-gray);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-team {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.security-team i {
    font-size: 100px;
    color: var(--primary-white);
}

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

/* Pixel Card Solutions Section */
.solutions-pixel {
    padding: 100px 0;
}

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

.pixel-card {
    background: transparent;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pixel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.pixel-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.pixel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.pixel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pixel-card:hover .pixel-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

.pixel-icon i {
    font-size: 24px;
    color: var(--primary-white);
}

.pixel-badge {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 8px 12px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.3);
}

.pixel-card-content {
    padding: 25px;
}

.pixel-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-white);
    font-weight: 600;
}

.pixel-card-content p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pixel-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pixel-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.pixel-feature:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.pixel-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pixel-feature:hover .pixel-dot {
    transform: scale(1.5);
    box-shadow: 0 0 10px var(--blue-glow);
}

.pixel-card-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.pixel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.pixel-btn:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.pixel-btn i {
    transition: transform 0.3s ease;
}

.pixel-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Pixel Cards */
@media (max-width: 768px) {
    .pixel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pixel-card {
        margin-bottom: 20px;
    }
    
    .pixel-card-header {
        padding: 20px 20px 15px;
    }
    
    .pixel-card-content {
        padding: 20px;
    }
    
    .pixel-card-footer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .pixel-icon {
        width: 40px;
        height: 40px;
    }
    
    .pixel-icon i {
        font-size: 20px;
    }
    
    .pixel-badge {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .pixel-card-content h3 {
        font-size: 1.3rem;
    }
}

/* Solutions Section with Stepper */
.solutions {
    padding: 100px 0;
}

.stepper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--blue-light));
    box-shadow: 0 0 10px var(--blue-glow);
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-right: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    transition: var(--transition-fast);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Testimonials Section - Card Grid Layout */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-light));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

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

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

.testimonial-card.featured {
    grid-column: span 2;
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary-blue);
}

.testimonial-card.featured::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-light), var(--primary-blue));
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 20px;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-info h4 {
    color: var(--primary-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffd700;
    font-size: 14px;
}

.card-body {
    position: relative;
    margin-bottom: 20px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 12px;
}

.card-body p {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
    font-style: italic;
    margin-left: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.service-tag {
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.date {
    color: var(--light-gray);
    font-size: 0.8rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.testimonials-stats .stat-card {
    background: rgba(51, 51, 51, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.testimonials-stats .stat-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-white);
    font-size: 24px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Testimonials CTA */
.testimonials-cta {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-top: 60px;
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    color: var(--primary-white);
    border: none;
}

.cta-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-btn.secondary:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.5);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(51, 51, 51, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-white);
}

.contact-details h3 {
    color: var(--primary-white);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--light-gray);
    margin-bottom: 5px;
}

.contact-form {
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 10px;
    color: var(--primary-white);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

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

/* Footer */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.footer-section h3 {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.emergency-contact p {
    color: var(--light-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-btn {
    background: linear-gradient(45deg, var(--primary-blue), var(--blue-light));
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    transition: var(--transition-fast);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition-medium);
        padding: 40px 0;
        backdrop-filter: blur(10px);
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stepper::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
}

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Smooth scrolling for all sections */
section {
    scroll-margin-top: 80px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apply animations to elements */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-visual {
    animation: fadeInRight 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
}

.step {
    animation: fadeInLeft 0.8s ease-out;
}

.testimonial-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    position: relative;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-preview-card {
    background: transparent;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: var(--transition-medium);
}

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

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.service-preview-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-medium);
}

.service-preview-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.service-preview-card .service-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.service-preview-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.learn-more:hover {
    color: var(--blue-light);
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* About Summary Section */
.about-summary {
    padding: 100px 0;
    position: relative;
}

.about-summary .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-summary .about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.about-summary .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-summary .about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-summary .about-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.about-summary .about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.about-summary .about-image i {
    font-size: 4rem;
    color: var(--primary-white);
}

/* Hero Clock Section */
.moving-clock-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Moving Clock Section */
.moving-clock-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.moving-clock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%230066ff" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.clock-container {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.moving-clock-hero .clock-container {
    max-width: 800px;
    margin: 0 auto;
}

.clock-message {
    margin-bottom: 50px;
}

.clock-message h2 {
    font-size: 2.5rem;
    color: var(--primary-white);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    animation: messageGlow 2s ease-in-out infinite alternate;
}

.moving-clock-hero .clock-message h1 {
    font-size: 4rem;
    color: var(--primary-white);
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(0, 102, 255, 0.8);
    animation: messageGlow 3s ease-in-out infinite alternate;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.moving-clock-hero .clock-message .hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Typewriter Animation */
.typewriter-text {
    overflow: visible;
    white-space: normal;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.typewriter-text .line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.typewriter-text .line:nth-child(1) {
    animation-delay: 0.2s;
}

.typewriter-text .line:nth-child(2) {
    animation-delay: 0.4s;
}

.typewriter-text .line:nth-child(3) {
    animation-delay: 0.6s;
}

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



/* Responsive typewriter */
@media (max-width: 768px) {
    .typewriter-text {
        font-size: 2.5rem;
        white-space: normal;
        padding: 0 15px;
    }
    
    .moving-clock-hero .clock-message h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .moving-clock-hero .clock-message h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .typewriter-text .line {
        margin-bottom: 5px;
    }
}

.clock-message p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin: 0;
}

@keyframes messageGlow {
    0% { text-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 102, 255, 0.8); }
}

.moving-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.clock-face {
    width: 300px;
    height: 300px;
    border: 6px solid var(--primary-blue);
    border-radius: 50%;
    position: relative;
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.4);
    animation: clockGlow 3s ease-in-out infinite alternate;
}

.moving-clock-hero .clock-face {
    width: 400px;
    height: 400px;
    border: 8px solid var(--primary-blue);
    box-shadow: 0 0 80px rgba(0, 102, 255, 0.5);
}

@keyframes clockGlow {
    0% {
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.4);
        border-color: var(--primary-blue);
    }
    100% {
        box-shadow: 0 0 80px rgba(0, 102, 255, 0.7);
        border-color: var(--blue-light);
    }
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

.moving-clock-hero .clock-center {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
}

.hour-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 80px;
    background: var(--primary-white);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    border-radius: 3px;
    animation: hourRotate 43200s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.moving-clock-hero .hour-hand {
    width: 8px;
    height: 110px;
}

.minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 110px;
    background: var(--primary-white);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    border-radius: 2px;
    animation: minuteRotate 3600s linear infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.moving-clock-hero .minute-hand {
    width: 6px;
    height: 150px;
}

.second-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 130px;
    background: var(--blue-light);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    border-radius: 1px;
    animation: secondRotate 60s linear infinite;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.8);
}

.moving-clock-hero .second-hand {
    width: 3px;
    height: 170px;
}

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

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

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

.clock-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clock-numbers .number {
    position: absolute;
    color: var(--primary-white);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
    animation: numberPulse 2s ease-in-out infinite;
}

.moving-clock-hero .clock-numbers .number {
    font-size: 32px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
}

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

.number-12 {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.number-3 {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.number-6 {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.number-9 {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.clock-text {
    text-align: center;
}

.current-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
    animation: timeGlow 1s ease-in-out infinite alternate;
}

.moving-clock-hero .current-time {
    font-size: 2.5rem;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

@keyframes timeGlow {
    0% { text-shadow: 0 0 20px rgba(0, 102, 255, 0.6); }
    100% { text-shadow: 0 0 30px rgba(0, 102, 255, 0.9); }
}

.urgency-message {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-style: italic;
}

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

.clock-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite;
}

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

.clock-cta .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

/* Responsive adjustments for the clock */
@media (max-width: 768px) {
    .clock-face {
        width: 250px;
        height: 250px;
    }
    
    .hour-hand {
        height: 65px;
    }
    
    .minute-hand {
        height: 90px;
    }
    
    .second-hand {
        height: 105px;
    }
    
    .clock-numbers .number {
        font-size: 20px;
    }
    
    .clock-message h2 {
        font-size: 2rem;
    }
    
    .current-time {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .clock-face {
        width: 200px;
        height: 200px;
    }
    
    .hour-hand {
        height: 50px;
    }
    
    .minute-hand {
        height: 70px;
    }
    
    .second-hand {
        height: 85px;
    }
    
    .clock-numbers .number {
        font-size: 16px;
    }
    
    .clock-message h2 {
        font-size: 1.5rem;
    }
    
    .current-time {
        font-size: 1.2rem;
    }
    
    .clock-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Solutions Preview Section */
.solutions-preview {
    padding: 100px 0;
    position: relative;
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--blue-light));
    box-shadow: 0 0 15px var(--blue-glow);
}

.process-steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    transition: var(--transition-medium);
}

.process-steps .step:last-child {
    margin-bottom: 0;
}

.process-steps .step:hover {
    transform: translateX(10px);
}

.process-steps .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    position: relative;
    z-index: 2;
    transition: var(--transition-medium);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.process-steps .step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

.process-steps .step-content {
    flex: 1;
    padding-top: 10px;
}

.process-steps .step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.process-steps .step p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.solutions-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Preview Section */
.testimonials-preview {
    padding: 100px 0;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: var(--transition-medium);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--blue-light));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

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

.testimonial-content:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary-white);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
}

.cta-feature i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .services-preview {
        grid-template-columns: 1fr;
    }
    
    .about-summary     .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card h4 {
        font-size: 1rem;
    }
    
    .floating-card p {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    .about-summary .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        max-width: 600px;
    }
    
    .process-steps::before {
        left: 20px;
    }
    
    .process-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-slider {
        max-width: 600px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-preview-card {
        padding: 20px;
    }
    
    .about-summary .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-summary .about-image {
        width: 150px;
        height: 150px;
    }
    
    .about-summary .about-image i {
        font-size: 3rem;
    }
    
    .process-steps .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .process-steps::before {
        left: 17px;
        width: 2px;
    }
    
    .testimonials-grid {
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonials-stats .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
