   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6366f1;
            --secondary: #a855f7;
            --accent: #ec4899;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            color: var(--gray);
            font-weight: 500;
            margin-top: -5px;
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 180px 2rem 120px;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 400;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .btn {
            display: inline-block;
            padding: 1.1rem 2.8rem;
            background: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 60px 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--gray);
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Sections */
        section {
            padding: 100px 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services */
        #services {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            text-align: center;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
            border-color: var(--primary);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        .service-card:nth-child(1) .service-icon { animation-delay: 0s; }
        .service-card:nth-child(2) .service-icon { animation-delay: 0.2s; }
        .service-card:nth-child(3) .service-icon { animation-delay: 0.4s; }
        .service-card:nth-child(4) .service-icon { animation-delay: 0.6s; }
        .service-card:nth-child(5) .service-icon { animation-delay: 0.8s; }
        .service-card:nth-child(6) .service-icon { animation-delay: 1s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-card h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .about-text h2 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about-features {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: var(--light);
            border-radius: 10px;
        }

        .feature-icon {
            font-size: 1.5rem;
        }

           .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Portfolio */
        #portfolio {
            background: var(--light);
        }

       .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Portfolio Image Wrapper */
.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-icon {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: viewIconPulse 2s ease-in-out infinite;
}

@keyframes viewIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Portfolio Info */
.portfolio-info {
    padding: 2rem;
    background: white;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.portfolio-tags {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.portfolio-info p:last-child {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-image-wrapper {
        height: 240px;
    }
    
    .portfolio-info {
        padding: 1.5rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.4rem;
    }
}

        /* Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .process-step h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .process-step p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Contact */
        #contact {
            background: #242b53;
            color: white;
        }

        #contact .section-title {
            color: white;
        }

        #contact .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1.2rem;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255,255,255,0.08);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .contact-form textarea {
            height: 160px;
            resize: vertical;
        }

        .contact-form button {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .contact-info p {
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.08);
            transform: translateX(5px);
        }

        .contact-item-icon {
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 12px;
        }

      
        footer {
            border-top: 1px solid rgba(191, 174, 174, 0.06);
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #e5e7eb;           
            padding: 3rem 2rem;
            border-top: 1px solid rgba(191, 174, 174, 0.06);
        }
        
       footer a {
  text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
}

footer a::after {
   content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
}

footer a:hover {
  color: var(--primary);
}

footer a:hover::after {
  width: 100%;
}

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }


.footer a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--primary);
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .btn-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.2rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                padding: 2rem;
            }
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                padding: 1.5rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 0;
            }

            nav ul li {
                padding: 0.8rem 0;
                border-bottom: 1px solid var(--light);
            }

            nav ul.active {
                display: flex;
            }
        }
		/* Hero Background Animation */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Floating Browser Windows - VERY VISIBLE */
.browser-window {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatBrowser 8s ease-in-out infinite;
}

.window-1 {
    width: 200px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.window-2 {
    width: 180px;
    height: 130px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.window-3 {
    width: 160px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: 0.7;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
}

.code-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes floatBrowser {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(3deg);
        opacity: 1;
    }
}

/* Large Floating Icons - VERY VISIBLE */
.float-icon {
    position: absolute;
    font-size: 4rem;
    animation: floatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.icon-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 35%;
    left: 8%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2s;
}

.icon-4 {
    top: 50%;
    right: 5%;
    animation-delay: 1.5s;
}

.icon-5 {
    bottom: 35%;
    left: 10%;
    animation-delay: 0.5s;
}

.icon-6 {
    top: 25%;
    left: 20%;
    animation-delay: 2.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

/* Code Particles - VERY VISIBLE */
.code-particle {
    position: absolute;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(99, 102, 241, 0.6);
    animation: moveParticle 10s linear infinite;
}

.p1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.p2 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.p3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.p4 {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.p5 {
    top: 30%;
    left: 15%;
    animation-delay: 3s;
}

.p6 {
    bottom: 20%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes moveParticle {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(0, -60px) rotate(180deg) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* Animated Lines - VERY VISIBLE */
.animated-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    box-shadow: 0 0 10px white;
    animation: moveLine 8s linear infinite;
}

.line-1 {
    top: 20%;
    width: 300px;
    left: -300px;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    width: 400px;
    right: -400px;
    animation-delay: 3s;
    animation-direction: reverse;
}

.line-3 {
    top: 80%;
    width: 350px;
    left: -350px;
    animation-delay: 6s;
}

@keyframes moveLine {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 400px));
        opacity: 0;
    }
}

/* Enhanced Title Animation */
.hero h1 {
    animation: fadeInUp 1s ease, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(99, 102, 241, 0.5);
    }
}

