/* =========================================
   DESIGN SYSTEM & VARIABLES
========================================= */
:root {
    --primary-accent: #fdb813;   /* Marigold Yellow */
    --background: #0a0a0a;       /* Deep Black */
    --surface: #1c1c1c;          /* Charcoal */
    --text: #f5f5f5;             /* Soft White */
    --text-muted: #a0a0a0;       /* Muted Grey for paragraphs */
    --accent: #00e5ff;           /* Neon Cyan */
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Typography Utilities */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.section-header h3 {
    font-size: 2.5rem;
    color: var(--primary-accent);
}

.section-header p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-accent);
    color: var(--background);
    border: 2px solid var(--primary-accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-accent);
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.mt-2 { margin-top: 2rem; }

/* =========================================
   1. NAVIGATION BAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--surface);
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-contact:hover {
    background: var(--accent);
    color: var(--background);
}
.btn-contact::after { display: none; }

/* Dropdown CSS */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background: var(--surface);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid var(--primary-accent);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent);
    padding-left: 25px;
}

/* Nested Sub-Dropdown */
.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 110%;
    background: var(--surface);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent);
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-accent);
}

/* Make links look like a clean list */
    .dropdown-menu a, .sub-dropdown-menu a {
        padding: 12px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: var(--text-muted);
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover, .sub-dropdown-menu a:hover {
        background: transparent;
        padding-left: 10px;
        color: var(--primary-accent);
    }

    /* Float the arrows to the right edge and animate them */
    .nav-link i, .sub-dropdown a i {
        float: right;
        margin-top: 4px;
        transition: transform 0.3s ease;
    }

/* =========================================
   2. HERO SECTION
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.9), rgba(10,10,10,0.6));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-content .title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content .title span {
    color: var(--primary-accent);
}

.hero-content .desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-indicator:hover {
    color: var(--primary-accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. WHAT WE DO (SLIDER)
========================================= */
.what-we-do {
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slide-card {
    min-width: calc(25% - 15px); /* 4 cards per view */
    background: var(--background);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
    cursor: pointer;
}

.slide-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 184, 19, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.slide-card:hover .card-icon {
    color: var(--primary-accent);
    transform: scale(1.1);
}

.slide-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.slide-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slider-btn {
    background: var(--background);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-accent);
    color: var(--background);
    border-color: var(--primary-accent);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* =========================================
   4. ABOUT US
========================================= */
.about {
    padding: 8rem 0;
    background: var(--background);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.about-text h3 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.about-text h3 span {
    color: var(--primary-accent);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-box h4 {
    font-size: 3rem;
    color: var(--primary-accent);
    display: inline-block;
}

.stat-box span {
    display: block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px; height: 200px;
    background: rgba(253, 184, 19, 0.3);
    top: -30px; left: -30px;
}

.shape-2 {
    width: 250px; height: 250px;
    background: rgba(0, 229, 255, 0.2);
    bottom: -50px; right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
    100% { transform: translate(0, 0); }
}

/* =========================================
   5. CATEGORIES REDESIGN
========================================= */
.main-categories {
    padding: 6rem 0;
    background: var(--surface);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cat-card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9), rgba(10,10,10,0.2));
    z-index: 1;
    transition: var(--transition);
}

.cat-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transition: var(--transition);
}

.cat-content h3 {
    font-size: 1.8rem;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.cat-content p {
    color: var(--text);
    margin-bottom: 15px;
    opacity: 0;
    transition: var(--transition);
}

.cat-link {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card:hover::before {
    background: linear-gradient(to top, rgba(10,10,10,0.95), rgba(10,10,10,0.5));
}

.cat-card:hover .cat-content {
    bottom: 0;
}

.cat-card:hover .cat-content p,
.cat-card:hover .cat-link {
    opacity: 1;
}

/* =========================================
   6. DEPARTMENTS
========================================= */
.departments {
    padding: 6rem 0;
    background: var(--background);
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dept-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.dept-card:hover {
    border-bottom-color: var(--accent);
    transform: translateY(-5px);
    background: #222;
}

.dept-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-accent);
    transition: var(--transition);
}

.dept-card:hover .dept-icon {
    background: var(--accent);
    color: var(--background);
}

.dept-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.dept-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   7. ULTIMATE QUALITY
========================================= */
.ultimate-quality {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.quality-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-content h2 {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.quality-content h3 {
    font-size: 3.5rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.quality-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.quality-list li {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quality-list li i {
    color: var(--accent);
    font-size: 1.5rem;
}

.quality-graphics {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.quality-graphics img {
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: var(--transition);
}

.quality-graphics:hover img {
    filter: brightness(1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(253, 184, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--background);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7); }
    70% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 20px rgba(253, 184, 19, 0); }
    100% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(253, 184, 19, 0); }
}

/* =========================================
   8. MEMBERSHIPS & CERTIFICATIONS
========================================= */
.certifications {
    padding: 5rem 0;
    background: var(--background);
    overflow: hidden;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cert-col {
    min-width: 0;
    max-width: 100%;
}

.cert-col h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

/* Fade edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.marquee-track {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.marquee-track.reverse {
    animation: marquee-rev 15s linear infinite;
}

.marquee-track span {
    display: inline-block;
    margin: 0 30px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: default;
}

.marquee-track span:hover {
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* =========================================
   9. FOOTER
========================================= */
footer {
    background: #050505;
    padding-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-accent);
    color: var(--background);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.map-container {
    margin-bottom: 15px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info li i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATION UTILITIES (Reveal on Scroll)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (Responsive)
========================================= */
@media (max-width: 1024px) {
    .hero-content .title { font-size: 3.5rem; }
    .slide-card { min-width: calc(33.333% - 13.33px); }
    .about-grid { gap: 2rem; }
    .category-grid { gap: 20px; }
    .dept-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .menu-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--surface);
        flex-direction: column;
        padding: 20px 0;
        transition: 0.4s ease;
        border-bottom: 2px solid var(--primary-accent);
    }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 10px 0; }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu, .sub-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        display: none; /* Hidden by default, JS will toggle */
        padding-left: 1.5rem; /* Indentation for accordion */
        background: transparent !important; 
        width: 100%;
        margin-top: 5px;
    }
    .dropdown:hover .dropdown-menu { display: none; }

    .dropdown-menu.show, 
    .sub-dropdown-menu.show {
        display: block !important;
    }

    
    
    .hero-content .title { font-size: 2.5rem; }
    .slide-card { min-width: calc(50% - 10px); }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .stats-container { justify-content: center; }
    .category-grid { grid-template-columns: 1fr; }
    .dept-grid { grid-template-columns: 1fr; }
    .quality-wrapper { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .slide-card { min-width: 100%; }
    .slider-btn { display: none; /* Rely on touch/swipe or auto */ }
}

/* Product page css start */
/* ========================================================
   J&S SPORTS - PRODUCTS PAGE CSS
   Scoped using .js-prod- prefix to prevent conflicts
========================================================= */

/* Base Wrapper & Variables */
.js-prod-wrapper {
    /* Color Palette */
    --js-primary: #fdb813;
    --js-bg: #0a0a0a;
    --js-surface: #1c1c1c;
    --js-text: #f5f5f5;
    --js-text-muted: #9ca3af;
    --js-accent: #00e5ff;
    
    /* Layout */
    --js-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --js-font-heading: 'Rajdhani', sans-serif;
    --js-font-body: 'Inter', sans-serif;
    
    background-color: var(--js-bg);
    color: var(--js-text);
    font-family: var(--js-font-body);
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

/* Reset inside wrapper */
.js-prod-wrapper *, 
.js-prod-wrapper *::before, 
.js-prod-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.js-prod-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================================
   1. HERO / TITLE SECTION
========================================= */
.js-prod-hero {
    position: relative;
    padding: 6rem 20px 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.js-prod-hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.js-prod-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.js-prod-title {
    font-family: var(--js-font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--js-text);
}

.js-prod-title span {
    color: var(--js-primary);
    position: relative;
}

.js-prod-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--js-accent);
    box-shadow: 0 0 10px var(--js-accent);
}

.js-prod-subtitle {
    font-size: 1.1rem;
    color: var(--js-text-muted);
    line-height: 1.6;
}

/* =========================================
   2. CATEGORIES FILTER
========================================= */
.js-prod-filter-container {
    position: sticky;
    top: 80px; /* Adjust based on your header height */
    z-index: 10;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4rem;
}

.js-prod-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.js-prod-filter-btn {
    background: var(--js-surface);
    color: var(--js-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--js-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--js-transition);
}

.js-prod-filter-btn:hover {
    border-color: var(--js-accent);
    color: var(--js-accent);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.js-prod-filter-btn.js-prod-active {
    background: var(--js-primary);
    color: var(--js-bg);
    border-color: var(--js-primary);
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.4);
}

/* =========================================
   3. PRODUCTS GRID & CARDS
========================================= */
.js-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.js-prod-card {
    background: var(--js-surface);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--js-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 4. Hover Animations */
.js-prod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.1);
}

.js-prod-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #111;
}

.js-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.js-prod-card:hover .js-prod-img-wrap img {
    transform: scale(1.08);
}

.js-prod-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--js-accent);
    color: var(--js-bg);
    font-family: var(--js-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.js-prod-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.js-prod-cat-label {
    color: var(--js-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.js-prod-name {
    font-family: var(--js-font-heading);
    font-size: 1.4rem;
    color: var(--js-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.js-prod-desc {
    font-size: 0.9rem;
    color: var(--js-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.js-prod-actions {
    display: flex;
    gap: 10px;
}

.js-prod-btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 4px;
    font-family: var(--js-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--js-transition);
    text-align: center;
}

.js-prod-btn-primary {
    background: var(--js-primary);
    color: var(--js-bg);
}

.js-prod-btn-primary:hover {
    background: transparent;
    color: var(--js-primary);
    box-shadow: inset 0 0 0 2px var(--js-primary);
}

.js-prod-btn-outline {
    background: transparent;
    color: var(--js-text);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.js-prod-btn-outline:hover {
    color: var(--js-accent);
    box-shadow: inset 0 0 0 1px var(--js-accent);
    background: rgba(0, 229, 255, 0.05);
}

/* =========================================
   5. LOAD MORE BUTTON
========================================= */
.js-prod-load-container {
    text-align: center;
    margin-top: 4rem;
}

.js-prod-load-btn {
    background: transparent;
    color: var(--js-text);
    border: 2px solid var(--js-surface);
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--js-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--js-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.js-prod-load-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.js-prod-load-btn:hover {
    border-color: var(--js-accent);
    color: var(--js-accent);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.js-prod-load-btn:hover svg {
    transform: translateY(3px);
}

/* Utility classes for JS */
.js-prod-hidden {
    display: none !important;
}

/* Entrance Animation */
.js-prod-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-prod-reveal.js-prod-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   6. RESPONSIVE DESIGN
========================================= */
@media (max-width: 1200px) {
    .js-prod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .js-prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .js-prod-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .js-prod-grid {
        grid-template-columns: 1fr;
    }
    .js-prod-filters {
        gap: 8px;
    }
    .js-prod-filter-btn {
        padding: 8px 16px;
        font-size: 0.95rem;
        flex-grow: 1;
    }
    .js-prod-title {
        font-size: 2.2rem;
    }
    .js-prod-hero {
        padding: 4rem 15px 2rem;
    }
}

/* Product page css end */

/* about us css start */

/* ========================================================
   J&S SPORTS - ABOUT US PAGE CSS
   Completely isolated using .bw-about- prefix
   No Global Selectors (:root, *, html, body)
========================================================= */

.bw-about-wrapper {
    /* Cyber-Creative Color System */
    --bw-primary: #fdb813;
    --bw-bg: #0a0a0a;
    --bw-surface: #1c1c1c;
    --bw-text: #f5f5f5;
    --bw-text-muted: #9ca3af;
    --bw-accent: #00e5ff;
    
    /* Typography */
    --bw-font-head: 'Rajdhani', sans-serif;
    --bw-font-body: 'Inter', sans-serif;
    
    /* Layout & Animation */
    --bw-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    background-color: var(--bw-bg);
    color: var(--bw-text);
    font-family: var(--bw-font-body);
    width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Internal Reset */
.bw-about-wrapper *,
.bw-about-wrapper *::before,
.bw-about-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography Base */
.bw-about-wrapper .bw-about-h2,
.bw-about-wrapper .bw-about-h3,
.bw-about-wrapper .bw-about-h4 {
    font-family: var(--bw-font-head);
    text-transform: uppercase;
    color: var(--bw-text);
}

.bw-about-wrapper .bw-about-h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bw-about-wrapper .bw-about-h2 span {
    color: var(--bw-primary);
}

.bw-about-wrapper .bw-about-h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bw-primary);
}

.bw-about-wrapper .bw-about-h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.bw-about-wrapper .bw-about-p {
    color: var(--bw-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.bw-about-wrapper .bw-about-label {
    display: inline-block;
    color: var(--bw-accent);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.bw-about-wrapper .bw-about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--bw-accent);
}

.bw-about-wrapper .bw-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Container */
.bw-about-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.bw-about-section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

.bw-about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.bw-about-header .bw-about-label {
    padding-left: 0;
}
.bw-about-header .bw-about-label::before {
    display: none;
}

/* =========================================
   1. HERO SECTION
========================================= */
.bw-about-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bw-about-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bw-about-glow-1, .bw-about-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: bw-about-float 10s infinite alternate;
}

.bw-about-glow-1 {
    width: 400px; height: 400px;
    background: var(--bw-primary);
    top: -100px; left: -100px;
}

.bw-about-glow-2 {
    width: 300px; height: 300px;
    background: var(--bw-accent);
    bottom: -50px; right: -50px;
    animation-delay: -5s;
}

.bw-about-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.bw-about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.bw-about-hero-title {
    font-family: var(--bw-font-head);
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.bw-about-hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--bw-primary);
}

.bw-about-hero-tagline {
    font-size: 1.25rem;
    color: var(--bw-text-muted);
}

@keyframes bw-about-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* =========================================
   2. INTRODUCTION SECTION
========================================= */
.bw-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bw-about-signature {
    margin-top: 2rem;
    font-family: var(--bw-font-head);
    font-size: 1.5rem;
    color: var(--bw-text);
    border-left: 3px solid var(--bw-accent);
    padding-left: 15px;
}

.bw-about-signature span {
    display: block;
    color: var(--bw-primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.bw-about-img-frame {
    position: relative;
    padding: 20px;
}

.bw-about-img-frame .bw-about-img {
    border-radius: 4px;
    position: relative;
    z-index: 2;
    filter: grayscale(20%);
    transition: var(--bw-transition);
}

.bw-about-img-frame:hover .bw-about-img {
    filter: grayscale(0%);
    transform: translate(-10px, -10px);
}

.bw-about-frame-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(253, 184, 19, 0.4);
    border-radius: 4px;
    z-index: 1;
    transition: var(--bw-transition);
}

.bw-about-img-frame:hover .bw-about-frame-border {
    border-color: var(--bw-accent);
    transform: translate(10px, 10px);
}

/* =========================================
   3. MISSION & VISION
========================================= */
.bw-about-mv {
    background: var(--bw-surface);
}

.bw-about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.bw-about-mv-card {
    background: var(--bw-bg);
    padding: 4rem 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--bw-transition);
}

.bw-about-mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--bw-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bw-transition);
}

.bw-about-mv-card:nth-child(2)::before {
    background: var(--bw-accent);
}

.bw-about-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bw-about-mv-card:hover::before {
    transform: scaleX(1);
}

.bw-about-mv-icon {
    width: 60px; height: 60px;
    margin-bottom: 2rem;
    color: var(--bw-primary);
}

.bw-about-cyan-icon {
    color: var(--bw-accent);
}

/* =========================================
   4. CORE VALUES
========================================= */
.bw-about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.bw-about-value-card {
    background: var(--bw-surface);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--bw-transition);
}

.bw-about-value-card:hover {
    border-bottom-color: var(--bw-accent);
    transform: translateY(-8px);
    background: #252525;
}

.bw-about-v-icon {
    width: 50px; height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--bw-primary);
    transition: var(--bw-transition);
}

.bw-about-value-card:hover .bw-about-v-icon {
    transform: scale(1.2);
    color: var(--bw-accent);
}

/* =========================================
   5. WHY CHOOSE US
========================================= */
.bw-about-why {
    background: linear-gradient(135deg, var(--bw-surface) 0%, var(--bw-bg) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bw-about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bw-about-abstract-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(253, 184, 19, 0.2);
    height: 500px;
    transition: var(--bw-transition);
}

.bw-about-why-visual:hover .bw-about-abstract-shape {
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
}

.bw-about-features-list {
    list-style: none;
    margin-top: 2rem;
}

.bw-about-features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    position: relative;
}

.bw-about-feature-icon {
    flex-shrink: 0;
    width: 15px; height: 15px;
    margin-top: 8px;
    background: var(--bw-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--bw-primary);
    position: relative;
}

/* Connecting line */
.bw-about-features-list li:not(:last-child) .bw-about-feature-icon::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 7px;
    width: 1px;
    height: calc(100% + 40px); /* spans gap */
    background: rgba(255,255,255,0.1);
}

.bw-about-features-list li:hover .bw-about-feature-icon {
    background: var(--bw-accent);
    box-shadow: 0 0 15px var(--bw-accent);
}

.bw-about-features-list li .bw-about-h4 {
    margin-bottom: 0.2rem;
    transition: var(--bw-transition);
}

.bw-about-features-list li:hover .bw-about-h4 {
    color: var(--bw-accent);
}

.bw-about-features-list li .bw-about-p {
    margin-bottom: 0;
}

/* =========================================
   6. STATS SECTION
========================================= */
.bw-about-stats-sec {
    padding: 5rem 0;
    background: var(--bw-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.bw-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.bw-about-stat-number {
    font-family: var(--bw-font-head);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bw-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bw-about-stat-number span {
    color: var(--bw-primary);
    font-size: 3rem;
}

.bw-about-stat-text {
    color: var(--bw-accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   7. MANUFACTURING & TEAM
========================================= */
.bw-about-mfg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bw-about-cyber-box {
    position: relative;
    padding: 10px;
    background: var(--bw-surface);
}

.bw-about-cyber-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bw-about-cyber-corners::before,
.bw-about-cyber-corners::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    border: 3px solid var(--bw-accent);
    transition: var(--bw-transition);
}

.bw-about-cyber-corners::before {
    top: -5px; left: -5px;
    border-right: none; border-bottom: none;
}

.bw-about-cyber-corners::after {
    bottom: -5px; right: -5px;
    border-left: none; border-top: none;
}

.bw-about-cyber-box:hover .bw-about-cyber-corners::before,
.bw-about-cyber-box:hover .bw-about-cyber-corners::after {
    width: 60px; height: 60px;
    border-color: var(--bw-primary);
}

/* =========================================
   ANIMATIONS UTILITY
========================================= */
.bw-about-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bw-about-reveal.bw-about-active {
    opacity: 1;
    transform: translateY(0);
}

.bw-about-delay-1 { transition-delay: 0.15s; }
.bw-about-delay-2 { transition-delay: 0.3s; }
.bw-about-delay-3 { transition-delay: 0.45s; }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .bw-about-hero-title { font-size: 4rem; }
    .bw-about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

@media (max-width: 768px) {
    .bw-about-intro-grid,
    .bw-about-mv-grid,
    .bw-about-why-grid,
    .bw-about-mfg-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bw-about-mfg-grid {
        /* Swap visual to top on mobile for manufacturing section */
        display: flex;
        flex-direction: column-reverse;
    }

    .bw-about-hero-title { font-size: 3rem; }
    .bw-about-h2 { font-size: 2.5rem; }
    .bw-about-mv-card { padding: 3rem 2rem; }
    .bw-about-abstract-shape { height: 350px; }
    
    /* Remove connecting lines on mobile feature list */
    .bw-about-features-list li:not(:last-child) .bw-about-feature-icon::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .bw-about-hero-title { font-size: 2.2rem; }
    .bw-about-stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .bw-about-stat-number { font-size: 3.5rem; }
    .bw-about-section { padding: 4rem 0; }
}
/* about us css end */

/* contact us css */
/* ========================================================
   J&S SPORTS - CONTACT US PAGE CSS
   Completely isolated using .bw-contact- prefix
   No Global Selectors (:root, *, html, body) used
========================================================= */

.bw-contact-wrapper {
    /* Cyber-Creative Color System Variables */
    --bw-c-primary: #fdb813;     /* Marigold Yellow */
    --bw-c-bg: #0a0a0a;          /* Deep Black */
    --bw-c-surface: #1c1c1c;     /* Charcoal */
    --bw-c-surface-light: #252525;
    --bw-c-text: #f5f5f5;        /* Soft White */
    --bw-c-text-muted: #9ca3af;
    --bw-c-accent: #00e5ff;      /* Neon Cyan */
    --bw-c-error: #ff4d4d;
    
    /* Typography & Animation Variables */
    --bw-c-font-head: 'Rajdhani', sans-serif;
    --bw-c-font-body: 'Inter', sans-serif;
    --bw-c-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    background-color: var(--bw-c-bg);
    color: var(--bw-c-text);
    font-family: var(--bw-c-font-body);
    width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Internal Reset for Wrapper Children Only */
.bw-contact-wrapper *,
.bw-contact-wrapper *::before,
.bw-contact-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global Elements inside wrapper */
.bw-contact-wrapper h1, 
.bw-contact-wrapper h2, 
.bw-contact-wrapper h3, 
.bw-contact-wrapper h4 {
    font-family: var(--bw-c-font-head);
    color: var(--bw-c-text);
}

.bw-contact-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   1. HERO SECTION
========================================= */
.bw-contact-hero {
    position: relative;
    padding: 8rem 20px 6rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--bw-c-bg);
    overflow: hidden;
}

.bw-contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bw-contact-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(10, 10, 10, 0) 60%);
    z-index: 1;
}

.bw-contact-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: bw-contact-grid-move 20s linear infinite;
}

@keyframes bw-contact-grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

.bw-contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.bw-contact-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bw-contact-title span {
    color: var(--bw-c-primary);
    text-shadow: 0 0 20px rgba(253, 184, 19, 0.3);
}

.bw-contact-subtitle {
    font-size: 1.15rem;
    color: var(--bw-c-text-muted);
}

/* =========================================
   2. MAIN LAYOUT & CONTACT INFO
========================================= */
.bw-contact-main {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bw-c-bg) 0%, #050505 100%);
}

.bw-contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.bw-contact-label {
    display: inline-block;
    color: var(--bw-c-primary);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bw-contact-h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bw-contact-h2 span {
    color: var(--bw-c-accent);
}

.bw-contact-desc {
    color: var(--bw-c-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.bw-contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bw-contact-card {
    background: var(--bw-c-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--bw-c-transition);
    position: relative;
    overflow: hidden;
}

.bw-contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--bw-c-primary);
    transform: scaleY(0);
    transition: var(--bw-c-transition);
    transform-origin: bottom;
}

.bw-contact-card:hover {
    transform: translateX(10px);
    background: var(--bw-c-surface-light);
    border-color: rgba(253, 184, 19, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bw-contact-card:hover::before {
    transform: scaleY(1);
}

.bw-contact-card:nth-child(even)::before {
    background: var(--bw-c-accent);
}
.bw-contact-card:nth-child(even):hover {
    border-color: rgba(0, 229, 255, 0.2);
}

.bw-contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(253, 184, 19, 0.1);
    color: var(--bw-c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--bw-c-transition);
}

.bw-contact-icon-box svg {
    width: 28px;
    height: 28px;
}

.bw-contact-icon-box.bw-contact-cyan {
    background: rgba(0, 229, 255, 0.1);
    color: var(--bw-c-accent);
}

.bw-contact-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.bw-contact-card-content p {
    color: var(--bw-c-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   3. CONTACT FORM SECTION
========================================= */
.bw-contact-form-box {
    background: var(--bw-c-surface);
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* Top Glow Line for Form Box */
.bw-contact-form-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bw-c-primary), var(--bw-c-accent));
}

.bw-contact-form-header {
    margin-bottom: 2.5rem;
}

.bw-contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bw-contact-form-header p {
    color: var(--bw-c-text-muted);
    font-size: 1rem;
}

.bw-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.4s ease;
}

.bw-contact-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bw-contact-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.bw-contact-input-group label {
    font-family: var(--bw-c-font-head);
    font-size: 0.95rem;
    color: var(--bw-c-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--bw-c-transition);
}

.bw-contact-input {
    width: 100%;
    background: var(--bw-c-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--bw-c-text);
    font-family: var(--bw-c-font-body);
    font-size: 1rem;
    transition: var(--bw-c-transition);
    outline: none;
}

.bw-contact-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.bw-contact-input:focus {
    border-color: var(--bw-c-accent);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
    background: #000;
}

/* Custom Select Dropdown Styling */
.bw-contact-select-wrapper {
    position: relative;
}

.bw-contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.bw-contact-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5f5f5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.bw-contact-input:focus + .bw-contact-select-wrapper::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300e5ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

.bw-contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.bw-contact-input-group:focus-within label {
    color: var(--bw-c-accent);
}

/* Button */
.bw-contact-submit-btn {
    background: var(--bw-c-primary);
    color: var(--bw-c-bg);
    border: 2px solid var(--bw-c-primary);
    padding: 16px 30px;
    border-radius: 6px;
    font-family: var(--bw-c-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--bw-c-transition);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bw-contact-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.bw-contact-submit-btn:hover {
    background: transparent;
    color: var(--bw-c-primary);
    box-shadow: 0 0 20px rgba(253, 184, 19, 0.4);
}

.bw-contact-submit-btn:hover svg {
    transform: translateX(5px);
}

/* =========================================
   4. VALIDATION & SUCCESS STATES
========================================= */
.bw-contact-error-text {
    color: var(--bw-c-error);
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--bw-c-transition);
    position: absolute;
    bottom: -22px;
    left: 0;
}

.bw-contact-input.bw-contact-error {
    border-color: var(--bw-c-error);
    animation: bw-contact-shake 0.4s ease;
}

.bw-contact-input.bw-contact-error ~ .bw-contact-error-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bw-contact-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

/* Success Message Overlay */
.bw-contact-success-msg {
    position: absolute;
    inset: 0;
    background: var(--bw-c-surface);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: var(--bw-c-transition);
}

.bw-contact-success-msg.bw-contact-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.bw-contact-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--bw-c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: bw-contact-pulse 2s infinite;
}

.bw-contact-success-icon svg {
    width: 40px;
    height: 40px;
}

.bw-contact-success-msg h3 {
    font-size: 2.2rem;
    color: var(--bw-c-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bw-contact-success-msg p {
    color: var(--bw-c-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bw-contact-btn-reset {
    background: transparent;
    color: var(--bw-c-text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--bw-c-font-head);
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--bw-c-transition);
}

.bw-contact-btn-reset:hover {
    border-color: var(--bw-c-text);
    background: rgba(255,255,255,0.05);
}

@keyframes bw-contact-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

/* =========================================
   5. SCROLL ANIMATIONS
========================================= */
.bw-contact-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bw-contact-reveal.bw-contact-active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   6. RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .bw-contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .bw-contact-form-box {
        padding: 3rem;
    }
    .bw-contact-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .bw-contact-input-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bw-contact-form-box {
        padding: 2rem 1.5rem;
    }
    .bw-contact-hero {
        padding: 6rem 15px 4rem;
    }
    .bw-contact-title {
        font-size: 2.8rem;
    }
    .bw-contact-h2 {
        font-size: 2.2rem;
    }
    .bw-contact-cards-wrap {
        gap: 1rem;
    }
    .bw-contact-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .bw-contact-title {
        font-size: 2.2rem;
    }
    .bw-contact-submit-btn {
        width: 100%;
        font-size: 1.1rem;
    }
    .bw-contact-success-msg {
        padding: 1.5rem;
    }
    .bw-contact-success-msg h3 {
        font-size: 1.8rem;
    }
}

/* contact us css ends */


/* Our Company CSS Start */

/* ========================================================
   J&S SPORTS - COMPANY PAGE CSS
   Isolated with .bw-company- prefix to prevent conflicts
   No Global Selectors (:root, *, html, body) used
========================================================= */

.bw-company-wrapper {
    /* Scoped Design Variables */
    --bw-co-primary: #fdb813;     /* Marigold Yellow */
    --bw-co-bg: #0a0a0a;          /* Deep Black */
    --bw-co-surface: #1c1c1c;     /* Charcoal */
    --bw-co-surface-light: #252525;
    --bw-co-text: #f5f5f5;        /* Soft White */
    --bw-co-text-muted: #9ca3af;
    --bw-co-accent: #00e5ff;      /* Neon Cyan */
    
    --bw-co-font-head: 'Rajdhani', sans-serif;
    --bw-co-font-body: 'Inter', sans-serif;
    --bw-co-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    background-color: var(--bw-co-bg);
    color: var(--bw-co-text);
    font-family: var(--bw-co-font-body);
    width: 100%;
    position: relative;
    line-height: 1.6;
    
    /* Hide Horizontal Scrollbar safely */
    overflow-x: hidden;
    /* Hide Vertical Scrollbar as requested but keep scrolling functionality */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

/* Hide scrollbar for Chrome/Safari inside wrapper */
.bw-company-wrapper::-webkit-scrollbar {
    display: none;
}

/* Internal Reset for Wrapper Children */
.bw-company-wrapper *,
.bw-company-wrapper *::before,
.bw-company-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bw-company-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.bw-company-section {
    padding: 6rem 0;
    position: relative;
}

/* Typography Base */
.bw-company-title {
    font-family: var(--bw-co-font-head);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bw-co-text);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.bw-company-title span {
    color: var(--bw-co-primary);
}

.bw-company-subtitle {
    display: inline-block;
    color: var(--bw-co-accent);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: var(--bw-co-font-body);
    position: relative;
    padding-left: 40px;
}

.bw-company-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--bw-co-accent);
}

.bw-company-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bw-company-header .bw-company-subtitle {
    padding-left: 0;
}
.bw-company-header .bw-company-subtitle::before {
    display: none;
}

.bw-company-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   1. WHO WE ARE SECTION
========================================= */
.bw-company-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bw-company-text-stack p {
    color: var(--bw-co-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.bw-company-image-frame {
    position: relative;
    padding: 20px 20px 0 0;
    border-radius: 12px;
    z-index: 1;
}

.bw-company-image-frame .bw-company-img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.bw-company-frame-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 3px solid var(--bw-co-primary);
    border-radius: 12px;
    z-index: 0;
    transition: var(--bw-co-transition);
}

.bw-company-image-frame:hover .bw-company-frame-accent {
    transform: translate(-15px, -15px);
    border-color: var(--bw-co-accent);
}

.bw-company-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bw-co-surface);
    border-left: 4px solid var(--bw-co-accent);
    padding: 1.5rem;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
}

.bw-company-badge-num {
    font-family: var(--bw-co-font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bw-co-primary);
    line-height: 1;
}

.bw-company-badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--bw-co-text);
    line-height: 1.3;
    letter-spacing: 1px;
}

