/* about.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00FF66;
    --secondary: #000000;
    --dark-bg: #111111;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --light-text: #FFFFFF;
    --gray-text: #CCCCCC;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ========== NAVBAR ========== */
.navbar {
    font-family: 'Inter';
    background: rgba(0, 0, 0, 0.98);
    color: var(--light-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active:after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    /* New CSS to align it properly */
    order: 3;
    margin-left: 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    padding: 2rem;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.mobile-links a:hover {
    color: var(--primary);
}

.mobile-links a.active {
    color: var(--primary);
}

.mobile-links a:last-child {
    border-bottom: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    /* 🔥 FIX FOR MOBILE LAYOUT */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    /* Logo left side */
    .logo-container {
        order: 1;
        flex: 0 0 auto;
    }
    
    /* Menu button right side - next to cart */
    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: 0;
    }
    
    /* Cart icon right side - before menu button */
    .nav-right {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    /* Hide cart text on mobile */
    .cart-text {
        display: none;
    }
    
    /* Make sure cart and menu are aligned properly */
    .nav-right, 
    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }
    
    /* Space between cart and menu icon */
    .nav-container {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .mobile-menu {
        padding: 1.5rem;
    }
    
    .mobile-links a {
        font-size: 1.1rem;
        padding: 0.7rem 0.9rem;
    }
    
    /* Adjust spacing for smaller screens */
    .nav-right {
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        margin-left: 0;
    }
}

/* 🔥 EXTRA FIX: Ensure icons are properly aligned */
@media (max-width: 900px) {
    .nav-container {
        display: flex;
        align-items: center;
    }
    
    .logo-container {
        margin-right: auto;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}















/* footer */

/* ========== FOOTER ========== */
footer {
    background: var(--dark-bg);
    padding: 3rem 20px 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.slogan-text {
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-right-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ========== FOOTER RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
        order: 3;
        width: 100%;
    }

    .footer-left {
        order: 1;
        flex-direction: column;
        gap: 15px;
    }

    .footer-right {
        order: 2;
    }

    .footer-logo-img,
    .footer-right-img {
        height: 70px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        padding: 2rem 20px 1.5rem;
    }

    .footer-logo-img,
    .footer-right-img {
        height: 60px;
    }
}








/* Hero Section */
.hero-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); */
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
}

.hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 255, 102, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary);
}

.about-card h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.about-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.story-content h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.story-content h2 span {
    color: var(--primary);
}

.story-text {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.section-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.section-title span {
    color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.team-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), #00cc55);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--border-color);
}

.team-card h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-item h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); */
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.cta-section h2 span {
    color: var(--primary);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background-color: #00cc55;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 102, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section ul li i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
}

.footer-bottom i {
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title,
    .story-content h2,
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title,
    .story-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .about-card,
    .team-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}



.logo img {
    height: 40px;   /* apni requirement ke hisaab se */
    width: 40px;
}






/* Logo Container with Two Images */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between two logos */
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.text-logo {
    height: 35px; /* Text logo slightly smaller */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes white logo visible on dark background */
}


















/* ========== FOUNDER PREVIEW SECTION ========== */
.founder-preview-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.founder-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-preview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.founder-preview-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 3px solid var(--primary);
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.founder-preview-image:hover img {
    transform: scale(1.03);
}

.founder-preview-info {
    padding: 2rem;
}

.founder-preview-info h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.founder-preview-info h3 {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-preview-info p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--secondary);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.see-more-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.2);
}

.see-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE FOR FOUNDER PREVIEW ========== */
@media (max-width: 992px) {
    .founder-preview-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-preview-image img {
        height: 550px;
    }
    
    .founder-preview-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .founder-preview-section {
        padding: 4rem 0;
    }
    
    .founder-preview-image img {
        height: 350px;
    }
    
    .founder-preview-info h2 {
        font-size: 2.2rem;
    }
    
    .founder-preview-info h3 {
        font-size: 1.2rem;
    }
    
    .founder-preview-info {
        text-align: center;
        padding: 1rem;
    }
    
    .see-more-btn {
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .founder-preview-image img {
        height: 550px;
    }
    
    .founder-preview-info h2 {
        font-size: 2rem;
    }
    
    .founder-preview-info h3 {
        font-size: 1.1rem;
    }
    
    .founder-preview-info p {
        font-size: 1rem;
    }
}



/* ========== FOOTER SOCIAL LINKS ========== */
.footer-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1.5rem 0;
    order: 4; 
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--primary);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.3);
    border-color: var(--primary);
}

/* Mobile Responsive ke liye adjustments */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social-links {
        order: 3; /* Links ke baad social links */
        margin: 0.5rem 0 1.5rem 0;
    }
    
    .footer-left {
        order: 1;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        order: 2;
        width: 100%;
    }
    
    .footer-right {
        order: 5;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}