@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.4);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.3);
    --accent: #8b5cf6;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fade-color: rgba(11, 15, 25, 0);
    --nav-bg: rgba(11, 15, 25, 0.8);
}

body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(15, 23, 42, 0.06);
    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --primary-glow: rgba(79, 70, 229, 0.15);
    --secondary-glow: rgba(6, 182, 212, 0.15);
    --fade-color: rgba(248, 250, 252, 0);
    --nav-bg: rgba(248, 250, 252, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients decoration */
.bg-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, var(--fade-color) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}
.bg-decor-left {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, var(--fade-color) 70%);
    top: 800px;
    left: -200px;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo img {
    height: 38px;
    border-radius: 6px;
}

.logo span {
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Premium Buttons */
.btn-outline {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow), 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 8% 80px;
    position: relative;
}

.badge-tag {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    color: #a5b4fc;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    max-width: 900px;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-ctas .btn-primary {
    padding: 14px 32px;
    font-size: 16px;
}

.hero-ctas .btn-outline {
    padding: 14px 32px;
    font-size: 16px;
}

.hero-dashboard-preview {
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(79, 70, 229, 0.15);
    background: var(--bg-secondary);
    padding: 6px;
    position: relative;
    overflow: hidden;
}

.hero-dashboard-preview img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Features Section */
.section-header {
    text-align: center;
    padding: 60px 8% 40px;
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 8% 80px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.15), var(--card-shadow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #a5b4fc;
    font-size: 22px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-glow);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* Super Admin Panel Spotlight */
.spotlight-section {
    padding: 80px 8%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.spotlight-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.spotlight-content {
    flex: 1;
}

.spotlight-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spotlight-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.spotlight-list {
    list-style: none;
}

.spotlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.spotlight-list li i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 4px;
}

.spotlight-list li strong {
    color: var(--text-main);
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.spotlight-list li span {
    color: var(--text-muted);
    font-size: 14px;
}

.spotlight-preview {
    flex: 1.2;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: var(--bg-primary);
    padding: 6px;
}

.spotlight-preview img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 8%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(79, 70, 229, 0.25), var(--card-shadow);
    transform: scale(1.03);
}

.pricing-card.popular .badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--accent);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 44px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .btn-primary, .pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 30px;
}

.plan-features-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}

.plan-features-list li i {
    font-size: 16px;
}

.plan-features-list li i.fa-check {
    color: var(--secondary);
}

.plan-features-list li i.fa-close {
    color: rgba(239, 68, 68, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 80px 8%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 22px 28px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-trigger i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 28px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 22px;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-item.active {
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 8%;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.1);
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-method span {
    font-weight: 500;
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1.2;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    height: auto;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.form-control option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

/* Modal registration window */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active {
    display: flex;
}

.modal.active .modal-dialog {
    transform: scale(1);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Alert inside modal */
.modal-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.modal-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.modal-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Success Output Screen */
.success-screen {
    text-align: center;
    padding: 20px 10px;
    display: none;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-screen h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.success-screen p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.key-box {
    background: var(--bg-primary);
    border: 1px dashed rgba(79, 70, 229, 0.4);
    border-radius: 8px;
    padding: 15px 20px;
    font-family: monospace;
    font-size: 18px;
    color: #a5b4fc;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.key-box button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.key-box button:hover {
    color: var(--text-main);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 8%;
    background: var(--bg-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    .spotlight-container {
        flex-direction: column;
        gap: 30px;
    }
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    .navbar {
        padding: 15px 5%;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 69px; /* navbar height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 69px);
        background: var(--bg-primary);
        border-top: 1px solid var(--border-color);
        padding: 30px 8%;
        gap: 20px;
        z-index: 999;
        transition: var(--transition-smooth);
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    body.light-theme .nav-links a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-menu-toggle {
        display: flex !important;
    }
    .nav-ctas .btn-outline, .nav-ctas .btn-primary {
        display: none !important;
    }
}

/* Nav Menu Toggle Button */
.nav-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    outline: none;
    margin-left: 10px;
}

.nav-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

body.light-theme .nav-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

.mobile-only-ctas {
    display: none;
}
@media (max-width: 992px) {
    .mobile-only-ctas {
        display: flex !important;
    }
}

/* Theme Toggle Button Style */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
    margin-right: 10px;
    outline: none;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-theme .logo span {
    background: linear-gradient(135deg, #111827 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Client Logos Section - Scrollable Card Grid Layout */
.clients-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.clients-scroll-container {
    display: flex;
    gap: 25px;
    padding: 20px 8%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar Styles for Clean UI */
.clients-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.clients-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

body.light-theme .clients-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}

.clients-scroll-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.clients-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.client-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.15), var(--card-shadow);
}

.client-card-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.client-card-logo img {
    max-height: 75px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.client-card:hover .client-card-logo img {
    transform: scale(1.06);
}

.client-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-family: var(--font-sans);
}
