/* ==================================
   ankushbansal.in - GOD-TIER Premium Styles
   Ultra-modern, Light & Vibrant, Red Accents
   ================================== */

/* CSS Variables - PROJECT IGI: TACTICAL THEME (Improved Visibility) */
:root {
    /* Tactical Palette */
    --primary-gradient: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
    --secondary-gradient: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --accent-gradient: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    --success-gradient: linear-gradient(135deg, #00C853 0%, #00E676 100%);

    /* Core Colors - Brighter for visibility */
    --primary-color: #66BB6A;
    /* Brighter Green */
    --primary-dark: #2E7D32;
    --secondary-color: #1a1a1a;
    /* Slightly lighter */
    --accent-color: #FF5252;
    /* Brighter Red */
    --accent-light: #FF8A80;

    /* Backgrounds - Improved contrast */
    --bg-gradient: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    --bg-dark: #0d0d0d;
    --bg-darker: #080808;
    --bg-white: #1a1a1a;
    --bg-glass: rgba(20, 30, 20, 0.95);
    --bg-glass-hover: rgba(102, 187, 106, 0.15);

    /* Text Colors - High contrast */
    --text-dark: #FFFFFF;
    --text-gray: #CFD8DC;
    /* Lighter gray */
    --text-light: #90A4AE;
    /* Lighter */
    --text-white: #FFFFFF;

    /* Tactical Green (for UI accents) */
    --tac-green: #66BB6A;

    /* Typography */
    --font-heading: 'Stencil', 'Impact', 'Segoe UI', sans-serif;
    /* Military */
    --font-body: 'Courier New', 'Consolas', monospace;
    /* Tactical Terminal */

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Tactical UI Shapes */
    --border-radius: 2px;
    /* Sharp edges */
    --border-radius-lg: 4px;
    --border-radius-full: 0px;

    /* Shadows & Glows */
    --shadow-sm: 0 0 5px rgba(76, 175, 80, 0.2);
    --shadow-md: 0 0 10px rgba(76, 175, 80, 0.1);
    --shadow-lg: 0 0 15px rgba(76, 175, 80, 0.1);
    --shadow-glow: 0 0 10px var(--primary-color);
    --shadow-glow-accent: 0 0 10px var(--accent-color);

    /* Transitions */
    --transition-fast: 0.1s ease-out;
    --transition-normal: 0.2s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Subtle tactical overlay - reduced for better visibility */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 0, 0, 0.05) 50%);
    background-size: 100% 4px;
    z-index: 1;
    /* Lower z-index - just subtle overlay */
    pointer-events: none;
    opacity: 0.1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 187, 106, 0.02) 0%, transparent 70%);
    z-index: 0;
    /* Behind content */
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #111827 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1F2937 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header - Dark Tactical Theme */
.site-header {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(102, 187, 106, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(10, 20, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-fast);
    font-family: var(--font-heading);
}

.logo::after {
    content: ' HQ';
    font-size: 0.7rem;
    background: var(--accent-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation - Premium */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-full);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons - Premium 3D Effect */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.6);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.2);
}

.btn-secondary:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.4);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 2;
    /* Above body overlays */
    background: var(--bg-dark);
}

.section-alt {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: none;
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-full);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

/* Hero Section - Fixed Non-Sticky */
.hero {
    padding: calc(var(--spacing-2xl) * 1.5) 0;
    text-align: center;
    position: static;
    /* Not relative, not sticky, not fixed */
    overflow: hidden;
    /* Contain the ::before */
    background: var(--bg-darker);
    display: block;
}

