/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #13131a;
    --color-bg-tertiary: #1a1a24;

    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0b2;
    --color-text-muted: #6b6b7f;

    --color-accent-orange: #ff6b35;
    --color-accent-purple: #667eea;
    --color-accent-blue: #4facfe;
    --color-accent-pink: #f093fb;
    --color-accent-cyan: #00f2fe;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-accent: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', monospace;

    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Effects */
    --blur-sm: 4px;
    --blur-md: 8px;
    --blur-lg: 16px;
    --blur-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);

    --shadow-glow-purple: 0 0 20px rgba(102, 126, 234, 0.5);
    --shadow-glow-blue: 0 0 20px rgba(79, 172, 254, 0.5);
    --shadow-glow-pink: 0 0 20px rgba(240, 147, 251, 0.5);

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}

/* ===================================
   Base Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(var(--blur-lg));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-button {
    background: var(--gradient-primary);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--border-radius-full);
    color: white;
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: var(--border-radius-lg);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--gradient-tertiary);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.floating-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: var(--border-radius-lg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
        border-radius: var(--border-radius-full);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        border-radius: var(--border-radius-xl);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-accent-orange);
    margin-bottom: var(--space-xl);
    font-weight: 600;
    animation: fadeInUp 1s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: var(--space-xl);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.2s both;
}

.hide-mobile {
    display: inline;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn {
    padding: 18px 36px;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    border: none;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--color-accent-orange);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(var(--blur-sm));
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 1s ease 0.4s both;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: var(--font-size-5xl);
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-accent-orange);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.trusted-by {
    text-align: center;
    animation: fadeInUp 1s ease 0.5s both;
}

.trusted-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.client-logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: all var(--transition-base);
    font-family: var(--font-heading);
}

.client-logo:hover {
    opacity: 1;
    color: var(--color-accent-orange);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    animation: fadeInUp 1s ease 0.8s both;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(var(--blur-sm));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: var(--shadow-glow-purple);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-features li {
    color: var(--color-text-secondary);
    position: relative;
    padding-left: var(--space-lg);
    font-size: var(--font-size-sm);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    padding: var(--space-3xl) 0;
    background: rgba(255, 255, 255, 0.01);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.portfolio-item {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.portfolio-gradient {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-gradient {
    transform: scale(1.1);
}

.gradient-purple {
    background: var(--gradient-primary);
}

.gradient-blue {
    background: var(--gradient-tertiary);
}

.gradient-pink {
    background: var(--gradient-secondary);
}

.portfolio-content {
    padding: var(--space-xl);
}

.portfolio-category {
    display: inline-block;
    font-size: var(--font-size-sm);
    color: var(--color-accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.portfolio-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
}

.portfolio-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: var(--space-xs) var(--space-md);
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-accent-purple);
}

/* ===================================
   Technologies Section
   =================================== */
.technologies {
    padding: var(--space-3xl) 0;
}

.tech-circle {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    backdrop-filter: blur(var(--blur-md));
    cursor: pointer;
    animation: techFloat 3s infinite ease-in-out;
}

.tech-item:hover {
    transform: scale(1.2);
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--color-accent-purple);
    box-shadow: var(--shadow-glow-purple);
}

@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: rgba(255, 255, 255, 0.01);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.contact-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-purple);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-value:hover {
    color: var(--color-accent-purple);
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(var(--blur-md));
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--color-text-primary);
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-glow-purple);
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -10px;
    left: 12px;
    font-size: var(--font-size-sm);
    background: var(--color-bg-primary);
    padding: 0 var(--space-xs);
    color: var(--color-accent-purple);
}

.form-label {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: var(--font-size-lg);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--space-xl);
    gap: var(--space-xl);
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: var(--color-accent-purple);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
}

/* ===================================
   Scroll Reveal Animation
   =================================== */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(var(--blur-xl));
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transition: left var(--transition-base);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tech-circle {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-6xl: 3rem;
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .service-card,
    .portfolio-item,
    .contact-form {
        padding: var(--space-lg);
    }
}/* Mobile overrides for new hero design */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .metric-number {
        font-size: var(--font-size-4xl);
    }
    
    .client-logos {
        gap: var(--space-xl);
    }
}
/* Calendly Widget Styles */
.calendly-widget {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-xl);
    text-align: center;
}

