/* Modern Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: 
        /* Subtle geometric shapes with reduced opacity */
        radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(138, 43, 226, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 70% 15%, rgba(0, 212, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 25% 85%, rgba(159, 122, 234, 0.03) 0%, transparent 25%),
        /* Professional gradient layers */
        linear-gradient(135deg, var(--dark-bg) 0%, rgba(15, 23, 42, 0.95) 25%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 75%, var(--darker-bg) 100%),
        /* Clean base background */
        linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    background-attachment: fixed;
    background-size: 1200px 1200px, 800px 800px, 600px 600px, 900px 900px, cover, cover;
    overflow-x: hidden;
    scroll-behavior: smooth;
    
    /* Performance optimizations */
    transform: var(--gpu-acceleration);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Professional cursor */
    cursor: default;
}

/* Animated background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(255, 0, 128, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 60% 90%, rgba(138, 43, 226, 0.06) 0%, transparent 30%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

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

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: var(--reduced-motion) !important;
        animation-iteration-count: 1 !important;
        transition-duration: var(--reduced-motion) !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: rgba(255, 255, 255, 0.3);
        --text-secondary: #e0e0e0;
    }
}

/* Focus management for accessibility */
*:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}

*:focus:not(:focus-visible) {
    box-shadow: none;
}

*:focus-visible {
    box-shadow: var(--focus-ring);
}

/* Vibrant Tech-Inspired Color Palette */
:root {
    /* Neon Blue & Electric Colors */
    --neon-blue: #00d4ff;
    --electric-blue: #0099ff;
    --cyber-blue: #0066cc;
    --deep-blue: #003d7a;
    
    /* Gradient Purples */
    --purple-light: #b794f6;
    --purple-medium: #9f7aea;
    --purple-dark: #805ad5;
    --purple-deep: #553c9a;
    
    /* Bright Accent Colors */
    --neon-pink: #ff0080;
    --electric-green: #00ff88;
    --cyber-orange: #ff6b35;
    --neon-yellow: #ffff00;
    --electric-purple: #8a2be2;
    
    /* Tech-Inspired Gradients */
    --primary-gradient: linear-gradient(135deg, var(--neon-blue) 0%, var(--electric-purple) 50%, var(--purple-dark) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--neon-pink) 0%, var(--purple-medium) 50%, var(--cyber-blue) 100%);
    --accent-gradient: linear-gradient(135deg, var(--electric-green) 0%, var(--neon-blue) 50%, var(--electric-blue) 100%);
    --neon-gradient: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-pink) 25%, var(--electric-purple) 50%, var(--electric-green) 75%, var(--neon-yellow) 100%);
    --holographic-gradient: linear-gradient(45deg, var(--neon-pink), var(--electric-purple), var(--neon-blue), var(--electric-green), var(--neon-yellow));
    --cyber-gradient: linear-gradient(135deg, var(--cyber-blue) 0%, var(--purple-dark) 50%, var(--deep-blue) 100%);
    
    /* Professional Background System */
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: rgba(148, 163, 184, 0.05);
    --glass-bg: rgba(148, 163, 184, 0.08);
    --overlay-bg: rgba(15, 23, 42, 0.8);
    
    /* Professional Border & Glow System */
    --border-color: rgba(148, 163, 184, 0.15);
    --border-glow: rgba(102, 126, 234, 0.25);
    --border-bright: rgba(102, 126, 234, 0.4);
    
    /* Professional Text Colors with High Contrast */
    --text-primary: #f8fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-accent: #6366f1;
    --text-highlight: #10b981;
    --text-warning: #f59e0b;
    --text-error: #ef4444;
    
    /* Professional Shadow & Glow Effects */
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
    --shadow-neon: 0 0 20px rgba(99, 102, 241, 0.25);
    --shadow-purple: 0 0 25px rgba(139, 92, 246, 0.2);
    --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.2);
    --shadow-green: 0 0 20px rgba(16, 185, 129, 0.2);
    
    /* Animation & Transition System */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Blur Effects */
    --blur-backdrop: blur(20px);
    --blur-strong: blur(40px);
    --blur-subtle: blur(10px);
    
    /* Performance optimizations */
    --gpu-acceleration: translateZ(0);
    --will-change: transform, opacity;
    
    /* Accessibility */
    --focus-ring: 0 0 0 3px rgba(0, 212, 255, 0.6);
    --reduced-motion: 0.15s;
    
    /* Geometric Shapes */
    --shape-size-sm: 60px;
    --shape-size-md: 120px;
    --shape-size-lg: 200px;
}

