/* ========== ROOT VARIABLES ========== */
:root {
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --bg-card: #0f1629;
    --fg-light: #f5f5ff;
    --fg-muted: #a6a9b8;
    --primary-color: #00c8ff;
    --primary-glow: rgba(0, 200, 255, 0.3);
    --accent-color: #00e5d1;
    --secondary-bg: #1a2038;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 200, 255, 0.1);
    --neon-purple: #c900ff;
    --neon-pink: #ff006e;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --gradient-primary: linear-gradient(135deg, #00c8ff 0%, #00e5d1 50%, #00a3cc 100%);
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--fg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== PARTICLE BACKGROUND ========== */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* ========== MOUSE FOLLOWER ========== */
.mouse-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.4), transparent);
    border: 2px solid rgba(0, 200, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    display: none;
}

@media (hover: hover) {
    .mouse-follower {
        display: block;
    }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotateZ(-5deg); }
    50% { transform: translateY(-30px) rotateZ(5deg); }
}

@keyframes glow-pulse {
    0%, 100% { 
        opacity: 0.4; 
        filter: blur(20px) brightness(0.8);
        box-shadow: 0 0 20px rgba(0, 200, 255, 0.2), 0 0 40px rgba(0, 200, 255, 0.05);
    }
    50% { 
        opacity: 0.8; 
        filter: blur(30px) brightness(1.2);
        box-shadow: 0 0 40px rgba(0, 200, 255, 0.4), 0 0 80px rgba(0, 200, 255, 0.15);
    }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes shimmer {
    0% { 
        background-position: -1000px 0;
    }
    100% { 
        background-position: 1000px 0;
    }
}

@keyframes glow-border {
    0%, 100% { border-color: rgba(0, 200, 255, 0.2); }
    50% { border-color: rgba(0, 200, 255, 0.5); }
}

@keyframes float-rotate {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-glow-pulse { animation: glow-pulse 4s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.5s ease-out forwards; }
.animate-gradient { background-size: 200% 200%; animation: gradient-shift 8s ease infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ========== UTILITY CLASSES ========== */
.glass {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass:hover {
    background: rgba(15, 22, 41, 0.8);
    border-color: rgba(0, 200, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.1), inset 0 0 20px rgba(0, 200, 255, 0.05);
    transform: translateY(-4px);
}

.neon-glow {
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.4), 0 0 60px rgba(0, 200, 255, 0.15), inset 0 0 20px rgba(0, 200, 255, 0.1);
    border-color: rgba(0, 200, 255, 0.4);
}

.neon-glow:hover {
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.6), 0 0 80px rgba(0, 200, 255, 0.25), inset 0 0 30px rgba(0, 200, 255, 0.15);
}

.neon-text {
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5), 0 0 20px rgba(0, 200, 255, 0.3);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

.primary-text {
    color: var(--primary-color);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 200, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    border-bottom-color: rgba(0, 200, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-icon {
    padding: 8px;
    border-radius: 12px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--fg-light);
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(0, 200, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--fg-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(0, 200, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    font-size: 24px;
    color: var(--fg-light);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.mobile-menu.active {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        padding: 24px;
        border-bottom: 1px solid rgba(0, 200, 255, 0.1);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.05), transparent);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: glow-pulse 6s ease-in-out infinite;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 229, 209, 0.2), transparent);
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 0, 255, 0.15), transparent);
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slide-up 0.8s ease-out forwards;
}

.sparkle {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slide-up 0.8s ease-out forwards 0.2s;
    animation-fill-mode: both;
}

.hero-title .block {
    display: block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--fg-muted);
    max-width: 600px;
    animation: slide-up 0.8s ease-out forwards 0.4s;
    animation-fill-mode: both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slide-up 0.8s ease-out forwards 0.6s;
    animation-fill-mode: both;
}

.tech-stack {
    animation: slide-up 0.8s ease-out forwards 0.8s;
    animation-fill-mode: both;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 200, 255, 0.1);
    max-width: 600px;
}

.tech-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fg-muted);
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-tag {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(0, 200, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
}

/* ========== SERVICES SECTION ========== */
.services {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 200, 255, 0.02));
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--fg-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(15, 22, 41, 0.8);
    box-shadow: 0 16px 48px rgba(0, 200, 255, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateZ(10deg);
    animation: float 2s ease-in-out infinite;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.8;
}

/* ========== TEAM SECTION ========== */
.team {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.02), rgba(0, 0, 0, 0));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    will-change: transform;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 200, 255, 0.15);
}

.team-avatar {
    font-size: 64px;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.role {
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.bio {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill {
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.skill:hover {
    background: rgba(0, 200, 255, 0.2);
    border-color: rgba(0, 200, 255, 0.4);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
    position: relative;
    padding: 120px 0;
}

.portfolio-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(0, 200, 255, 0.2);
    background: transparent;
    color: var(--fg-muted);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 200, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-card {
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    opacity: 0;
    will-change: transform;
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 200, 255, 0.15);
}

.portfolio-image {
    font-size: 64px;
    margin-bottom: 16px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.portfolio-card p {
    font-size: 14px;
    color: var(--fg-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.portfolio-tags span {
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary-color);
}

.portfolio-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.portfolio-link:hover {
    transform: translateX(4px);
}

/* ========== CONTACT SECTION ========== */
.contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.02), rgba(0, 0, 0, 0));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item .icon {
    font-size: 28px;
    min-width: 40px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--fg-muted);
}

.contact-form {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 12px;
    color: var(--fg-light);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--fg-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(0, 200, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    padding: 80px 0 24px;
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.02), transparent);
    border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 14px;
    color: var(--fg-muted);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(0, 200, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--fg-light);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--fg-muted);
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 200, 255, 0.1);
    font-size: 13px;
    color: var(--fg-muted);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(36px, 6vw, 80px);
    }

    .section-title {
        font-size: clamp(28px, 4vw, 42px);
    }

    .services-grid,
    .team-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        gap: 20px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .team-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .contact-form {
        padding: 24px;
    }

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

    .footer-links {
        justify-content: center;
    }
}
