
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --dark-primary: #08150d; /* slightly green-tinted dark */
    --dark-secondary: #0f2a1a;
    --dark-tertiary: #194a2d;
    --dark-card: rgba(15, 42, 26, 0.5);

    /* Accent Colors (all aligned around #00c057) */
    --accent-green: #00c057; /* MAIN BRAND */
    --accent-green-light: #2fe67a;
    --accent-green-dark: #009744;
    --accent-cyan: #22eebb;
    --accent-lime: #a6ff3f;

    /* Gradients (green variations) */
    --gradient-primary: linear-gradient(135deg, #00c057, #009744);
    --gradient-secondary: linear-gradient(135deg, #2fe67a, #00c057);
    --gradient-accent: linear-gradient(135deg, #00ffa3, #00c057);
    --gradient-green-glow: linear-gradient(135deg, #a6ff3f, #00c057);

    /* Glass Effects */
    --glass-bg: rgba(0, 192, 87, 0.06);
    --glass-border: rgba(0, 192, 87, 0.18);
    --glass-shadow: 0 8px 22px rgba(0, 192, 87, 0.25);

    /* Text Colors */
    --text-primary: #e9fff1;
    --text-secondary: #baf5d4;
    --text-muted: #7ac99d;

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(0, 192, 87, 0.35);
    --shadow-glow-hover: 0 0 60px rgba(0, 192, 87, 0.55);
}

/* ===================================
   GLOBAL STYLES
   =================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   IT-THEMED 3D BACKGROUND
   =================================== */

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
}

/* Hexagonal Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, rgba(102, 126, 234, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(102, 126, 234, 0.03) 87.5%, rgba(102, 126, 234, 0.03)),
        linear-gradient(150deg, rgba(102, 126, 234, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(102, 126, 234, 0.03) 87.5%, rgba(102, 126, 234, 0.03)),
        linear-gradient(30deg, rgba(102, 126, 234, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(102, 126, 234, 0.03) 87.5%, rgba(102, 126, 234, 0.03)),
        linear-gradient(150deg, rgba(102, 126, 234, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(102, 126, 234, 0.03) 87.5%, rgba(102, 126, 234, 0.03)),
        linear-gradient(60deg, rgba(0, 192, 87
, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(0, 192, 87
, 0.05) 75%, rgba(0, 192, 87
, 0.05)),
        linear-gradient(60deg, rgba(0, 192, 87
, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(0, 192, 87
, 0.05) 75%, rgba(0, 192, 87
, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

/* Animated Circuit Lines */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(0, 192, 87
, 0.1) 49%, rgba(0, 192, 87
, 0.1) 51%, transparent 52%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 48%, rgba(0, 192, 87
, 0.1) 49%, rgba(0, 192, 87
, 0.1) 51%, transparent 52%, transparent 100%);
    background-size: 100px 100px, 100px 100px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, 100px 100px;
    }
}

/* Floating Code Snippets */
.code-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--accent-green)
;
    opacity: 0.3;
    white-space: nowrap;
    animation: codeRainFall linear infinite;
}

@keyframes codeRainFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Floating Geometric Shapes */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.shape.circle {
   border-radius: 50%;
    background: linear-gradient(135deg, #00c057, #00ffa3);

}

.shape.square {
    background: linear-gradient(135deg, #00ffa3, #00c057);
    transform: rotate(45deg);
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(0, 192, 87
, 0.5);
    background: transparent;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(270deg);
    }
}

/* Network Nodes Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* ===================================
   CUSTOM CURSOR - DESKTOP ONLY
   =================================== */

@media (min-width: 1024px) {
    * {
        cursor: none !important;
    }

    .custom-cursor {
        width: 15px;
        height: 15px;
        background: #ffffff84;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99999;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.257),
            0 0 40px rgba(255, 255, 255, 0.324),
            0 0 60px rgba(255, 255, 255, 0.4);
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, background 0.2s ease;
        display: block;
    }

    .custom-cursor.active {
        transform: translate(-50%, -50%) scale(1.5);
        background: #ffffff80;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.345),
            0 0 60px rgba(255, 255, 255, 0.3),
            0 0 90px rgba(255, 255, 255, 0.288);
    }

    .cursor-particle {
        position: fixed;
        width: 8px;
        height: 8px;
        background: #ffffff82;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        opacity: 0.9;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.429),
            0 0 20px rgba(255, 255, 255, 0.187);
        animation: particleFade 0.8s ease-out forwards;
    }

    @keyframes particleFade {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.9;
        }

        100% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
    }
}

@media (max-width: 1023px) {
    .custom-cursor {
        display: none !important;
    }
}

.logo img {
    height: 50px;      /* adjust as you want */
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--accent-green)
;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.2);
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-secondary)
;
    z-index: 10000;
    transform-origin: left;
    box-shadow: 0 0 10px rgba(0, 192, 87
, 0.5);
}

