/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    background: transparent;
    border-radius: 8px;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.7) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/11062b_d8c8c150557a41fb986c6162f2556939~mv2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ai-hero-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Digital Grid Background */
.digital-grid {
    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: 100px 100px;
    animation: grid-shift 20s linear infinite;
}

/* Quantum Particles */
.quantum-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00d4ff 0%, rgba(0, 212, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: quantum-float 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.quantum-particle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: quantum-ring 3s linear infinite;
}

.particle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 35%;
    right: 25%;
    animation-delay: 0.8s;
}

.particle-3 {
    bottom: 40%;
    left: 15%;
    animation-delay: 1.6s;
}

.particle-4 {
    top: 70%;
    right: 40%;
    animation-delay: 2.4s;
}

.particle-5 {
    bottom: 25%;
    left: 60%;
    animation-delay: 3.2s;
}

/* Neural Pathways */
.neural-pathway {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.4) 30%, rgba(0, 212, 255, 0.8) 50%, rgba(0, 212, 255, 0.4) 70%, transparent 100%);
    animation: pathway-pulse 6s ease-in-out infinite;
    transform-origin: left center;
}

.pathway-1 {
    top: 25%;
    left: 10%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.pathway-2 {
    top: 55%;
    left: 30%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.pathway-3 {
    bottom: 30%;
    right: 20%;
    width: 200px;
    transform: rotate(35deg);
    animation-delay: 4s;
}

/* AI Circuit Patterns */
.circuit-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: transparent;
    animation: circuit-glow 5s ease-in-out infinite;
}

.pattern-1 {
    top: 20%;
    right: 15%;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%);
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 35%;
    left: 25%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2.5s;
}

/* Data Waves */
.data-wave {
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.6) 50%, transparent 100%);
    animation: wave-flow 8s linear infinite;
    transform-origin: center;
}

.wave-1 {
    top: 40%;
    left: 0;
    transform: rotate(-10deg);
    animation-delay: 0s;
}

.wave-2 {
    bottom: 40%;
    right: 0;
    transform: rotate(10deg);
    animation-delay: 4s;
}

/* Holographic Elements */
.hologram-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    animation: hologram-flicker 7s ease-in-out infinite;
    border-radius: 10px;
}

.holo-1 {
    top: 60%;
    left: 40%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.holo-2 {
    top: 30%;
    left: 70%;
    transform: rotate(-30deg);
    animation-delay: 3.5s;
}

/* Animations */
@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes quantum-float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) scale(1.2); 
        opacity: 1;
    }
}

@keyframes quantum-ring {
    0% { 
        transform: scale(0.5) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes pathway-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes circuit-glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
        border-color: rgba(0, 212, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        border-color: rgba(0, 212, 255, 0.8);
    }
}

@keyframes wave-flow {
    0% { 
        transform: translateX(-100%) rotate(-10deg); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: translateX(100vw) rotate(-10deg); 
        opacity: 0; 
    }
}

@keyframes hologram-flicker {
    0%, 100% { 
        opacity: 0.4; 
        filter: brightness(1);
    }
    25% { 
        opacity: 0.8; 
        filter: brightness(1.3);
    }
    50% { 
        opacity: 0.2; 
        filter: brightness(0.8);
    }
    75% { 
        opacity: 0.9; 
        filter: brightness(1.5);
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
    margin-top: 20px;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    word-wrap: break-word;
    hyphens: none;
    overflow-wrap: break-word;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    display: inline-block;
    white-space: nowrap;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.cta-button.secondary:hover {
    background: #00d4ff;
    color: #fff;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    animation: float-dots 4s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.dot-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float-dots {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

.disintegrating-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: disintegrate 8s ease-in-out infinite;
}

@keyframes disintegrate {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
    25% { transform: translate(-50%, -50%) scale(1.1) rotate(90deg); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(0.9) rotate(180deg); opacity: 0.6; }
    75% { transform: translate(-50%, -50%) scale(1.05) rotate(270deg); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); opacity: 1; }
}

/* Value Areas Section */
.value-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #333;
    scroll-margin-top: 90px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.service-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1a202c;
    line-height: 1.3;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    scroll-margin-top: 90px;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desk Image Container */
.desk-image-container {
    position: relative;
    width: 350px;
    height: 280px;
    margin: 0 auto;
}

.desk-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: desk-float 6s ease-in-out infinite;
}

.desk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.desk-frame:hover .desk-image {
    transform: scale(1.05);
}

/* Image Overlay Effects */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Floating Problem Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.problem-icon {
    position: absolute;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: icon-bounce 3s ease-in-out infinite;
}

.icon-pdf {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-excel {
    top: 20%;
    right: 20%;
    animation-delay: 0.8s;
}

.icon-email {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.6s;
}

.icon-chat {
    bottom: 20%;
    right: 15%;
    animation-delay: 2.4s;
}

/* Stress Lines Effect */
.stress-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stress-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.8) 50%, transparent 100%);
    animation: stress-pulse 2s ease-in-out infinite;
    border-radius: 2px;
}