/* Dark Mode Theme Variables */
[data-theme="dark"] {
    /* Enhanced dark theme with better contrast */
    --dark-bg: #000000;
    --darker-bg: #000000;
    --card-bg: rgba(0, 212, 255, 0.05);
    --glass-bg: rgba(0, 212, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --text-muted: #c0c0c0;
    --border-color: rgba(0, 212, 255, 0.3);
    --border-glow: rgba(0, 212, 255, 0.5);
}

/* Light Mode Theme Variables */
[data-theme="light"] {
    /* Light theme with vibrant accents */
    --dark-bg: #ffffff;
    --darker-bg: #f8f9fa;
    --card-bg: rgba(0, 212, 255, 0.05);
    --glass-bg: rgba(0, 212, 255, 0.08);
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --border-color: rgba(0, 212, 255, 0.2);
    --border-glow: rgba(0, 212, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.2);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p, span, div {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.gradient-text {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-glow {
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

.text-neon {
    color: var(--neon-blue);
    text-shadow: 
        0 0 5px var(--neon-blue),
        0 0 10px var(--neon-blue),
        0 0 15px var(--neon-blue),
        0 0 20px var(--neon-blue);
}

.text-electric {
    color: var(--electric-green);
    text-shadow: 
        0 0 5px var(--electric-green),
        0 0 10px var(--electric-green),
        0 0 15px var(--electric-green);
}

.text-cyber {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink);
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.6;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: var(--shape-size-sm) solid transparent;
    border-right: var(--shape-size-sm) solid transparent;
    border-bottom: calc(var(--shape-size-sm) * 1.732) solid var(--neon-blue);
    filter: blur(1px);
    animation: floatShape 12s ease-in-out infinite, rotateShape 8s linear infinite;
}

.shape-circle {
    width: var(--shape-size-md);
    height: var(--shape-size-md);
    border-radius: 50%;
    background: radial-gradient(circle, var(--electric-purple) 0%, transparent 70%);
    animation: floatShape 18s ease-in-out infinite, pulseShape 4s ease-in-out infinite;
}

.shape-hexagon {
    width: var(--shape-size-sm);
    height: calc(var(--shape-size-sm) * 0.866);
    background: var(--neon-pink);
    position: relative;
    margin: calc(var(--shape-size-sm) * 0.433) 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: floatShape 20s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

.shape-diamond {
    width: var(--shape-size-sm);
    height: var(--shape-size-sm);
    background: var(--electric-green);
    transform: rotate(45deg);
    animation: floatShape 16s ease-in-out infinite, rotateShape 10s linear infinite;
    box-shadow: 0 0 20px var(--electric-green);
}

.shape-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: floatShape 14s ease-in-out infinite, lineGlow 2s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-30px);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-150px) translateX(80px);
        opacity: 0.9;
    }
}

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

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px currentColor; }
    50% { box-shadow: 0 0 30px currentColor, 0 0 40px currentColor; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Abstract Animated Elements */
.abstract-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

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

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

.particle:nth-child(2n) {
    background: var(--electric-green);
    box-shadow: 0 0 10px var(--electric-green);
    animation-duration: 12s;
    animation-delay: 2s;
}

.particle:nth-child(3n) {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(200px);
        opacity: 0;
    }
}

/* Energy Waves */
.energy-wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-blue) 25%, 
        var(--electric-purple) 50%, 
        var(--neon-pink) 75%, 
        transparent 100%);
    animation: waveMove 6s ease-in-out infinite;
    opacity: 0.7;
}

.energy-wave:nth-child(2) {
    animation-delay: 2s;
    top: 30%;
}

