:root {
    --primary: #00d4ff;
    --primary-hover: #00b8e6;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #151515;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-hover);
    }

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
        box-shadow: var(--shadow-lg);
    }

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 28px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo span {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo:hover {
        color: var(--text-primary);
        transform: scale(1.05);
    }

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

    .btn-ghost:hover {
        background: var(--bg-tertiary);
        border-color: var(--border-hover);
        color: var(--text-primary);
    }

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-primary);
}

    .hero h1 span {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

    .hero-image img {
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
    }

    

/* Stats Section */
.stats {
    padding: 0px 0;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}


.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}

    .stat-item:hover {
        transform: translateY(-5px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-lg);
    }

    .stat-item h3 {
        font-size: 3.5rem;
        font-weight: 800;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px;
    }

    .stat-item p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        font-weight: 500;
    }

/* Section Styling */
.section {
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--text-primary);
    }

        .section-title h1 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .section-title p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

/* Service Cards */
.service-card {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

  

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: var(--shadow-glow);
    }

        .service-card:hover::before {
            opacity: 0.05;
        }

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .service-card a:hover {
        color: var(--primary-hover);
        transform: translateX(5px);
    }

/* Process Section */
.process {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    padding: 50px 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    line-height: 80px;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    position: relative;
}

    .step-number::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        opacity: 0.3;
    }

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
}


.client {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    padding: 50px 0;
    position: relative;
}
/* Client Logos */
.client-logo {
   
    padding: 2px 2px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

    .client-logo:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: var(--shadow);
    }

/* Testimonials */



.testimonial {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    padding: 50px 0;
   
}

.testimonial-card {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: var(--shadow-glow);
    }

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.7;
}

.client-info {
   
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.client-info h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle  r="1" fill="white" opacity="0.1"/></svg>') repeat;
        animation: float 20s linear infinite;
    }

.cta-content {
    position: relative;
    z-index: 1;
}

    .cta-content h2 {
        font-family: 'Inter', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: white;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    border-top: 1px solid var(--border);
}

    .footer .logo {
        font-family: 'JetBrains Mono', monospace;
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 20px;
        display: inline-block;
    }

        .footer .logo span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.social-links {
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .social-links a {
        width: 50px;
        height: 50px;
        background: var(--bg-glass);
        color: var(--text-secondary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        border: 1px solid var(--border);
    }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

.footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

    .footer-links a:hover {
        color: var(--primary);
        transform: translateX(5px);
    }

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Modal Styles */
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 30px;
}

.modal-title {
    color: var(--text-primary);
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

.modal-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-modal {
    background: var(--bg-glass);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

    .service-card-modal:hover {
        border-color: var(--border-hover);
        transform: translateY(-5px);
    }

/* Form Styles */
.form-control {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        background: var(--bg-tertiary);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        color: var(--text-primary);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

.form-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-select {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 15px;
}

    .form-select:focus {
        background: var(--bg-tertiary);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        color: var(--text-primary);
    }

/* Toast Styles */
.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
}

    .toast.success {
        border-color: var(--success);
    }

        .toast.success .toast-header {
            background: var(--success);
            color: white;
        }

    .toast.danger {
        border-color: var(--danger);
    }

        .toast.danger .toast-header {
            background: var(--danger);
            color: white;
        }

/* Close Button Styles */
.btn-close {
    background: var(--danger);
    opacity: 1;
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    border: none;
    font-size: 12px;
}

    .btn-close:hover {
        background: #dc2626;
        color: white;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .section-title h1 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .process,
    .testimonials {
        padding: 60px 0;
    }

    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}