/* Pulse Animation for Buttons - MORE VISIBLE */
.btn {
    animation: fadeInUp 1s ease 0.4s backwards, buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
    }
}

.btn-secondary {
    animation: fadeInUp 1s ease 0.4s backwards, buttonPulseSecondary 2s ease-in-out infinite;
    animation-delay: 0.6s, 2.3s;
}

@keyframes buttonPulseSecondary {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .browser-window {
        width: 120px !important;
        height: 90px !important;
    }
    
    .code-text {
        font-size: 12px;
    }
    
    .float-icon {
        font-size: 2.5rem;
    }
    
    .code-particle {
        font-size: 2rem;
    }
    
    .animated-line {
        width: 200px !important;
    }
}
/* Footer Bottom Animation */
.footer-bottom {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-bottom p {
    position: relative;
    z-index: 1;
}

/* Floating Code Elements in Footer */
.footer-code {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    animation: footerFloat 8s ease-in-out infinite;
}

.fc1 {
    top: -20px;
    left: 5%;
    animation-delay: 0s;
}

.fc2 {
    top: 10px;
    left: 20%;
    animation-delay: 1s;
}

.fc3 {
    top: -10px;
    right: 25%;
    animation-delay: 2s;
}

.fc4 {
    top: 5px;
    right: 10%;
    animation-delay: 1.5s;
}

.fc5 {
    top: -15px;
    left: 40%;
    animation-delay: 0.5s;
}

.fc6 {
    top: 15px;
    right: 40%;
    animation-delay: 2.5s;
}

@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.4;
    }
}

/* Floating Icons in Footer */
.footer-icon {
    position: absolute;
    font-size: 2rem;
    animation: footerIconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 3px 10px rgba(99, 102, 241, 0.6));
}

.fi1 {
    top: -10px;
    left: 10%;
    animation-delay: 0s;
}

.fi2 {
    top: 5px;
    left: 30%;
    animation-delay: 1s;
}

.fi3 {
    top: -5px;
    left: 50%;
    animation-delay: 2s;
}

.fi4 {
    top: 10px;
    right: 20%;
    animation-delay: 1.5s;
}

.fi5 {
    top: 0px;
    right: 5%;
    animation-delay: 0.5s;
    animation: footerHeartBeat 1.5s ease-in-out infinite;
}

@keyframes footerIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes footerHeartBeat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    25% {
        transform: scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Animated Dots in Footer */
.footer-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--secondary);
    animation: footerDotMove 10s linear infinite;
}

.dot1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot2 {
    top: 60%;
    left: 25%;
    animation-delay: 2s;
}

.dot3 {
    top: 40%;
    left: 45%;
    animation-delay: 4s;
}

.dot4 {
    top: 70%;
    right: 35%;
    animation-delay: 1s;
}

.dot5 {
    top: 30%;
    right: 20%;
    animation-delay: 3s;
}

.dot6 {
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes footerDotMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -20px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(0, -40px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(-30px, -20px) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

/* Glowing Effect on Footer Text */
.footer-bottom p {
    animation: footerTextGlow 3s ease-in-out infinite alternate;
}

@keyframes footerTextGlow {
    from {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 30px rgba(236, 72, 153, 0.3);
    }
}

/* Responsive Footer Animation */
@media (max-width: 768px) {
    .footer-code {
        font-size: 1.2rem;
    }
    
    .footer-icon {
        font-size: 1.5rem;
    }
    
    .footer-dot {
        width: 6px;
        height: 6px;
    }
}
/* About Section Background Animation */
#about {
    position: relative;
    overflow: hidden;
}

.about-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#about .section-title,
#about .section-subtitle,
#about .about-content {
    position: relative;
    z-index: 1;
}

/* Floating Browser Windows in About */
.about-browser {
    position: absolute;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    animation: aboutBrowserFloat 10s ease-in-out infinite;
}

