:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --accent-gold: #F4C96B;
    --accent-cream: #E8E0C8;
    --accent-coral: #ff6b6b;
    --text-primary: #E8E0C8;
    --text-secondary: #a0a090;
    --glass: rgba(232, 224, 200, 0.05);
    --glass-border: rgba(232, 224, 200, 0.1);
    --gradient: linear-gradient(135deg, #F4C96B, #E8E0C8);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* .logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: auto;
    display: block;
} */

section {
    padding: 100px 5%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: #050505;
    border: none;
    box-shadow: 0 10px 20px rgba(244, 201, 107, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(232, 250, 116, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--accent-cream);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(244, 201, 107, 0.2);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    perspective: 1000px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.section-divider {
    height: 100px;
    width: 100%;
    background: var(--bg-primary);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.section-divider-rev {
    height: 100px;
    width: 100%;
    background: var(--bg-primary);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

/* Page Header (Sub-pages) */
.page-header {
    padding: 180px 5% 100px;
    /* background: radial-gradient(circle at top right, rgba(255, 245, 99, 0.136), transparent 50%); */
    text-align: center;
}

.page-header h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    padding: 15px 5%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 70px;
    height: auto;
    display: block;
}


.logo-smart {
    color: var(--accent-gold);
    font-weight: 400;
    bottom: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-cta {
    border: 1px solid var(--accent-violet);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(244, 201, 107, 0.5);
}

.nav-cta:hover {
    background: var(--accent-gold);
    color: #050505;
    box-shadow: 0 0 20px rgba(244, 201, 107, 0.5);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.badge {
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-violet);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(250, 255, 99, 0.882);
    animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* Floating Icons */
.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    opacity: 0.6;
}

/* Stats */
#stats {
    background: var(--bg-secondary);
    padding: 60px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 10px rgba(250, 255, 99, 0.882));
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Space Grotesk';
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    background: radial-gradient(circle at center, rgba(244, 201, 107, 0.5) 0%, transparent 70%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.pill {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    padding: 25px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent-violet);
    box-shadow: 0 0 30px rgba(244, 201, 107, 0.5);
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(255, 179, 15), rgb(255, 255, 150));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-cyan);
    font-size: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.learn-more {
    color: var(--accent-violet);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 12px;
    color: var(--accent-cyan);
}

/* How it Works */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--glass-border) 0, var(--glass-border) 10px, transparent 10px, transparent 20px);
    z-index: -1;
}

.step-card {
    width: 22%;
    padding: 30px;
    text-align: center;
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 24px;
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    height: 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a2e, #ffcc00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
    padding: 40px;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 350px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 50px;
    text-align: center;
}

.stars {
    color: #ffcc00;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: var(--gradient); */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
    /* <-- Add this line */
    border: 1px solid var(--glass-border);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.1);
}


/* Tech Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.tech-pill {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info .glass-card {
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    font-size: 24px;
    color: var(--accent-violet);
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

select.form-control option {
    background: var(--bg-primary);
}

.map-container {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 400px;
}

/* Footer */
footer {
    background: #050508;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    /* 🔥 key fix */
    gap: 40px;
}

.footer-grid>div:first-child {
    max-width: 280px;
    /* logo area limit */
}

/* बाकी columns equal feel */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-tagline {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-violet);
    padding-left: 5px;
}


.footer-social a {
    text-decoration: none;
}

.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    overflow: hidden;
}

.footer-social img {
    width: 28px;
    height: 28px;
    border-radius: 30%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--accent-violet);
    box-shadow: 0 0 15px var(--accent-violet);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    animation: bounce 3s infinite;
    overflow: hidden;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Custom Cursor */
#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

#cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-cream);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* AI Chatbot Styles */
#arka-ai-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    animation: bounce 3s infinite;
    overflow: hidden;
}

.arka-toggle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 full fit */
}

#arka-ai-toggle:hover {
    transform: scale(1.1) rotate(5deg);
}

#arka-ai-window {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 380px;
    height: 500px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

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

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

#arka-ai-header {
    background: var(--gradient);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #050505;
}

#arka-ai-header h4 {
    margin: 0;
    font-family: 'Space Grotesk';
}

#arka-ai-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-msg {
    align-self: flex-start;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--accent-cream);
    border-bottom-left-radius: 2px;
}


.user-msg {
    align-self: flex-end;
    background: var(--accent-gold);
    color: #050505;
    border-bottom-right-radius: 2px;
}

#arka-ai-input-area {
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 10px;
}

#arka-ai-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
}

#arka-ai-send {
    background: var(--accent-gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cream);
    border-radius: 50%;
    display: inline-block;
    animation: typing 1s infinite alternate;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    from {
        opacity: 0.3;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    #arka-ai-window {
        width: 90vw;
        right: 5vw;
        height: 70vh;
    }

    #arka-ai-toggle {
        right: 90px;
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .services-grid,
    .portfolio-grid,
    .stats-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-card {
        width: 100%;
    }

    section {
        padding: 60px 5%;
    }

    #cursor-dot,
    #cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* Responsive Navbar overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.5s;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk';
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
}

/* Clients Carousel Section */
.clients-section {
    padding: 60px 5% 120px 5%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    color: var(--accent-gold);
    font-family: 'Poppins', sans-serif;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.client-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scroll 50s linear infinite !important;
}

.client-track:hover {
    animation-play-state: paused !important;
}

.client-logo {
    width: 180px;
    height: 80px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
    transition: all 0.4s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    --base-scale: 1;
    transform: scale(var(--base-scale));
    transition: transform 0.4s ease;
}

.client-logo:hover img {
    transform: scale(calc(var(--base-scale) + 0.1));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }
}