/* =========================================
   2. FOUNDER / CEO SECTION
========================================= */
.bw-company-founder-sec {
    background: linear-gradient(180deg, var(--bw-co-bg) 0%, #050505 100%);
}

.bw-company-founder-card {
    background: var(--bw-co-surface);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

.bw-company-founder-glow {
    position: absolute;
    top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 184, 19, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.bw-company-founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bw-company-founder-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 12px;
}

.bw-company-founder-image .bw-company-img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    filter: grayscale(80%);
    transition: var(--bw-co-transition);
}

.bw-company-founder-card:hover .bw-company-img {
    filter: grayscale(0%);
}

.bw-company-founder-border {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    z-index: 1;
    transition: var(--bw-co-transition);
}

.bw-company-founder-card:hover .bw-company-founder-border {
    inset: -15px;
    border-color: var(--bw-co-accent);
}

.bw-company-founder-name {
    font-family: var(--bw-co-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.bw-company-founder-name span {
    color: var(--bw-co-primary);
}

.bw-company-founder-title {
    color: var(--bw-co-accent);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.bw-company-founder-desc {
    color: var(--bw-co-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.bw-company-quote-mark {
    position: absolute;
    bottom: -40px;
    right: 20px;
    font-family: serif;
    font-size: 12rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    z-index: 0;
}

/* =========================================
   3. TEAM SECTION
========================================= */
.bw-company-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bw-company-team-card {
    background: var(--bw-co-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--bw-co-transition);
    display: flex;
    flex-direction: column;
}

.bw-company-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-color: rgba(253, 184, 19, 0.3);
}

.bw-company-team-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.bw-company-team-img-wrap .bw-company-img {
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.bw-company-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bw-co-surface) 0%, transparent 50%);
    opacity: 0.8;
}

.bw-company-team-card:hover .bw-company-img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.bw-company-team-info {
    padding: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    margin-top: -20px; /* Pulls text up slightly over the gradient */
}

.bw-company-team-name {
    font-family: var(--bw-co-font-head);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--bw-co-text);
    margin-bottom: 0.2rem;
}

.bw-company-team-role {
    display: block;
    color: var(--bw-co-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bw-company-team-desc {
    color: var(--bw-co-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   4. OUR SERVICES SECTION (3D CARDS)
========================================= */
.bw-company-services-sec {
    background: linear-gradient(0deg, var(--bw-co-bg) 0%, #050505 100%);
    padding-bottom: 8rem;
}

.bw-company-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bw-company-3d-wrapper {
    perspective: 1000px;
}

.bw-company-service-card {
    background: var(--bw-co-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    height: 100%;
}

.bw-company-3d-wrapper:hover .bw-company-service-card {
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.1);
}

.bw-company-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(253, 184, 19, 0.1);
    color: var(--bw-co-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(30px); /* 3D pop effect */
    transition: var(--bw-co-transition);
}

.bw-company-cyan-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--bw-co-accent);
}

.bw-company-service-card:hover .bw-company-service-icon {
    background: var(--bw-co-primary);
    color: var(--bw-co-bg);
    transform: translateZ(50px) scale(1.1);
}

.bw-company-service-card:hover .bw-company-cyan-icon {
    background: var(--bw-co-accent);
}

.bw-company-service-icon svg {
    width: 32px;
    height: 32px;
}

.bw-company-service-title {
    font-family: var(--bw-co-font-head);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transform: translateZ(20px);
}

.bw-company-service-desc {
    color: var(--bw-co-text-muted);
    font-size: 0.95rem;
    transform: translateZ(10px);
}

/* Glow effect moving with mouse */
.bw-company-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bw-company-3d-wrapper:hover .bw-company-card-glow {
    opacity: 1;
}

/* =========================================
   ANIMATIONS UTILITY
========================================= */
.bw-company-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bw-company-reveal.bw-company-active {
    opacity: 1;
    transform: translateY(0);
}

.bw-company-delay-1 { transition-delay: 0.15s; }
.bw-company-delay-2 { transition-delay: 0.3s; }
.bw-company-delay-3 { transition-delay: 0.45s; }

/* =========================================
   RESPONSIVE DESIGN (Desktop -> Tablet -> Mobile)
========================================= */
@media (max-width: 1024px) {
    .bw-company-grid-2 { gap: 3rem; }
    .bw-company-founder-card { padding: 3rem; }
    .bw-company-founder-grid { gap: 3rem; }
    
    /* 4 cols -> 2 cols for Tablet */
    .bw-company-team-grid,
    .bw-company-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bw-company-section { padding: 4rem 0; }
    
    /* Stack Layouts */
    .bw-company-grid-2,
    .bw-company-founder-grid {
        grid-template-columns: 1fr;
    }
    
    .bw-company-about-visual {
        margin-top: 2rem;
        padding-left: 30px; /* Space for badge */
    }
    
    .bw-company-founder-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bw-company-title { font-size: 2.5rem; }
    .bw-company-founder-name { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    /* 2 cols -> 1 col for Mobile */
    .bw-company-team-grid,
    .bw-company-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bw-company-experience-badge {
        left: -10px;
        bottom: 10px;
        padding: 1rem;
    }
    
    .bw-company-badge-num { font-size: 1.8rem; }
    .bw-company-founder-card { padding: 2rem 1.5rem; }
}
/* Our Company CSS end */


/*product page css start

/* ========================================================
   J&S SPORTS - SINGLE PRODUCT PAGE CSS
   Isolated with .bw-product- prefix to prevent conflicts
   No Global Selectors (:root, *, html, body) used
========================================================= */

.bw-product-wrapper {
    /* Scoped Design Variables - Cyber-Creative Dark Mode */
    --bw-p-primary: #fdb813;     /* Marigold Yellow */
    --bw-p-bg: #0a0a0a;          /* Deep Black */
    --bw-p-surface: #1c1c1c;     /* Charcoal */
    --bw-p-surface-hover: #2a2a2a;
    --bw-p-text: #f5f5f5;        /* Soft White */
    --bw-p-text-muted: #9ca3af;
    --bw-p-accent: #00e5ff;      /* Neon Cyan */
    
    --bw-p-font-head: 'Rajdhani', sans-serif;
    --bw-p-font-body: 'Inter', sans-serif;
    --bw-p-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    background-color: var(--bw-p-bg);
    color: var(--bw-p-text);
    font-family: var(--bw-p-font-body);
    width: 100%;
    position: relative;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 10rem 0;
}

/* Internal Reset for Wrapper Children */
.bw-product-wrapper *,
.bw-product-wrapper *::before,
.bw-product-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bw-product-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Image Utilities */
.bw-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   1. MAIN PRODUCT LAYOUT
========================================= */
.bw-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* ----------------------------------
   LEFT: GALLERY & ZOOM
----------------------------------- */
.bw-product-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bw-product-featured-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bw-p-surface);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    cursor: zoom-in; /* Indicates zoom capability */
}

/* Smooth transition for the zoom snap-in/out */
.bw-product-featured-wrap img {
    transition: transform 0.2s ease-out, opacity 0.3s ease;
    will-change: transform, transform-origin;
}

.bw-product-featured-wrap:hover img {
    /* The scale amount dictates how deep the zoom is */
    transform: scale(2.2); 
}

.bw-product-img-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(253, 184, 19, 0) 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.bw-product-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bw-p-accent);
    color: var(--bw-p-bg);
    padding: 6px 14px;
    font-family: var(--bw-p-font-head);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
    pointer-events: none; /* Prevents zoom glitch if hovered over */
}

.bw-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bw-product-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--bw-p-transition);
    opacity: 0.6;
}