.ab1 {
    width: 180px;
    height: 140px;
    top: 15%;
    left: 3%;
    animation-delay: 0s;
}

.ab2 {
    width: 160px;
    height: 120px;
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes aboutBrowserFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 1;
    }
}

/* Floating Code in About Section */
.about-code {
    position: absolute;
    color: rgba(99, 102, 241, 0.3);
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    animation: aboutCodeFloat 12s ease-in-out infinite;
}

.ac1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.ac2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

.ac3 {
    top: 45%;
    left: 8%;
    animation-delay: 3s;
}

.ac4 {
    top: 60%;
    right: 18%;
    animation-delay: 4.5s;
}

.ac5 {
    bottom: 25%;
    left: 12%;
    animation-delay: 2s;
}

.ac6 {
    bottom: 35%;
    right: 10%;
    animation-delay: 5s;
}

.ac7 {
    top: 35%;
    left: 25%;
    animation-delay: 1s;
}

.ac8 {
    bottom: 15%;
    right: 25%;
    animation-delay: 3.5s;
}

@keyframes aboutCodeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -25px) rotate(90deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(-20px, -25px) rotate(270deg) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Floating Icons in About */
.about-float-icon {
    position: absolute;
    font-size: 3rem;
    animation: aboutIconFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(99, 102, 241, 0.4));
}

.afi1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.afi2 {
    top: 40%;
    right: 8%;
    animation-delay: 1s;
}

.afi3 {
    top: 55%;
    left: 15%;
    animation-delay: 2s;
}

.afi4 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.afi5 {
    top: 70%;
    left: 20%;
    animation-delay: 0.5s;
}

.afi6 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2.5s;
}

@keyframes aboutIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) scale(1.3) rotate(15deg);
        opacity: 0.8;
    }
}

/* Animated Circles in About */
.about-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.3);
    animation: aboutCircleFloat 15s ease-in-out infinite;
}

.circle1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.circle2 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

.circle3 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 12%;
    animation-delay: 4s;
}

.circle4 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

@keyframes aboutCircleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
        border-color: rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
        border-color: rgba(168, 85, 247, 0.5);
    }
}

/* Animated Lines in About */
.about-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.6), 
        rgba(168, 85, 247, 0.6), 
        transparent);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    animation: aboutLineMove 10s linear infinite;
}

.aline1 {
    top: 30%;
    width: 400px;
    left: -400px;
    animation-delay: 0s;
}

.aline2 {
    bottom: 40%;
    width: 350px;
    right: -350px;
    animation-delay: 5s;
    animation-direction: reverse;
}

@keyframes aboutLineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 400px));
        opacity: 0;
    }
}

/* Glow Effect on About Section Title */
#about .section-title {
    animation: aboutTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes aboutTitleGlow {
    from {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    }
}

/* Enhanced 
.about-image {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    height: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    animation: aboutImagePulse 4s ease-in-out infinite;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 566px;
    border-radius: 20px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .about-image {
        padding: 15px;
    }
    
    .about-image img {
        max-width: 100%;
    }
}
/* Process Section Background Animation */
#process {
    position: relative;
    overflow: hidden;
    background: white;
}

.process-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#process .section-title,
#process .section-subtitle,
#process .process-grid {
    position: relative;
    z-index: 1;
}

/* Workflow Arrows - VERY VISIBLE */
.workflow-arrow {
    position: absolute;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(99, 102, 241, 0.4);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    animation: arrowMove 3s ease-in-out infinite;
}

.arrow1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.arrow2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.arrow3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.arrow4 {
    top: 40%;
    right: 10%;
    animation-delay: 1.5s;
}

.arrow5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, 0) scale(1.3);
        opacity: 0.7;
    }
}

/* Floating Process Icons - VERY VISIBLE */
.process-float-icon {
    position: absolute;
    font-size: 3.5rem;
    animation: processIconFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 5px 20px rgba(99, 102, 241, 0.5));
}

.pfi1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.pfi2 {
    top: 35%;
    left: 15%;
    animation-delay: 1s;
}

.pfi3 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.pfi4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.5s;
}

.pfi5 {
    top: 55%;
    right: 8%;
    animation-delay: 0.5s;
}

.pfi6 {
    bottom: 18%;
    right: 15%;
    animation-delay: 2.5s;
}