.energy-wave:nth-child(3) {
    animation-delay: 4s;
    top: 60%;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 0.7;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition-smooth);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 0 rgba(0, 212, 255, 0.4);
    animation: pulse 2s infinite;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(0, 212, 255, 0.6),
        0 0 0 10px rgba(0, 212, 255, 0.1);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Progress ring for back to top */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 0.3s ease;
}



/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.4),
            0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    70% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.4),
            0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.4),
            0 0 0 0 rgba(0, 212, 255, 0);
    }
}



/* Dark Mode Toggle */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 1rem;
    position: relative;
    z-index: 10;
}

.toggle-track {
    width: 50px;
    height: 26px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: var(--blur-backdrop);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.toggle-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 2px 8px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.toggle-thumb svg {
    width: 12px;
    height: 12px;
    color: white;
    transition: var(--transition);
}

.sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.moon-icon {
    opacity: 0;
    transform: scale(0.8) rotate(180deg);
    position: absolute;
}

/* Dark mode active state */
[data-theme="dark"] .toggle-thumb {
    transform: translateX(24px);
    background: var(--secondary-gradient);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: scale(0.8) rotate(180deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Light mode active state */
[data-theme="light"] .toggle-track {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 212, 255, 0.3);
}

[data-theme="light"] .toggle-thumb {
    background: var(--accent-gradient);
    box-shadow: 
        0 2px 8px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* Hover effects */
.dark-mode-toggle:hover .toggle-track {
    border-color: var(--border-glow);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.dark-mode-toggle:hover .toggle-thumb {
    transform: scale(1.1);
    box-shadow: 
        0 4px 12px rgba(0, 212, 255, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

[data-theme="dark"] .dark-mode-toggle:hover .toggle-thumb {
    transform: translateX(24px) scale(1.1);
}

/* Focus states for accessibility */
.dark-mode-toggle:focus {
    outline: none;
}

.dark-mode-toggle:focus .toggle-track {
    box-shadow: 
        var(--focus-ring),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .dark-mode-toggle {
        margin-right: 0.5rem;
    }
    
    .toggle-track {
        width: 44px;
        height: 24px;
    }
    
    .toggle-thumb {
        width: 20px;
        height: 20px;
    }
    
    .toggle-thumb svg {
        width: 10px;
        height: 10px;
    }
    
    [data-theme="dark"] .toggle-thumb {
        transform: translateX(20px);
    }
    
    [data-theme="dark"] .dark-mode-toggle:hover .toggle-thumb {
        transform: translateX(20px) scale(1.1);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    

}

/* Newsletter Signup Form */
.newsletter-column {
    max-width: 300px;
}

.newsletter-column h4 {
    color: var(--text-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-column p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    backdrop-filter: var(--blur-backdrop);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--border-glow);
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.2),
        0 4px 12px rgba(0, 212, 255, 0.1);
    background: var(--card-bg);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.newsletter-btn:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3);
    filter: brightness(1.1);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.newsletter-btn:hover .newsletter-icon {
    transform: translateX(2px);
}

.newsletter-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-spinner {
    width: 20px;
    height: 20px;
    color: white;
}

.newsletter-btn.loading .newsletter-text,
.newsletter-btn.loading .newsletter-icon {
    opacity: 0;
}

.newsletter-btn.loading .newsletter-loading {
    display: block;
}

.newsletter-message {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
    min-height: 20px;
}

.newsletter-message.success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--electric-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.newsletter-message.error {
    background: rgba(255, 0, 128, 0.1);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--text-accent);
    flex-shrink: 0;
}

/* Newsletter form animations */
@keyframes newsletterSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.newsletter-form.success {
    animation: newsletterSuccess 0.6s ease-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .newsletter-column {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-features {
        margin-top: 1rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .navbar.scrolled .logo-image {
        height: 28px;
    }
    
    .hero-logo-image {
        width: 150px;
        height: 150px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        margin-left: 0.5rem;
    }
}

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

/* Premium Sticky Header with Shrink Animation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: var(--blur-backdrop);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: var(--gpu-acceleration);
    will-change: transform, height, padding, background;
    height: 80px;
    
    /* Enhanced futuristic glow effect */
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;

    height: 2px;
    background: var(--neon-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shrunk state on scroll */
.navbar.scrolled {
    height: 60px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: var(--blur-strong);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 212, 255, 0.2),
        0 0 100px rgba(138, 43, 226, 0.1);
}

.navbar.scrolled::before {
    opacity: 0.8;
    height: 3px;
}

/* Hide navbar on scroll down, show on scroll up */
.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Center the nav-menu when no other elements are present */
.nav-container .nav-menu {
    margin-left: auto;
}

/* Adjust container padding for shrunk state */
.navbar.scrolled .nav-container {
    padding: 0 20px;
}

/* Logo scaling animation */
.navbar .logo {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.navbar.scrolled .logo {
    transform: scale(0.9);
}

/* Navigation links adjustment for shrunk state */
.navbar.scrolled .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition);
    border-radius: 50%;
    object-fit: contain;
}

.navbar.scrolled .logo-image {
    height: 35px;
}

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    overflow: hidden;
    transform: var(--gpu-acceleration);
    
    /* Futuristic text glow */
    text-shadow: 0 0 10px transparent;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-gradient);
    transition: var(--transition-bounce);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.nav-link:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

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

.nav-link:hover {
    color: var(--text-accent);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
    background: rgba(0, 245, 255, 0.05);
    transform: translateY(-2px) var(--gpu-acceleration);
}

.nav-link.active {
    color: var(--text-accent);
    background: rgba(0, 245, 255, 0.08);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
}

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



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 160px; /* 80px navbar + 60px social strip + 20px spacing for optimal readability */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(240, 147, 251, 0.05) 50%, transparent 70%);
    pointer-events: none;
    animation: gradientShift 12s ease-in-out infinite;
}

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

@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(-5px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Logo Styles */
.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.hero-logo-image:hover {
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    transform: scale(1.05);
}

.logo-icon {
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subheading {
    font-size: 1.04rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.hero-subheading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: var(--gpu-acceleration);
    will-change: var(--will-change);
    
    /* Futuristic button base */
    backdrop-filter: var(--blur-backdrop);
    border: 1px solid transparent;
    
    /* Micro-interaction preparation */
    --btn-scale: 1;
    --btn-glow: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-bounce);
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    transition: all 0.3s ease-out;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 
        var(--shadow-glow),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02) var(--gpu-acceleration);
    box-shadow: 
        0 15px 50px rgba(102, 126, 234, 0.5),
        0 0 30px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98) var(--gpu-acceleration);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: var(--blur-backdrop);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-glow);
    color: var(--text-accent);
    transform: translateY(-3px) scale(1.02) var(--gpu-acceleration);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(0, 245, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98) var(--gpu-acceleration);
}

/* Accessibility enhancements */
.btn:focus-visible {
    outline: none;
    box-shadow: 
        var(--focus-ring),
        0 0 20px rgba(102, 126, 234, 0.4);
}

/* Loading state */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: static;
    transform: none;
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px) var(--gpu-acceleration);
    }
    100% {
        opacity: 1;
        transform: translateY(0) var(--gpu-acceleration);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) var(--gpu-acceleration);
    }
    100% {
        opacity: 1;
        transform: translateX(0) var(--gpu-acceleration);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) var(--gpu-acceleration);
    }
    100% {
        opacity: 1;
        transform: translateX(0) var(--gpu-acceleration);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8) var(--gpu-acceleration);
    }
    100% {
        opacity: 1;
        transform: scale(1) var(--gpu-acceleration);
    }
}