/* ===================================
   NAVIGATION - GLASSMORPHISM
   =================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: 'rgba(0, 32, 5, 1)';
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-secondary)
;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(0, 192, 87
, 0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary)
;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green)
;
    background: var(--glass-bg);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-green)
;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 100px 20px 50px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary)
;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 192, 87
, 0.5));
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
    color: var(--text-muted) !important;
    margin-bottom: 2rem !important;
    padding: 0.5rem;
    border-radius: 20px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.cta-button {
    padding: 15px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-secondary)
;
    border-color: transparent;
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--accent-green)
;
}

.cta-button-outline:hover {
    background: var(--gradient-secondary)
;
    box-shadow: var(--shadow-glow-hover);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   COMMON SECTION STYLES
   =================================== */

section {
    padding: 100px 50px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(36px, 6vw, 60px);
    margin-bottom: 20px;
    background: var(--gradient-secondary)
;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 192, 87
, 0.3));
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   ABOUT SECTION - GLASSMORPHISM
   =================================== */

.about {
    background: transparent;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-text {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.about-text h3 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
    color: var(--accent-green)
;
}

.about-text p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.1);
}

.feature-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 192, 87
, 0.5));
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--accent-green)
;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    color: var(--text-muted);
}

/* ===================================
   SERVICES SECTION - GLASSMORPHISM
   =================================== */

.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary)
;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green)
;
    box-shadow: var(--shadow-glow-hover);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 192, 87
, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-card h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 15px;
    color: var(--accent-green)
;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-green)
;
    font-weight: bold;
    font-size: 18px;
}

/* ===================================
   TECHNOLOGY STACK - DARK GLASS
   =================================== */

.tech-stack {
    padding: 100px 20px;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.tech-stack .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

.tech-stack .section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.tech-slider {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.tech-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollRight 30s linear infinite;
}

.tech-slider[data-direction="left"] .tech-track {
    animation: scrollLeft 30s linear infinite;
}

.tech-slider:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    min-width: 200px;
    padding: 30px 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 192, 87
, 0.3), transparent);
    transition: left 0.5s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(0, 192, 87
, 0.15);
    border-color: var(--accent-green)
;
    box-shadow: var(--shadow-glow);
}

.tech-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 192, 87
, 0.5));
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.2) rotate(5deg);
}

.tech-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tech-slider::before,
.tech-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.tech-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-primary) 0%, transparent 100%);
}

.tech-slider::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--dark-primary) 100%);
}

/* ===================================
   PROCESS SECTION - GLASSMORPHISM
   =================================== */

.process {
    background: transparent;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-secondary)
;
    box-shadow: 0 0 10px rgba(0, 192, 87
, 0.5);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) .step-content {
    order: 2;
}

.step-content {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.1);
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary)
;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 192, 87
, 0.5);
}

.step-content h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 15px;
    color: var(--accent-green)
;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   STATS SECTION - GLASSMORPHISM
   =================================== */

.stats {
    padding: 100px 50px;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.1);
}

.stat-number {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    background: var(--gradient-secondary)
;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(0, 192, 87
, 0.3));
}

.stat-label {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-secondary);
}
/* ===================================
   PORTFOLIO SECTION - CLEAN & SIMPLE
   =================================== */

.portfolio {
    position: relative;
    padding: 100px 0;
    background: var(--dark-primary);
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 192, 87
, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===================================
   SECTION HEADER
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 192, 87
, 0.1);
    border: 1px solid rgba(0, 192, 87
, 0.2);
    border-radius: 30px;
    color: var(--accent-green)