.bw-product-thumb img {
    transition: transform 0.4s ease;
    width: 100% !important;
}

.bw-product-thumb:hover {
    opacity: 1;
}

.bw-product-thumb:hover img {
    transform: scale(1.1);
}

.bw-product-thumb.bw-product-thumb-active {
    border-color: var(--bw-p-primary);
    opacity: 1;
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.3);
}

.bw-product-trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: var(--bw-p-surface);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
}

.bw-product-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bw-p-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.bw-product-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--bw-p-accent);
}

/* JS Transition class for featured image swap */
.bw-product-img-fade {
    opacity: 0;
}

/* ----------------------------------
   RIGHT: DETAILS & SPECS
----------------------------------- */
.bw-product-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.bw-product-category {
    color: var(--bw-p-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.bw-product-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--bw-p-text);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 30px;
}

.bw-product-dot {
    width: 8px;
    height: 8px;
    background-color: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 8px #00e676;
    animation: bw-product-pulse-dot 2s infinite;
}

@keyframes bw-product-pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.bw-product-title {
    font-family: var(--bw-p-font-head);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bw-product-title span {
    color: var(--bw-p-primary);
}

.bw-product-ratings {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.bw-product-stars {
    display: flex;
    gap: 2px;
    color: var(--bw-p-primary);
}

.bw-product-stars svg {
    width: 18px;
    height: 18px;
}

.bw-product-reviews {
    color: var(--bw-p-text-muted);
    font-size: 0.9rem;
}

/* Live Viewers */
.bw-product-live-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(253, 184, 19, 0.1), transparent);
    border-left: 3px solid var(--bw-p-primary);
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--bw-p-text);
}

