@font-face {
    font-family: 'Nunito Sans';
    src: url('/fonts/nunito.woff2') format('woff2');
    font-weight: 200 900;
    font-style: normal;
}

/* Custom CSS Variables */
:root {
    --primary-color: #8b5cf6;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --info-color: #06b6d4;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #ffffff;
    --darker-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif !important;
}

.pi, i[class^="pi-"], i[class*=" pi-"], [class^="fa-"], [class*=" fa-"] {
    font-family: 'primeicons', 'Font Awesome 5 Free', 'Font Awesome 5 Brands' !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(139 92 246) !important;
}

body {
    font-family: 'Nunito Sans', sans-serif !important;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 14px;
}

a {
    text-decoration: none !important;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #f8fafc;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

section.hero-section
 {
    padding-top: 160px;
}

.btn-primary:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--warning-color);
    border-color: var(--warning-color);
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
}

.btn-outline-light {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
}

.btn-outline-dark {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-dark:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: #fefefe;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
}

.beta-badge .badge {
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

.hero-features {
    color: var(--text-muted);
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.deal-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.deal-card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.deal-card-2 {
    top: 45%;
    left: 15%;
    animation-delay: 1s;
}

.deal-card-3 {
    bottom: 25%;
    right: 20%;
    animation-delay: 2s;
}

.deal-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Partners Section */
.partners-section {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partner-logo {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Badge Styles */
.badge {
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.85rem;
}

/* How it Works Section */
.how-it-works-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.step-number {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Snapshots Section */
.snapshots-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.snapshot-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.snapshot-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.snapshot-image {
    background: var(--darker-bg);
    border-radius: 8px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.snapshot-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.snapshot-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Demo Videos Section */
.demo-videos-section {
    background: var(--dark-bg);
    padding: 40px 0;
}

.demo-video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.demo-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.video-thumbnail {
    background: var(--darker-bg);
    border-radius: 8px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.video-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Categories Section */
.categories-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.category-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Retailers Section */
.retailers-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.retailer-logo {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.retailer-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Custom grid for retailers */
.col-lg-1-5 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-1-5 {
        width: 25%;
    }
}

@media (max-width: 767.98px) {
    .col-lg-1-5 {
        width: 33.333333%;
    }
}

/* Data Results Section */
.data-results-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.metric-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--info-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.metric-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Blog Section */
.blog-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.blog-meta span {
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: #7c3aed;
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e293b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e293b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
    background: var(--card-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-secondary);
    padding: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-note a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
}

.footer-brand strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.social-links a {
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.footer-links a i {
    color: #8b5cf6 !important;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.beta-badge{
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .step-card,
    .feature-card,
    .category-card {
        margin-bottom: 2rem;
    }
    
    /* Mobile: Text first, Image second */
    .hero-section .row {
        flex-direction: column;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 1;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 2;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .partner-logo,
    .retailer-logo {
        height: 60px;
        font-size: 0.7rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}


/* Hero Image Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-animate {
    animation: floatUpDown 3s ease-in-out infinite;
}


/* Navbar Toggler Customization */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0.5rem;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        z-index: 1050;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        margin-top: 3rem;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column;
        margin-top: 2rem;
        gap: 0.5rem;
    }
    
    .navbar-collapse .btn {
        width: 100%;
    }
    

    
    /* Overlay */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        text-align: center !important;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .social-links {
        display: block !important;
        margin-top: 1rem;
        margin-left: 0 !important;
    }
    
    .social-links a {
        margin: 0 0.5rem;
    }
}



/* Mobile Menu Override */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #1e293b !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    .navbar-collapse .nav-link {
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar-collapse::after {
        content: '✕';
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1051;
    }
}

/* Footer Override */
@media (max-width: 768px) {
    .footer-links {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-links a {
        display: inline-block !important;
        margin: 0 !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .social-links a {
        margin: 0 !important;
    }
}