.line-1 {
    top: 40%;
    left: 10%;
    width: 80%;
    animation-delay: 0s;
}

.line-2 {
    top: 55%;
    left: 15%;
    width: 70%;
    animation-delay: 0.7s;
}

.line-3 {
    top: 70%;
    left: 20%;
    width: 60%;
    animation-delay: 1.4s;
}

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes desk-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }
}

@keyframes icon-bounce {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.1); 
        opacity: 1;
    }
}

@keyframes stress-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(0.8);
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1.2);
    }
}

@keyframes glow-pulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
    }
}

.problem-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
}

.problem-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.problem-emphasis {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.solution-highlight {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.solution-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.solution-highlight p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    scroll-margin-top: 90px;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a202c;
}

.process-steps {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: #fff;
}

.clients-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

/* Clients Carousel */
.clients-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    animation: carousel-slide 20s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0 1rem;
    min-width: 180px;
}

.client-logo:hover {
    transform: scale(1.05);
    background: #f7fafc;
}

.client-logo img {
    max-width: 140px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0.7;
}

.carousel-nav:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav i {
    color: #333;
    font-size: 1.2rem;
}

.carousel-nav:hover i {
    color: #00d4ff;
}

/* Carousel Animation */
@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

/* Neural Network Nodes */
.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00d4ff 0%, rgba(0, 212, 255, 0.3) 100%);
    border-radius: 50%;
    animation: neural-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.neural-node::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: neural-ring 4s ease-in-out infinite;
}

.neural-node:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.neural-node:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 0.8s;
}

.neural-node:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1.6s;
}

.neural-node:nth-child(4) {
    bottom: 30%;
    right: 25%;
    animation-delay: 2.4s;
}

.neural-node:nth-child(5) {
    bottom: 20%;
    left: 50%;
    animation-delay: 3.2s;
}

/* Neural Connections */
.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    animation: neural-flow 4s linear infinite;
    transform-origin: left center;
}

.neural-connection:nth-child(6) {
    top: 20%;
    left: 12%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.neural-connection:nth-child(7) {
    top: 45%;
    left: 25%;
    width: 150px;
    transform: rotate(-20deg);
    animation-delay: 1s;
}

.neural-connection:nth-child(8) {
    bottom: 35%;
    right: 30%;
    width: 180px;
    transform: rotate(25deg);
    animation-delay: 2s;
}

/* Floating Geometric Shapes */
.ai-geometry {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.2);
    animation: geometric-float 6s ease-in-out infinite;
}

.ai-geometry.hexagon {
    width: 40px;
    height: 40px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(0, 212, 255, 0.1);
    top: 30%;
    right: 10%;
    animation-delay: 0s;
}

.ai-geometry.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(0, 212, 255, 0.15);
    border: none;
    background: transparent;
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.ai-geometry.diamond {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 255, 0.1);
    transform: rotate(45deg);
    bottom: 45%;
    right: 40%;
    animation-delay: 4s;
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 212, 255, 0.6) 50%, transparent 100%);
    animation: data-flow 3s linear infinite;
}

.data-stream:nth-child(13) {
    top: 0;
    left: 80%;
    animation-delay: 0s;
}

.data-stream:nth-child(14) {
    top: 0;
    left: 30%;
    animation-delay: 1s;
}

@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.3); 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes neural-ring {
    0% { 
        transform: scale(0.8); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2); 
        opacity: 0; 
    }
}

@keyframes neural-flow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes geometric-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.4; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8; 
    }
}

