:root {
    --bg-color: #050507;
    /* Deeper, technically darker black/blue */
    --card-bg: #0f1016;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --primary: #22d3ee;
    /* Cyan/Electric Blue */
    --primary-hover: #06b6d4;
    --accent: #818cf8;
    /* Indigo */
    --gradient: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
    /* Cyan to Indigo gradient */
    --font-heading: 'Outfit', sans-serif;
    --font-logo: 'Orbitron', sans-serif;
    /* New font for Logo */
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    /* Tech Grid Background Pattern */
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    height: 125px;
    /* Reduced height to tighten margins */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 14, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    max-width: 65%;
    height: 100%;
    overflow: visible;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    /* Increased scale to compensate for smaller height */
    transform-origin: left center;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .navbar {
        height: 90px;
    }

    .logo-img {
        transform: scale(1.3);
        margin-left: 10px;
    }
}

.logo-img-footer {
    height: 60px;
    /* matched footer size */
    width: auto;
    margin-bottom: 12px;
}

/* Custom Icons */
.x-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: 0.3s;
}

.x-icon-small {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: 0.3s;
}

.socials a:hover .x-icon-small,
.socials-large a:hover .x-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:not(.btn-primary):hover,
.nav-links a.active {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 180px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

/* ===== Hero Visual Tech ===== */
.hero-visual-tech {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Orbital Rings */
.orbit {
    position: absolute;
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    margin-top: -110px;
    margin-left: -110px;
    animation: spin-orbit 25s linear infinite;
    border-style: dashed;
    border-color: rgba(34, 211, 238, 0.15);
}

.orbit-2 {
    width: 340px;
    height: 340px;
    margin-top: -170px;
    margin-left: -170px;
    animation: spin-orbit 35s linear infinite reverse;
    transform: rotateX(60deg);
}

.orbit-3 {
    width: 440px;
    height: 440px;
    margin-top: -220px;
    margin-left: -220px;
    animation: spin-orbit 45s linear infinite;
    border-color: rgba(129, 140, 248, 0.08);
    transform: rotateX(75deg) rotateY(15deg);
}

/* Central Glowing Core */
.core-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, rgba(99, 102, 241, 0.15) 50%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: core-pulse 3s ease-in-out infinite;
    z-index: 5;
}

.core-glow::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    animation: core-pulse 3s ease-in-out infinite 0.5s;
}

.core-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 16, 22, 0.95), rgba(30, 32, 48, 0.9));
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2), inset 0 0 20px rgba(34, 211, 238, 0.05);
    z-index: 6;
}

.core-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5));
}

/* Orbiting Crypto Coins */
.crypto-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.crypto-orbit-1 {
    animation: spin-orbit 12s linear infinite;
}

.crypto-orbit-2 {
    animation: spin-orbit 16s linear infinite reverse;
}

.crypto-orbit-3 {
    animation: spin-orbit 20s linear infinite;
}

.crypto-coin {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    z-index: 10;
}

.crypto-coin svg {
    width: 24px;
    height: 24px;
}

.crypto-coin:hover {
    transform: scale(1.3);
}

/* Bitcoin - Gold */
.coin-btc {
    top: 8%;
    left: 50%;
    margin-left: -24px;
    background: linear-gradient(135deg, #f7931a, #e2820e);
    color: white;
    border: 2px solid rgba(247, 147, 26, 0.5);
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.3);
    animation: counter-spin 12s linear infinite;
}