/* Enhanced Card Components */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: var(--blur-backdrop);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform: var(--gpu-acceleration);
    will-change: var(--will-change);
    
    /* Futuristic glow border */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-8px) var(--gpu-acceleration);
    border-color: var(--border-glow);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(102, 126, 234, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card:hover::before {
    opacity: 0.8;
}

/* Interactive Elements */
.interactive {
    cursor: pointer;
    transition: var(--transition-smooth);
    transform: var(--gpu-acceleration);
}

.interactive:hover {
    transform: scale(1.02) var(--gpu-acceleration);
}

.interactive:active {
    transform: scale(0.98) var(--gpu-acceleration);
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

/* Service Icons Container */
.service-icons-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    justify-items: center;
}

/* Service Icon Cards */
.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    width: 100%;
    max-width: 200px;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gradient));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-icon-card:hover::before {
    opacity: 0.1;
}

.service-icon-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

/* Icon Wrapper */
.icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

/* Service SVG Icons */
.service-svg-icon {
    width: 48px;
    height: 48px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.service-icon-card:hover .service-svg-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Service Labels */
.service-label {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.service-icon-card:hover .service-label {
    color: var(--text-primary);
}

/* Responsive styling for the main hero image */
.hero-main-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive image styling for hero section */
.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: var(--shadow-glow);
    width: 100%;
    height: 120px;
}

.floating-card svg {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 100px;
}

.card-1 {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation-delay: 0s;
    grid-column: 1;
    grid-row: 1;
}

.card-2 {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    animation-delay: 2s;
    grid-column: 3;
    grid-row: 1;
}

.card-3 {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    animation-delay: 4s;
    grid-column: 2;
    grid-row: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.72rem;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--primary-gradient);
    margin: 10px auto;
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    animation: none !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    opacity: 0;
    transition: none;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 0;
}