.calendly-title {
    font-size: var(--font-size-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.calendly-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.calendly-btn {
    display: inline-flex;
    gap: var(--space-sm);
}

.calendly-btn .btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .calendly-widget {
        padding: var(--space-lg);
    }
    
    .calendly-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Logo Image Styles */
.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    .logo-image {
        height: 32px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
}
/* Booking Form Styles */
.booking-widget {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-xl);
}

.booking-title {
    font-size: var(--font-size-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.booking-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.booking-form{
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=''http://www.w3.org/2000/svg'' width=''12'' height=''12'' viewBox=''0 0 12 12''%3E%3Cpath fill=''%23ff6b35'' d=''M6 9L1 4h10z''/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-label-select {
    top: -0.5rem !important;
    font-size: var(--font-size-sm) !important;
    background: var(--color-surface);
    padding: 0 var(--space-xs);
}

.booking-btn {
    display: inline-flex;
    gap: var(--space-sm);
    justify-content: center;
    width: 100%;
    margin-top: var(--space-md);
}

.booking-btn .btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .booking-widget {
        padding: var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}
/* Premium Tech Design - 3D Background & Animations */

/* Canvas and Particles Container */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Updated Hero to accommodate layers */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Glitch Effect */
.glitch {animation: glitch 3s infinite;}
@keyframes glitch {
    0%, 100% {text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);}
    25% {text-shadow: -2px 0 rgba(255, 107, 53, 0.5), 2px 0 rgba(0, 255, 255, 0.5);}
    50% {text-shadow: 2px 0 rgba(255, 107, 53, 0.5), -2px 0 rgba(255, 0, 255, 0.5);}
    75% {text-shadow: -2px 0 rgba(0, 255, 255, 0.5), 2px 0 rgba(255, 107, 53, 0.5);}
}

/* Neon Glow Effect */
.glow {
    animation: neon-glow 2s ease-in-out infinite alternate;
}
@keyframes neon-glow {
    from {
        text-shadow: 
            0 0 10px #ff6b35,
            0 0 20px #ff6b35,
            0 0 30px #ff6b35,
            0 0 40px #ff6b35;
    }
    to {
        text-shadow: 
            0 0 20px #ff6b35,
            0 0 30px #ff8c00,
            0 0 40px #ff8c00,
            0 0 50px #ff8c00,
            0 0 60px #ff8c00;
    }
}

/* Tech Subtitle Tags */
.tech-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: var(--font-size-xl);
    margin-top: var(--space-lg);
}

.tech-tag {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #00ffff;
    padding: var(--space-xs) var(--space-md);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.tech-tag:nth-child(2) {animation-delay: 0.5s;}
.tech-tag:nth-child(4) {animation-delay: 1s;}
.tech-tag:nth-child(6) {animation-delay: 1.5s;}
.tech-tag:nth-child(8) {animation-delay: 2s;}

.tech-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

@keyframes pulse {
    0%, 100% {opacity: 0.7;}
    50% {opacity: 1;}
}

.tech-separator {
    color: var(--color-accent-orange);
    font-size: var(--font-size-lg);
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-card:hover::before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    from {transform: translateX(-100%) rotate(45deg);}
    to {transform: translateX(100%) rotate(45deg);}
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tech-subtitle {
        flex-wrap: wrap;
        font-size: var(--font-size-base);
    }
    
    .tech-tag {
        font-size: var(--font-size-sm);
        padding: var(--space-xs) var(--space-sm);
    }
    
    .hero-canvas,
    .particles-container {
        opacity: 0.4;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
/* Portfolio Result Metrics */
.portfolio-result {
    display: block;
    color: var(--color-accent-orange);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--space-xs);
    font-family: 'Courier New', monospace;
}

.portfolio-result:first-of-type {
    margin-top: var(--space-md);
}
/* Mobile Typography & Spacing Fixes */
@media (max-width: 768px) {
    /* Fix hero section spacing */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-badge {
        margin-top: var(--space-xl);
        margin-bottom: var(--space-lg);
    }
    
    /* Disable glitch effect on mobile - causes hazy text */
    .glitch {
        animation: none;
        text-shadow: none;
    }
    
    /* Clearer hero title on mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Reduce glow effect on mobile */
    .glow {
        animation: none;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    
    /* Better spacing for tech subtitle */
    .tech-subtitle {
        margin-top: var(--space-xl);
        margin-bottom: var(--space-xl);
    }
    
    /* Hero CTA spacing */
    .hero-cta {
        margin-top: var(--space-2xl);
        gap: var(--space-md);
    }
    
    /* Service cards spacing */
    .services-grid {
        gap: var(--space-xl);
        padding: var(--space-lg) 0;
    }
    
    /* Portfolio spacing */
    .portfolio-grid {
        gap: var(--space-xl);
    }
    
    /* Contact section spacing */
    .contact {
        padding: var(--space-2xl) 0;
    }
    
    /* Form spacing */
    .form-row {
        gap: var(--space-lg);
    }
    
    /* Booking widget spacing */
    .booking-widget {
        margin-top: var(--space-2xl);
        padding: var(--space-xl);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: var(--font-size-sm);
        padding: var(--space-xs) var(--space-md);
    }
}
/* Fix Form Select Dropdown Labels */
.form-select {
    cursor: pointer;
}

/* Fix select dropdown labels - always show at top */
.form-select + .form-label-select,
.form-select:focus + .form-label-select,
select.form-input + .form-label {
    top: -0.75rem !important;
    font-size: var(--font-size-sm) !important;
    background: var(--color-surface);
    padding: 0 var(--space-xs);
    opacity: 1 !important;
    color: var(--color-text-secondary);
}

/* Date input label fix */
input[type="date"].form-input + .form-label {
    top: -0.75rem !important;
    font-size: var(--font-size-sm) !important;
    background: var(--color-surface);
    padding: 0 var(--space-xs);
    opacity: 1 !important;
}

/* Ensure select has proper padding */
select.form-input {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

/* Date input styling */
input[type="date"].form-input {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}
/* Dropdown Option Styling - Black Background with Orange Selection */
select.form-input option {
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
}

select.form-input option:hover,
select.form-input option:checked,
select.form-input option:focus {
    background-color: #ff6b35;
    color: #000000;
    font-weight: 600;
}

/* Improve select dropdown visibility */
select.form-input {
    background-color: var(--color-surface);
    color: var(--color-text-primary);
}

select.form-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}
/* Portfolio Image Styling */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* Realistic blur overlay on images */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.4), rgba(255, 107, 53, 0.3));
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.3;
}

/* Add subtle blur to sensitive information */
.portfolio-img {
    filter: blur(0.3px);
}

.portfolio-item:hover .portfolio-img {
    filter: blur(0px);
}
