/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #4d94ff;
    --accent-blue: #00a8ff;
    --white: #ffffff;
    --light-gray: #f5f8fa;
    --gray: #e1e8ed;
    --dark-gray: #657786;
    --text-dark: #14171a;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #0066cc 0%, #00a8ff 100%);
    --gradient-3: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-4: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-5: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 20px 60px rgba(0, 102, 204, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
    right: 0;
    max-width: 100vw;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1) drop-shadow(0 5px 15px rgba(0, 102, 204, 0.4));
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    overflow: hidden;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lang-btn:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.lang-btn.active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* HERO SECTION - COMPLETE REDESIGN */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(99,102,241,0.18), transparent 35%),
                radial-gradient(circle at 80% 30%, rgba(30,144,255,0.16), transparent 40%),
                linear-gradient(180deg, #0d111b 0%, #0f1625 50%, #0b0f1a 100%);
    padding-top: 80px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 120deg, rgba(99,102,241,0.18), rgba(30,144,255,0.12), rgba(99,102,241,0.18));
    filter: blur(60px);
    opacity: 0.4;
    animation: hero-aurora 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    animation-duration: 22s;
    animation-direction: reverse;
    opacity: 0.3;
}

@keyframes hero-aurora {
    0% { transform: rotate(0deg) scale(1); opacity: 0.35; }
    50% { transform: rotate(15deg) scale(1.05); opacity: 0.55; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.35; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* SVG Wave */
.hero-waves {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.1;
    z-index: 1;
}

#waveGradient {
    stop {
        offset: 0%;
        stop-color: #6366f1;
    }
    stop {
        offset: 100%;
        stop-color: #1e90ff;
    }
}

.animated-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(99, 102, 241, 0.18) 1.8px, transparent 1.8px),
        radial-gradient(circle, rgba(30, 144, 255, 0.15) 1.2px, transparent 1.2px);
    background-size: 65px 65px, 45px 45px;
    background-position: 0 0, 32px 32px;
    animation: dots-float 28s linear infinite;
}

@keyframes dots-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(90px); }
}
    100% { transform: translateY(50px); }
}

/* AI Glow Animation */
.floating-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15), transparent 60%);
    animation: ai-pulse-glow 4s ease-in-out infinite;
}

/* Hero beam layers */
.hero-beams {
    position: absolute;
    inset: -10% 0;
    background: linear-gradient(120deg, rgba(99,102,241,0.08) 0%, transparent 40%),
                linear-gradient(240deg, rgba(30,144,255,0.08) 0%, transparent 35%);
    filter: blur(18px);
    mix-blend-mode: screen;
    animation: beams-move 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes beams-move {
    0% { transform: translateY(-6%) translateX(-4%) rotate(-1deg); opacity: 0.7; }
    50% { transform: translateY(4%) translateX(3%) rotate(1deg); opacity: 0.9; }
    100% { transform: translateY(-3%) translateX(-2%) rotate(-0.5deg); opacity: 0.7; }
}

/* Hero sparkles */
.hero-sparkles {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.7), transparent 60%),
      radial-gradient(3px 3px at 70% 40%, rgba(173,216,255,0.8), transparent 60%),
      radial-gradient(2px 2px at 40% 70%, rgba(146,168,255,0.75), transparent 60%),
      radial-gradient(2px 2px at 85% 65%, rgba(255,255,255,0.6), transparent 60%);
    background-size: cover;
    opacity: 0.6;
    animation: spark-twinkle 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes spark-twinkle {
    0%, 100% { opacity: 0.35; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-2px); }
}

