/* Client Site - NexusAI Tech Startup Styles */

:root {
    --primary-blue: #2563eb;
    --accent-purple: #7c3aed;
    --soft-cyan: #0ea5e9;
    --light-bg: #ffffff;
    --off-white: #f8fafc;
    --card-bg: #ffffff;
    --border-subtle: rgba(37, 99, 235, 0.15);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

/* General Section Headings */
h2 {
    color: #0f172a;
    text-align: center;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a90e2 0%, #8b7fc7 100%);
    background-clip: text;
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #2563eb;
}

.nav-cta {
    background: linear-gradient(135deg, #4a90e2 0%, #5fb3d4 100%);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover,
.nav-cta:focus {
    background: linear-gradient(135deg, #5fb3d4 0%, #8b7fc7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem;
    width: 48px;
    height: 48px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.menu-toggle:hover span {
    background: white;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle.active {
    background: #2563eb;
}

.menu-toggle.active span {
    background: white;
}

/* Hero Section */
.hero-client {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #faf5ff 100%);
    color: #0f172a;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-client::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-client h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title-animate {
    animation: slideDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-subtitle-animate {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-cta-animate {
    animation: slideUp 0.8s ease-out 0.4s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-large {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2 0%, #8b7fc7 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary-large:hover::before {
    transform: translateX(0);
}

.btn-primary-large:hover,
.btn-primary-large:focus {
    background: linear-gradient(135deg, #5fb3d4 0%, #8b7fc7 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4), 0 0 40px rgba(139, 127, 199, 0.2);
}

.btn-primary-large:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-offer {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fbbf24;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges-animate {
    animation: slideUp 0.8s ease-out 0.6s both;
}

.trust-badges span {
    font-size: 1rem;
    font-weight: 500;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #334155;
}

.trust-badges span:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Problem/Solution Section */
.section-problem {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-side h2,
.solution-side h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.problem-side h2 {
    color: #dc2626;
}

.solution-side h2 {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #475569;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.solution-side p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #475569;
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    background-color: transparent;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.2);
    cursor: pointer;
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4a90e2 0%, #8b7fc7 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: white;
    border-color: #5fb3d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Services Section */
.section-services {
    padding: 6rem 2rem;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card:active {
    transform: translateY(-8px) scale(1.01);
}

.service-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #475569;
}

.service-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-top: 1.5rem;
}

/* Portfolio Section */
.section-portfolio {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.portfolio-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-item:active {
    transform: scale(0.98);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #475569;
}

.portfolio-location {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* Testimonials */
.section-testimonials {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.testimonial-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1), 0 2px 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1e40af;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Offer Section */
.section-offer {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.section-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offer-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.offer-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.offer-box p {
    color: #475569;
}

.offer-includes {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 500px;
}

.offer-includes li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
}

.offer-urgency {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0;
    color: #ea580c;
}

/* Contact Form */
.section-contact {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.contact-form-client {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
}

.form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Footer */
.client-footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #60a5fa;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
    color: var(--green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom a {
    color: var(--green-light);
    text-decoration: none;
}

/* Responsive Design - Mobile First */
@media (max-width: 767px) {
    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }

    /* Mobile navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 3px solid var(--green-primary);
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 0, 0, 0.1);
        padding-left: 2rem;
    }

    .nav-cta {
        border-radius: 8px;
        margin: 0.75rem 1.5rem;
        text-align: center;
    }

    /* Hero improvements */
    .hero-client {
        padding: 4rem 1.5rem 3rem;
        min-height: 70vh;
    }

    .hero-client h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Better touch targets */
    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        width: 100%;
        text-align: center;
    }

    /* Grid layouts */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Better spacing */
    section {
        padding: 3rem 1.5rem;
    }

    .feature-card,
    .gallery-item {
        padding: 1.5rem;
    }

    /* Problem section */
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Trust badges */
    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 1rem;
    }

    .trust-badges span {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    /* Form improvements */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-client {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 1.5rem;
    }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 1023px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 3px solid var(--green-primary);
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 600;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
