:root {
    /* Mayur Colour Brand Colors */
    --primary: #0891b2;
    --primary-dark: #0369a1;
    --primary-light: #22d3ee;
    --primary-gradient: linear-gradient(135deg, #0891b2 0%, #0369a1 50%, #1e40af 100%);

    /* Semantic Colors */
    --foreground: #1f2937;
    --muted: #6b7280;
    --muted-light: #f3f4f6;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;

    /* Layout & Design */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

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

body {
    font-family: var(--font-family);
    color: var(--foreground);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bootstrap Overrides */
.btn {
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 50%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

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

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light-gray {
    background-color: var(--muted-light);
}

/* Navigation */
#navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    color: var(--foreground);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Color Swatches */
.color-swatch {
    height: 8rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.color-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.1);
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

/* Product Cards */
.product-card,
.product-card-full,
.quality-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover,
.product-card-full:hover,
.quality-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-0.5rem);
    border-color: var(--primary);
}

.product-card-full {
    overflow: hidden;
}

.color-swatches {
    display: flex;
    height: 6rem;
    width: 100%;
    transition: filter 0.3s ease;
}

.product-card-full:hover .color-swatches {
    filter: brightness(1.1);
}

.swatch {
    flex: 1;
    transition: filter 0.3s ease;
}

.swatch:hover {
    filter: brightness(1.15);
}

/* Benefit Cards */
.benefit-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    text-align: left;
    transition: all 0.3s ease;
}

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(8, 145, 178, 0.5);
    margin-bottom: -0.5rem;
    line-height: 1;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-1.25rem);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-1.25rem);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(1.25rem);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(2.5rem);
    }

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

@keyframes float {

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

    50% {
        transform: translateY(-0.625rem);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

.hover-lift:hover {
    transform: translateY(-0.5rem);
}

.hover-slide-right:hover {
    transform: translateX(0.5rem);
}

.hover-slide-right {
    transition: transform 0.3s ease;
}

/* Utility Classes */
.blur-3xl {
    filter: blur(6rem);
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-10 {
    opacity: 0.1;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.max-w-2xl {
    max-width: 42rem;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}


/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.logo {
    width: 280px;
}

/* Progress container */
.progress-wrapper {
    width: 350px;
    height: 15px;
    background: #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
}

/* Progress bar */
#progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg,
            #00a8cc,
            #2ec4b6,
            #00a8cc,
            #2ec4b6);
    background-size: 300% 100%;
    animation: gradientMove 1.2s linear infinite;
    transition: width 0.2s linear;
}

@keyframes gradientMove {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

/* Pause all animations while preloader is active */
.preloader-active * {
    animation-play-state: paused !important;
    transition: none !important;
}




/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.875rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .color-swatch {
        height: 6rem;
    }
}

/* Contact Page Styles */
.contact-icon,
.facility-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 145, 178, 0.1);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item,
.facility-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.contact-item:hover,
.facility-item:hover {
    background-color: rgba(8, 145, 178, 0.05);
    transform: translateX(0.25rem);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25);
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primary);
}

.map-container {
    position: relative;
    background-color: var(--muted-light);
}

.map-container iframe {
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.05);
}

/* Contact form animations */
.form-control,
.form-select {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    transform: translateY(-0.125rem);
}