@keyframes ai-pulse-glow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Hero Content Grid Layout */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-left-section {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-right-section {
    position: relative;
    z-index: 2;
}

.hero .btn,
.hero .subtitle-link,
.hero .hero-badge {
    position: relative;
    z-index: 3;
}

.hero .btn-primary,
.hero .btn {
    box-shadow: 0 10px 35px rgba(30,144,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero .btn-primary:hover,
.hero .btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 40px rgba(99,102,241,0.35);
    filter: brightness(1.05);
}

.subtitle-link {
    text-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(30, 144, 255, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #a5b4fc;
    animation: badge-slide 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
    animation: badge-rotate 3s ease-in-out infinite;
}

@keyframes badge-slide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badge-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: var(--white);
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: title-word-appear 0.6s ease-out forwards;
    margin-right: 8px;
}

.title-word.word-1 { animation-delay: 0.1s; }
.title-word.word-2 { animation-delay: 0.2s; }
.title-word.word-3 { animation-delay: 0.3s; }
.title-word.word-4 { animation-delay: 0.4s; }
.title-word.word-5 { animation-delay: 0.5s; }

@keyframes title-word-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-word.highlight {
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: gradient-shine 3s ease-in-out infinite;
}

@keyframes gradient-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.9;
    line-height: 1.8;
}

.subtitle-link { color: #c5d3ff; text-decoration: none; cursor: pointer; transition: all 0.2s ease; font-weight: 600; position: relative; padding: 0 2px; }

.subtitle-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #6366f1, #1e90ff); transform: scaleX(1); transform-origin: left; transition: transform 0.2s ease; }

.subtitle-link:hover { color: #fff; }

.subtitle-link:hover::after {
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
           margin-bottom: 0px;
}

.btn {
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-4px);
}

/* Stats Section */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: stats-slide 0.8s ease-out 0.3s both;
}

@keyframes stats-slide {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::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: card-shine 3s ease-in-out infinite;
}

@keyframes card-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(30, 144, 255, 0.1));
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.stat-over {
    display: none;
}

.stat-card:hover .stat-over {
    transform: translateY(-2px);
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 100%);
    -webkit-background-clip: text;

.stat-number::after {
    content: '+';
    margin-left: 2px;
}
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e5ebff;
    text-align: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10;
    animation: fade-in 1s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 13px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: rgba(99, 102, 241, 0.8);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 20px 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-right-section {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 16px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .stats-container {
        flex-direction: row;
        gap: 20px;
    }

    .stat-card {
        flex: 1;
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-over {
        font-size: 0.78rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 70px 12px 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-over {
        font-size: 0.72rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .title-word {
        margin-right: 4px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    top: -100px;
    left: -100px;
    animation: blob-float 20s infinite ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1e90ff 0%, #06b6d4 100%);
    bottom: -80px;
    right: -50px;
    animation: blob-float 25s infinite ease-in-out reverse;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    top: 30%;
    right: 10%;
    animation: blob-float 22s infinite ease-in-out;
    animation-delay: 10s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95) rotate(240deg);
    }
}

/* Grid Background */
.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* Canvas for animated particles */
#heroCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 50;
    text-align: center;
    color: var(--white);
    padding-top: 0;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badge-glow 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    display: inline-block;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.85;
}

.subtitle-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.subtitle-link:hover {
    color: #6366f1;
    border-bottom-color: #6366f1;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 10px 0 0 0;
    flex-wrap: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    animation: stat-scale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }

@keyframes stat-scale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.75;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.8), transparent);
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 16px 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
    }

    .blob-3 {
        width: 200px;
        height: 200px;
    }

    .grid-lines {
        background-size: 40px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 16px 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 30px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 70px 12px 50px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }

    .blob {
        filter: blur(40px);
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-gradient-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

.hero-left {
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats-redesign {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e5ebff;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: #0f172a;
}

.hero-services {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.8;
}

.services-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6366f1;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 2s;
    color: #1e90ff;
}

.card-3 {
    bottom: 0;
    left: 30%;
    animation-delay: 4s;
}

.visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: #6366f1;
    top: 20%;
    right: -50px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: #1e90ff;
    bottom: 20%;
    left: -50px;
    animation-delay: 3s;
}

.scroll-indicator-new {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-redesign {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .visual-card {
        width: 110px;
        height: 110px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 80px 16px 60px;
    }

               padding: 75px 15px 25px !important;
               margin-bottom: 0 !important;
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats-redesign {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e5ebff;
    text-align: center;
}

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-right {
        height: 300px;
        margin-top: 20px;
    }

    .visual-card {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
    }

    .services-pills {
        width: 100%;
    }

    .pill {
        flex: 1;
        min-width: 70px;
        text-align: center;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 70px 12px 50px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-stats-redesign {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e5ebff;
    text-align: center;
}

    .hero-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-right {
        display: none;
    }

    .hero-services {
        gap: 10px;
        font-size: 0.85rem;
    }

    .services-pills {
        gap: 8px;
    }

    .pill {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.animated-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--dark-blue);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 50;
    text-align: center;
    color: var(--white);
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.subtitle-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.subtitle-link:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    clear: both;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: linear-gradient(135deg, #f5f8fa 0%, #e8eef3 100%);
}

.section-alt::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.08) 0%, transparent 50%);
    animation: gradient-float 20s ease-in-out infinite;
}