@keyframes processIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(20deg) scale(1.3);
        opacity: 1;
    }
}

/* Floating Code in Process */
.process-code {
    position: absolute;
    color: rgba(99, 102, 241, 0.35);
    font-size: 2.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    animation: processCodeFloat 10s ease-in-out infinite;
}

.pc1 {
    top: 18%;
    left: 25%;
    animation-delay: 0s;
}

.pc2 {
    top: 45%;
    left: 12%;
    animation-delay: 2s;
}

.pc3 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.pc4 {
    bottom: 35%;
    right: 18%;
    animation-delay: 3s;
}

.pc5 {
    bottom: 22%;
    left: 18%;
    animation-delay: 1.5s;
}

@keyframes processCodeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(15px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Animated Gears - VERY VISIBLE */
.process-gear {
    position: absolute;
    font-size: 4rem;
    animation: gearRotate 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    opacity: 0.5;
}

.gear1 {
    top: 20%;
    left: 18%;
    animation-delay: 0s;
}

.gear2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    animation-direction: reverse;
}

.gear3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes gearRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

/* Flowing Lines - VERY VISIBLE */
.process-flow-line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.7), 
        rgba(168, 85, 247, 0.7),
        rgba(236, 72, 153, 0.7), 
        transparent);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    animation: flowLineMove 8s linear infinite;
}

.pfl1 {
    top: 25%;
    width: 500px;
    left: -500px;
    animation-delay: 0s;
}

.pfl2 {
    top: 55%;
    width: 450px;
    right: -450px;
    animation-delay: 3s;
    animation-direction: reverse;
}

.pfl3 {
    bottom: 30%;
    width: 400px;
    left: -400px;
    animation-delay: 6s;
}

@keyframes flowLineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 500px));
        opacity: 0;
    }
}

/* Progress Circles - VERY VISIBLE */
.process-circle {
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    animation: processCircleFloat 12s ease-in-out infinite;
}

.pc-circle1 {
    width: 140px;
    height: 140px;
    top: 18%;
    right: 25%;
    animation-delay: 0s;
}

.pc-circle2 {
    width: 100px;
    height: 100px;
    top: 48%;
    left: 15%;
    animation-delay: 2s;
}

.pc-circle3 {
    width: 120px;
    height: 120px;
    bottom: 28%;
    right: 15%;
    animation-delay: 4s;
}

.pc-circle4 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes processCircleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
        border-color: rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: translate(25px, -25px) scale(1.15);
        opacity: 0.7;
        border-color: rgba(168, 85, 247, 0.6);
    }
}

/* Dotted Path Animation */
.dotted-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Enhanced Process Number Animation */
.process-number {
    animation: processNumberPulse 2s ease-in-out infinite;
}

@keyframes processNumberPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
    }
}

/* Process Step Hover Enhancement */
.process-step {
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.process-step:hover .process-number {
    transform: scale(1.2) rotate(360deg);
    transition: transform 0.6s ease;
}

/* Glow Effect on Process Title */
#process .section-title {
    animation: processTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes processTitleGlow {
    from {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    to {
        text-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 35px rgba(236, 72, 153, 0.3);
    }
}

/* Responsive Process Animation */
@media (max-width: 768px) {
    .workflow-arrow {
        font-size: 2.5rem;
    }
    
    .process-float-icon {
        font-size: 2.5rem;
    }
    
    .process-code {
        font-size: 1.5rem;
    }
    
    .process-gear {
        font-size: 2.5rem;
    }
    
    .process-circle {
        width: 70px !important;
        height: 70px !important;
    }
    
    .process-flow-line {
        width: 250px !important;
    }
}
.footer-section a svg {
    transition: transform 0.3s ease;
}

.footer-section a:hover svg {
    transform: scale(1.2);
}
/* Portfolio Section Background Animation */
#portfolio {
    position: relative;
    overflow: hidden;
}

.portfolio-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#portfolio .section-title,
#portfolio .section-subtitle,
#portfolio .portfolio-grid {
    position: relative;
    z-index: 1;
}

/* Floating Browser Frames - VERY VISIBLE */
.portfolio-browser {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    animation: portfolioBrowserFloat 10s ease-in-out infinite;
}

