:root {
    /* Color Palette (Cinematic Dark Mode Default) */
    --color-primary: #BA4A1B;
    /* Rust/Orange */
    --color-secondary: #1a1a1a;
    /* Dark Gray */

    --color-bg: #050505;
    /* Deep Black */
    --color-text: #F4F4F4;
    /* Off-White Text */
    --color-text-muted: #888888;

    --color-text-muted: #888888;

    --color-card-bg: #0A0A0A;
    /* Unified Dark Card */
    --color-border: rgba(255, 255, 255, 0.05);

    /* Cinematic Theme Variables */
    --color-rust: #BA4A1B;
    --color-deep-rust: #5a1a05;
    --gradient-cinematic: linear-gradient(135deg, #BA4A1B 0%, #5a1a05 60%, #050505 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    /* Professional breathing room */

    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cinematic Utilities */
.cinematic-bg {
    background: var(--gradient-cinematic);
    color: #fff;
}

.text-poster {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.text-gradient-orange {
    background: linear-gradient(90deg, #fff 0%, #ffbb99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

body {
    background-color: #020202;
    /* Deepest Black */
    background-image: linear-gradient(to bottom, #020202, #080808);
    position: relative;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Noise Overlay via Pseudo-element for better blend mode */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    /* Very subtle */
    pointer-events: none;
    z-index: 9999;
    /* On top of everything */
    filter: invert(1);
    /* Invert noise if needed to make it look like grain on black, or just low opacity */
    mix-blend-mode: overlay;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.btn-text {
    background: transparent;
    color: var(--color-primary);
    border: none;
    padding: 0;
    text-transform: none;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.navbar.scrolled {
    top: 1rem;
    background: rgba(2, 2, 2, 0.8);
    padding: 0.8rem 2rem;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    /* Always white in dark mode */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {

    .text-poster {
        font-size: min(12vw, 42px) !important;
        /* Larger font that scales with screen width */
        line-height: 1.0;
        letter-spacing: -1.5px;
        word-break: keep-all;
        white-space: normal;
        /* Allow the three words to wrap, just not the word itself */
        display: block;
    }

    .text-poster span {
        display: inline-block;
        /* Ensure the gradient span doesn't break internally */
        font-size: inherit;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .navbar,
    .navbar.scrolled {
        width: 92%;
        padding: 0.75rem 1.25rem;
        /* Much smaller padding */
        border-radius: 12px;
        /* Less rounded to match sleeker shape */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: center;
        background: rgba(43, 23, 14, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    .navbar.menu-open,
    .navbar.scrolled.menu-open {
        background: rgba(43, 23, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: var(--color-primary);
    }

    .nav-container {
        flex-wrap: wrap;
        /* MUST wrap so nav-links can go to next line */
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: 25px;
        height: 16px;
        cursor: pointer;
        z-index: 100;
        gap: 5px;
        order: 2;
        margin-left: auto;
        /* Push to the right */
        flex-shrink: 0;
        /* Guarantee it never shrinks or wraps */
    }

    .mobile-menu-btn span {
        display: block;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .logo {
        order: 1;
        flex-grow: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 0;
        margin-top: 0;
        border-top: 1px solid transparent;
    }

    .nav-links.active {
        max-height: 400px;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    .nav-links .btn {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-cards {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-card:hover {
    background: rgba(186, 74, 27, 0.05);
    border-color: rgba(186, 74, 27, 0.2);
    transform: translateX(10px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 74, 27, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #fff;
    font-weight: 700;
}

.trust-content p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

/* Staggered Reveal for About Cards */
.trust-card:nth-child(1) {
    transition-delay: 0.1s;
}

.trust-card:nth-child(2) {
    transition-delay: 0.2s;
}

.trust-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    background: rgba(186, 74, 27, 0.05);
    border-color: rgba(186, 74, 27, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: rgba(186, 74, 27, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.team-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-profile {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    transition: gap 0.3s ease;
}

.team-card:hover .view-profile {
    gap: 0.8rem;
    color: var(--color-primary);
}

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

.about-img {
    border-radius: 0;
    overflow: visible;
    height: 100%;
    min-height: auto;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-card-bg);
    padding: 3rem;
    /* Increased padding on all sides */
    border-radius: 20px;
    /* Slightly more rounded */
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-2px);
    /* Stable: reduced movement */
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(186, 74, 27, 0.1);
    /* Glow effect */
    background: rgba(255, 255, 255, 0.05);
    /* Slight lighting change */
}

.service-icon {
    /* Using SVGs now, so font-size is irrelevant */
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    color: #bbb;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    position: relative;
    /* Added for bullet positioning */
    padding-left: 1.2rem;
    /* Give room for the bullet */
}

.service-list li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Additional Services Sub-section */
.additional-services {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.additional-services h4 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.extra-service {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-card-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

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

.extra-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.extra-service span {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

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

/* Clients Carousel (Horizontal Scroll) */
.clients-scroll-wrapper {
    position: relative;
    width: 100%;
    /* Fade Masks */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 5%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.clients-track::-webkit-scrollbar {
    display: none;
}







.client-logo {
    flex: 0 0 240px;
    /* Fixed width, don't shrink */
    height: 140px;
    background: var(--color-card-bg);
    /* Dark Gray */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid var(--color-border);
    scroll-snap-align: center;
    /* Snap to center */
    overflow: hidden;
    padding: 10px;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo:hover img {
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-5px);
    /* Lift instead of scale to avoid layout shift issues in scroll */
    box-shadow: 0 10px 20px rgba(186, 74, 27, 0.15);
    border-color: var(--color-primary);
}

.client-logo span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo:hover span {
    opacity: 1;
}

/* Placeholder text */

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
}

.contact-info p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-cards {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.contact-card:hover {
    background: rgba(186, 74, 27, 0.08);
    border-color: rgba(186, 74, 27, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 74, 27, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-value {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(186, 74, 27, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Button override for contact */
.contact-form .btn-primary {
    padding: 1.2rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--color-primary), #8b3410);
    border: none;
    box-shadow: 0 10px 30px rgba(186, 74, 27, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 74, 27, 0.4);
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-primary);
    /* Pop color */
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
}

.contact-value a:hover {
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #333;
    /* Dark border */
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #1a1a1a;
    /* Dark input bg */
    color: #fff;
    /* White text */
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #222;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* =========================================
   Packages Section (Dark Redesign)
   ========================================= */
#packages {
    background-color: transparent;
    /* Let body bg show */
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow for the section */
#packages::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 74, 27, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: color 0.3s;
}

.toggle-label.active {
    color: #fff;
}

.save-badge {
    background: rgba(186, 74, 27, 0.2);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-primary);
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-primary);
}

input:checked+.slider:before {
    background-color: #fff;
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: #121212;
    /* Dark card background */
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Featured Card Styling (Middle One) */
.package-card.featured {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(186, 74, 27, 0.5);
    /* Rust Border */
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 2;
    box-shadow: 0 0 30px rgba(186, 74, 27, 0.2), inset 0 0 20px rgba(186, 74, 27, 0.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 50px rgba(186, 74, 27, 0.3), inset 0 0 20px rgba(186, 74, 27, 0.1);
}

/* Glowing top effect for featured card */
.package-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 20px var(--color-primary);
    opacity: 0.8;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    transform: none;
    background: rgba(186, 74, 27, 0.2);
    color: var(--color-primary);
    border: 1px solid rgba(186, 74, 27, 0.5);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(46, 125, 50, 0.15);
    /* Subtle Green */
    color: #4CAF50;
    border: 1px solid rgba(46, 125, 50, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.package-card.featured .discount-badge {
    background: rgba(186, 74, 27, 0.2);
    color: var(--color-primary);
    border-color: rgba(186, 74, 27, 0.4);
}

.package-header {
    text-align: left;
    /* Alignment change */
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Subtitle for package (e.g. "Billed monthly") - adding simple text */
.package-header::after {
    content: 'Ideal for growing brands';
    /* Placeholder subtitle logic */
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.package-card:nth-child(1) .package-header::after {
    content: 'Perfect for starting out';
}

.package-card.featured .package-header::after {
    content: 'Best value for growth';
    color: var(--color-primary);
}

.package-card:nth-child(3) .package-header::after {
    content: 'For market leaders';
}


.package-header .price {
    display: flex;
    flex-direction: column;
    /* Stacked */
    align-items: flex-start;
    gap: 0.8rem;
    /* Increased gap to prevent collision */
    margin-top: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: -0.5rem;
    /* Pull up slightly but keep gap safe */
}

.current-price {
    font-size: 4.5rem;
    /* Balanced Boutique Scale */
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -2px;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    text-shadow: 0 0 30px rgba(186, 74, 27, 0.1);
    /* Softened cinematic glow */
}

.currency {
    font-size: 1.5rem;
    /* Balanced BD */
    color: #aaa;
    font-weight: 700;
    letter-spacing: normal;
}

.price-suffix {
    font-size: 1rem;
    /* Clean suffix */
    color: #666;
    font-weight: 500;
    margin-left: 0.2rem;
}

/* Responsive Scaling for Balanced Prices */
@media (max-width: 1200px) {
    .current-price {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .current-price {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.2rem;
    }
}

/* Removed conflicting .current-price span rule here */

.package-features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #aaa;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

/* Checkmark Icon */
.package-features li::before {
    content: '✔';
    /* Or use SVG background */
    color: var(--color-primary);
    /* Rust checkmark */
    background: rgba(186, 74, 27, 0.1);
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Buttons */
.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.package-card .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.package-card.featured .btn-primary {
    background: var(--color-primary);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(186, 74, 27, 0.4);
}

.package-card.featured .btn-primary:hover {
    background: #d45d2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 74, 27, 0.6);
}

/* =========================================
   Builder Section
   ========================================= */
.builder-container {
    display: grid;
    grid-template-columns: 250px 1fr 350px;
    gap: 2.5rem;
    align-items: start;
    min-height: 600px;
}

/* Tab Navigation */
.builder-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
    font-weight: 500;
}

.tab-btn svg {
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.tab-btn.active {
    background: rgba(186, 74, 27, 0.1);
    border-color: rgba(186, 74, 27, 0.2);
    color: var(--color-primary);
}

.tab-btn.active svg {
    transform: scale(1.1);
}

/* Tab Panes */
.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.builder-services {
    min-height: 400px;
}

@media (max-width: 1024px) {
    .builder-container {
        grid-template-columns: 200px 1fr 300px;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .builder-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .builder-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem;
        position: sticky;
        top: 80px;
        z-index: 100;
        background: #111;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        margin: 0 -1rem 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .builder-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .tab-btn span {
        display: block;
        /* Show text on mobile */
    }

    .builder-total-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
        z-index: 1000;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
}

/* Builder Section - Dark Mode */
.builder-card {
    background: var(--color-card-bg);
    /* Dark bg */
    border: 1px solid var(--color-border);
    padding: 1.2rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.builder-card.active {
    background: rgba(186, 74, 27, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(186, 74, 27, 0.15);
}

.builder-category-title {
    font-size: 1.2rem;
    margin: 2.5rem 0 1rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    background: #222;
    border-color: #333;
    color: #fff;
}

.quantity-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.quantity-input {
    color: #fff;
}

.builder-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Counter Controls */
.builder-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 1;
    transition: opacity 0.3s;
}

.builder-controls.disabled {
    opacity: 0.3;
    pointer-events: none;
    display: none;
    /* Hide when disabled for cleaner look */
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
}

.builder-unit-price {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-left: auto;
}

.btn-quote-inline {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote-inline:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.builder-card.quote-only {
    cursor: default;
}

.builder-card.quote-only:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.special-request-container {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-top: 1rem;
}

.special-request-textarea {
    width: 100%;
    min-height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.special-request-textarea:focus {
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(186, 74, 27, 0.1);
}

.special-request-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Sticky Total Panel */
.builder-total-panel {
    position: sticky;
    top: 120px;
    background: #222;
    color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.total-content h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.total-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.total-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

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

    .case-hero-visual {
        min-height: 300px;
        order: -1;
        /* Image first on mobile */
    }

    /* Redundant rule removed */
}

/* Video Playback Control Styles */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
    pointer-events: none;
    /* Let clicks pass through to container */
}

.video-container:hover .play-button-overlay {
    background: rgba(186, 74, 27, 0.4);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
    /* Optical centering for triangle */
}

.video-container.playing .play-button-overlay {
    opacity: 0;
    visibility: hidden;
}

/* =========================================
   Shopping Cart UI
   ========================================= */
.cart-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(186, 74, 27, 0.4);
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: #0A0A0A;
    z-index: 3000;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.cart-close:hover {
    opacity: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cart-item-remove {
    color: #ff4444;
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.7;
}

.cart-footer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2500;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* =========================================
   Checkout Page Styles
   ========================================= */
.checkout-section {
    padding: 180px 0 100px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.checkout-summary-card {
    background: #0A0A0A;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 150px;
}

.checkout-form-card {
    background: #0A0A0A;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 186, 74, 0.1);
}

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

    .checkout-summary-card {
        position: relative;
        top: 0;
    }
}

/* =========================================
   Ultimate Mobile & Responsive Overrides 
   (Based on UI/UX Pro Max Guidelines)
   ========================================= */

/* Tablets and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Conflict removed */
}

/* Phones and smaller tablets */
@media (max-width: 768px) {

    /* Prevent horizontal scroll globally */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Navbar fixes removed to allow primary media query to take control */

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 5px;
    }

    .nav-links a {
        font-size: 0.85rem !important;
    }

    .nav-links .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    /* Typography fixes */
    h1,
    h2,
    h3,
    h4 {
        word-wrap: break-word;
    }


    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.7rem !important;
    }

    h4 {
        font-size: 1.4rem !important;
    }

    /* Typograhpy fixes removed to allow primary media query to take control */

    /* Spacing & Sections */
    .section,
    section[style*="padding: 140px"] {
        padding: 60px 0 !important;
    }

    .cinematic-bg {
        padding: 150px 0 80px !important;
    }

    .hero-placeholder {
        padding-top: 150px !important;
    }

    /* Grids & Layouts - Force single column on mobile */
    .gallery-grid,
    .team-grid,
    div[style*="grid-template-columns"],
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Make inline flex/grid wrappers block or stack */
    div[style*="display: flex"][style*="justify-content: center"]:not(.nav-links, .nav-container, .brand-logo-container) {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: stretch !important;
    }

    .btn {
        width: 100% !important;
        text-align: center;
        box-sizing: border-box;
    }

    .brand-logo-container img {
        width: 180px !important;
        height: auto !important;
    }

    /* Custom divs with large padding */
    div[style*="padding: 6rem 3rem"] {
        padding: 3rem 1.5rem !important;
        border-radius: 24px !important;
    }

    /* Checkout & Forms */
    .checkout-form-card,
    .checkout-summary-card {
        padding: 1.5rem !important;
    }

    /* Footer */
    footer .container {
        padding: 2rem 1rem !important;
    }
}

/* Small screens/Tiny phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 10px 0 !important;
    }

    .nav-links a:not(.btn) {
        font-size: 0.8rem !important;
    }
}








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

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


.clients-scroll-wrapper {
    position: relative;
    width: 100%;
    /* Fade Masks */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 5%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    /* important for JS smooth scroll */
}

.clients-track::-webkit-scrollbar {
    display: none;
}