@keyframes gradient-float {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    background: linear-gradient(135deg, #14171a 0%, #003d7a 50%, #0066cc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 20px auto;
    border-radius: 2px;
    animation: line-expand 1.5s ease-out;
}

@keyframes line-expand {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Telekomunikacije grid layout overrides */
@media (min-width: 1024px) {
    .telecom-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .telecom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .telecom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    animation: icon-pulse 3s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 22px;
    background: var(--gradient-2);
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--primary-blue);
    margin-right: 15px;
    font-size: 1.2rem;
}

.content-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.content-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    animation: light-sweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes light-sweep {
    0%, 100% {
        transform: translate(-25%, -25%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(25%, 25%) scale(1.2);
        opacity: 0.7;
    }
}

.image-placeholder {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow), 0 0 60px rgba(99, 102, 241, 0.3);
    overflow: hidden;
    animation: ai-glow-pulse 3s ease-in-out infinite;
}

@keyframes ai-glow-pulse {
    0%, 100% {
        box-shadow: var(--shadow), 0 0 40px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: var(--shadow), 0 0 80px rgba(99, 102, 241, 0.5);
    }
}

/* AI Features */
.ai-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ai-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.ai-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    min-width: 50px;
}

.ai-feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.ai-feature-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.highlight-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.highlight-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.highlight-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.highlight-box p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Financing Grid */
.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.finance-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.finance-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.finance-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: var(--gradient-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.finance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.finance-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.finance-card ul {
    list-style: none;
}

.finance-card li {
    padding: 10px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.finance-card li i {
    color: var(--primary-blue);
    margin-right: 12px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--dark-gray);
    margin: 0;
}

.map-container {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Decorative floating elements for sections */
.section:not(.hero)::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: float-gentle 25s ease-in-out infinite;
}

.section-alt::after {
    background: radial-gradient(circle, rgba(0, 168, 255, 0.08) 0%, transparent 70%);
    top: auto;
    bottom: -100px;
    right: auto;
    left: -100px;
    animation-delay: 5s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

.ai-chat-widget {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    font-family: inherit;
}

/* Chat toggle button */
.ai-chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    z-index: 9999;
    margin: 0;
    padding: 0;
    animation: ai-glow 2.5s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@keyframes ai-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4), 0 0 15px rgba(0, 102, 204, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 102, 204, 0.6), 0 0 25px rgba(0, 102, 204, 0.4);
    }
}

@keyframes ai-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 30px rgba(0, 102, 204, 0.6), 0 0 25px rgba(0, 102, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 40px rgba(0, 102, 204, 0.8), 0 0 35px rgba(0, 102, 204, 0.6);
    }
}

.ai-chat-toggle:hover {
    animation: ai-pulse 0.8s ease-in-out infinite;
}

.ai-chat-toggle:active {
    transform: scale(0.95);
}

/* Chat window */
.ai-chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 340px;
    max-width: calc(100vw - 48px);
    height: 380px;
    max-height: calc(100vh - 200px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.ai-chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Chat header */
.ai-chat-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.ai-chat-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease;
}

.ai-chat-close:active {
    transform: scale(0.9);
}

/* Messages area */
.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
}

.ai-message,
.user-message {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 85%;
}

.ai-message {
    background: var(--white);
    color: var(--text-dark);
    border-left: 3px solid #0066cc;
    align-self: flex-start;
}

.user-message {
    background: #0066cc;
    color: var(--white);
    align-self: flex-end;
}

/* Input area */
.ai-chat-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #e0e0e0;
    background: var(--white);
    border-radius: 0 0 16px 16px;
}

.ai-chat-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.ai-chat-input input:focus {
    outline: none;
    border-color: #0066cc;
}