/* Responsive contact styles */
@media (max-width: 768px) {

    .contact-icon,
    .facility-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    .contact-item,
    .facility-item {
        padding: 0.25rem;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ===== PRO
DUCTS PAGE STYLES ===== */

/* Products Hero Section */
.products-hero-section {
    min-height: 40vh;
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 50%, #1e40af 100%);
    position: relative;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.products-text-gradient {
    background: linear-gradient(135deg, #22d3ee 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Products Floating Color Swatches */
.products-floating-swatch {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: productsFloat 6s ease-in-out infinite;
}

.products-swatch-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #AD1457);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.products-swatch-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.products-swatch-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.products-swatch-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes productsFloat {

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

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Products Category Cards */
.products-category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.products-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.1), transparent);
    transition: left 0.5s ease;
}

.products-category-card:hover::before {
    left: 100%;
}

.products-category-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.products-category-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.products-category-card:hover .products-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.products-category-swatches {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.products-mini-swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.products-category-card:hover .products-mini-swatch {
    transform: scale(1.1);
}

.products-category-stats .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

/* Products Filter Buttons */
.products-filter-btn {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.products-filter-btn:hover {
    transform: translateY(-2px);
}

/* Products Product Cards - Updated to avoid conflicts */
.products-product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.products-product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

/* Color Shade Section - Made even smaller */
.products-product-color-shade {
    position: relative;
    overflow: hidden;
    height: 80px;
    /* Reduced from 120px to make it even smaller */
    transition: all 0.3s ease;
    /* Removed default background to allow inline styles to work */
}

.products-product-card:hover .products-product-color-shade {
    transform: scale(1.02);
}

.color-shade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.products-product-card:hover .color-shade-overlay {
    transform: translateY(0);
}

.color-name {
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.products-product-info {
    padding: 1.5rem;
}

.products-product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.products-product-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.products-product-description {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Technical Details Section - No Background, Improved Typography */


.tech-detail {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(8, 145, 178, 0.08);
}

.tech-detail:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.tech-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: none;
    letter-spacing: 0.01em;
    min-width: fit-content;
    margin-right: 1rem;
    line-height: 1.4;
}

.tech-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--foreground);
    /* text-align: right; */
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.products-btn-add-inquiry {
    flex: 1;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.products-btn-add-inquiry:hover {
    transform: translateY(-2px);
}

.products-btn-view-details {
    width: 100%;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-btn-view-details:hover {
    transform: translateY(-2px);
}

/* Products Feature Cards */
.products-feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.products-feature-card:hover {
    transform: translateY(-0.25rem);
}

.products-feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.products-feature-card:hover .products-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

/* Modal styles removed as per requirements */

/* Products Filter Animation */
.products-product-card.fade-out {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.products-product-card.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Products Loading Animation */
.products-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(8, 145, 178, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: productsSpin 1s ease-in-out infinite;
}

@keyframes productsSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Products Ripple Effect */
@keyframes productsRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Products Responsive Design */
@media (max-width: 768px) {
    .products-hero-section {
        min-height: 50vh;
    }

    .products-floating-swatch {
        display: none;
    }

    .products-category-card {
        padding: 1.5rem;
    }

    .products-category-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .products-mini-swatch {
        width: 1.5rem;
        height: 1.5rem;
    }

    .products-product-color-shade {
        height: 60px;
        /* Even smaller on mobile */
    }



    .tech-label {
        font-size: 0.75rem;
    }

    .tech-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .products-hero-section {
        min-height: 40vh;
    }

    .display-3 {
        font-size: 2rem;
    }

    .products-category-swatches {
        gap: 0.25rem;
    }

    .products-mini-swatch {
        width: 1.25rem;
        height: 1.25rem;
    }

    .products-product-color-shade {
        height: 50px;
        /* Even smaller on very small screens */
    }

    .products-product-info {
        padding: 1rem;
    }

    .products-feature-card {
        padding: 1.5rem 1rem;
    }

    .products-feature-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .tech-detail {
        padding: 0.2rem 0;
        margin-bottom: 0.3rem;
    }

    .tech-label {
        font-size: 0.65rem;
    }

    .tech-value {
        font-size: 0.7rem;
    }
}

/* Products Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Categories Horizontal Scroll Styles - Mobile Optimized */
.categories-scroll-container {
    position: relative;
    margin: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 1rem;
}

.categories-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.categories-scroll-content {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    min-width: max-content;
}

/* Category Scroll Cards - Responsive Design */
.category-scroll-card {
    flex: 0 0 auto;
    width: 46rem;
    min-width: 500px;
    /* max-width: 300px; */
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.categories-scroll-wrapper {
    position: relative;
}

.category-scroll-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-scroll-card:hover::before {
    left: 100%;
}

.category-scroll-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.category-scroll-card:hover .category-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.category-card-description {
    text-align: justify;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.category-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.category-badge {
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-arrow {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.category-scroll-card:hover .category-arrow {
    transform: translateX(0.25rem);
}

/* Scroll Navigation Buttons */
.categories-scroll-btn,
.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.categories-scroll-btn:hover,
.category-scroll-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

.categories-scroll-btn:active,
.category-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.4);
}

.categories-scroll-btn.left,
.category-scroll-btn.left {
    left: -24px;
}

.categories-scroll-btn.right,
.category-scroll-btn.right {
    right: -24px;
}

.categories-scroll-btn i,
.category-scroll-btn i {
    transition: transform 0.2s ease;
}

.categories-scroll-btn:hover i,
.category-scroll-btn:hover i {
    transform: scale(1.1);
}

/* Disabled state */
.categories-scroll-btn:disabled,
.category-scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
}

.categories-scroll-btn:disabled:hover,
.category-scroll-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
}

/* Focus state for accessibility */
.categories-scroll-btn:focus,
.category-scroll-btn:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}

/* Responsive adjustments for scroll buttons */
@media (max-width: 1024px) {
    .categories-scroll-btn,
    .category-scroll-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .categories-scroll-btn.left,
    .category-scroll-btn.left {
        left: -22px;
    }
    
    .categories-scroll-btn.right,
    .category-scroll-btn.right {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .categories-scroll-btn,
    .category-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .categories-scroll-btn.left,
    .category-scroll-btn.left {
        left: -20px;
    }
    
    .categories-scroll-btn.right,
    .category-scroll-btn.right {
        right: -20px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .categories-scroll-container {
        margin: 1rem 0;
        padding: 0 0.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .categories-scroll-content {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .category-scroll-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
        scroll-snap-align: start;
        height: auto;
        min-height: auto;
    }
    
    .category-card-content {
        height: auto;
        min-height: auto;
    }
    
    .category-card-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .category-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .category-card-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .categories-scroll-btn,
    .category-scroll-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .categories-scroll-btn.left,
    .category-scroll-btn.left {
        left: -22px;
    }
    
    .categories-scroll-btn.right,
    .category-scroll-btn.right {
        right: -22px;
    }
}

/* iPhone and Small Mobile Devices */
@media (max-width: 576px) {
    .categories-scroll-container {
        margin: 0.5rem 0;
        padding: 0 0.25rem;
    }
    
    .categories-scroll-content {
        gap: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .category-scroll-card {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
        padding: 1.25rem;
        border-radius: 0.75rem;
        height: auto;
        min-height: auto;
    }
    
    .category-card-content {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    .category-card-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        border-radius: 0.75rem;
    }
    
    .category-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card-description {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .category-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .category-arrow {
        font-size: 0.875rem;
    }
    
    /* Hide scroll buttons on very small screens */
    .categories-scroll-btn,
    .category-scroll-btn {
        display: none;
    }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .category-scroll-card {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
        padding: 1rem;
        height: auto;
        min-height: auto;
    }
    
    .category-card-content {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    .category-card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .category-card-title {
        font-size: 0.95rem;
    }
    
    .category-card-description {
        font-size: 0.7rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .category-scroll-card {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
        padding: 1rem;
        height: auto;
        min-height: auto;
    }
    
    .category-card-content {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    .category-card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card-description {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

/* Smooth scrolling behavior */
.categories-scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Focus styles for accessibility */
.category-scroll-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.categories-scroll-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Scroll Indicators */
.categories-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.scroll-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.scroll-indicator:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Products Z-index management */
.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* Products Max Width Utilities */
.max-w-3xl {
    max-width: 48rem;
}

/* Products Additional Animation Delays */
.stagger-7 {
    animation-delay: 0.7s;
}

.stagger-8 {
    animation-delay: 0.8s;
}

.stagger-9 {
    animation-delay: 0.9s;
}

/* =
==== HERO CAROUSEL STYLES ===== */

/* Hero Carousel Container */
.hero-carousel-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 50%, #1e40af 100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Hero Slide Base */
.hero-slide {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.9) 0%, rgba(3, 105, 161, 0.8) 100%);
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-swatch {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: heroFloat 8s ease-in-out infinite;
}

.floating-swatch.swatch-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E91E63, #AD1457);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-swatch.swatch-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    top: 65%;
    right: 12%;
    animation-delay: 2s;
}

.floating-swatch.swatch-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.floating-swatch.swatch-4 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    top: 35%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes heroFloat {

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

    25% {
        transform: translateY(-30px) rotate(90deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }

    75% {
        transform: translateY(-25px) rotate(270deg);
    }
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 3;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #22d3ee 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

/* Hero Features */
.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-item i {
    font-size: 1.25rem;
}

/* Quality Metrics */
.quality-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.metric-content h5 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.metric-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

/* Global Stats */
.global-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.global-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.global-stat i {
    font-size: 2rem;
    color: white;
}

.global-stat h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.global-stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Hero Visual Components */
.hero-visual {
    position: relative;
    z-index: 3;
}

/* Color Palette Showcase */
.color-palette-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.palette-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.color-sample {
    width: 120px;
    height: 120px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.color-sample:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.color-sample::after {
    content: attr(data-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.color-sample:hover::after {
    transform: translateY(0);
}

/* Product Showcase */
.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.product-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.product-category h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.color-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.color-dots .dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Quality Showcase */
.quality-showcase {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
}

.quality-badge i {
    font-size: 1.5rem;
    color: #FFD700;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    color: white;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-arrow {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* World Map */
.world-map {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #22d3ee;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    animation: mapPulse 2s infinite;
}

.map-point.point-1 {
    top: 30%;
    left: 20%;
}

.map-point.point-2 {
    top: 25%;
    left: 50%;
}

.map-point.point-3 {
    top: 40%;
    left: 75%;
}

.map-point.point-4 {
    top: 45%;
    left: 60%;
}

.map-point.point-5 {
    top: 60%;
    left: 45%;
}

@keyframes mapPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-center i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #22d3ee;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quality-metrics,
    .global-stats {
        gap: 1rem;
    }

    .color-sample {
        width: 100px;
        height: 100px;
    }

    .world-map {
        width: 350px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 80vh;
    }

    .min-vh-75 {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .floating-swatch {
        display: none;
    }

    .color-sample {
        width: 80px;
        height: 80px;
    }

    .palette-row {
        gap: 0.75rem;
    }

    .quality-metrics,
    .global-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .process-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .world-map {
        width: 300px;
        height: 200px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel-section {
        min-height: 70vh;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .min-vh-75 {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .color-sample {
        width: 70px;
        height: 70px;
    }

    .world-map {
        width: 280px;
        height: 180px;
    }

    .carousel-indicators {
        bottom: 1rem;
    }
}

/* Animation Delays for Staggered Effects */
.hero-content>* {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-features {
    animation-delay: 0.8s;
}

.hero-actions {
    animation-delay: 1s;
}

.hero-stats {
    animation-delay: 1.2s;
}

.quality-metrics {
    animation-delay: 0.8s;
}

.global-stats {
    animation-delay: 0.8s;
}

.hero-visual>* {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* ===== 
ENHANCED PRODUCTS PAGE STYLES ===== */

/* Product Color Shade (replaces image) */
.products-product-color-shade {
    position: relative;
    overflow: hidden;
    height: 85px;
    border-radius: 0.75rem 0.75rem 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.products-product-card:hover .products-product-color-shade {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.color-shade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem 0.75rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-product-card:hover .color-shade-overlay {
    opacity: 1;
}

/* Technical Details Section */

.tech-detail {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.tech-detail:last-child {
    margin-bottom: 0;
}

.tech-label {
    font-weight: 600;
    color: var(--primary);
    min-width: 50px;
}

.tech-value {
    color: var(--muted);
    font-weight: 500;
    /* text-align: right; */
    flex: 1;
    /* margin-left: 0.5rem; */
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Enhanced Product Card for 6-per-row layout */
.products-product-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.products-product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.products-product-info {
    padding: 1rem;
}

.products-product-category {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.products-product-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    line-height: 1.3;
}

/* Categories Carousel Enhancements */
#categoriesCarousel .carousel-control-prev,
#categoriesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(8, 145, 178, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#categoriesCarousel .carousel-control-prev {
    left: -25px;
}

#categoriesCarousel .carousel-control-next {
    right: -25px;
}

#categoriesCarousel .carousel-control-prev:hover,
#categoriesCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#categoriesCarousel .carousel-indicators {
    bottom: -50px;
}

#categoriesCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(8, 145, 178, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#categoriesCarousel .carousel-indicators button.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Modal Color Shade */
.modal-color-shade {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.modal-color-shade .products-color-swatches-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.modal-color-shade .products-color-swatch {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Inquiry Cart Styles */
.inquiry-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Notification Toast */
.notification-toast {
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments for 6-per-row */
@media (max-width: 1199.98px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 25%;
        /* 4 per row on medium-large screens */
    }
}

@media (max-width: 991.98px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
        /* 3 per row on medium screens */
    }
}

@media (max-width: 767.98px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
        /* 2 per row on small screens */
    }

    .products-product-color-shade {
        height: 120px;
    }



    .tech-detail {
        font-size: 0.7rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.25rem;
    }

    .products-product-info {
        padding: 0.75rem;
    }

    .products-product-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
        /* 1 per row on extra small screens */
    }

    #categoriesCarousel .carousel-control-prev,
    #categoriesCarousel .carousel-control-next {
        display: none;
        /* Hide carousel controls on mobile */
    }

    #categoriesCarousel .carousel-indicators {
        bottom: -30px;
    }
}

/* Loading Animation for Products */
.products-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(8, 145, 178, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: productsSpin 1s ease-in-out infinite;
}

@keyframes productsSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Color Swatches */
.products-color-swatches {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.25rem;
    z-index: 2;
}

.products-color-swatch {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-color-swatch:hover {
    transform: scale(1.2);
    z-index: 3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Category Card Enhancements for Carousel */
.products-category-card {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-category-swatches {
    margin: 1rem 0;
}

.products-mini-swatch {
    width: 1.5rem;
    height: 1.5rem;
}

/* Smooth Transitions */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

/* 
Inquiry Modal Styles */
.inquiry-item {
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.inquiry-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.inquiry-item-color {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inquiry-counter {
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#inquiryCartBtn {
    transition: all 0.3s ease;
}

#inquiryCartBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-radius: 16px 16px 0 0;
}

.inquiry-actions .form-control {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.inquiry-actions .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25);
}

.inquiry-actions .form-label {
    font-weight: 600;
    color: var(--foreground);
}

/* WhatsApp Button Styling */
.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Notification Styles */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #664d03;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }

    .inquiry-item .col-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .inquiry-item .col-8 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .inquiry-item .col-2:last-child {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .inquiry-item-color {
        width: 40px !important;
        height: 40px !important;
    }

    .inquiry-item h6 {
        font-size: 0.9rem;
    }

    .inquiry-item .small {
        font-size: 0.75rem;
    }
}

/* Animation for inquiry items */
.inquiry-item {
    animation: slideInUp 0.3s ease-out;
}

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

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

/* Empty state styling */
#inquiryCartEmpty i {
    opacity: 0.5;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

/* Sticky
 Inquiry Cart Button */
.sticky-inquiry-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounceIn 0.6s ease-out;
}

.sticky-inquiry-cart .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sticky-inquiry-cart .btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.sticky-inquiry-cart .btn:active {
    transform: scale(0.95);
}

.sticky-inquiry-cart .btn i {
    font-size: 1.2rem;
    color: white;
}

.sticky-inquiry-counter {
    font-size: 0.7rem;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* Pulse animation for counter */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Bounce in animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide sticky button when modal is open */
body.modal-open .sticky-inquiry-cart {
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-inquiry-cart {
        bottom: 20px;
        right: 20px;
    }

    .sticky-inquiry-cart .btn {
        width: 55px;
        height: 55px;
    }

    .sticky-inquiry-cart .btn i {
        font-size: 1.1rem;
    }

    .sticky-inquiry-counter {
        font-size: 0.65rem;
        min-width: 18px;
        height: 18px;
    }
}

/* Show/hide animation */
.sticky-inquiry-cart.show {
    animation: slideInUp 0.4s ease-out;
}

.sticky-inquiry-cart.hide {
    animation: slideOutDown 0.4s ease-in;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

/* =
==== ENHANCED MAYUR COLOUR ANIMATIONS ===== */

/* Pulse Animation for Inquiry Cart */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Sticky Inquiry Cart Enhanced Styling */
.sticky-inquiry-cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-inquiry-cart .btn {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-inquiry-cart .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.4);
}

/* Enhanced Modal Styling */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.modal-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body {
    background: var(--white);
}

.modal-footer {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Enhanced Form Controls */
.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25);
    transform: translateY(-2px);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primary-light);
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    color: var(--foreground);
    line-height: 1.2;
}

.display-3 {
    font-weight: var(--font-weight-extrabold);
    font-size: 3.5rem;
}

.display-5 {
    font-weight: var(--font-weight-bold);
    font-size: 2.5rem;
}

.lead {
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
}

/* Enhanced Badge Styling */
.badge {
    font-weight: var(--font-weight-medium);
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.bg-primary {
    background: var(--primary-gradient) !important;
}

/* Enhanced Card Hover Effects */
.card,
.products-category-card,
.products-feature-card {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover,
.products-category-card:hover,
.products-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-sm);
}

.navbar-nav .nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--foreground);
    transition: all var(--transition-speed) ease;
    position: relative;
    padding: 0.75rem 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

footer h6 {
    color: white;
    font-weight: var(--font-weight-semibold);
    position: relative;
    padding-bottom: 0.5rem;
}

footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .sticky-inquiry-cart {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-inquiry-cart .btn {
        padding: 0.875rem 1.25rem;
        border-radius: 50px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .content-area {
        padding: 1.5rem;
    }

    .sticky-inquiry-cart .btn {
        padding: 0.75rem 1rem;
    }

    .display-3 {
        font-size: 2rem;
    }
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Accessibility Enhancements */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .sticky-inquiry-cart,
    .navbar,
    footer {
        display: none !important;
    }

    .products-hero-section {
        background: white !important;
        color: black !important;
    }

    .products-text-gradient {
        color: var(--primary) !important;
        -webkit-text-fill-color: var(--primary) !important;
    }
}

/* ====
= STICKY INQUIRY CART BUTTON - ICON ONLY DESIGN ===== */

/* Sticky Inquiry Cart Container */
.sticky-inquiry-cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: slideInFromRight 0.5s ease-out;
}

/* Main Inquiry Button - Perfect Circle with Icon Only */
.sticky-inquiry-cart .btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Button Hover Effects */
.sticky-inquiry-cart .btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 50%, #1e3a8a 100%);
}

.sticky-inquiry-cart .btn:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

/* Button Shimmer Effect */
.sticky-inquiry-cart .btn::before {

    visibility: hidden;
}

.sticky-inquiry-cart .btn:hover::before {
    left: 100%;
}

/* Counter Badge */
.sticky-inquiry-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

/* Pulse Animation for Counter */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }
}

/* Slide in Animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

/* Button Icon Styling */
.sticky-inquiry-cart .btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.sticky-inquiry-cart .btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-inquiry-cart {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .sticky-inquiry-cart .btn {
        width: 56px;
        height: 56px;
    }

    .sticky-inquiry-cart .btn i {
        font-size: 1.2rem;
    }

    .sticky-inquiry-counter {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 576px) {
    .sticky-inquiry-cart {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-inquiry-cart .btn {
        width: 52px;
        height: 52px;
    }

    .sticky-inquiry-cart .btn i {
        font-size: 1.1rem;
    }

    .sticky-inquiry-counter {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -5px;
        right: -5px;
    }
}

/* Enhanced States */
.sticky-inquiry-cart.has-items .btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: gentleBounce 2s ease-in-out infinite;
}

.sticky-inquiry-cart.has-items .btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@keyframes gentleBounce {

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

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

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

/* Loading State */
.sticky-inquiry-cart .btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.sticky-inquiry-cart .btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltip Enhancement */
.sticky-inquiry-cart .btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 1001;
}

.sticky-inquiry-cart .btn[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    margin-bottom: 3px;
    z-index: 1001;
}

/* 
===== STICKY INQUIRY CART BUTTON - COMPLETE STYLES ===== */

/* Sticky Inquiry Cart Container */
.sticky-inquiry-cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Main Inquiry Button - Perfect Circle with Icon Only */
.sticky-inquiry-cart .btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    color: white;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
    /* KEY FIX: Allow counter to show outside button */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Button Hover Effects */
.sticky-inquiry-cart .btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 50%, #1e3a8a 100%);
    color: white;
}

.sticky-inquiry-cart .btn:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

/* Button Icon Styling */
.sticky-inquiry-cart .btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    color: white;
}

.sticky-inquiry-cart .btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Counter Badge - FIXED POSITIONING */
.sticky-inquiry-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
    min-width: 24px;
    line-height: 1;
    pointer-events: none;
    /* Prevent interference with button clicks */
}

/* Pulse Animation for Counter */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }
}

/* Button Shimmer Effect */
.sticky-inquiry-cart .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    border-radius: 50%;
}

.sticky-inquiry-cart .btn:hover::before {
    left: 100%;
}

/* Slide in Animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

/* Enhanced States */
.sticky-inquiry-cart.has-items .btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: gentleBounce 2s ease-in-out infinite;
}

.sticky-inquiry-cart.has-items .btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@keyframes gentleBounce {

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-inquiry-cart {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .sticky-inquiry-cart .btn {
        width: 56px;
        height: 56px;
    }

    .sticky-inquiry-cart .btn i {
        font-size: 1.2rem;
    }

    .sticky-inquiry-counter {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 576px) {
    .sticky-inquiry-cart {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-inquiry-cart .btn {
        width: 52px;
        height: 52px;
    }

    .sticky-inquiry-cart .btn i {
        font-size: 1.1rem;
    }

    .sticky-inquiry-counter {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -5px;
        right: -5px;
    }
}

/* Hide sticky button when modal is open */
body.modal-open .sticky-inquiry-cart {
    opacity: 0.3;
    pointer-events: none;
}

/* Show/hide animation */
.sticky-inquiry-cart.show {
    animation: slideInUp 0.4s ease-out;
}

.sticky-inquiry-cart.hide {
    animation: slideOutDown 0.4s ease-in;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* ==
=== HORIZONTAL SCROLL CATEGORIES STYLES (MINIMAL DESIGN) ===== */

/* Categories Scroll Container */
.categories-scroll-container {
    position: relative;
    margin: 0 -1rem;
    padding: 0 1rem;
}

/* Horizontal Scroll Wrapper */
.categories-horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 1rem 0 2rem 0;
}

.categories-horizontal-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Scroll Content Container */
.categories-scroll-content {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    min-width: max-content;
}

/* Category Scroll Cards - Minimal Design */
.category-scroll-card {
    position: relative;
    width: 45rem;
    min-width: 320px;
    min-height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.category-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #0891b2;
}

/* Category Card Content */
.category-card-content {
    position: relative;
    z-index: 2;
    /* padding: 0px 1rem; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Category Card Icon - Minimal Style */
/* .category-card-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
} */

.category-card-icon i {
    font-size: 1.5rem;
    color: f8fafc;
    transition: all 0.3s ease;
}

.category-scroll-card:hover .category-card-icon {
    background: #0891b2;
    border-color: #0891b2;
    transform: scale(1.05);
}

.category-scroll-card:hover .category-card-icon i {
    color: white;
}

/* Category Card Title */
.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Category Card Description */
.category-card-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Category Card Stats */
.category-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-badge {
    background: var(--primary);
    color: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.category-scroll-card:hover .category-badge {
    background: #0891b2;
    color: white;
    border-color: #000000;
}

.category-arrow {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.category-arrow i {
    color: #64748b;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-scroll-card:hover .category-arrow {
    background: #0891b2;
    border-color: #0891b2;
    transform: translateX(4px);
}

.category-scroll-card:hover .category-arrow i {
    color: white;
}



/* Scroll Indicators */
.categories-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scroll-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator.active {
    background: #0891b2;
    transform: scale(1.2);
}

.scroll-indicator:hover {
    background: #0891b2;
    transform: scale(1.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .categories-scroll-container {
        margin: 0 -0.5rem;
        padding: 0 0.5rem;
    }

    .categories-scroll-content {
        gap: 1rem;
        padding: 0 1rem;
    }

    .category-scroll-card {
        width: 280px;
        min-width: 280px;
    }

    .category-card-content {
        padding: 1.5rem;
    }

    .category-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .category-card-icon i {
        font-size: 1.25rem;
    }

    .category-card-title {
        font-size: 1.125rem;
    }

    .category-card-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .categories-scroll-btn {
        width: 40px;
        height: 40px;
    }

    .categories-scroll-left {
        left: -20px;
    }

    .categories-scroll-right {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .categories-scroll-btn {
        display: none;
    }

    .category-scroll-card {
        width: 260px;
        min-width: 260px;
    }

    .category-card-content {
        padding: 1.25rem;
    }

    .category-card-icon {
        width: 45px;
        height: 45px;
    }

    .category-card-title {
        font-size: 1rem;
    }

    .category-card-description {
        font-size: 0.75rem;
    }
}

/* Smooth scroll animation */
@media (prefers-reduced-motion: no-preference) {
    .categories-horizontal-scroll {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.category-scroll-card:focus {
    outline: 2px solid #0891b2;
    outline-offset: 2px;
}

.scroll-indicator:focus {
    outline: 2px solid #0891b2;
    outline-offset: 2px;
}

/* ===== QUALITY POLICY PAGE STYLES ===== */

/* Quality Hero Section */
.quality-hero-section {
    min-height: 50vh;
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.quality-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.quality-hero-content {
    color: white;
    z-index: 3;
    position: relative;
}

.quality-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.quality-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* Quality Floating Elements */
.quality-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.quality-floating-swatch {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: qualityFloat 6s ease-in-out infinite;
}

.quality-swatch-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E91E63, #AD1457);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quality-swatch-2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.quality-swatch-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.quality-swatch-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes qualityFloat {

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

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Quality Policy Card */
.quality-policy-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.quality-policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.policy-content .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-left: 0;
    background: rgba(8, 145, 178, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

/* R&D Section */
.rd-content .section-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.rd-visual {
    position: relative;
}

.lab-illustration {
    position: relative;
    padding: 2rem;
}

.lab-illustration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Quality Commitment Cards */
.commitment-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.05), transparent);
    transition: left 0.5s ease;
}

.commitment-card:hover::before {
    left: 100%;
}

.commitment-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.commitment-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 1rem;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(8, 145, 178, 0.2);
}

.commitment-icon i {
    transition: transform 0.3s ease;
}

.commitment-card:hover .commitment-icon i {
    transform: scale(1.1);
}

/* Quality Policy Responsive */
@media (max-width: 768px) {
    .quality-hero-section {
        min-height: 40vh;
    }

    .quality-hero-title {
        font-size: 2.5rem;
    }

    .quality-hero-subtitle {
        font-size: 1rem;
    }

    .quality-floating-swatch {
        display: none;
    }

    .quality-policy-card {
        padding: 2rem;
    }

    .policy-content .lead {
        font-size: 1rem;
        padding: 1rem;
    }

    .commitment-card {
        padding: 1.5rem;
    }

    .commitment-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .quality-hero-title {
        font-size: 2rem;
    }

    .quality-policy-card {
        padding: 1.5rem;
    }

    .rd-content .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Min height utilities */
.min-vh-50 {
    min-height: 50vh;
}

/* Additional z-index utilities */
.z-3 {
    z-index: 3;
}