/* Asverra Galaxy - Modern Web Development Company Design */

/* CSS Variables - Light Theme */
:root {
    /* Modern Light Color Palette */
    --primary-purple: #8B5CF6;
    --primary-blue: #3B82F6;
    --primary-teal: #06B6D4;
    --primary-pink: #EC4899;
    --primary-orange: #F59E0B;
    
    /* Light Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray-50: #F9FAFB;
    --bg-gray-100: #F3F4F6;
    --bg-gray-200: #E5E7EB;
    --bg-glass: rgba(255, 255, 255, 0.8);
    
    /* Text Colors */
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light-gray: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Accent Colors */
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-yellow: #F59E0B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --gradient-light: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-gray-200);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.brand-icon.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple) !important;
    background: rgba(139, 92, 246, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-purple) !important;
    background: rgba(139, 92, 246, 0.1);
}

.contact-btn {
    background: var(--gradient-primary);
    color: white !important;
    margin-left: 12px;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.contact-btn:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 32px;
    height: 32px;
    position: relative;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    opacity: 0.03;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    top: 10%;
    right: -100px;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-teal);
    bottom: 20%;
    left: -50px;
    transform: rotate(30deg);
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-pink);
    top: 60%;
    right: 20%;
    transform: rotate(60deg);
    animation: float 8s ease-in-out infinite;
}

.hero-content-modern {
    animation: slideUp 0.8s ease-out;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title-modern {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-modern {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats-modern {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
}

.stat-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.btn-modern-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-modern-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--bg-gray-200);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-modern-outline:hover {
    color: white;
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Hero Visual */
.hero-visual-modern {
    position: relative;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.code-window {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 40px;
    border: 1px solid var(--bg-gray-200);
}

.window-header {
    background: var(--bg-gray-100);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--bg-gray-200);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: var(--accent-red); }
.window-dots span:nth-child(2) { background: var(--accent-yellow); }
.window-dots span:nth-child(3) { background: var(--accent-green); }

.window-title {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'Monaco', 'Consolas', monospace;
    background: var(--bg-white);
}

.code-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.code-number {
    color: var(--text-light-gray);
    font-size: 0.85rem;
    width: 20px;
    text-align: right;
}

.code-text {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.keyword { color: var(--primary-purple); }
.string { color: var(--accent-green); }
.function { color: var(--primary-blue); }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    border: 1px solid var(--bg-gray-200);
}

.item-1 {
    top: 20%;
    left: -10%;
    color: var(--primary-blue);
    animation-delay: 0s;
}

.item-2 {
    bottom: 30%;
    right: -5%;
    color: var(--primary-teal);
    animation-delay: 2s;
}

.item-3 {
    top: 70%;
    left: -5%;
    color: var(--primary-purple);
    animation-delay: 4s;
}

/* Services Section */
.services-modern {
    background: var(--bg-light);
    padding: 120px 0;
}

.section-header-modern {
    margin-bottom: 80px;
}

.section-header-modern h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-modern.text-start p {
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card-modern {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.service-card-modern.featured {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 24px;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.service-card-modern h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card-modern p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.service-list i {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: all 0.6s ease;
}

.service-card-modern:hover .service-overlay {
    left: 100%;
}

/* About Section */
.about-modern {
    background: var(--bg-white);
    padding: 120px 0;
}

.about-content-modern {
    animation: slideUp 0.8s ease-out;
}

.about-features-modern {
    margin-top: 48px;
}

.feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--bg-gray-200);
}

.feature-modern:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-content-modern h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content-modern p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.about-visual-modern {
    animation: slideUp 0.8s ease-out 0.3s both;
}

.tech-stack {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-gray-200);
}

.tech-category {
    margin-bottom: 32px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-item {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Why Us Section */
.why-us-modern {
    background: var(--bg-light);
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.why-card-modern {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.why-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.why-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.why-card-modern h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.why-card-modern p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-modern {
    background: var(--bg-white);
    padding: 120px 0;
}

.contact-card-modern {
    background: var(--bg-light);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-method {
    margin-bottom: 40px;
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-link-modern {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-link-modern:hover {
    color: var(--primary-blue);
}

.contact-details p {
    color: var(--text-gray);
    margin: 12px 0 0 0;
}

/* Footer */
.footer-modern {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 40px 0;
}

.footer-brand-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-modern .brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white);
}

.footer-text {
    color: var(--text-light-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Contact Page Styles */
.contact-page-hero {
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-form-modern-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-form-card-modern {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.8s ease-out;
}

.contact-form-card-modern .form-floating > .form-control {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-card-modern .form-floating > .form-control:focus {
    background: var(--bg-white);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-dark);
}

.contact-form-card-modern .form-floating > label {
    color: var(--text-gray);
}

.contact-form-card-modern .form-floating > .form-control:focus ~ label,
.contact-form-card-modern .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-form-card-modern .btn-modern-primary {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-message-modern {
    text-align: center;
    padding: 48px 32px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: var(--radius-xl);
    animation: slideUp 0.8s ease-out;
}

.success-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
}

.success-message-modern h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.success-message-modern p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-stats-modern {
        justify-content: center;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-modern {
        margin-top: 40px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .tech-stack {
        padding: 24px;
    }
    
    .contact-card-modern {
        padding: 32px 24px;
    }
    
    .section-header-modern h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-card-modern {
        padding: 32px 24px;
    }
    
    .contact-page-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .contact-form-modern-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero-content-modern {
        text-align: center;
    }
    
    .btn-modern-primary,
    .btn-modern-outline {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .service-card-modern,
    .why-card-modern {
        padding: 32px 24px;
    }
    
    .code-window {
        font-size: 0.8rem;
    }
    
    .feature-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}