.faq-item {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(16,185,129,0.08));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(37,99,235,0.08);
    transition: box-shadow 0.2s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: faqFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes faqFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Base styles for selected options - both service and budget */
.service-option.selected, .budget-option.selected {
    background: rgba(16, 185, 129, 0.3) !important;
    border: 2px solid var(--emerald-green) !important;
    color: #10ffb0 !important;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 40px rgba(16, 185, 129, 0.3),
        inset 0 0 15px rgba(16, 185, 129, 0.3) !important;
    transform: translateY(-2px);
    position: relative;
    z-index: 1;
}

.service-option.selected i, .budget-option.selected i {
    color: var(--emerald-green) !important;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        :root {
            --bg-primary: #121212;
            --bg-secondary: #1a1a1a;
            --royal-blue: #2563EB;
            --emerald-green: #10B981;
            --off-white: #F9FAFB;
            --cool-gray: #9CA3AF;
        }
        
        body {
            background-color: var(--bg-primary);
            color: var(--off-white);
            overflow-x: hidden;
        }
        
        .liquid-bg {
            position: relative;
            overflow: hidden;
        }
        
        .liquid-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
            animation: liquid-float 20s ease-in-out infinite;
            z-index: -1;
        }
        
        .liquid-bg::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -30%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
            animation: liquid-float 25s ease-in-out infinite reverse;
            z-index: -1;
        }
        
        @keyframes liquid-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
        
        .smooth-scroll {
            scroll-behavior: smooth;
        }
        
        .glass-effect {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hover-lift {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stagger-delay-1 { transition-delay: 0.1s; }
        .stagger-delay-2 { transition-delay: 0.2s; }
        .stagger-delay-3 { transition-delay: 0.3s; }
        .stagger-delay-4 { transition-delay: 0.4s; }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--royal-blue), #1d4ed8);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--off-white);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            border-color: var(--emerald-green);
            color: var(--emerald-green);
            transform: translateY(-2px);
        }
        
        .section-padding {
            padding: 120px 0;
        }
        
        .navbar-blur {
            backdrop-filter: blur(20px);
            background: rgba(18, 18, 18, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            border-color: var(--royal-blue);
            transform: translateY(-5px);
        }
        
        .team-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .portfolio-item {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.02);
            border-color: var(--emerald-green);
        }
        
        .testimonial-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid var(--emerald-green);
            border-radius: 16px;
            padding: 32px;
        }
        
        .process-number {
            background: linear-gradient(135deg, var(--royal-blue), #1d4ed8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 24px;
        }
        
        .mobile-menu {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
        }
        
        .parallax-container {
            transform: translateZ(0);
            will-change: transform;
        }
        
        .smooth-reveal {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Coding Animation Styles */
        .coding-animation {
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%) rotate(15deg);
            opacity: 0.15;
            width: 600px;
            height: 400px;
            animation: float-code 20s ease-in-out infinite;
        }
        
        @keyframes float-code {
            0%, 100% { transform: translateY(-50%) rotate(15deg) translateX(0); }
            50% { transform: translateY(-60%) rotate(12deg) translateX(20px); }
        }
        
        .code-editor {
            background: rgba(30, 30, 30, 0.9);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .editor-header {
            background: rgba(40, 40, 40, 0.9);
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .editor-tabs {
            display: flex;
            gap: 8px;
        }
        
        .tab {
            background: rgba(60, 60, 60, 0.8);
            color: #9CA3AF;
            padding: 6px 12px;
            border-radius: 6px 6px 0 0;
            font-size: 12px;
            font-family: 'Courier New', monospace;
        }
        
        .tab.active {
            background: rgba(37, 99, 235, 0.2);
            color: #2563EB;
        }
        
        .editor-content {
            display: flex;
            padding: 16px 0;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            line-height: 1.6;
        }
        
        .line-numbers {
            padding: 0 16px;
            color: #6B7280;
            text-align: right;
            min-width: 40px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .line-numbers span {
            display: block;
        }
        
        .code-lines {
            flex: 1;
            padding: 0 16px;
        }
        
        .code-line {
            margin-bottom: 2px;
            animation: type-line 0.5s ease-out;
        }
        
        .code-line:nth-child(1) { animation-delay: 0.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(2) { animation-delay: 1s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(3) { animation-delay: 1.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(4) { animation-delay: 2s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(5) { animation-delay: 2.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(6) { animation-delay: 3s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(7) { animation-delay: 3.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(8) { animation-delay: 4s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(9) { animation-delay: 4.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(10) { animation-delay: 5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(11) { animation-delay: 5.5s; opacity: 0; animation-fill-mode: forwards; }
        .code-line:nth-child(12) { animation-delay: 6s; opacity: 0; animation-fill-mode: forwards; }
        
        @keyframes type-line {
            from { opacity: 0; transform: translateX(-10px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .typing-line {
            animation: type-line 0.5s ease-out 6.5s both, blink-cursor 1s infinite 7s;
        }
        
        .tag { color: #F87171; }
        .attr { color: #60A5FA; }
        .string { color: #34D399; }
        .comment { color: #9CA3AF; font-style: italic; }
        
        .cursor {
            color: #10B981;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(18, 18, 18, 0.8) 0%, 
                rgba(37, 99, 235, 0.1) 30%, 
                rgba(16, 185, 129, 0.1) 70%, 
                rgba(18, 18, 18, 0.9) 100%);
        }
        
        @media (max-width: 768px) {
            .coding-animation {
                width: 400px;
                height: 300px;
                right: -20%;
                opacity: 0.08;
            }
        }
        
        /* Contact Section Styles */
        .contact-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.03) 0%, 
                rgba(16, 185, 129, 0.03) 50%, 
                rgba(139, 92, 246, 0.03) 100%);
            animation: contact-bg-flow 25s ease-in-out infinite;
        }
        
        .contact-bg-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
            animation: contact-bg-float 30s ease-in-out infinite;
        }
        
        .contact-bg-animation::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -30%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
            animation: contact-bg-float 35s ease-in-out infinite reverse;
        }
        
        @keyframes contact-bg-flow {
            0%, 100% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(20px) translateY(-15px); }
        }
        
        @keyframes contact-bg-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -20px) rotate(1deg); }
            66% { transform: translate(-20px, 30px) rotate(-1deg); }
        }
        
        .contact-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .contact-particles::before,
        .contact-particles::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(37, 99, 235, 0.3);
            border-radius: 50%;
            animation: particle-float 20s linear infinite;
        }
        
        .contact-particles::before {
            top: 10%;
            left: 20%;
            animation-delay: -8s;
        }
        
        .contact-particles::after {
            top: 70%;
            right: 25%;
            background: rgba(16, 185, 129, 0.3);
            animation-delay: -15s;
        }
        
        @keyframes particle-float {
            0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
            5% { opacity: 1; transform: scale(1); }
            95% { opacity: 1; }
            100% { transform: translateY(-20px) translateX(30px) scale(0); opacity: 0; }
        }
        
        .contact-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.6s;
        }
        
        .contact-card:hover::before {
            left: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-8px);
            border-color: rgba(37, 99, 235, 0.5);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover .contact-card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .contact-quick-btn {
            background: linear-gradient(135deg, var(--emerald-green), #059669);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
        }
        
        .contact-quick-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }
        
        .contact-form-container {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), rgba(16, 185, 129, 0.5), transparent);
        }
        
        .contact-form-header {
            margin-bottom: 32px;
            text-align: center;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        .form-group {
            position: relative;
        }
        
        .form-label {
            display: block;
            color: #9CA3AF;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .form-input, .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--royal-blue);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-input::placeholder, .form-textarea::placeholder {
            color: #6B7280;
        }
        
        .form-focus-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--royal-blue), var(--emerald-green));
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        
        .form-input:focus + .form-focus-line,
        .form-textarea:focus + .form-focus-line {
            width: 100%;
        }
        
        .service-selector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }
        
        .service-option {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .service-option:hover {
            border-color: var(--royal-blue);
            background: rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }
        
.service-option.selected {
            background: rgba(16, 185, 129, 0.25) !important;
            border: 2px solid var(--emerald-green) !important;
            color: var(--emerald-green) !important;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.5) !important;
            transform: translateY(-2px);
        }        .service-option i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        
        .budget-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        
        .budget-option {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .budget-option:hover {
            border-color: var(--royal-blue);
            background: rgba(37, 99, 235, 0.1);
        }
        
        .budget-option.selected {
            background: rgba(16, 185, 129, 0.25) !important;
            border: 2px solid var(--emerald-green) !important;
            color: var(--emerald-green) !important;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.5) !important;
            transform: translateY(-2px);
@keyframes glow-green {
    from {
        box-shadow: 0 0 8px 1px rgba(16, 185, 129, 0.3), 0 0 16px 2px rgba(16, 185, 129, 0.1);
    }
    to {
        box-shadow: 0 0 24px 6px rgba(16, 185, 129, 0.7), 0 0 48px 12px rgba(16, 185, 129, 0.3);
    }
}
        }
        
        .form-submit-container {
            text-align: center;
            margin-top: 16px;
        }
        
        .form-submit-btn {
            background: linear-gradient(135deg, var(--royal-blue), #1d4ed8);
            color: white;
            border: none;
            border-radius: 16px;
            padding: 18px 48px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }
        
        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
        }
        
        .form-submit-btn:active {
            transform: translateY(-1px);
        }
        
        .form-submit-btn.success {
            background: linear-gradient(135deg, var(--emerald-green), #059669);
        }
        
        .form-note {
            color: #9CA3AF;
            font-size: 14px;
            margin-top: 12px;
            text-align: center;
        }
        
        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 80px;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            color: white;
        }
        
        .social-link.facebook:hover {
            border-color: #1877F2;
            background: rgba(24, 119, 242, 0.1);
            color: #1877F2;
        }
        
        .social-link.twitter:hover {
            border-color: #1DA1F2;
            background: rgba(29, 161, 242, 0.1);
            color: #1DA1F2;
        }
        
        .social-link.linkedin:hover {
            border-color: #0A66C2;
            background: rgba(10, 102, 194, 0.1);
            color: #0A66C2;
        }
        
        .social-link.instagram:hover {
            border-color: #E4405F;
            background: rgba(228, 64, 95, 0.1);
            color: #E4405F;
        }
        
        .social-link.github:hover {
            border-color: #333;
            background: rgba(51, 51, 51, 0.1);
            color: #333;
        }
        
        .social-link i {
            font-size: 20px;
        }
        
        .social-link span {
            font-size: 12px;
            font-weight: 500;
        }
        
        /* Footer Styles */
        .footer-bg {
            background: linear-gradient(135deg, 
                rgba(18, 18, 18, 0.95) 0%, 
                rgba(26, 26, 26, 0.98) 50%, 
                rgba(18, 18, 18, 0.95) 100%);
        }
        
        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(90deg, 
                rgba(37, 99, 235, 0.1) 0%, 
                rgba(16, 185, 129, 0.1) 50%, 
                rgba(139, 92, 246, 0.1) 100%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
            animation: footer-wave 10s ease-in-out infinite;
        }
        
        @keyframes footer-wave {
            0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%); }
            50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%); }
        }
        
        .footer-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .footer-particles::before,
        .footer-particles::after {
            content: '';
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(16, 185, 129, 0.4);
            border-radius: 50%;
            animation: footer-particle-float 20s linear infinite;
        }
        
        .footer-particles::before {
            top: 10%;
            left: 20%;
            animation-delay: -8s;
        }
        
        .footer-particles::after {
            top: 30%;
            right: 25%;
            background: rgba(37, 99, 235, 0.4);
            animation-delay: -15s;
        }
        
        @keyframes footer-particle-float {
            0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
            10% { opacity: 1; transform: scale(1); }
            90% { opacity: 1; }
            100% { transform: translateY(-20px) translateX(30px) scale(0); opacity: 0; }
        }
        
        .footer-main {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-brand .text-gradient {
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }
        
        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--royal-blue), var(--emerald-green));
            border-radius: 1px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            space-y: 12px;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--emerald-green);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover::before {
            width: 4px;
        }
        
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            gap: 12px;
        }
        
        @media (max-width: 640px) {
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        .newsletter-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--royal-blue);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-input::placeholder {
            color: #6B7280;
        }
        
        .newsletter-btn {
            background: linear-gradient(135deg, var(--emerald-green), #059669);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }
        
        .footer-bottom {
            background: rgba(18, 18, 18, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-social-link:hover {
            transform: translateY(-3px);
            color: white;
        }
        
        .footer-social-link.facebook:hover {
            border-color: #1877F2;
            background: rgba(24, 119, 242, 0.1);
            color: #1877F2;
        }
        
        .footer-social-link.twitter:hover {
            border-color: #1DA1F2;
            background: rgba(29, 161, 242, 0.1);
            color: #1DA1F2;
        }
        
        .footer-social-link.linkedin:hover {
            border-color: #0A66C2;
            background: rgba(10, 102, 194, 0.1);
            color: #0A66C2;
        }
        
        .footer-social-link.instagram:hover {
            border-color: #E4405F;
            background: rgba(228, 64, 95, 0.1);
            color: #E4405F;
        }
        
        .footer-social-link.github:hover {
            border-color: #6B7280;
            background: rgba(107, 114, 128, 0.1);
            color: #6B7280;
        }



        .hero-gradient {
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.1) 0%, 
                rgba(16, 185, 129, 0.1) 50%, 
                rgba(139, 92, 246, 0.1) 100%);
        }
        
        .glass-effect {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stagger-delay-1 { transition-delay: 0.1s; }
        .stagger-delay-2 { transition-delay: 0.2s; }
        .stagger-delay-3 { transition-delay: 0.3s; }
        .stagger-delay-4 { transition-delay: 0.4s; }
        .stagger-delay-5 { transition-delay: 0.5s; }
        .stagger-delay-6 { transition-delay: 0.6s; }
        
        .section-padding {
            padding: 120px 0;
        }
        
        .navbar-blur {
            backdrop-filter: blur(20px);
            background: rgba(18, 18, 18, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .project-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.6s;
        }
        
        .project-card:hover::before {
            left: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
        }
        
        .metric-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .metric-card:hover {
            transform: translateY(-3px);
            border-color: var(--emerald-green);
        }
        
        .metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 40px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            border: 3px solid var(--bg-primary);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 20px;
            width: 2px;
            height: calc(100% + 20px);
            background: linear-gradient(180deg, var(--royal-blue), transparent);
        }
        
        .timeline-item:last-child::after {
            display: none;
        }
        
        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tech-badge:hover {
            background: rgba(37, 99, 235, 0.1);
            border-color: var(--royal-blue);
            transform: translateY(-2px);
        }
        
        .challenge-card {
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
        }
        
        .solution-card {
            background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .feature-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-purple);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent-purple), var(--royal-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 16px;
        }
        
        .screenshot-container {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .screenshot-mockup {
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .mockup-header {
            background: #e9ecef;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mockup-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .dot-red { background: #ff5f56; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #27ca3f; }
        
        .mockup-content {
            background: white;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 18px;
        }
        
        .testimonial-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.8));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid var(--emerald-green);
            border-radius: 16px;
            padding: 32px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 60px;
            color: var(--emerald-green);
            opacity: 0.3;
        }
        
        .cta-section {
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.1) 0%, 
                rgba(16, 185, 129, 0.1) 50%, 
                rgba(139, 92, 246, 0.1) 100%);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(37, 99, 235, 0.05) 0%, 
                rgba(16, 185, 129, 0.05) 100%);
            animation: cta-glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes cta-glow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--royal-blue), #1d4ed8);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--off-white);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-secondary:hover {
            border-color: var(--emerald-green);
            color: var(--emerald-green);
            transform: translateY(-2px);
        }
        
        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 8px;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--royal-blue), var(--emerald-green));
            border-radius: 4px;
            transition: width 1s ease-out;
        }
        
        .floating-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 20px 0;
        }
        
        .floating-nav a {
            display: block;
            padding: 12px 20px;
            color: #9CA3AF;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .floating-nav a:hover,
        .floating-nav a.active {
            color: var(--emerald-green);
        }
        
        .floating-nav a::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #9CA3AF;
            transition: all 0.3s ease;
        }
        
        .floating-nav a:hover::before,
        .floating-nav a.active::before {
            background: var(--emerald-green);
            width: 6px;
            height: 6px;
        }
        
        @media (max-width: 1024px) {
            .floating-nav {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .tp-widget-wrapper {
            text-align: start;
            margin: 0px;
        }

        /* FAQ Section Styles */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .faq-item {
            background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(16,185,129,0.08));

            /* FAQ Card Styles */
            .faq-item.card {
                display: flex;
                align-items: flex-start;
                gap: 1.5rem;
                background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(16,185,129,0.10));
                border-radius: 18px;
                padding: 2.2rem 2rem;
                box-shadow: 0 4px 24px rgba(37,99,235,0.08);
                border: 1px solid rgba(37,99,235,0.12);
                transition: box-shadow 0.2s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
                opacity: 0;
                transform: translateY(40px) scale(0.98);
                animation: faqFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            }
            .faq-item.card:hover {
                box-shadow: 0 8px 32px rgba(16,185,129,0.18);
                border-color: var(--emerald-green);
                transform: translateY(-4px) scale(1.01);
            }
            .faq-item.card .card-icon {
                flex-shrink: 0;
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--royal-blue), var(--emerald-green));
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 2rem;
                box-shadow: 0 2px 8px rgba(37,99,235,0.10);
            }
            .faq-item.card .card-content h3 {
                color: var(--royal-blue);
                font-size: 1.2rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
            }
            .faq-item.card .card-content p {
                color: var(--off-white);
                font-size: 1rem;
                line-height: 1.7;
            }
            .faq-item.card:nth-child(1) { animation-delay: 0.1s; }
            .faq-item.card:nth-child(2) { animation-delay: 0.2s; }
            .faq-item.card:nth-child(3) { animation-delay: 0.3s; }
            .faq-item.card:nth-child(4) { animation-delay: 0.4s; }
            .faq-item.card:nth-child(5) { animation-delay: 0.5s; }
            .faq-item.card:nth-child(6) { animation-delay: 0.6s; }
            .faq-item.card:nth-child(7) { animation-delay: 0.7s; }

            @keyframes faqFadeIn {
                0% {
                    opacity: 0;
                    transform: translateY(40px) scale(0.98);
                }
                60% {
                    opacity: 1;
                    transform: translateY(-8px) scale(1.02);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            /* Loading Spinner Styles */
            #loading-overlay {
                display: none;
                align-items: center;
                justify-content: center;
            }
            .spinner {
                width: 64px;
                height: 64px;
                position: relative;
            }
            .double-bounce1, .double-bounce2 {
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--emerald-green), var(--royal-blue));
                opacity: 0.6;
                position: absolute;
                top: 0;
                left: 0;
                animation: bounce 2s infinite ease-in-out;
            }
            .double-bounce2 {
                animation-delay: -1s;
            }
            @keyframes bounce {
                0%, 100% { transform: scale(0); }
                50% { transform: scale(1); }
            }
        }