/* Ethereum - Blue/Indigo */
.coin-eth {
    bottom: 15%;
    left: 5%;
    background: linear-gradient(135deg, #627eea, #3c3c3d);
    color: white;
    border: 2px solid rgba(98, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(98, 126, 234, 0.3);
    animation: counter-spin 16s linear infinite;
}

/* Solana - Gradient */
.coin-sol {
    bottom: 25%;
    right: 5%;
    background: linear-gradient(135deg, #9945ff, #14f195);
    color: white;
    border: 2px solid rgba(153, 69, 255, 0.4);
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.3);
    animation: counter-spin 20s linear infinite;
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.p1 {
    width: 4px;
    height: 4px;
    background: var(--primary);
    top: 20%;
    left: 30%;
    animation: particle-float 4s ease-in-out infinite;
    opacity: 0.7;
}

.p2 {
    width: 3px;
    height: 3px;
    background: var(--accent);
    top: 60%;
    right: 25%;
    animation: particle-float 5s ease-in-out infinite 1s;
    opacity: 0.5;
}

.p3 {
    width: 5px;
    height: 5px;
    background: #f7931a;
    bottom: 20%;
    left: 20%;
    animation: particle-float 6s ease-in-out infinite 2s;
    opacity: 0.4;
}

.p4 {
    width: 3px;
    height: 3px;
    background: #9945ff;
    top: 35%;
    right: 15%;
    animation: particle-float 4.5s ease-in-out infinite 0.5s;
    opacity: 0.6;
}

.p5 {
    width: 2px;
    height: 2px;
    background: var(--primary);
    bottom: 35%;
    right: 35%;
    animation: particle-float 5.5s ease-in-out infinite 1.5s;
    opacity: 0.5;
}

.p6 {
    width: 4px;
    height: 4px;
    background: #627eea;
    top: 45%;
    left: 15%;
    animation: particle-float 3.5s ease-in-out infinite 0.8s;
    opacity: 0.4;
}

/* Connection Lines SVG */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.conn-line {
    stroke: rgba(34, 211, 238, 0.1);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: dash-flow 3s linear infinite;
}

/* Glow Background */
.glow-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ===== Hero Visual Tech Keyframes ===== */
@keyframes spin-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes core-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(8px, -12px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-5px, -20px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(10px, -8px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -30;
    }
}



/* Features */
.features {
    padding: 60px 0;
    /* Reduced from 100px */
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 60px */
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
}

/* About/Services Section */
.about {
    padding: 60px 0;
    background: #0f1016;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    width: 20px;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #1a1a20, #25252d);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.placeholder-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: var(--gradient);
    filter: blur(80px);
    opacity: 0.3;
    transform: translate(-50%, -50%);
}

/* CTA */
.cta {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-form input {
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: var(--font-body);
    width: 300px;
    outline: none;
}

.contact-form input:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.socials a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.code-bg {
    background: #0f1016;
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.05);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}


/* Services Carousel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    padding: 10px 5px;
    /* Space for shadow/hover */
}

/* Updated Service Card - Blue/Cyan Theme, Compact */
.service-card-detailed {
    min-width: 300px;
    max-width: 300px;
    /* Fixed width for carousel consistency */
    background: linear-gradient(145deg, #1a1a20, #0f1016);
    border: 1px solid rgba(34, 211, 238, 0.1);
    /* Cyan border low opacity */
    padding: 24px;
    /* Reduced padding */
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    flex-shrink: 0;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

.card-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-detailed h3 {
    color: white;
    font-size: 1.3rem;
    /* Slightly smaller */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-detailed p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-card-detailed ul {
    list-style: none;
    padding: 0;
}

.service-card-detailed ul li {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    padding-left: 12px;
    border-left: 2px solid var(--primary);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }
}

/* Process Section - New Elegant Grid */
.process-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #050507, #0f1016);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.process-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* Location Map */
.location-section {
    padding: 60px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #1e1e24;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

/* Service List Styles */
.service-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.text-sm {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Contact Pills & Hover Effects */
.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    text-decoration: none;
    /* Ensure no underline */
}

.contact-pill:hover {
    border-color: var(--primary);
    background: rgba(34, 211, 238, 0.1);
    /* Subtle cyan tint */
    color: var(--primary);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

/* Ensure icons inside pills also change color */
.contact-pill:hover i,
.contact-pill:hover .x-icon {
    color: var(--primary);
}

.contact-details-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.socials-large {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
}

.socials-large a {
    color: white;
    transform: scale(1.2);
}

.socials-large a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-visual-tech {
        width: 280px;
        height: 280px;
    }

    .orbit-1 {
        width: 140px;
        height: 140px;
        margin-top: -70px;
        margin-left: -70px;
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }

    .orbit-3 {
        width: 260px;
        height: 260px;
        margin-top: -130px;
        margin-left: -130px;
    }

    .core-glow {
        width: 70px;
        height: 70px;
    }

    .core-inner {
        width: 50px;
        height: 50px;
    }

    .core-icon {
        width: 24px;
        height: 24px;
    }

    .crypto-coin {
        width: 36px;
        height: 36px;
    }

    .crypto-coin svg {
        width: 18px;
        height: 18px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }
}