.ai-chat-input button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #0066cc;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.ai-chat-input button:active {
    background: #0052a3;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .ai-chat-toggle {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        position: fixed;
        z-index: 9999;
        animation: none;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .ai-chat-window {
        width: calc(100% - 32px);
        height: 400px;
        bottom: 90px;
        right: 16px;
        left: 16px;
    }
}
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        z-index: 10000;
        display: flex;
        align-items: center;
        max-width: 100vw;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        width: 100%;
        height: 70px;
        position: relative;
        max-width: 100%;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 10002;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .language-switcher {
        display: flex;
        gap: 5px;
        z-index: 10002;
        margin-left: auto;
        position: relative;
    }

    .lang-btn {
        min-width: 40px;
        min-height: 40px;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero {
        min-height: 90vh;
        height: auto;
        padding: 80px 20px 40px;
        background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .hero-left-section {
        width: 100%;
    }

    .hero-right-section {
        width: 100%;
    }

    .hero-background .animated-shapes,
    .hero-background .geometric-pattern,
    .hero-background .floating-icons,
    .hero-background .code-grid,
    .hero-background .network-container {
        display: none;
    }

    .hero-content {
        text-align: left;
        gap: 20px;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10 !important;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        word-wrap: break-word;
        width: 100%;
        margin-bottom: 20px;
        white-space: normal;
    }

    .title-word {
        display: inline;
        opacity: 1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: none;
    }

    .nav-container {
        display: flex;
        align-items: center;
        padding: 10px 15px !important;
        width: 100%;
        height: 70px;
        position: relative;
        max-width: 100vw;
        overflow: hidden;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        width: 100%;
        height: 70px;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1001;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .language-switcher {
        display: flex;
        gap: 5px;
        z-index: 1001;
        margin-left: auto;
        order: 2;
    }

    .lang-btn {
        min-width: 40px;
        min-height: 40px;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger span {
        background: rgba(255, 255, 255, 0.9);
        width: 22px;
        height: 3px;
        border-radius: 3px;
    }

    .nav-menu {
        order: 4;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .nav-link:hover {
        color: var(--accent-blue) !important;
    }

    .content-split,
    .contact-wrapper,
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        overflow: hidden;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        display: grid;
    }

    .service-card {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .content-split.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .hero-stats {
        gap: 30px;
        margin: 30px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .financing-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Disable all AOS animations on mobile */
    [data-aos] {
        opacity: 1;
        transform: none;
    }

    /* Disable title word animations */
    .title-word {
        opacity: 1 !important;
        animation: none !important;
        display: inline;
    }

    .animate-fade-in,
    .animate-fade-in-delay {
        opacity: 1 !important;
        animation: none !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        z-index: 1000;
        display: flex;
        align-items: center;
    }

    .nav-container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .hero {
        min-height: auto !important;
        max-height: none !important;
        padding: 70px 15px 10px !important;
        overflow: hidden !important;
        margin-bottom: 0 !important;
    }

    .hero-grid {
        gap: 6px !important;
    }

    .hero-buttons {
        gap: 4px !important;
        margin-bottom: 0 !important;
        margin-top: 4px !important;
    }

    .hero-stats {
        gap: 0 !important;
        margin-top: 0 !important;
    }

    .stat-card {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        margin: 0 !important;
    }

    .stat-icon {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .stat-over {
        font-size: 0.6rem !important;
        padding: 1px 5px !important;
        margin-bottom: 2px !important;
    }

    .stat-number {
        font-size: 1.2rem !important;
        margin-bottom: 1px !important;
    }

    .stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e5ebff;
    text-align: center;
}

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-top: 5px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 6px !important;
        margin-bottom: 10px !important;
        margin-top: 5px !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }

    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        width: 100%;
        margin-top: 0 !important;
    }

    .stats-container {
        width: 100%;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .stat-card {
        padding: 6px 10px !important;
        margin: 0 !important;
    }

    .stat-number {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .logo img {
        height: 40px;
    }


    .logo img.glow-pulse { animation: logo-glow-pulse 0.6s ease-out forwards; } @keyframes logo-glow-pulse { 0% { filter: brightness(1) drop-shadow(0 0 0 rgba(99,102,241,0)); } 50% { filter: brightness(1.4) drop-shadow(0 0 20px rgba(99,102,241,0.8)); } 100% { filter: brightness(1) drop-shadow(0 5px 15px rgba(0,102,204,0.4)); } }
        40% { transform: rotate(2deg) scale(1.02); }
        70% { transform: rotate(-1deg) scale(0.995); }
        100% { transform: rotate(0deg) scale(1); }
    }


    .section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .service-card h3,
    .service-card p,
    .service-card .service-icon {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .content-split,
    .service-highlights,
    .contact-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .content-text,
    .content-image,
    .feature-list {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

            .connection {
                display: none !important;
            }
    .feature-list li {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .financing-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .finance-card {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .finance-card h3,
    .finance-card p,
    .finance-card ul,
    .finance-card li {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .contact-info,
    .contact-form {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .info-item {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Reduce animations on mobile for performance */
    .service-icon {
        animation: none;
    }

    .service-icon::before {
        animation: none;
    }

    .section:not(.hero)::after,
    .section-alt::after {
        display: none;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Enhanced Visuals */

/* Code Window Animation */
.web-visual {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 30px;
}

.code-window {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.window-header {
    background: #0f172a;
    padding: 12px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.code-line {
    margin: 8px 0;
    animation: typeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tag { color: #60a5fa; }
.attr { color: #a78bfa; }
.string { color: #34d399; }

/* AI Network Visualization */
.ai-visual {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
    padding: 40px;
    overflow: visible;
}

.ai-network {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    animation: pulse-node 3s ease-in-out infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.node-3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.node-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.8);
    }
}

.connection {
    display: none;
}

.c-1 {
    top: 30%;
    left: 25%;
    width: 50%;
    transform: rotate(0deg);
    animation-delay: 0s;
}

.c-2 {
    top: 30%;
    left: 25%;
    width: 35%;
    transform: rotate(45deg);
    animation-delay: 0.3s;
}

.c-3 {
    top: 70%;
    left: 25%;
    width: 50%;
    transform: rotate(0deg);
    animation-delay: 0.6s;
}

.c-4 {
    top: 30%;
    left: 25%;
    width: 42%;
    transform: rotate(90deg);
    animation-delay: 0.9s;
}

.c-5 {
    top: 30%;
    right: 25%;
    width: 42%;
    transform: rotate(90deg);
    animation-delay: 1.2s;
}

.c-6 {
    top: 70%;
    left: 25%;
    width: 35%;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    }
}

/* Service Device Stack */
.service-visual {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%) !important;
    padding: 40px;
}

.device-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.device {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float-device 4s ease-in-out infinite;
}

.device.laptop {
    width: 200px;
    height: 140px;
    animation-delay: 0s;
}

.device.phone {
    width: 100px;
    height: 160px;
    animation-delay: 1s;
}

@keyframes float-device {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.device i {
    font-size: 60px;
    color: var(--primary-blue);
}

.device.phone i {
    font-size: 50px;
}

.repair-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: rotate-repair 3s linear infinite;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
}

@keyframes rotate-repair {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

/* Enhanced Service Cards */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::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: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-colored);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card:hover .service-icon {
    animation: icon-spin 0.6s ease;
    background: var(--gradient-4);
}

@keyframes icon-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 0;
    flex-shrink: 0;
    z-index: 1;
    transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Geometric Patterns */
.geometric-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.geo-circle {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: geo-pulse 8s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes geo-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    animation: float-icon 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.icon-5 {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.icon-6 {
    top: 40%;
    right: 8%;
    animation-delay: 5s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
    color: #fbbf24;
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

/* Hero Title with Gradient */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    position: relative;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    display: none;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-intense 15s infinite ease-in-out;
}

@keyframes float-intense {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) scale(1.2) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.8) rotate(240deg);
    }
}

/* Finance Cards Enhancement */
.finance-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.finance-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.finance-card:hover::after {
    opacity: 1;
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.finance-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: var(--shadow-colored);
}

.finance-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: var(--gradient-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(30, 60, 114, 0);
    }
}

.finance-card:hover .finance-icon {
    background: var(--gradient-5);
    transform: scale(1.1) rotate(10deg);
}

/* Section Background Patterns */
.section-alt {
    background: var(--light-gray);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20px 20px, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Enhanced Button Animations */
.btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.4);
}