@keyframes data-flow {
    0% { 
        transform: translateY(-100px); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(100vh); 
        opacity: 0; 
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-section > .container > .cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.benefits-list {
    text-align: left;
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.benefits-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.cta-highlight {
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.final-question {
    font-size: 1.5rem;
    margin-top: 3rem;
    color: #00d4ff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-contact a {
    color: #00d4ff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.address {
    margin-top: 1rem;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
}

/* Medium screens - better service cards layout */
@media (max-width: 900px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .service-card {
        min-height: auto;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 1rem 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .ai-hero-effects {
        opacity: 0.2;
    }
    
    .digital-grid {
        background-size: 50px 50px;
    }
    
    .neural-pathway {
        width: 150px !important;
    }
    
    .circuit-pattern {
        width: 50px;
        height: 50px;
    }
    
    .data-wave {
        width: 120px;
    }
    
    .hologram-element {
        width: 40px;
        height: 40px;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .desk-image-container {
        width: 300px;
        height: 240px;
        margin: 2rem auto;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 400px;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .clients-carousel-container {
        padding: 1rem 0;
    }
    
    .client-logo {
        min-width: 150px;
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .client-logo img {
        max-width: 120px;
        height: 50px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    /* Improved mobile text readability */
    .cta-section h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .problem-text h2 {
        font-size: clamp(1.6rem, 6vw, 2.25rem);
        line-height: 1.2;
    }
    
    .process-section h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    /* Better touch targets */
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 90px 0 0.5rem 0;
    }
    
    .hero-content {
        padding: 0.75rem;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 7vw, 1.8rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    /* Enhanced touch targets */
    .cta-button {
        padding: 1rem 1.5rem;
        min-height: 48px;
        font-size: 0.9rem;
        border-radius: 25px;
        width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .nav-menu a {
        padding: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .clients-carousel-container {
        padding: 0.5rem 0;
    }
    
    .desk-image-container {
        width: 250px;
        height: 200px;
    }
    
    .problem-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stress-line {
        height: 2px;
    }
    
    .client-logo {
        min-width: 120px;
        padding: 0.5rem;
        margin: 0 0.25rem;
    }
    
    .client-logo img {
        max-width: 100px;
        height: 40px;
    }
    
    .carousel-nav {
        display: none; /* Hide navigation arrows on very small screens */
    }
    
    /* Better spacing for very small screens */
    .value-areas {
        padding: 3rem 0;
    }
    
    .problem-section {
        padding: 3rem 0;
    }
    
    .process-section {
        padding: 3rem 0;
    }
    
    .projects-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 1rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Additional Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card:nth-child(odd) {
    animation: pulse 6s ease-in-out infinite;
}

.service-card:nth-child(even) {
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.projects-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.projects-section .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.project-card:hover::before {
    opacity: 1;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.project-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.project-content h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-meta {
    margin-bottom: 1.5rem;
}

.project-industry {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-challenge,
.project-solution,
.project-tech,
.project-results {
    margin-bottom: 1.5rem;
}

.project-challenge h4,
.project-solution h4,
.project-tech h4,
.project-results h4 {
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-challenge p,
.project-solution p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-tech h4 {
    margin-bottom: 0.75rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(0, 153, 204, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 153, 204, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 153, 204, 0.3);
    transform: translateY(-2px);
}

.project-results ul {
    list-style: none;
    padding: 0;
}

.project-results li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.project-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .projects-section .section-header h2 {
        font-size: 2rem;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 3rem 0;
    }
    
    .projects-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .projects-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .project-card {
        padding: 1.25rem;
    }
    
    .project-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .project-icon i {
        font-size: 1.25rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    /* Improve readability on very small screens */
    .problem-text h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        line-height: 1.2;
    }
    
    .cta-section h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        line-height: 1.2;
    }
    
    .process-section h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        line-height: 1.2;
    }
    
    
    .clients-section h2 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        line-height: 1.2;
    }
    
    /* Improved project cards for mobile */
    
    .project-challenge p,
    .project-solution p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .project-results li {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Improve hamburger menu visibility */
    .hamburger {
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        background: #333;
        margin: 2px 0;
        transition: 0.3s;
        display: block;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -4px);
    }
    
    /* Special mobile text handling */
    .gradient-text {
        white-space: normal;
        word-break: keep-all;
        hyphens: none;
    }
    
    /* Center social icons */
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}