.service-card:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--border-color);
}

/* Service Card Variants - DISABLED for consistent visibility */
.service-card[data-service="website-development"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="digital-marketing"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="seo-optimization"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="branding-design"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="tech-consulting"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="mobile-development"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="ai-solutions"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card[data-service="custom-software"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}



.service-card[data-service="data-analytics"]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: none;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: none;
}

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

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: none;
    box-shadow: none;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* Learn More Button */
.learn-more-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.learn-more-btn:hover::before {
    left: 0;
}

.learn-more-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

.learn-more-btn:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Service Features and Technologies Styles */
.service-features {
    margin: 1.5rem 0;
}

.service-features h4,
.service-technologies h4 {
    color: var(--text-accent);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: bold;
}

.service-technologies {
    margin-top: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tech-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    animation: slideInUp 0.4s ease-out;
    position: relative;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.modal-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.modal-technologies {
    margin-bottom: 1rem;
}

.modal-technologies h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Company Introduction */
.company-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.company-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Address Card */
.company-address {
    margin-top: 2rem;
}

.address-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.address-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.address-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.address-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.address-details p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Mission Statement */
.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Vision Quote */
.company-quote {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    margin: 0;
    font-style: italic;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    color: rgba(102, 126, 234, 0.3);
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.company-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.company-quote cite {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

/* Commitment Section */
.commitment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

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

.commitment-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.commitment-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.commitment-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.commitment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.commitment-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Enhanced Stats */
.stats-enhanced {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.stats-enhanced .stat {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.stats-enhanced .stat:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.stats-enhanced .stat h3 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stats-enhanced .stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Tech Expertise */
.tech-expertise {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.tech-expertise h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.tech-item:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* CTA Sections */
.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    text-align: left;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headlineGlow 3s ease-in-out infinite alternate;
}

@keyframes headlineGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-btn:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.cta-btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    filter: brightness(1.1);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.cta-btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* CTA Visual Elements */
.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 200px;
}

.cta-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: iconFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cta-icon svg {
    width: 60px;
    height: 60px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
}

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

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 5.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.7;
    }
}

/* Hover Effects for CTA Sections */
.cta-section:hover .cta-icon {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.cta-section:hover .particle {
    animation-duration: 3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-btn {
        min-width: 160px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .cta-visual {
        height: 150px;
    }
    
    .cta-icon {
        width: 100px;
        height: 100px;
    }
    
    .cta-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-headline {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}




    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.testimonial-card.prev {
    transform: translateX(-100px) scale(0.9);
    opacity: 0;
}

.testimonial-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.quote-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
    z-index: 10;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--text-accent);
    position: absolute;
    top: -8px;
    left: 8px;
    opacity: 0.15;
    font-family: serif;
    z-index: 1;
    pointer-events: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    z-index: 10;
}

.author-avatar {
    position: relative;
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

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

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.nav-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

.dot:hover {
    transform: scale(1.2);
}

/* Client Logos Section */
.client-logos {
    margin-top: 5rem;
    text-align: center;
}

.client-logos h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.logo-item {
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-placeholder {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.logo-item:hover .logo-placeholder {
    color: var(--text-primary);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-container {
        height: 600px;
        margin: 1rem 0;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .testimonial-author {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .author-avatar .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .testimonials-navigation {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .logos-container {
        gap: 1.5rem;
    }
    
    .logo-placeholder {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        height: 650px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .logos-container {
        gap: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 100%;
    min-height: 400px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--border-bright);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.quote-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--text-accent);
    position: absolute;
    top: -8px;
    left: -8px;
    opacity: 0.15;
    font-family: serif;
    pointer-events: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.author-avatar {
    position: relative;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #ffd700;
    font-size: 1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

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

/* Navigation Controls */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.nav-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-btn:hover svg {
    color: white;
}

.testimonials-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--text-accent);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--text-accent);
    transform: scale(1.1);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--text-accent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    opacity: 0.3;
}

.dot:hover::after,
.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        min-height: 350px;
        max-width: 100%;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .quote-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .author-avatar .avatar-placeholder {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .testimonials-navigation {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Tech Insights Blog Section */
.blog.tech-insights {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.blog.tech-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Category Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category-filter {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.category-filter:hover::before,
.category-filter.active::before {
    left: 0;
}

.category-filter:hover,
.category-filter.active {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

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

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Featured Images */
.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.featured-image svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover .featured-image svg {
    transform: scale(1.1);
}

/* Category-specific image backgrounds */
.featured-image.software-tech {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.featured-image.ai-automation {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
}

.featured-image.digital-transformation {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
}

.featured-image.ui-ux-trends {
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.1), rgba(254, 214, 227, 0.1));
}

.featured-image.mobile-development {
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.1), rgba(254, 207, 239, 0.1));
}

.featured-image.web-security {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.1), rgba(254, 225, 64, 0.1));
}

.featured-image.animation-design {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

/* Blog Content */
.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Category Tags with Different Colors */
.blog-category {
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category.software-technology {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.blog-category.ai-automation {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.blog-category.digital-transformation {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.blog-category.ui-ux-trends {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

.blog-category.mobile-development {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #333;
}

.blog-category.web-security {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: #333;
}

.blog-category.animation-design {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.blog-date {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--text-primary);
    font-weight: 700;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* Blog Expanded Content */
.blog-expanded-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-expanded-content.show {
    opacity: 1;
    max-height: 1000px;
    padding-top: 1.5rem;
}

.expanded-text {
    margin-bottom: 1.5rem;
}

.expanded-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.expanded-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.expanded-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.expanded-text li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tags .tag {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.blog-tags .tag:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Read More Button */
.read-more-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.read-more-btn:hover::before {
    left: 0;
}

.read-more-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Load More Section */
.blog-load-more {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

#loadMorePosts {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Blog Card Filtering */
.blog-card.hidden {
    display: none;
}

.blog-card.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.blog-card.fade-in {
    opacity: 1;
    transform: scale(1);
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.response-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: #4facfe;
}

.notice-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

/* Contact Information */
.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-text a {
    color: #667eea;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.contact-text a:hover {
    color: #764ba2;
}

.contact-text span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced CRM Form Styles */
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding: 0.5rem;
    border: none;
}

/* Enhanced dropdown option styling for better contrast */
.form-group select option:hover,
.form-group select option:focus {
    background: var(--card-bg);
    color: var(--text-primary);
}

.form-group select option:checked {
    background: var(--border-glow);
    color: var(--text-primary);
    font-weight: 500;
}

/* Field Error Styles */
.field-error {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error.show {
    opacity: 1;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Character Count */
.character-count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.character-count.warning {
    color: #f59e0b;
}

.character-count.error {
    color: #ef4444;
}

/* Consent Group */
.consent-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Form Status */
.form-status {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-status.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Loading Spinner */
.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Enhanced Submit Button */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.submit-btn:not(.loading) .btn-loading {
    opacity: 0;
}

/* Map Section */
.map-section {
    position: relative;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-info h4 {
    color: #8B0000;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.map-info p {
    color: #8B0000;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.directions-btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Visitor Counter */
.visitor-counter {
    margin-top: 1rem;
}

.counter-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.counter-display:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.counter-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.counter-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

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

.counter-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.counter-number {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.counter-number:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

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

.counter-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.stat-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-value {
    transform: scale(1.1);
    text-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    z-index: 1;
    /* Prevent any unwanted movement */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Ensure stable positioning */
    will-change: auto;
    contain: layout style paint;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    /* Stabilize grid layout */
    position: relative;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.footer-brand h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    /* Prevent movement */
    position: relative;
    width: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
    }

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

    .hero {
        padding-top: 150px; /* 70px mobile navbar + 60px social strip + 20px spacing for optimal readability */
    }

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

    .hero-visual {
        height: 300px;
        order: -1;
    }

    /* Service Icons Responsive */
    .service-icons-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .service-icon-card {
        min-height: 120px;
        padding: 1rem;
        max-width: none;
    }

    .service-svg-icon {
        width: 40px;
        height: 40px;
    }

    .service-label {
        font-size: 0.8rem;
    }

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

    .about-main {
        gap: 2rem;
    }

    .company-intro h3 {
        font-size: 1.5rem;
    }

    .address-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .company-quote p {
        font-size: 1.1rem;
        padding-right: 0;
    }

    .quote-icon {
        position: static;
        margin: 0 auto 1rem;
    }

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

    .commitment-section h3 {
        font-size: 1.5rem;
    }

    .stats-enhanced {
        padding: 1.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .response-notice {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .contact-icon {
        align-self: center;
        margin-bottom: 0.5rem;
    }

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

    .contact-form {
        padding: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .map-header h3 {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-social {
        display: none;
    }
    
    .floating-social-sidebar.show {
        right: 10px;
    }
    
    .floating-social-container {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .floating-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .tooltip {
        display: none;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-social-icon {
        justify-content: center;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Mobile stability fixes */
        position: relative;
        width: 100%;
        transform: translateZ(0);
        backface-visibility: hidden;
        will-change: auto;
    }

    .footer-links {
        grid-template-columns: 1fr;
        /* Mobile stability fixes */
        position: relative;
        width: 100%;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .visitor-counter {
        margin-top: 1.5rem;
    }
    
    .counter-display {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .counter-stats {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .counter-number {
        font-size: 1.3rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }

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

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-card {
        padding: 1.5rem;
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .learn-more-btn:active {
        transform: scale(0.98);
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

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

    .blog-categories {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .category-filter {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .blog-card {
        margin-bottom: 1rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-load-more {
        margin-top: 3rem;
    }

    section {
        padding: 60px 0;
    }

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

    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-subheading {
        font-size: 0.88rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 150px; /* 70px mobile navbar + 60px social strip + 20px spacing for optimal readability */
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.72rem;
    }

    .service-card,
    .blog-card,
    .contact-form {
        padding: 1.5rem;
    }

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

    .social-links {
        justify-content: center;
    }
    
    .floating-social-sidebar.show {
        right: 5px;
    }
    
    .floating-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Footer Brand Social Icons */
.footer-brand-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.footer-brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.footer-brand-icon:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-brand-icon:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.footer-brand-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.footer-brand-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Social Media Icons (Legacy - keeping for compatibility) */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.footer-social-icon:hover::before {
    left: 100%;
    transition: left 0.6s ease-in-out;
}

.footer-social-icon:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-social-icon span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Platform-specific hover effects */
.social-icon:hover,
.footer-social-icon:hover {
    animation: socialBounce 0.6s ease-in-out;
}

@keyframes socialBounce {
    0%, 100% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

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

    .scroll-indicator {
        animation: none;
    }

    .floating-card {
        animation: none;
    }
}

/* Social Media Strip */
.social-strip {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: var(--blur-backdrop);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
    
    /* Enhanced futuristic glow effect matching navbar */
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 2px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.social-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-gradient);
    opacity: 0.6;
    background-size: 200% 100%;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.social-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Match nav-container padding */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Restore proper space distribution */
    height: 100%;
    position: relative; /* For precise positioning */
}

.social-strip-text {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
    margin-left: 1rem; /* Align with nav-logo margin-left */
    flex-shrink: 0; /* Prevent text from shrinking */
}

.social-strip-right {
    display: flex;
    align-items: center;
    gap: 2rem; /* Increase gap for better spacing between 'services' and 'visit' */
    /* Remove absolute positioning to work with flexbox */
    flex-shrink: 0; /* Prevent shrinking */
}

.social-strip-text .brand-text {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.social-strip-right .visit-text {
    font-size: 0.95rem;
    opacity: 1;
    color: #ff4444;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
}



.social-strip-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap; /* Prevent wrapping on smaller screens */
}

.social-strip-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0; /* Prevent icon shrinking */
    position: relative; /* For better positioning control */
}

.social-strip-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-strip-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block; /* Ensure proper alignment */
    margin: auto; /* Center the SVG within the container */
}

/* Brand-specific colors for social icons - Default state */
.social-strip-icon:nth-child(1) { background: #1877f2; } /* Facebook */
.social-strip-icon:nth-child(2) { background: #25d366; } /* WhatsApp */
.social-strip-icon:nth-child(3) { background: #e4405f; } /* Instagram */
.social-strip-icon:nth-child(4) { background: #1da1f2; } /* Twitter */
.social-strip-icon:nth-child(5) { background: #0077b5; } /* LinkedIn */
.social-strip-icon:nth-child(6) { background: #ff0000; } /* YouTube */
.social-strip-icon:nth-child(7) { 
    background: linear-gradient(135deg, #333 0%, #666 100%); 
} /* GitHub */

/* Enhanced hover effects for brand colors */
.social-strip-icon:nth-child(1):hover { 
    background: #1877f2; 
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
} /* Facebook */
.social-strip-icon:nth-child(2):hover { 
    background: #25d366; 
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
} /* WhatsApp */
.social-strip-icon:nth-child(3):hover { 
    background: #e4405f; 
    box-shadow: 0 5px 20px rgba(228, 64, 95, 0.4);
} /* Instagram */
.social-strip-icon:nth-child(4):hover { 
    background: #1da1f2; 
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
} /* Twitter */
.social-strip-icon:nth-child(5):hover { 
    background: #0077b5; 
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
} /* LinkedIn */
.social-strip-icon:nth-child(6):hover { 
    background: #ff0000; 
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
} /* YouTube */
.social-strip-icon:nth-child(7):hover { 
    background: linear-gradient(135deg, #333 0%, #666 100%); 
    box-shadow: 0 5px 20px rgba(102, 102, 102, 0.4);
} /* GitHub */

/* Responsive Design for Social Strip */
@media (max-width: 768px) {
    .social-strip-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        justify-content: center; /* Center content in mobile */
        align-items: center; /* Center align all content */
    }
    
    .social-strip-text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-left: 0; /* Reset margin for mobile - center alignment */
        order: 1; /* Ensure text comes first */
    }
    
    .social-strip-right {
        /* Keep flexbox behavior on mobile */
        flex-direction: column;
        gap: 1rem;
        order: 2; /* Ensure right section comes second */
    }
    
    .social-strip-icons {
        gap: 0.75rem;
    }
    
    .social-strip-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-strip-icon svg {
        width: 16px;
        height: 16px;
        display: block; /* Maintain proper alignment on mobile */
        margin: auto; /* Center the SVG within the container */
    }
}

@media (max-width: 480px) {
    .social-strip {
        padding: 0.5rem 0;
    }
    
    .social-strip-container {
        justify-content: center; /* Ensure centering on small mobile */
        align-items: center; /* Center align all content */
    }
    
    .social-strip-text {
        margin-left: 0; /* Reset margin for small mobile - center alignment */
        order: 1; /* Ensure text comes first */
    }
    
    .social-strip-right {
        /* Keep flexbox behavior on small mobile */
        flex-direction: column;
        gap: 1rem;
        order: 2; /* Ensure right section comes second */
    }
    
    .social-strip-text .brand-text {
        font-size: 0.9rem;
    }
    
    .social-strip-text .visit-text {
        font-size: 0.8rem;
    }
    
    .social-strip-icons {
        gap: 0.5rem;
    }
    
    .social-strip-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-strip-icon svg {
        width: 14px;
        height: 14px;
        display: block; /* Maintain proper alignment on small mobile */
        margin: auto; /* Center the SVG within the container */
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.btn:focus,
.social-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}