.pb1 {
    width: 200px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pb2 {
    width: 180px;
    height: 140px;
    bottom: 15%;
    right: 8%;
    animation-delay: 3s;
}

.browser-bar {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 3px;
    margin: 5px 0;
}

.browser-content-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.mini-box {
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 6px;
}

@keyframes portfolioBrowserFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-35px) rotate(5deg);
        opacity: 1;
    }
}

/* Floating Project Icons - VERY VISIBLE */
.portfolio-icon {
    position: absolute;
    font-size: 3.5rem;
    animation: portfolioIconFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 20px rgba(99, 102, 241, 0.5));
}

.pi1 {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
}

.pi2 {
    top: 40%;
    left: 8%;
    animation-delay: 1s;
}

.pi3 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
}

.pi4 {
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
}

.pi5 {
    top: 60%;
    right: 12%;
    animation-delay: 0.5s;
}

.pi6 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2.5s;
}

@keyframes portfolioIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-35px) scale(1.25) rotate(15deg);
        opacity: 1;
    }
}

/* Floating Stars - VERY VISIBLE */
.portfolio-star {
    position: absolute;
    font-size: 2.5rem;
    animation: starTwinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.star1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.star2 {
    top: 35%;
    right: 15%;
    animation-delay: 0.5s;
}

.star3 {
    top: 55%;
    left: 25%;
    animation-delay: 1s;
}

.star4 {
    bottom: 25%;
    right: 25%;
    animation-delay: 1.5s;
}

.star5 {
    bottom: 35%;
    left: 18%;
    animation-delay: 0.8s;
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: scale(1.3) rotate(270deg);
        opacity: 1;
    }
}

/* Code Elements in Portfolio */
.portfolio-code {
    position: absolute;
    color: rgba(99, 102, 241, 0.3);
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    animation: portfolioCodeFloat 11s ease-in-out infinite;
}

.pcode1 {
    top: 22%;
    left: 28%;
    animation-delay: 0s;
}

.pcode2 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

.pcode3 {
    top: 35%;
    right: 22%;
    animation-delay: 1s;
}

.pcode4 {
    bottom: 28%;
    right: 15%;
    animation-delay: 3s;
}

.pcode5 {
    bottom: 35%;
    left: 22%;
    animation-delay: 1.5s;
}

@keyframes portfolioCodeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -25px) rotate(10deg);
        opacity: 0.6;
    }
}

/* Animated Image Frames */
.portfolio-frame {
    position: absolute;
    border: 3px solid rgba(99, 102, 241, 0.4);
    border-radius: 10px;
    animation: frameFloat 9s ease-in-out infinite;
}

.pf1 {
    width: 120px;
    height: 90px;
    top: 18%;
    right: 18%;
    animation-delay: 0s;
}

.pf2 {
    width: 100px;
    height: 75px;
    top: 48%;
    left: 20%;
    animation-delay: 2s;
}

.pf3 {
    width: 110px;
    height: 85px;
    bottom: 22%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes frameFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
        border-color: rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: translate(15px, -20px) rotate(8deg);
        opacity: 0.8;
        border-color: rgba(168, 85, 247, 0.6);
    }
}

/* Floating Ribbons - NEW/TOP badges */
.portfolio-ribbon {
    position: absolute;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    animation: ribbonFloat 6s ease-in-out infinite;
}

.ribbon1 {
    top: 12%;
    right: 8%;
    animation-delay: 0s;
}
/* Projects Counter - Softer & Smaller */
.projects-counter-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0 4rem 0;
}

.projects-counter-box {
    background: #f8fafc;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border: 3px solid rgba(99, 102, 241, 0.2);
    position: relative;
    animation: counterBoxFloat 3s ease-in-out infinite;
}

.projects-counter-box::before {
    display: none; /* Remove rotating gradient */
}

@keyframes counterBoxFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.counter-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.3rem;
}

.counter-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #475569;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64748b;
    line-height: 1;
    animation: plusPop 2s ease-in-out infinite;
}

@keyframes plusPop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-counter-box {
        padding: 1rem 2rem;
    }
    
    .counter-num {
        font-size: 2rem;
    }
    
    .counter-plus {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
}
/* Services Section Background Animation */
#services {
    position: relative;
    overflow: hidden;
}

.services-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#services .section-title,
#services .section-subtitle,
#services .services-grid {
    position: relative;
    z-index: 1;
}