;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   FILTER PILLS
   =================================== */

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.filter-pill:hover,
.filter-pill.active {
    background: linear-gradient(135deg, #667eea 0%, #009744
 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.filter-pill:hover .pill-count,
.filter-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===================================
   PROJECTS GRID
   =================================== */

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* ===================================
   PROJECT ITEM
   =================================== */

.project-item {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 192, 87
, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-item:hover::before {
    opacity: 1;
}

.project-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 192, 87
, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   PROJECT ICON
   =================================== */

.project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.project-item:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
}

.project-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Gradient Variants */
.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #009744
 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.gradient-pink {
    background: linear-gradient(135deg, #2fe67a
 0%, #f5576c 100%);
    box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

.gradient-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 24px rgba(67, 233, 123, 0.3);
}

.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 24px rgba(250, 112, 154, 0.3);
}

.gradient-cyan {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 24px rgba(48, 207, 208, 0.3);
}

.gradient-red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.gradient-violet {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 8px 24px rgba(168, 237, 234, 0.3);
}

/* ===================================
   PROJECT CONTENT
   =================================== */

.project-content {
    position: relative;
    z-index: 1;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.project-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-green)
;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-active::before {
    background: #10b981;
}

.status-live {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-live::before {
    background: #3b82f6;
}

.status-completed {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.status-completed::before {
    background: #a855f7;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.project-name {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===================================
   PROJECT TECH STACK
   =================================== */

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.project-item:hover .project-tech span {
    background: rgba(0, 192, 87
, 0.1);
    border-color: rgba(0, 192, 87
, 0.3);
    color: var(--accent-green)
;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 1024px) {
    .portfolio {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .filter-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-bottom: 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-container::-webkit-scrollbar {
        display: none;
    }

    .filter-pill {
        flex-shrink: 0;
        padding: 10px 20px;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-item {
        padding: 24px;
    }

    .project-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .project-icon svg {
        width: 24px;
        height: 24px;
    }

    .project-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .project-item {
        padding: 20px;
    }

    .project-tech span {
        padding: 5px 12px;
        font-size: 11px;
    }
}
/* ===================================
   TESTIMONIALS - GLASSMORPHISM
   =================================== */

.testimonials {
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.1);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--accent-green)
;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary)
;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 0 15px rgba(0, 192, 87
, 0.5);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   FAQ SECTION - GLASSMORPHISM
   =================================== */

.faq {
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-glow);
}

.faq-question {
    padding: 25px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: var(--text-primary);
}

.faq-question:hover {
    color: var(--accent-green)
;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s;
    color: var(--accent-green)
;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   BLOG SECTION - GLASSMORPHISM
   =================================== */

.blog {
    background: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green)
;
    box-shadow: var(--shadow-glow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-secondary)
;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 15px;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-green)
;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* ===================================
   CONTACT SECTION - GLASSMORPHISM
   =================================== */
/* ===================================
   CONTACT SECTION - GLASSMORPHISM (MOBILE OPTIMIZED)
   =================================== */

.contact {
    padding: 80px 20px;
    background: transparent;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.contact-info h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 15px;
    color: var(--accent-green)
;
}

.contact-info p {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.contact-detail:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.1);
}

.contact-detail-icon {
    font-size: 24px;
    min-width: 24px;
    margin-top: 3px;
    filter: drop-shadow(0 0 10px rgba(0, 192, 87
, 0.5));
}

.contact-detail h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-detail p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
    word-break: break-word;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-green)
;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green)
;
    box-shadow: 0 0 20px rgba(0, 192, 87
, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

.submitlast-button {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-secondary)
;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 192, 87
, 0.5);
    display: block;
}

.submitlast-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
}

.submitlast-button:active {
    transform: translateY(0);
}

.submitlast-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   MOBILE RESPONSIVE - CONTACT SECTION
   =================================== */

@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .contact-info h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .contact-info p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-detail {
        padding: 12px 15px;
        gap: 12px;
    }

    .contact-detail:hover {
        transform: translateX(3px);
    }

    .contact-detail-icon {
        font-size: 20px;
        min-width: 20px;
    }

    .contact-detail h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .contact-detail p {
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submitlast-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 12px;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-detail {
        padding: 10px 12px;
        gap: 10px;
    }

    .contact-detail-icon {
        font-size: 18px;
        min-width: 18px;
    }

    .contact-detail h4 {
        font-size: 14px;
    }

    .contact-detail p {
        font-size: 12px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 13px;
    }

    .submitlast-button {
        padding: 13px 24px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .contact {
        padding: 40px 10px;
    }

    .contact-info,
    .contact-form {
        padding: 18px 14px;
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-detail {
        padding: 10px;
    }

    .submitlast-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ===================================
   FOOTER - GLASSMORPHISM
   =================================== */

footer {
    padding: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-green)
;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-green)
;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green)
;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-links a:hover {
    background: var(--gradient-secondary)
;
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--accent-green)
;
    text-decoration: none;
}

/* ===================================
   LOADER - GLASSMORPHISM
   =================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-size: clamp(30px, 5vw, 40px);
    font-weight: 900;
    background: var(--gradient-secondary)
;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 192, 87
, 0.5));
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    section {
        padding: 60px 30px;
    }

    nav {
        padding: 15px 30px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step:nth-child(even) .step-content {
        order: 1;
    }

    .portfolio .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 60px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .portfolio .masonry-grid {
        grid-template-columns: 1fr;
    }

    .portfolio .project-box.wide,
    .portfolio .project-box.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio .overlay-description {
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease 0.85s backwards;
}

.hero-features span {
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.hero-features span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 192, 87
, 0.15);
    border-color: var(--accent-green)
;
}

/* Enhanced Subtitle with Strong Tags */
.subtitle strong {
    color: var(--accent-green)
;
    font-weight: 600;
}