/* Keep decoration contained */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Hero needs relative for ::before to position correctly */
.hero.tools-hero {
    position: relative;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    max-width: 850px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-bullets {
    list-style: none;
    max-width: 700px;
    margin: var(--spacing-md) auto;
    text-align: left;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-bullets li {
    padding: 0.875rem 0 0.875rem 3rem;
    color: var(--text-dark);
    position: relative;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.hero-bullets li:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-note {
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Grid - Premium Glassmorphism */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(102, 187, 106, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.1) 0%, rgba(255, 82, 82, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(102, 187, 106, 0.2);
    border-color: rgba(102, 187, 106, 0.4);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all var(--transition-fast);
}

.card-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Blog Post Card - Dark Tactical */
.blog-card {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1px solid rgba(102, 187, 106, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height var(--transition-normal);
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-card:hover::before {
    height: 100%;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

/* Contact Form - Dark Tactical */
.contact-form {
    max-width: 600px;
    margin: var(--spacing-lg) auto;
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(102, 187, 106, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(102, 187, 106, 0.3);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: rgba(0, 20, 0, 0.5);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 30, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    border: 1px solid;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Timeline - Premium */
.timeline {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--border-radius-full);
}

.timeline-item {
    position: relative;
    padding-left: 5.5rem;
    padding-bottom: var(--spacing-lg);
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   Tools Section - Dark Tactical Theme
   ========================================= */
.tools-section {
    padding: var(--spacing-lg) 0;
    background: rgba(10, 26, 10, 0.8);
    border-top: 1px solid rgba(102, 187, 106, 0.2);
    border-bottom: 1px solid rgba(102, 187, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.tools-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.tools-content {
    flex: 1;
    min-width: 300px;
}

.tools-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #111827 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.tool-card-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.tool-card-premium {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    border-radius: 4px;
    background: rgba(0, 20, 0, 0.8);
    border: 1px solid rgba(102, 187, 106, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Internal Glow Effect */
.tool-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(239, 68, 68, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.tool-card-premium:hover::after {
    opacity: 1;
}

.tool-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.15);
    border-color: var(--accent-color);
}

.tool-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.tool-card-premium:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tool-info p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-gray);
    line-height: 1.5;
}

.tool-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.2s;
}

.tool-card-premium:hover .tool-cta {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .tools-layout {
        flex-direction: column;
        text-align: center;
    }

    .tool-card-premium {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .tool-info h3 {
        font-size: 1.3rem;
    }

    .tool-cta {
        margin-top: 0.75rem;
        display: inline-block;
    }
}



/* Timeline - Dark Tactical Theme */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-item {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(13, 26, 13, 0.95);
    border: 1px solid rgba(102, 187, 106, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.timeline-item:hover {
    border-color: rgba(102, 187, 106, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: 3px solid var(--bg-darker);
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Process Steps - Dark Theme */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.process-step {
    position: relative;
    padding: var(--spacing-md);
    background: rgba(13, 26, 13, 0.95) !important;
    border: 1px solid rgba(102, 187, 106, 0.3) !important;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.process-step:hover {
    border-color: rgba(102, 187, 106, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 0 20px rgba(102, 187, 106, 0.4);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.skills-column {
    background: rgba(13, 26, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(102, 187, 106, 0.2);
    transition: all var(--transition-normal);
}

.skills-column:hover {
    border-color: rgba(102, 187, 106, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.1);
}

.skills-column h3 {
    margin-bottom: var(--spacing-sm);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skills-column ul {
    list-style: none;
}

.skills-column li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-dark);
    position: relative;
    transition: all var(--transition-fast);
}

.skills-column li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

.skills-column li:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Footer - Dark Tactical Theme */
.site-footer {
    background: linear-gradient(135deg, #0a1a0a 0%, #0d1a0d 100%);
    backdrop-filter: none;
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(102, 187, 106, 0.3);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.footer-section p {
    color: var(--text-gray);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    transform: scale(1.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: rgba(102, 187, 106, 0.1);
    border: 1px solid rgba(102, 187, 106, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.process-step {
    text-align: center;
    padding: var(--spacing-md);
    background: #FFFFFF;
    backdrop-filter: none;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 68, 68, 0.2);
}

.step-number {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-glow-accent);
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.process-step h3 {
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--text-gray);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation - DISABLED (elements always visible now) */
.scroll-reveal {
    opacity: 1;
    /* Changed from 0 - elements visible by default */
    transform: translateY(0);
    /* No transform by default */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Typography */
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    /* Spacing */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        padding: var(--spacing-xl) 0;
    }

    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(40px);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        gap: 0;
        z-index: 9999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--spacing-md);
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    /* Hero */
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-bullets {
        text-align: left;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .timeline-item::before {
        left: 0.5rem;
        width: 1rem;
        height: 1rem;
    }

    /* Skills */
    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-bullets li {
        padding-left: 2.5rem;
    }

    .hero-bullets li::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .site-footer,
    .menu-toggle,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right,
            rgba(229, 231, 235, 0.2) 0%,
            rgba(229, 231, 235, 0.5) 20%,
            rgba(229, 231, 235, 0.2) 40%,
            rgba(229, 231, 235, 0.2) 100%);
    background-size: 1000px 100%;
}