/* Floating Code Elements - VERY VISIBLE */
.services-code {
    position: absolute;
    color: rgba(99, 102, 241, 0.2);
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    animation: servicesCodeFloat 12s ease-in-out infinite;
}

.sc1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.sc2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
}

.sc3 {
    top: 28%;
    left: 10%;
    animation-delay: 2s;
}

.sc4 {
    top: 35%;
    right: 12%;
    animation-delay: 0.5s;
}

.sc5 {
    top: 50%;
    left: 7%;
    animation-delay: 3s;
}

.sc6 {
    top: 58%;
    right: 10%;
    animation-delay: 1.5s;
}

.sc7 {
    bottom: 30%;
    left: 12%;
    animation-delay: 2.5s;
}

.sc8 {
    bottom: 22%;
    right: 15%;
    animation-delay: 4s;
}

.sc9 {
    bottom: 15%;
    left: 8%;
    animation-delay: 3.5s;
}

.sc10 {
    bottom: 10%;
    right: 9%;
    animation-delay: 0.8s;
}

@keyframes servicesCodeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translate(15px, -20px) rotate(5deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(-15px, -20px) rotate(-5deg);
        opacity: 0.4;
    }
}

/* Floating Tech Icons - VISIBLE */
.services-tech-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: servicesTechFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 3px 10px rgba(99, 102, 241, 0.3));
    opacity: 0.4;
}

.sti1 {
    top: 12%;
    left: 15%;
    animation-delay: 0s;
}

.sti2 {
    top: 38%;
    right: 15%;
    animation-delay: 1.5s;
}

.sti3 {
    top: 62%;
    left: 18%;
    animation-delay: 3s;
}

.sti4 {
    bottom: 25%;
    right: 18%;
    animation-delay: 2s;
}

.sti5 {
    top: 25%;
    left: 20%;
    animation-delay: 0.7s;
}

.sti6 {
    bottom: 35%;
    right: 22%;
    animation-delay: 2.5s;
}

@keyframes servicesTechFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Animated Brackets - LARGE & VISIBLE */
.services-bracket {
    position: absolute;
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    color: rgba(99, 102, 241, 0.15);
    animation: bracketPulse 6s ease-in-out infinite;
}

.sb1 {
    top: 18%;
    right: 20%;
    animation-delay: 0s;
}

.sb2 {
    top: 45%;
    left: 12%;
    animation-delay: 1.5s;
}

.sb3 {
    bottom: 28%;
    right: 12%;
    animation-delay: 3s;
}

.sb4 {
    bottom: 18%;
    left: 15%;
    animation-delay: 4.5s;
}

@keyframes bracketPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.3) rotate(10deg);
        opacity: 0.3;
    }
}

/* Floating Particles */
.services-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(168, 85, 247, 0.5));
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    animation: particleFloat 10s linear infinite;
}

.sp1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.sp2 {
    top: 40%;
    right: 25%;
    animation-delay: 2s;
}

.sp3 {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.sp4 {
    bottom: 35%;
    right: 30%;
    animation-delay: 1s;
}

.sp5 {
    top: 30%;
    left: 35%;
    animation-delay: 3s;
}

.sp6 {
    bottom: 25%;
    right: 35%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 0.7;
    }
    50% {
        transform: translate(0, -60px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(-30px, -30px) scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

/* Animated Code Lines */
.services-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.4), 
        rgba(168, 85, 247, 0.4), 
        transparent);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    animation: servicesLineMove 8s linear infinite;
}

.sl1 {
    top: 25%;
    width: 400px;
    left: -400px;
    animation-delay: 0s;
}

.sl2 {
    top: 55%;
    width: 350px;
    right: -350px;
    animation-delay: 3s;
    animation-direction: reverse;
}

.sl3 {
    bottom: 30%;
    width: 380px;
    left: -380px;
    animation-delay: 6s;
}

@keyframes servicesLineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 400px));
        opacity: 0;
    }
}

/* Enhanced Service Card Hover */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

