:root {
    --bg-color: #020205;
    --text-color: #ffffff;
    --accent-blue: #001e4d;
    --neon-blue: #00aaff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Hide default cursor */
}

/* Lenis Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 170, 255, 0.1);
    border-color: transparent;
}

/* Page Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transition-overlay .loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 170, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Work Item Text Visibility Fix */
.work-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.work-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
    z-index: 10;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.work-item:hover h3 {
    color: var(--neon-blue);
}

.work-item:hover p {
    color: #ffffff;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--neon-blue);
    opacity: 0.2;
    line-height: 1;
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.6;
}

.testimonial h4 {
    font-family: var(--font-display);
    color: var(--neon-blue);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
    animation: logo-pulse 3s infinite ease-in-out;
}

@keyframes logo-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 170, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.4);
        transform: scale(1.05);
    }
}

.links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.links a:hover,
.links a.active {
    color: var(--neon-blue);
}

.links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Mobile Menu */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.menu-btn .bar {
    width: 30px;
    height: 2px;
    background-color: var(--neon-blue);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 2, 5, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--neon-blue);
}

/* Page Headers */
.page-header {
    padding: 12rem 4rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Split Layouts */
.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 8rem;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--neon-blue);
}

.feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: white;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tech-card {
    width: 300px;
    height: 400px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 170, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform: rotateY(10deg) rotateX(5deg);
    transition: transform 0.5s;
}

.tech-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 170, 255, 0.2);
}

.tech-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

/* Forms */
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    appearance: none;
}

/* Hero & Home Specific */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    position: relative;
    color: white;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.hero-content h1::before,
.hero-content h1::after {
    content: 'GUDERTECH';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.hero-content h1::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.hero-content h1::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    15% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    25% {
        clip: rect(90px, 9999px, 30px, 0);
    }

    30% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    35% {
        clip: rect(60px, 9999px, 50px, 0);
    }

    40% {
        clip: rect(40px, 9999px, 90px, 0);
    }

    45% {
        clip: rect(70px, 9999px, 10px, 0);
    }

    50% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    55% {
        clip: rect(90px, 9999px, 20px, 0);
    }

    60% {
        clip: rect(10px, 9999px, 60px, 0);
    }

    65% {
        clip: rect(50px, 9999px, 30px, 0);
    }

    70% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    75% {
        clip: rect(30px, 9999px, 90px, 0);
    }

    80% {
        clip: rect(60px, 9999px, 40px, 0);
    }

    85% {
        clip: rect(10px, 9999px, 70px, 0);
    }

    90% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    95% {
        clip: rect(20px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 30px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(60px, 9999px, 20px, 0);
    }

    10% {
        clip: rect(30px, 9999px, 90px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 40px, 0);
    }

    20% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    25% {
        clip: rect(70px, 9999px, 10px, 0);
    }

    30% {
        clip: rect(40px, 9999px, 50px, 0);
    }

    35% {
        clip: rect(90px, 9999px, 30px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 70px, 0);
    }

    45% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    50% {
        clip: rect(30px, 9999px, 80px, 0);
    }

    55% {
        clip: rect(60px, 9999px, 10px, 0);
    }

    60% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    65% {
        clip: rect(90px, 9999px, 30px, 0);
    }

    70% {
        clip: rect(40px, 9999px, 60px, 0);
    }

    75% {
        clip: rect(70px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(10px, 9999px, 90px, 0);
    }

    85% {
        clip: rect(50px, 9999px, 40px, 0);
    }

    90% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    95% {
        clip: rect(30px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 80px, 0);
    }
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--neon-blue), transparent);
}

.section {
    padding: 8rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--neon-blue);
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 20px var(--neon-blue);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.work-item {
    height: 400px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Unique Backgrounds */
.work-1 {
    background: url('assets/flowion.jpg') no-repeat center center/cover;
}

.work-2 {
    background: url('assets/cineforge.jpg') no-repeat center center/cover;
}

.work-3 {
    background: url('assets/runmate.jpg') no-repeat center center/cover;
}

.work-4 {
    background: radial-gradient(circle at top right, #2e1d00, #020205);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover {
    border-color: var(--neon-blue);
    transform: scale(0.98);
}

.work-info {
    position: relative;
    z-index: 2;
    width: 100%;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.work-tags span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.work-item:hover .work-tags {
    opacity: 1;
}

.work-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    transition: color 0.3s;
}

.work-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    opacity: 1;
    transition: color 0.3s;
}

.work-item:hover h3 {
    color: var(--neon-blue);
}

.work-item:hover p {
    color: white;
}

.work-item.large {
    grid-column: span 2;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
}

.btn-glow {
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 30px var(--neon-blue);
}



@keyframes pulse {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
    }
}

/* Hero Enhancements */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    background: rgba(0, 170, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by {
    padding: 4rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 30, 77, 0.3), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logo-item {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: default;
    white-space: nowrap;
}

.logo-item:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Add more density to sections */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4rem;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 4rem;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    nav {
        padding: 1.5rem;
    }

    .links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .section,
    .page-header {
        padding: 4rem 1.5rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .reverse {
        flex-direction: column;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .work-gallery {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
        gap: 1.5rem;
    }

    .work-item.large {
        grid-column: span 1;
        /* Reset span for mobile */
    }

    .work-item {
        height: 300px;
        /* Slightly smaller height for mobile */
        padding: 1.5rem;
    }

    .work-item h3 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat .num {
        font-size: 1.5rem;
    }

    .logo-grid {
        gap: 1rem;
    }

    .logo-item {
        font-size: 1rem;
    }
}

/* =========================================
   Grand Overhaul - Global Components
   ========================================= */

/* Refined Navigation */
nav {
    background: rgba(2, 2, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(2, 2, 5, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Fat Footer */
.site-footer {
    background: #010103;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    color: white;
    border-radius: 4px;
}

.newsletter-form button {
    background: var(--neon-blue);
    color: black;
    border: none;
    padding: 0 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.newsletter-form button:hover {
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    nav.scrolled {
        padding: 1rem 1.5rem;
    }
}

/* =========================================
   Grand Overhaul - Homepage Enhancements
   ========================================= */

/* Enhanced Hero */
.hero-content h1 {
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    animation: hero-pulse 4s infinite ease-in-out;
}

@keyframes hero-pulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 170, 255, 0.6);
    }
}

/* Why Us Section */
.why-us-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 30, 77, 0.2), transparent);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.why-us-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 170, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-us-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-us-item:hover::before {
    opacity: 1;
}

.why-us-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-us-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #020205;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
    transition: all 0.3s;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.4);
    background: var(--neon-blue);
    color: black;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 4rem;
    }

    .process-steps::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding-bottom: 4rem;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.15);
}

.article-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: var(--neon-blue);
    opacity: 0.05;
    transition: all 0.4s ease;
    transform: rotate(-15deg);
}

.article-card:hover .article-icon {
    opacity: 0.1;
    transform: rotate(0deg) scale(1.1);
}

.article-content {
    position: relative;
    z-index: 2;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-tags span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.article-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.article-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}