 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #343c43;
            --accent-blue: #1d4ed8;
            --light-blue: #5ec6ff;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #343c43 0%, #1d4ed8 50%, #5ec6ff 100%);
            --gradient-secondary: linear-gradient(135deg, #5ec6ff 0%, #1d4ed8 50%, #343c43 100%);
            --gradient-accent: linear-gradient(135deg, #1d4ed8 0%, #5ec6ff 100%);
            --shadow-soft: 0 10px 40px rgba(52, 60, 67, 0.1);
            --shadow-strong: 0 20px 60px rgba(52, 60, 67, 0.2);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--primary-dark);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f8faff 0%, #e6f2ff 100%);
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(52, 60, 67, 0.95);
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(94, 198, 255, 0.3);
        }

        .navbar.scrolled {
            background: rgba(52, 60, 67, 0.98);
            box-shadow: var(--shadow-soft);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse-glow 2s ease-in-out infinite alternate;
        }

        .logo i {
            font-size: 2rem;
            color: var(--light-blue);
            animation: rotate-360 4s linear infinite;
        }

        @keyframes rotate-360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse-glow {
            from { filter: brightness(1); }
            to { filter: brightness(1.2); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 10px 0;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-accent);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--light-blue);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--light-blue);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 20px 60px;
            background: 
                radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 60, 67, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(94, 198, 255, 0.05) 0%, transparent 70%),
                linear-gradient(135deg, #f8faff 0%, #e6f2ff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: 
                conic-gradient(from 0deg at 50% 50%, 
                transparent 0deg, 
                rgba(52, 60, 67, 0.05) 45deg, 
                transparent 90deg, 
                rgba(29, 78, 216, 0.05) 135deg, 
                transparent 180deg,
                rgba(94, 198, 255, 0.03) 225deg,
                transparent 270deg);
            animation: rotate-slow 20s linear infinite;
            z-index: 1;
        }

        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: slide-in-left 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .highlight {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, transparent 0%, rgba(29, 78, 216, 0.3) 50%, transparent 100%);
            animation: highlight-sweep 2s ease-in-out infinite;
        }

        @keyframes highlight-sweep {
            0%, 100% { transform: scaleX(0); }
            50% { transform: scaleX(1); }
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--primary-dark);
            opacity: 0.8;
            margin-bottom: 2.5rem;
            max-width: 500px;
            animation: fade-in-up 1s 0.3s both cubic-bezier(0.4, 0, 0.2, 1);
        }

        .learn-more-btn {
            background: var(--gradient-primary);
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            animation: fade-in-up 1s 0.6s both cubic-bezier(0.4, 0, 0.2, 1);
        }

        .learn-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .learn-more-btn:hover::before {
            left: 100%;
        }

        .learn-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
        }

        .learn-more-btn i {
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover i {
            transform: translateX(5px);
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            animation: slide-in-right 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--shadow-soft);
            animation: float-around 6s ease-in-out infinite;
        }

        .element-1 {
            top: 10%;
            left: 10%;
            background: var(--gradient-accent);
            animation-delay: 0s;
        }

        .element-2 {
            top: 20%;
            right: 15%;
            background: linear-gradient(135deg, #343c43 0%, #1d4ed8 100%);
            animation-delay: 1s;
        }

        .element-3 {
            bottom: 30%;
            left: 5%;
            background: var(--gradient-secondary);
            animation-delay: 2s;
        }

        .element-4 {
            bottom: 15%;
            right: 10%;
            background: var(--gradient-primary);
            animation-delay: 3s;
        }

        .element-5 {
            top: 50%;
            left: 80%;
            background: linear-gradient(135deg, #5ec6ff 0%, #343c43 100%);
            animation-delay: 4s;
        }

        @keyframes float-around {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            25% {
                transform: translateY(-20px) scale(1.1);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
            }
            75% {
                transform: translateY(-25px) scale(1.1);
            }
        }

        .main-graphic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .laptop {
            width: 300px;
            height: 200px;
            background: var(--primary-dark);
            border-radius: 15px 15px 0 0;
            position: relative;
            box-shadow: var(--shadow-strong);
            animation: laptop-glow 3s ease-in-out infinite alternate;
            border: 3px solid var(--light-blue);
        }

        @keyframes laptop-glow {
            from {
                box-shadow: var(--shadow-strong);
            }
            to {
                box-shadow: 0 25px 80px rgba(29, 78, 216, 0.3);
            }
        }

        .screen {
            width: 260px;
            height: 160px;
            background: linear-gradient(135deg, #000814 0%, var(--primary-dark) 100%);
            border-radius: 8px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--accent-blue);
        }

        .screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(94, 198, 255, 0.2), transparent);
            animation: screen-scan 3s ease-in-out infinite;
        }

        @keyframes screen-scan {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .screen-content {
            display: flex;
            align-items: end;
            gap: 15px;
            height: 60px;
        }

        .chart-bar {
            width: 20px;
            background: var(--gradient-accent);
            border-radius: 4px 4px 0 0;
            animation: chart-grow 2s ease-in-out infinite;
            border: 1px solid var(--light-blue);
        }

        .bar-1 {
            height: 30px;
            animation-delay: 0s;
        }

        .bar-2 {
            height: 50px;
            animation-delay: 0.2s;
        }

        .bar-3 {
            height: 40px;
            animation-delay: 0.4s;
        }

        .bar-4 {
            height: 60px;
            animation-delay: 0.6s;
        }

        @keyframes chart-grow {
            0%, 100% {
                transform: scaleY(0.8);
                opacity: 0.7;
            }
            50% {
                transform: scaleY(1.2);
                opacity: 1;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce-slow 2s ease-in-out infinite;
        }

        .scroll-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-blue);
            border-radius: 50%;
            position: relative;
        }

        .scroll-dot::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 20px;
            background: var(--accent-blue);
        }

        @keyframes bounce-slow {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
 .about {
            padding: 100px 20px;
            background: white;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 4rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            text-align: left;
        }

        .about-intro {
            font-size: 1.2rem;
            color: var(--primary-dark);
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about-item {
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(94, 198, 255, 0.05) 100%);
            border-radius: 12px;
            border-left: 4px solid var(--accent-blue);
            transition: all 0.3s ease;
        }

        .about-item:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(94, 198, 255, 0.1) 100%);
        }

        .about-item h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-item h4 i {
            color: var(--accent-blue);
        }

        .about-item p {
            color: var(--primary-dark);
            opacity: 0.8;
            line-height: 1.6;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature-highlight {
            background: var(--gradient-accent);
            color: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-strong);
        }

        .feature-highlight:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .feature-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 100px 20px;
            background: 
                radial-gradient(circle at 80% 20%, rgba(52, 60, 67, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 10%, rgba(94, 198, 255, 0.03) 0%, transparent 60%),
                var(--white);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 4rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: title-underline 2s ease-in-out infinite alternate;
        }

        @keyframes title-underline {
            from { width: 80px; opacity: 0.7; }
            to { width: 120px; opacity: 1; }
        }

        .services-slider {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px;
            box-shadow: var(--shadow-soft);
        }

        .services-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .services-grid {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 200%;
        }

        .service-slide {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            width: 50%;
            flex-shrink: 0;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(0);
            border: 1px solid rgba(94, 198, 255, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-strong);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            position: relative;
            animation: icon-pulse 3s ease-in-out infinite;
            border: 3px solid var(--light-blue);
        }

        @keyframes icon-pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(52, 60, 67, 0.4);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(52, 60, 67, 0);
            }
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .service-card p {
            color: var(--primary-dark);
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: var(--gradient-secondary);
            color: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            border: 2px solid var(--light-blue);
        }

        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-strong);
        }

        .slider-btn:active {
            transform: scale(0.95);
        }

        .slider-dots {
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(52, 60, 67, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid var(--light-blue);
        }

        .dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            background: var(--accent-blue);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-dark);
        }

        .dot.active::before {
            width: 100%;
            height: 100%;
        }

        .dot:hover {
            background: rgba(29, 78, 216, 0.5);
            transform: scale(1.2);
        }
           /* Testimonials Section */
        .testimonials {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8faff 0%, #e6f2ff 100%);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(94, 198, 255, 0.2);
            border-left: 5px solid var(--accent-blue);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(52, 60, 67, 0.1);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .author-info h4 {
            color: var(--primary-dark);
            margin-bottom: 0.2rem;
            font-size: 1rem;
            font-weight: 700;
        }

        .author-info p {
            color: var(--primary-dark);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta {
            padding: 80px 20px;
            background: var(--gradient-accent);
            color: white;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background: white;
            color: var(--accent-blue);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }


        /* Footer Section */
        .footer {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(94, 198, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
            animation: footer-float 15s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes footer-float {
            from { transform: translate(-2%, -2%) rotate(1deg); }
            to { transform: translate(2%, 2%) rotate(-1deg); }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 20px;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--light-blue);
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
            animation: footer-underline 2s ease-in-out infinite alternate;
        }

        @keyframes footer-underline {
            from { width: 30px; opacity: 0.7; }
            to { width: 50px; opacity: 1; }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            animation: logo-glow 3s ease-in-out infinite alternate;
        }

        @keyframes logo-glow {
            from { text-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
            to { text-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
        }

        .footer-logo i {
            font-size: 2rem;
            color: var(--light-blue);
            animation: footer-icon-spin 6s linear infinite;
        }

        @keyframes footer-icon-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .footer-description {
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gradient-accent);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            color: var(--primary-dark);
            border-color: var(--white);
            box-shadow: 0 10px 25px rgba(94, 198, 255, 0.3);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--light-blue);
            font-size: 0.8rem;
            transition: all 0.3s ease;
            transform: translateX(-5px);
            opacity: 0;
        }

        .footer-links a:hover::before {
            transform: translateX(0);
            opacity: 1;
        }

        .footer-links a:hover {
            color: var(--light-blue);
            opacity: 1;
            transform: translateX(10px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .contact-item i {
            width: 20px;
            color: var(--light-blue);
            font-size: 1.1rem;
            animation: contact-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes contact-pulse {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .contact-item:hover {
            transform: translateX(5px);
            color: var(--light-blue);
        }

        .footer-bottom {
            position: relative;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--light-blue) 20%, var(--accent-blue) 50%, var(--light-blue) 80%, transparent 100%);
            margin-bottom: 2rem;
            animation: divider-glow 3s ease-in-out infinite alternate;
        }

        @keyframes divider-glow {
            from { opacity: 0.5; box-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
            to { opacity: 1; box-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-content p {
            opacity: 0.8;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light-blue);
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        .footer-bottom-links a:hover {
            color: var(--light-blue);
            opacity: 1;
        }

        /* Animations */
        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(52, 60, 67, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin: 0 auto 2rem;
            }

            .image-container {
                height: 400px;
            }

            .laptop {
                width: 250px;
                height: 160px;
            }

            .screen {
                width: 220px;
                height: 130px;
            }

            .element {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .service-slide {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .slider-controls {
                gap: 1rem;
                margin-top: 2rem;
            }

            .slider-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }

            .footer-section {
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-bottom-links {
                gap: 1.5rem;
            }
        }

        /* Medium screens */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-section:first-child {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 15px 40px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .learn-more-btn {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .services {
                padding: 80px 15px;
            }

            .services-slider {
                padding: 20px;
            }

            .service-slide {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .service-card {
                padding: 1.5rem 1rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 3rem;
            }
        }

        /* Special effects for premium feel */
        .service-card:nth-child(odd) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(even) {
            animation-delay: 0.2s;
        }

        /* Glassmorphism effects */
        .services-slider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            pointer-events: none;
            border-radius: 20px;
        }

        /* Smooth transitions for all interactive elements */
        * {
            transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-accent);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-blue);
        }

        /* Selection styling */
        ::selection {
            background: var(--light-blue);
            color: var(--primary-dark);
        }