/* Glow Effect on Services Title */
#services .section-title {
    animation: servicesTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes servicesTitleGlow {
    from {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
}

/* Responsive Services Animation */
@media (max-width: 768px) {
    .services-code {
        font-size: 1.2rem;
    }
    
    .services-tech-icon {
        font-size: 1.8rem;
    }
    
    .services-bracket {
        font-size: 2.5rem;
    }
    
    .services-particle {
        width: 6px;
        height: 6px;
    }
    
    .services-line {
        width: 250px !important;
    }
}
/* Contact Header Animation */
.contact-header-animation {
    position: relative;
    height: 200px;
    margin-bottom: 3rem;
    overflow: hidden;
}

/* Animated Envelope - CENTER PIECE */
.floating-envelope {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: envelopeFloat 4s ease-in-out infinite;
    z-index: 10;
}

.envelope-wrapper {
    position: relative;
    width: 120px;
    height: 90px;
}

.envelope {
    position: relative;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.5));
}

.envelope-body {
    position: absolute;
    bottom: 0;
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 0 0 8px 8px;
}

.envelope-flap {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 45px solid #a855f7;
    animation: flapOpen 3s ease-in-out infinite;
    transform-origin: top center;
}

.envelope-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    background: white;
    padding: 12px 10px;
    border-radius: 5px;
    animation: messageSlide 3s ease-in-out infinite;
}

.message-line {
    height: 3px;
    background: #6366f1;
    margin: 4px 0;
    border-radius: 2px;
}

.message-line:nth-child(2) {
    width: 80%;
}

.message-line:nth-child(3) {
    width: 60%;
}

@keyframes envelopeFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes flapOpen {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-180deg);
    }
}

@keyframes messageSlide {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

/* Flying Paper Planes */
.paper-plane {
    position: absolute;
    font-size: 2.5rem;
    animation: planeFly 8s linear infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.plane1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.plane2 {
    top: 60%;
    left: -50px;
    animation-delay: 3s;
}

.plane3 {
    top: 40%;
    left: -50px;
    animation-delay: 6s;
}

@keyframes planeFly {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 50px)) translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

/* Connecting Dots */
.connect-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 25%;
    right: 25%;
    animation-delay: 0.4s;
}

.dot-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 0.8s;
}

.dot-4 {
    top: 60%;
    right: 20%;
    animation-delay: 1.2s;
}

.dot-5 {
    bottom: 20%;
    right: 35%;
    animation-delay: 1.6s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Floating Contact Icons */
.contact-float-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: contactIconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.cfi1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.cfi2 {
    top: 20%;
    right: 18%;
    animation-delay: 1s;
}

.cfi3 {
    bottom: 25%;
    left: 18%;
    animation-delay: 2s;
}

.cfi4 {
    top: 55%;
    right: 12%;
    animation-delay: 1.5s;
}

.cfi5 {
    bottom: 15%;
    right: 22%;
    animation-delay: 0.5s;
}

@keyframes contactIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) rotate(15deg);
        opacity: 0.7;
    }
}

/* Pulsing Circles */
.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.3);
    animation: circlePulse 4s ease-out infinite;
}

.pc1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.pc2 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.pc3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes circlePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Background Text */
.contact-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    animation: bgTextPulse 3s ease-in-out infinite;
}

@keyframes bgTextPulse {
    0%, 100% {
        opacity: 0.03;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.06;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header-animation {
        height: 150px;
    }
    
    .envelope-wrapper {
        width: 80px;
        height: 60px;
    }
    
    .envelope-body {
        width: 80px;
        height: 50px;
    }
    
    .envelope-flap {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 30px solid #a855f7;
    }
    
    .paper-plane {
        font-size: 2rem;
    }
    
    .contact-float-icon {
        font-size: 2rem;
    }
    
    .contact-bg-text {
        font-size: 3rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

#menu {
    list-style: none;
  
    gap: 24px;
}

#menu li {
    position: relative;
}

#menu a {
    text-decoration: none;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #3f4144f5;
    padding: 10px 0;
    list-style: none;
    min-width: 180px;
    display: none;
    border-radius: 6px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 8px 16px;
    color: #eab248;
}
.product-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    color: #73ea48;
    background: rgba(234, 178, 72, 0.15);
    border-radius: 12px;
    letter-spacing: 0.4px;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(234,178,72,0.4); }
    70% { box-shadow: 0 0 0 6px rgba(234,178,72,0); }
    100% { box-shadow: 0 0 0 0 rgba(234,178,72,0); }
}