.bw-product-fire {
    font-size: 1.2rem;
    animation: bw-product-flicker 1.5s infinite alternate;
}

.bw-product-count-num {
    font-weight: 700;
    color: var(--bw-p-primary);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.bw-product-count-update {
    color: var(--bw-p-text);
}

@keyframes bw-product-flicker {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.bw-product-desc {
    color: var(--bw-p-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* Technical Specification Chart */
.bw-product-specs-wrap {
    margin-bottom: 2.5rem;
}

.bw-product-specs-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.bw-product-spec-title {
    font-family: var(--bw-p-font-head);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bw-p-primary);
    letter-spacing: 1px;
}

.bw-product-specs-table {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.bw-product-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.2s ease;
}

.bw-product-spec-row:last-child {
    border-bottom: none;
}

.bw-product-spec-alt {
    background: rgba(255,255,255,0.02);
}

.bw-product-spec-row:hover {
    background: rgba(0, 229, 255, 0.05);
}

.bw-product-spec-label {
    color: var(--bw-p-text-muted);
    font-weight: 500;
}

.bw-product-spec-value {
    color: var(--bw-p-text);
    font-weight: 600;
    text-align: right;
}

/* Call to Action */
.bw-product-cta-wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.bw-product-btn-quote {
    flex: 1;
    background: linear-gradient(135deg, var(--bw-p-primary) 0%, #ff8c00 100%);
    color: var(--bw-p-bg);
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-family: var(--bw-p-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--bw-p-transition);
    position: relative;
    overflow: hidden;
}

.bw-product-btn-quote::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.bw-product-btn-quote:hover::before {
    left: 100%;
}

.bw-product-btn-quote:hover {
    box-shadow: 0 10px 25px rgba(253, 184, 19, 0.5);
    transform: translateY(-3px);
}

.bw-product-btn-quote svg {
    width: 22px;
    height: 22px;
}

.bw-product-btn-outline {
    background: transparent;
    color: var(--bw-p-text);
    border: 2px solid rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--bw-p-transition);
}

.bw-product-btn-outline:hover {
    border-color: var(--bw-p-accent);
    color: var(--bw-p-accent);
    background: rgba(0, 229, 255, 0.05);
}

.bw-product-btn-outline svg {
    width: 24px;
    height: 24px;
}

.bw-product-tags {
    font-size: 0.9rem;
    color: var(--bw-p-text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.bw-product-tags a {
    color: var(--bw-p-text);
    text-decoration: none;
    transition: var(--bw-p-transition);
}

.bw-product-tags a:hover {
    color: var(--bw-p-accent);
}

/* =========================================
   2. RELATED MANUFACTURING
========================================= */
.bw-product-related-section {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bw-product-related-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bw-product-subtitle {
    display: inline-block;
    color: var(--bw-p-accent);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bw-product-section-title {
    font-family: var(--bw-p-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bw-product-section-title span {
    color: var(--bw-p-primary);
}

.bw-product-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bw-product-rel-card {
    background: var(--bw-p-surface);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
    transition: var(--bw-p-transition);
    display: flex;
    flex-direction: column;
}

.bw-product-rel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-color: rgba(253, 184, 19, 0.2);
}

.bw-product-rel-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.bw-product-rel-img-wrap img {
    transition: transform 0.6s ease;
}

.bw-product-rel-card:hover .bw-product-rel-img-wrap img {
    transform: scale(1.1);
}

.bw-product-rel-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bw-product-rel-info h4 {
    font-family: var(--bw-p-font-head);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bw-product-rel-info p {
    color: var(--bw-p-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bw-product-rel-actions {
    display: flex;
    gap: 10px;
}

.bw-product-rel-btn-primary {
    flex: 1;
    background: var(--bw-p-primary);
    color: var(--bw-p-bg);
    border: none;
    padding: 10px 0;
    border-radius: 4px;
    font-family: var(--bw-p-font-head);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--bw-p-transition);
}

.bw-product-rel-btn-primary:hover {
    background: transparent;
    color: var(--bw-p-primary);
    box-shadow: inset 0 0 0 2px var(--bw-p-primary);
}

.bw-product-rel-btn-secondary {
    flex: 1;
    background: transparent;
    color: var(--bw-p-text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 0;
    border-radius: 4px;
    font-family: var(--bw-p-font-head);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--bw-p-transition);
}

.bw-product-rel-btn-secondary:hover {
    border-color: var(--bw-p-accent);
    color: var(--bw-p-accent);
}

/* =========================================
   ANIMATIONS UTILITY
========================================= */
.bw-product-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bw-product-reveal.bw-product-active {
    opacity: 1;
    transform: translateY(0);
}

.bw-product-delay-1 { transition-delay: 0.15s; }
.bw-product-delay-2 { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    /* Tablet */
    .bw-product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bw-product-featured-wrap {
        aspect-ratio: 16 / 9;
    }

    .bw-product-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .bw-product-wrapper { padding: 4rem 0; }
    
    .bw-product-title { font-size: 2.5rem; }
    
    .bw-product-featured-wrap {
        aspect-ratio: 1 / 1;
    }
    
    .bw-product-trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .bw-product-spec-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .bw-product-spec-value {
        text-align: left;
    }
    
    .bw-product-cta-wrap {
        flex-direction: column;
    }
    
    .bw-product-btn-outline {
        width: 100%;
    }

    .bw-product-related-grid {
        grid-template-columns: 1fr;
    }
    
    .bw-product-section-title { font-size: 2.2rem; }
}
/*product page css end

/* ========================================================
   8. TRUST, LOGISTICS & CERTIFICATIONS (100% RESPONSIVE)
========================================================= */
.js-trust-section {
    padding: 6rem 0;
    background: #0a0a0a !important; 
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; /* Prevents horizontal scroll on the whole page */
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.js-trust-main-block {
    margin-bottom: 5rem;
    text-align: center;
    width: 100%;
}

/* --- Main JS Slider Wrapper (Top Logos) --- */
.js-trust-slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.js-trust-slider-track {
    display: flex !important; 
    flex-direction: row !important;
    align-items: center;
    gap: 40px !important; 
    width: max-content;
}

.js-trust-logo {
    flex-shrink: 0 !important; 
    width: 200px !important; 
    height: 90px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
   
    transition: all 0.3s ease;
    cursor: pointer;
}

.js-trust-logo img {
    max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}

.js-trust-logo:hover {
    transform: scale(1.1);
}

/* --- Payment & Shipping Cards --- */
.js-trust-cards-grid {
    display: grid !important; 
    /* CRITICAL FIX: minmax(0, 1fr) stops the grid from blowing out of the screen */
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
    gap: 40px;
    width: 100%;
}

.js-trust-card {
    background: #1c1c1c !important; 
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    /* CRITICAL FIX: min-width: 0 forces the card to respect the grid boundaries */
    min-width: 0 !important; 
    width: 100%;
    overflow: hidden; /* Hides internal overflow */
}

.js-trust-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #fdb813, #00e5ff);
    opacity: 0.3; transition: all 0.3s ease; border-radius: 16px 16px 0 0;
}

.js-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(253, 184, 19, 0.2);
}
.js-trust-card:hover::before { opacity: 1; }

.js-trust-card-header {
    margin-bottom: 2.5rem; display: flex; flex-direction: column; align-items: center;
}

.js-trust-card-header h4 {
    font-size: 1.5rem; color: #f5f5f5; text-transform: uppercase; 
    font-family: 'Rajdhani', sans-serif; font-weight: bold; margin-bottom: 10px;
}

.js-trust-header-line {
    width: 60px; height: 3px; background: #fdb813; border-radius: 5px;
}

/* --- Card Inner Logos (Bottom Sliders) --- */
.js-trust-card-slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.js-trust-card-slider-track {
    display: flex !important; 
    flex-direction: row !important;
    align-items: center;
    gap: 24px !important; 
    width: max-content;
}

.js-trust-grid-item {
    flex-shrink: 0 !important; 
    width: 180px !important; 
    height: 85px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02); border-radius: 6px;

}

.js-trust-grid-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.js-trust-grid-item:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    /* Stacks the payment and shipping cards on top of each other on tablets/small laptops */
    .js-trust-cards-grid { 
        grid-template-columns: minmax(0, 1fr) !important; 
        gap: 30px; 
    }
}
@media (max-width: 576px) {
    .js-trust-card { padding: 2rem 1.5rem; }
    .js-trust-logo { width: 120px !important; height: 50px !important; }
}