/* DMoon Website Styles - Printec Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary-color: #1a202c;
    --secondary-color: #ffffff;
    --accent-yellow: #fbbf24;
    --accent-purple: #8b5cf6;
    --accent-teal: #06b6d4;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --gray-light: #f8fafc;
    --gray-medium: #64748b;
    --gray-dark: #0f172a;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Improve scroll performance */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Smooth scrolling for the entire page */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Improve scroll performance */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    /* Failsafe: auto-hide preloader if JS does not run */
    animation: preloaderFailsafeHide 0s linear 5s forwards;
}

@keyframes preloaderFailsafeHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-gif {
    max-width: 150px;
    height: auto;
    animation-play-state: running;
    image-rendering: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    color: var(--accent-purple);
}

/* Navigation - Minimal Design */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    will-change: transform, background-color;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Navbar Container Fluid */
.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 24px;
    padding-right: 24px;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 48px;
}

/* Center Navigation */
.navbar-nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav-center .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav-center .nav-item {
    margin-right: 16px;
}

.navbar-nav-center .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav-center .nav-link {
    color: #333333 !important;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: 0.01em;
    will-change: color;
}

.navbar-nav-center .nav-link.active {
    color: #6366f1 !important;
}

.navbar-nav-center .nav-link:hover {
    color: #6366f1 !important;
}

.navbar-nav-center .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #6366f1;
    transition: width 0.3s ease;
}

.navbar-nav-center .nav-link.active::after,
.navbar-nav-center .nav-link:hover::after {
    width: 100%;
}

/* Dropdown Toggle Styling - Line Arrow on Right */
.navbar-nav-center .nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.navbar-nav-center .dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #6b7280;
    border-bottom: none;
    background: none;
    opacity: 0.6;
    transition: all 0.2s ease;
    position: static;
}

.navbar-nav-center .dropdown:hover .dropdown-toggle::after {
    opacity: 1;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.brand-logo:hover {
    opacity: 0.8;
}

/* Right Navigation */
.navbar-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Search Container - Enhanced Design */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 320px;
    height: 44px;
    padding: 0 44px 0 18px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    font-weight: 400;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.search-input:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.search-input:focus {
    outline: none;
    border-color: #9ca3af;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.search-container:hover .search-icon {
    color: #1a1a1a;
}

.search-input:focus ~ .search-icon {
    color: #1a1a1a;
}

/* Search Autocomplete Dropdown */
.search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-autocomplete.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: linear-gradient(90deg, #f0f9ff 0%, #f9fafb 100%);
    transform: translateX(4px);
    padding-left: 20px;
}

.autocomplete-item.active {
    background: #eff6ff;
}

.autocomplete-icon {
    color: #9ca3af;
    font-size: 14px;
    width: 20px;
    flex-shrink: 0;
}

.autocomplete-text {
    flex: 1;
    font-size: 14px;
    color: #1a1a1a;
}

.autocomplete-category {
    font-size: 12px;
    color: #6b7280;
    font-weight: 300;
}

.autocomplete-no-results {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.autocomplete-no-results i {
    font-size: 24px;
    color: #d1d5db;
    margin-bottom: 4px;
}

.autocomplete-loading {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Action Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-action-btn:hover {
    background: #f3f4f6;
    color: #333333;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #6366f1;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    border: 2px solid #ffffff;
}

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    padding: 0.5rem;
    display: block;
    border-radius: 0.375rem;
}

/* Hide mobile toggle on desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(102, 92, 246, 0.25);
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(0,0,0,0.05);
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--gray-dark);
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--gray-dark);
    transition: var(--transition);
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Minimal Dropdown Menu Styles */
.dropdown-menu {
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 8px;
    min-width: 250px;
    background: #ffffff;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1050;
    position: absolute;
}

/* Two-Column Dropdown Layout - Enhanced Design */
.dropdown-menu.dropdown-two-columns {
    min-width: 650px;
    max-width: 850px;
    padding: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Main container - holds image and columns side by side */
.dropdown-main-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

/* Image on the side - Enhanced */
.dropdown-image-side {
    flex-shrink: 0;
    width: 200px;
    padding: 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-image-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.dropdown-image-side:hover {
    transform: translateY(-2px);
}

.dropdown-image-side img {
    width: 100%;
    height: auto;
    max-height: 220px;
    border-radius: 8px;
    box-shadow: none;
    border: none;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-image-side:hover img {
    transform: scale(1.03);
}

/* Column container */
.dropdown-column-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    flex: 1;
}

.dropdown-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 20px;
    min-width: 0;
}

.dropdown-column:not(:last-child) {
    border-right: 2px solid #e0e7ff;
    position: relative;
}

.dropdown-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #c7d2fe 20%, #c7d2fe 80%, transparent 100%);
}

/* Enhanced dropdown items */
.dropdown-column .dropdown-item {
    padding: 12px 16px;
    margin-bottom: 4px;
    white-space: nowrap;
    border-radius: 8px;
    color: #334155;
    font-weight: 500;
    font-size: 14.5px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.dropdown-column .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    transform: translateX(-3px);
    transition: transform 0.25s ease;
}

.dropdown-column .dropdown-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    color: #1e40af;
    transform: translateX(4px);
    border-color: #bfdbfe;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.dropdown-column .dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-column .dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

.dropdown-column .dropdown-submenu {
    width: 100%;
}

/* Add subtle animation on dropdown open */
@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.dropdown-two-columns.show {
    animation: dropdownSlideIn 0.3s ease-out;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mega-menu-content {
    display: flex;
    min-height: 320px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.dropdown-menu.show .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-columns {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 32px;
    gap: 32px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-column:nth-child(1) {
    animation-delay: 0.1s;
}

.mega-menu-column:nth-child(2) {
    animation-delay: 0.15s;
}

.mega-menu-column:nth-child(3) {
    animation-delay: 0.2s;
}

.mega-menu-column:nth-child(4) {
    animation-delay: 0.25s;
}

.mega-menu-header {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.mega-menu-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-purple);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-item {
    margin-bottom: 8px;
}

.mega-menu-link {
    display: block;
    padding: 8px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 6px;
    position: relative;
    transform: translateX(0);
}

.mega-menu-link:hover {
    color: #374151;
    transform: translateX(4px);
}

.mega-menu-link i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 4px;
}

.mega-menu-visual {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.mega-menu-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mega-menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-menu-image:hover .mega-menu-img {
    transform: scale(1.05);
}

.mega-menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mega-menu-image:hover .mega-menu-overlay {
    transform: translateY(0);
}

.mega-menu-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.mega-menu-badge {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.mega-menu-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Updated for overlay title */
.mega-menu-overlay .mega-menu-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.mega-menu-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Updated for overlay subtitle */
.mega-menu-overlay .mega-menu-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    text-align: left;
}

.mega-menu-cta {
    display: inline-block;
    background: #6366f1;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.mega-menu-cta:hover {
    background: #5b21b6;
    color: white;
}

.mega-menu-products {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.mega-menu-product {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-align: center;
    padding: 8px;
    transition: var(--transition);
    transform: rotate(-5deg);
}

.mega-menu-product:nth-child(2) {
    transform: rotate(3deg);
}

.mega-menu-product:nth-child(3) {
    transform: rotate(-2deg);
}

.mega-menu-product:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Dropdown Item Styles */
.dropdown-item {
    padding: 10px 18px;
    border-radius: 6px;
    margin-bottom: 3px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.dropdown-item:hover {
    background: var(--gray-light);
    color: var(--accent-purple);
}

.dropdown-item img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

/* Compact dropdown styling override */
.navbar-nav-center .dropdown-menu .dropdown-item {
    padding: 10px 18px;
    margin-bottom: 3px;
    line-height: 1.5;
    font-size: 14px;
}

.navbar-nav-center .dropdown-menu {
    padding: 12px 0;
    min-width: 250px;
    overflow: visible;
    z-index: 1050;
}

.navbar-nav-center .dropdown-menu.show {
    overflow: visible;
}

/* Multi-level dropdown styles */
.dropdown-submenu {
    position: relative;
    overflow: visible;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 2px;
    border-radius: 8px;
    min-width: 480px;
    width: 480px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 0;
    flex-direction: row;
    align-items: stretch;
}

.submenu-image {
    width: 120px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: stretch;
}

.submenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.submenu:hover .submenu-image img {
    transform: scale(1.05);
}

.submenu-items {
    flex: 1;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    min-width: 0;
}

/* Submenu items styling */
.submenu .dropdown-item {
    padding: 10px 16px;
    margin: 0 8px 2px 8px;
    line-height: 1.4;
    font-size: 14px;
    white-space: nowrap;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: auto;
    min-height: 36px;
    overflow: visible;
}

.submenu .dropdown-item:hover {
    background: #f3f4f6;
    color: #6366f1;
    transform: translateX(4px);
}

/* Show submenu on hover */
.dropdown-submenu:hover .submenu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Show submenu when JavaScript adds show class */
.dropdown-submenu .submenu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow styling */
.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.has-submenu .arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.2s ease;
}

.dropdown-submenu:hover .has-submenu .arrow {
    transform: rotate(0deg);
}


.dropdown-submenu {
    cursor: pointer;
}

/* Hero Banner - Redesigned with More Space and Creative Animations */
/* Banner Slider Container */
.hero-banner-slider {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    width: 100%;
}

/* Individual Banner Slide */
.hero-banner {
    background: #150336;
    padding: 120px 0 80px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 5;
    contain: layout style paint;
    transition: opacity 0.5s ease-in-out, padding-left 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    padding-left: 50px;
}

/* Only the active slide is visible (first slide gets .active from PHP on load) */
.hero-banner.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    padding-left: 0 !important;
    z-index: 10 !important;
}

.hero-slide {
    transition: opacity 0.5s ease-in-out, padding-left 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    pointer-events: none;
}

.hero-slider-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #8b5cf6;
    font-size: 18px;
}

.hero-slider-btn:hover {
    background: #8b5cf6;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    width: 30px;
    border-radius: 6px;
}

/* Mobile Slider Controls */
@media (max-width: 768px) {
    .hero-slider-controls {
        padding: 0 20px;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 25px;
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    display: none;
}

/* Grid Pattern Overlay */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(59, 130, 246, 0.08) 29px, rgba(59, 130, 246, 0.08) 30px),
        repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(59, 130, 246, 0.08) 29px, rgba(59, 130, 246, 0.08) 30px);
    pointer-events: none;
    z-index: 2;
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    padding-right: 40px;
}

/* Hero Visual Showcase */
.hero-visual-showcase {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: visible;
}

/* Animated Background Elements for Showcase Image */
.showcase-abstract-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.showcase-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.showcase-circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(168, 85, 247, 0.4));
    top: 10%;
    right: 10%;
    animation: rotateCircle 20s linear infinite;
}

.showcase-circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(96, 165, 250, 0.5));
    bottom: 15%;
    left: 5%;
    animation: pulseCircle 15s ease-in-out infinite;
}

.showcase-circle-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(34, 211, 238, 0.4));
    top: 50%;
    left: -5%;
    animation: floatCircleSide 18s ease-in-out infinite;
}

.showcase-circle-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(139, 92, 246, 0.5));
    bottom: 10%;
    right: 15%;
    animation: bounceCircle 12s ease-in-out infinite;
}

.showcase-circle-5 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.6), rgba(59, 130, 246, 0.4));
    top: 30%;
    right: -3%;
    animation: pulseCircle 10s ease-in-out infinite reverse;
}

/* Ring/Outline Circles */
.showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.3);
    background: transparent;
}

.showcase-ring-1 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 10%;
    animation: expandRing 14s ease-in-out infinite;
}

.showcase-ring-2 {
    width: 130px;
    height: 130px;
    bottom: 25%;
    right: 8%;
    animation: expandRing 16s ease-in-out infinite;
    animation-delay: -5s;
}

/* Showcase Circle Animations */
@keyframes rotateCircle {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

@keyframes floatCircleSide {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(30px) translateY(-40px);
    }
    50% {
        transform: translateX(50px) translateY(0px);
    }
    75% {
        transform: translateX(30px) translateY(40px);
    }
}

@keyframes bounceCircle {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-50px) scale(1.1);
    }
    50% {
        transform: translateY(-20px) scale(0.9);
    }
    75% {
        transform: translateY(-40px) scale(1.05);
    }
}

@keyframes expandRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

/* Animated Abstract Background Elements */
.hero-abstract-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.abstract-shape {
    position: absolute;
    opacity: 0.15;
}

/* Circles */
.abstract-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.6));
    animation: floatAbstract 12s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(96, 165, 250, 0.5));
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 10%;
    animation-delay: -6s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(168, 85, 247, 0.4));
}

/* Squares/Rectangles */
.abstract-square {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(6, 182, 212, 0.4));
    border-radius: 10px;
    animation: rotateAbstract 15s linear infinite;
}

.square-1 {
    width: 90px;
    height: 90px;
    top: 30%;
    left: 5%;
    animation-delay: -2s;
}

.square-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 20%;
    animation-delay: -5s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(99, 102, 241, 0.5));
}

/* Triangles */
.abstract-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(59, 130, 246, 0.3);
    animation: pulseAbstract 10s ease-in-out infinite;
}

.triangle-1 {
    top: 45%;
    right: 5%;
    animation-delay: -1s;
}

.triangle-2 {
    bottom: 25%;
    right: 30%;
    animation-delay: -4s;
    border-bottom-color: rgba(139, 92, 246, 0.3);
    transform: rotate(180deg);
}

/* Lines/Dots */
.abstract-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    animation: slideAbstract 8s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.line-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: -3s;
    transform: rotate(-30deg);
}

.abstract-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.6);
    animation: blinkAbstract 4s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    left: 8%;
    animation-delay: -1s;
}

.dot-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: -2s;
}

.dot-4 {
    top: 35%;
    right: 25%;
    animation-delay: -3s;
}

/* Abstract Animations */
@keyframes floatAbstract {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(0px);
    }
    75% {
        transform: translateY(-30px) translateX(-20px);
    }
}

@keyframes rotateAbstract {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulseAbstract {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.3);
    }
}

@keyframes slideAbstract {
    0%, 100% {
        transform: translateX(0px);
        opacity: 0.15;
    }
    50% {
        transform: translateX(50px);
        opacity: 0.4;
    }
}

@keyframes blinkAbstract {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

.showcase-image {
    width: 100%;
    max-width: 700px;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    animation: showcaseLoopAnimation 10s ease-in-out infinite !important;
    transform-origin: center center;
    transition: filter 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Centered Image Layout - When no text elements */
.hero-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
}

.showcase-image-centered {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Rotating Text Circle */
.rotating-text-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    z-index: 1;
    pointer-events: none;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateText 30s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Ensure banner image is above rotating text */
.showcase-image {
    position: relative;
    z-index: 2;
}

/* Hover Animation - Enhances the loop animation */
.showcase-image:hover {
    filter: drop-shadow(0 40px 100px rgba(139, 92, 246, 0.6)) brightness(1.08) contrast(1.05) !important;
    animation-play-state: running;
}

/* Add glow effect on hover */
.hero-visual-showcase::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
}

.hero-visual-showcase:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Enhanced Loop Animation */
@keyframes showcaseLoopAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    }
    15% {
        transform: translateY(-10px) rotate(1deg) scale(1.01);
        filter: drop-shadow(0 25px 70px rgba(59, 130, 246, 0.2));
    }
    30% {
        transform: translateY(-20px) rotate(2deg) scale(1.03);
        filter: drop-shadow(0 30px 75px rgba(139, 92, 246, 0.25));
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.05);
        filter: drop-shadow(0 35px 80px rgba(139, 92, 246, 0.3));
    }
    65% {
        transform: translateY(-20px) rotate(-2deg) scale(1.03);
        filter: drop-shadow(0 30px 75px rgba(59, 130, 246, 0.25));
    }
    85% {
        transform: translateY(-10px) rotate(-1deg) scale(1.01);
        filter: drop-shadow(0 25px 70px rgba(96, 165, 250, 0.2));
    }
}

.hero-badge {
    display: inline-block;
    background: var(--hero-badge-bg, var(--accent-purple));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    animation: badgeFadeIn 1s ease-out;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    animation: titleSlideIn 1.2s ease-out;
}

.hero-title-small {
    font-size: 3rem;
}

.hero-title-medium {
    font-size: 4.2rem;
}

.hero-title-large {
    font-size: 7rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
    animation: subtitleFadeIn 1.4s ease-out;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--hero-btn-bg, #ffffff);
    color: var(--hero-btn-color, #1a202c);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: ctaFadeIn 1.6s ease-out;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    transition: left 0.6s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    color: #ffffff;
    background: var(--hero-btn-hover-bg, #8b5cf6);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    z-index: 2;
}

/* Floating Images */
.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: floatRandom 8s ease-in-out infinite;
}

.floating-item.item-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-item.item-2 {
    top: 60%;
    right: 20%;
    animation-delay: -2s;
}

.floating-item.item-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

.floating-item.item-4 {
    top: 30%;
    right: 10%;
    animation-delay: -6s;
}

.floating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.floating-item:hover .floating-img {
    transform: scale(1.1);
}

.floating-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    animation: glowPulse 3s ease-in-out infinite;
}

/* Central Hero Circle */
.hero-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-main-image.active {
    opacity: 1;
}

.hero-circle-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
    animation: circleGlow 4s ease-in-out infinite alternate;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    animation: bgFloat 12s ease-in-out infinite;
}

.bg-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.bg-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.bg-circle.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 60%;
    animation-delay: -8s;
}

.bg-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.bg-star.star-1 {
    top: 25%;
    left: 70%;
    animation-delay: 0s;
}

.bg-star.star-2 {
    top: 45%;
    right: 40%;
    animation-delay: -1s;
}

.bg-star.star-3 {
    bottom: 40%;
    left: 50%;
    animation-delay: -2s;
}

/* Hero Banner Elements Container */
.hero-banner-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Printing Elements */
.printing-element {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(59, 130, 246, 0.4);
    font-size: 20px;
    animation: printFloat 15s ease-in-out infinite;
    z-index: 1;
}

.print-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.print-icon-2 {
    top: 15%;
    left: 35%;
    animation-delay: -2.5s;
}

.print-icon-3 {
    top: 40%;
    left: 8%;
    animation-delay: -5s;
}

.print-icon-4 {
    top: 65%;
    left: 15%;
    animation-delay: -7.5s;
}

.print-icon-5 {
    top: 25%;
    right: 40%;
    animation-delay: -10s;
}

.print-icon-6 {
    top: 50%;
    right: 20%;
    animation-delay: -12.5s;
}

.print-icon-7 {
    top: 70%;
    right: 30%;
    animation-delay: -15s;
}

.print-icon-8 {
    top: 10%;
    right: 15%;
    animation-delay: -17.5s;
}

.print-icon-9 {
    top: 35%;
    right: 8%;
    animation-delay: -20s;
}

.print-icon-10 {
    bottom: 25%;
    left: 60%;
    animation-delay: -22.5s;
}

/* Doodle Elements */
.doodle-element {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: doodleFloat 18s ease-in-out infinite;
    z-index: 1;
    filter: grayscale(100%) brightness(1.2) sepia(0.5) hue-rotate(180deg) saturate(3);
}

.doodle-1 {
    top: 12%;
    left: 15%;
    animation-delay: 0s;
}

.doodle-2 {
    top: 30%;
    left: 5%;
    animation-delay: -3s;
}

.doodle-3 {
    top: 55%;
    left: 12%;
    animation-delay: -6s;
}

.doodle-4 {
    bottom: 20%;
    left: 25%;
    animation-delay: -9s;
}

.doodle-5 {
    top: 18%;
    right: 25%;
    animation-delay: -12s;
}

.doodle-6 {
    top: 45%;
    right: 15%;
    animation-delay: -15s;
}

.doodle-7 {
    bottom: 35%;
    right: 35%;
    animation-delay: -1.5s;
}

.doodle-8 {
    bottom: 15%;
    right: 8%;
    animation-delay: -4.5s;
}

.doodle-9 {
    top: 65%;
    left: 45%;
    animation-delay: -7.5s;
}

.doodle-10 {
    top: 35%;
    left: 65%;
    animation-delay: -10.5s;
}

.doodle-11 {
    bottom: 45%;
    left: 75%;
    animation-delay: -13.5s;
}

.doodle-12 {
    top: 55%;
    right: 55%;
    animation-delay: -16.5s;
}


/* Floating Items with Slider */
.floating-item {
    transition: opacity 0.6s ease-in-out;
}

.floating-item[data-slide]:not([data-slide="0"]) {
    opacity: 0;
}

/* Enhanced Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.slider-dot.active {
    background: #8b5cf6;
    transform: scale(1.3);
    border-color: rgba(139, 92, 246, 0.3);
}

.dot-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-dot.active .dot-glow {
    opacity: 1;
    animation: dotPulse 2s ease-in-out infinite;
}

/* Modern Geometric Design */
.hero-geometric {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-geometric .geometric-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Geometric Layers */
.geometric-layer-1 {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.geometric-layer-2 {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.geometric-layer-3 {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Geometric Decorations */
.geometric-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.geometric-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: geometricDotFloat 10s ease-in-out infinite;
}

.geometric-dot.dot-1 {
    top: 30px;
    left: 15%;
    animation-delay: 0s;
    background: rgba(59, 130, 246, 0.7);
}

.geometric-dot.dot-2 {
    top: 50px;
    left: 35%;
    animation-delay: -2s;
    background: rgba(96, 165, 250, 0.6);
    width: 6px;
    height: 6px;
}

.geometric-dot.dot-3 {
    top: 25px;
    left: 55%;
    animation-delay: -4s;
    background: rgba(59, 130, 246, 0.7);
}

.geometric-dot.dot-4 {
    top: 45px;
    left: 75%;
    animation-delay: -6s;
    background: rgba(6, 182, 212, 0.6);
    width: 7px;
    height: 7px;
}

.geometric-dot.dot-5 {
    top: 35px;
    left: 85%;
    animation-delay: -8s;
    background: rgba(59, 130, 246, 0.7);
}

/* Geometric Float Animation */
@keyframes geometricDotFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.9;
    }
}

/* Animations */
/* Simplified background animation for better scroll performance */
@keyframes backgroundMove {
    0%, 100% { 
        transform: translate3d(0, 0, 0);
        opacity: 0.6;
    }
    50% { 
        transform: translate3d(10px, -5px, 0);
        opacity: 0.7;
    }
}

@keyframes badgeFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes titleSlideIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes subtitleFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes ctaFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatRandom {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes circleGlow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

/* Enhanced Wave Animations */
@keyframes waveMoveSecondary {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-30px) translateY(-5px); }
    66% { transform: translateX(-60px) translateY(5px); }
}

@keyframes waveMoveMain {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-40px) translateY(-8px); }
}

@keyframes waveMoveOverlay {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-3px); }
    50% { transform: translateX(-40px) translateY(3px); }
    75% { transform: translateX(-60px) translateY(-1px); }
}

@keyframes waveDotFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-8px) scale(1.1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-5px) scale(0.9); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-12px) scale(1.2); 
        opacity: 0.7; 
    }
}

/* Legacy waveMove for backward compatibility */
@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

/* Animations for staggered content */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-up[data-delay="0.1s"] { animation-delay: 0.1s; }
.animate-fade-in-up[data-delay="0.3s"] { animation-delay: 0.3s; }
.animate-fade-in-up[data-delay="0.5s"] { animation-delay: 0.5s; }
.animate-fade-in-up[data-delay="0.7s"] { animation-delay: 0.7s; }

.animate-float {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes printFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-15px) rotate(10deg); opacity: 0.6; }
    50% { transform: translateY(-25px) rotate(0deg); opacity: 0.4; }
    75% { transform: translateY(-10px) rotate(-10deg); opacity: 0.5; }
}

@keyframes doodleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.2; }
    20% { transform: translateY(-20px) rotate(15deg) scale(1.1); opacity: 0.4; }
    40% { transform: translateY(-35px) rotate(0deg) scale(0.9); opacity: 0.3; }
    60% { transform: translateY(-25px) rotate(-15deg) scale(1.05); opacity: 0.35; }
    80% { transform: translateY(-10px) rotate(10deg) scale(1); opacity: 0.25; }
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}


@keyframes newsletterDoodleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.15; 
    }
    20% { 
        transform: translateY(-25px) rotate(20deg) scale(1.2); 
        opacity: 0.25; 
    }
    40% { 
        transform: translateY(-40px) rotate(-10deg) scale(0.8); 
        opacity: 0.1; 
    }
    60% { 
        transform: translateY(-15px) rotate(15deg) scale(1.1); 
        opacity: 0.2; 
    }
    80% { 
        transform: translateY(-30px) rotate(-5deg) scale(1.05); 
        opacity: 0.18; 
    }
}

/* Hero Banner Responsive */
@media (max-width: 1200px) {
    .hero-banner {
        padding: 100px 0 70px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-title-small {
        font-size: 2.5rem;
    }
    
    .hero-title-medium {
        font-size: 3.8rem;
    }
    
    .hero-title-large {
        font-size: 6rem;
    }
    
    .hero-circle {
        width: 320px;
        height: 320px;
    }
    
    .hero-main-image {
        width: 280px;
        height: 280px;
    }
    
    .floating-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-visual-showcase {
        padding: 20px 0;
    }

    .showcase-image {
        max-width: 500px;
        max-height: 400px;
    }
    
    .showcase-image-centered {
        max-height: 450px;
    }
    
    .hero-image-center {
        min-height: 350px;
    }
    
    .rotating-text-circle {
        width: 450px;
        height: 450px;
    }
    
    .rotating-text-svg text {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-title-small {
        font-size: 2.2rem;
    }
    
    .hero-title-medium {
        font-size: 3.2rem;
    }
    
    .hero-title-large {
        font-size: 5.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .hero-circle {
        width: 280px;
        height: 280px;
    }
    
    .hero-main-image {
        width: 240px;
        height: 240px;
    }
    
    .floating-item {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0 50px;
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .showcase-image {
        max-width: 400px;
        max-height: 300px;
    }
    
    .showcase-image-centered {
        max-height: 350px;
    }
    
    .hero-image-center {
        min-height: 250px;
    }
    
    .rotating-text-circle {
        width: 400px;
        height: 400px;
    }
    
    .rotating-text-svg text {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-small {
        font-size: 1.8rem;
    }
    
    .hero-title-medium {
        font-size: 2.5rem;
    }
    
    .hero-title-large {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-circle {
        width: 250px;
        height: 250px;
    }
    
    .hero-main-image {
        width: 200px;
        height: 200px;
    }
    
    .floating-item {
        width: 60px;
        height: 60px;
    }
    
    .floating-item.item-1 {
        top: 15%;
        left: 10%;
    }
    
    .floating-item.item-2 {
        top: 65%;
        right: 15%;
    }
    
    .floating-item.item-3 {
        bottom: 25%;
        left: 5%;
    }
    
    .floating-item.item-4 {
        top: 35%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 50px 0 40px;
        min-height: 50vh;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title-small {
        font-size: 1.5rem;
    }
    
    .hero-title-medium {
        font-size: 2rem;
    }
    
    .hero-title-large {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-circle {
        width: 200px;
        height: 200px;
    }
    
    .hero-main-image {
        width: 160px;
        height: 160px;
    }
    
    .floating-item {
        width: 50px;
        height: 50px;
    }
    
    /* Geometric responsive adjustments */
    .hero-geometric {
        height: 80px;
    }
    
    .geometric-dot {
        width: 6px;
        height: 6px;
    }
}

/* Geometric Responsive Styles */
@media (max-width: 768px) {
    .hero-geometric {
        height: 60px;
    }
    
    .geometric-dot {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .hero-geometric {
        height: 40px;
    }
    
    .geometric-dot {
        display: none;
    }
}

/* Product Categories Grid */
.categories-section {
    padding: 80px 0;
    background: #f5f7fa;
    position: relative;
    z-index: 10;
    /* Shared background styling - change this to update across all pages */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 12;
    min-height: 600px;
    visibility: visible !important;
    opacity: 1 !important;
    justify-content: center; /* Center all items */
}

/* Category cards - 4 items per row */
.category-card {
    width: calc((100% - 90px) / 4); /* 4 items with 30px gaps */
    flex: 0 0 calc((100% - 90px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    visibility: visible !important;
    opacity: 1 !important;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-card:focus {
    outline: 2px solid #0071e3;
    outline-offset: 2px;
}

/* Category Image Styles */
.category-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    display: block !important;
    visibility: visible !important;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* Category info - text below image */
.category-info {
    padding: 20px 20px 25px;
    background: #ffffff;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #f1f5f9;
}

.category-info h3 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h3 {
    color: #8b5cf6;
}

.category-info p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* Modern Category Cards Design - 4 per row */
.categories-grid-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 12;
    justify-content: center;
}

.category-card-modern {
    position: relative;
    display: block;
    width: calc((100% - 72px) / 4);
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-content-modern {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.category-content-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 20px;
}

.category-title-modern {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    max-width: 75%;
    position: relative;
    z-index: 2;
}

.category-image-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    pointer-events: none;
    border-radius: 20px;
    z-index: 1;
}

.category-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.category-card-modern:hover .category-image-modern img {
    transform: scale(1.05) translateY(-5px);
}

.category-btn-modern {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #1a202c;
    border: none;
    border-radius: 50px;
    padding: 9px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

.category-btn-modern i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-card-modern:hover .category-btn-modern {
    background: #1a202c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.category-card-modern:hover .category-btn-modern i {
    transform: translateX(4px) rotate(-45deg);
}

/* Reasons Section */
.reasons-section {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.reasons-wrapper {
    padding: 50px 40px;
    background: rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.reasons-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Process Flow Background Doodles */
.process-flow-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.process-doodle {
    position: absolute;
    font-size: 20px;
    color: rgba(139, 92, 246, 0.12);
    animation: processFlowDoodleFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.doodle-1 { top: 15%; left: 8%; animation-delay: 0s; }
.doodle-2 { top: 25%; right: 12%; animation-delay: 1s; }
.doodle-3 { top: 45%; left: 5%; animation-delay: 2s; }
.doodle-4 { top: 65%; right: 8%; animation-delay: 3s; }
.doodle-5 { bottom: 35%; left: 15%; animation-delay: 4s; }
.doodle-6 { bottom: 25%; right: 20%; animation-delay: 5s; }
.doodle-7 { top: 75%; left: 25%; animation-delay: 6s; }
.doodle-8 { top: 35%; right: 30%; animation-delay: 7s; }
.doodle-9 { bottom: 45%; left: 35%; animation-delay: 8s; }
.doodle-10 { top: 85%; right: 40%; animation-delay: 9s; }

.reasons-content {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.reasons-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.reasons-content h2 .highlight {
    color: var(--accent-purple);
}

.reasons-content p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.process-flow {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 350px;
    z-index: 2;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    max-width: 220px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    background: transparent;
    padding: 30px 20px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.process-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-icon:hover .icon-glow {
    opacity: 1;
}

.process-number {
    display: none;
}

/* Custom process icons styling */
.process-custom-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.process-custom-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(139, 92, 246, 0.2));
}

.process-content {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.process-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

.process-arrow {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 3;
    visibility: visible !important;
    opacity: 1 !important;
}

.process-arrow i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-arrow:hover i {
    color: var(--accent-purple);
    transform: translateX(3px);
    text-shadow: 0 3px 6px rgba(139, 92, 246, 0.3);
}

/* Animation Keyframes */
@keyframes processFlowDoodleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.18;
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-22px) rotate(2deg);
        opacity: 0.2;
    }
}

/* Minimalist Process Flow */
.process-flow-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.process-step-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    min-width: 200px;
}

.process-icon-minimal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-text-minimal h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.process-text-minimal p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.2;
}

.process-arrow-minimal {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 10px;
    flex-shrink: 0;
}

/* Banner Section - Image Only */
.bestselling-wrapper {
    background: #f7f8fa;
    padding: 80px 0;
}

.bestselling-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.bestselling-banner {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Promo Banner Carousel */
.promo-banner-carousel {
    position: relative;
    min-height: 300px;
}

.banner-image-link {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    pointer-events: none;
}

.banner-image-link.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 2;
}

.banner-image-link:hover {
    transform: scale(1.02);
}

.banner-promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Navigation Dots - Hidden */
.promo-banner-dots {
    display: none;
}

/* Navigation Arrows - Hidden */
.promo-banner-nav {
    display: none;
}


/* Animation Keyframes */
@keyframes topSellingDoodleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-18px) rotate(4deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-12px) rotate(-3deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-25px) rotate(2deg);
        opacity: 0.22;
    }
}

/* Top Selling Items */
.top-selling-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 10;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden;
}

/* Animated Background Elements */
.top-selling-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.selling-doodle {
    position: absolute;
    font-size: 20px;
    color: rgba(139, 92, 246, 0.12);
    animation: topSellingDoodleFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.doodle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.doodle-2 { top: 20%; right: 8%; animation-delay: 1s; }
.doodle-3 { top: 35%; left: 10%; animation-delay: 2s; }
.doodle-4 { top: 60%; right: 12%; animation-delay: 3s; }
.doodle-5 { bottom: 40%; left: 8%; animation-delay: 4s; }
.doodle-6 { bottom: 25%; right: 6%; animation-delay: 5s; }
.doodle-7 { top: 45%; left: 20%; animation-delay: 6s; }
.doodle-8 { top: 70%; right: 25%; animation-delay: 7s; }
.doodle-9 { bottom: 35%; left: 30%; animation-delay: 8s; }
.doodle-10 { top: 80%; right: 40%; animation-delay: 9s; }

/* Curved Container */
.curved-products-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 32px 8px 32px 8px;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.curved-products-container .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.curved-products-container .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.curved-products-container .section-title p {
    font-size: 1rem;
    color: var(--gray-medium);
    max-width: 500px;
    margin: 0 auto;
}

/* Product Tabs */
.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 30px 0;
    position: relative;
    z-index: 3;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tab-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.tab-content {
    position: relative;
    z-index: 2;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.products-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
}

.product-card {
    background: #ffffff !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
    flex: 0 1 calc(33.333% - 16px);
    max-width: 320px;
    min-width: 280px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    cursor: pointer;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-name {
    color: #0071e3;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gray-light);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-new {
    background: #22c55e;
    color: white;
}

.badge-trending {
    background: #f97316;
    color: white;
}

.badge-sale {
    background: #ef4444;
    color: white;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-count {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 0.75rem 1rem;
    background: #0071e3;
    border: none;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
    font-size: 0.9375rem;
    font-weight: 600;
}

.add-to-cart-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
}

.add-to-cart-btn i {
    font-size: 0.875rem;
}

/* Client Brands Testimonials Section */
.client-brands-testimonials {
    padding: 80px 0 60px;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

/* Client Section Header */
.client-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.client-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.client-section-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-quote-section {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-text p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.author-logo {
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Individual logo styles */
.phoenix-icon svg {
    width: 40px;
    height: 40px;
}

.chat-globe-icon {
    background: white;
    border-radius: 50%;
}

.chat-bubble {
    width: 45px;
    height: 45px;
    border: 3px solid #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.chat-text {
    font-weight: 700;
    color: #ec4899;
    font-size: 1.2rem;
}

.creative-designs-icon {
    background: #1e40af;
    color: white;
}

.creative-designs-icon svg {
    width: 35px;
    height: 35px;
}

.creative-premium-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.premium-c {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: serif;
}

.tringle-icon svg {
    width: 40px;
    height: 40px;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0 0 3px 0;
    transition: all 0.3s ease;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
    transition: all 0.3s ease;
}

.client-message {
    margin-top: 15px;
    max-width: 400px;
}

.client-message small {
    font-size: 0.75rem;
    color: var(--gray-medium);
    line-height: 1.4;
    font-style: italic;
    display: block;
}

.client-logos-carousel {
    margin-top: 60px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-logos-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.client-logos-row {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.client-logo-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 18px 15px;
    text-align: center;
    cursor: pointer;
    will-change: transform, opacity, box-shadow;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    flex-shrink: 0;
    max-width: 160px;
    opacity: 0.7;
    transform: scale(0.95);
}

.client-logo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.client-logo-card.active {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    flex-shrink: 0;
    z-index: 10;
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.carousel-nav-btn:hover {
    background: var(--accent-purple);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    animation: none;
}

.carousel-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    animation: none;
}

.carousel-nav-btn:disabled:hover {
    background: white;
    color: var(--accent-purple);
    transform: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

/* Infinite loop indicator */
.client-logos-row {
    position: relative;
}

.client-logos-row::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, #f8f9fa);
    pointer-events: none;
}

.client-logos-row::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, transparent, #f8f9fa);
    pointer-events: none;
    z-index: 1;
}

/* Testimonials Section */
/* Testimonials Section - Colorful & Dynamic Design */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: testimonialsBgMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes testimonialsBgMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
}

.testimonials-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: testimonialsTitleFade 1s ease-out;
}

@keyframes testimonialsTitleFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Colorful Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #667eea;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-prev {
    left: -70px;
    animation: slideInLeft 0.6s ease-out;
}

.carousel-next {
    right: -70px;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    from { left: -100px; opacity: 0; }
    to { left: -70px; opacity: 1; }
}

@keyframes slideInRight {
    from { right: -100px; opacity: 0; }
    to { right: -70px; opacity: 1; }
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    width: 100%;
}

/* Colorful & Dynamic Card Design */
.testimonial-card {
    flex: 0 0 33.333%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 48px 36px;
    margin: 0 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-sizing: border-box;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: translateX(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.35);
}

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.testimonial-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.45);
}

/* Vibrant Title */
.testimonial-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-family: inherit;
    letter-spacing: -0.02em;
}

/* Colorful Stars */
.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    animation: starsGlow 2s ease-in-out infinite;
}

@keyframes starsGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.testimonial-stars i {
    color: #feca57;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(254, 202, 87, 0.4);
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Engaging Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    font-style: normal;
    font-weight: 400;
}

/* Colorful Reviewer Info */
.testimonial-reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 24px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-image-slice: 1;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.reviewer-title {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 400;
}

/* Colorful Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.testimonials-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.testimonials-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 1); }
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%;
        padding: 36px 28px;
        margin: 0 12px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        padding: 32px 24px;
        margin: 0 10px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .carousel-btn.carousel-prev {
        left: -15px;
    }
    
    .carousel-btn.carousel-next {
        right: -15px;
    }
}



/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f9fafb;
    color: #1a202c;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.newsletter-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.newsletter-doodle {
    position: absolute;
    font-size: 28px;
    color: rgba(139, 92, 246, 0.1);
    animation: newsletterDoodleFloat 25s ease-in-out infinite;
    z-index: 1;
}

.newsletter-doodle.doodle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.newsletter-doodle.doodle-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.newsletter-doodle.doodle-3 {
    top: 45%;
    left: 8%;
    animation-delay: 4s;
}

.newsletter-doodle.doodle-4 {
    top: 60%;
    right: 12%;
    animation-delay: 6s;
}

.newsletter-doodle.doodle-5 {
    top: 75%;
    left: 18%;
    animation-delay: 8s;
}

.newsletter-doodle.doodle-6 {
    top: 10%;
    right: 30%;
    animation-delay: 10s;
}

.newsletter-doodle.doodle-7 {
    top: 35%;
    left: 25%;
    animation-delay: 12s;
}

.newsletter-doodle.doodle-8 {
    top: 70%;
    right: 25%;
    animation-delay: 14s;
}

.newsletter-doodle.doodle-9 {
    top: 55%;
    left: 35%;
    animation-delay: 16s;
}

.newsletter-doodle.doodle-10 {
    top: 20%;
    right: 40%;
    animation-delay: 18s;
}

.newsletter-doodle.doodle-11 {
    top: 85%;
    right: 35%;
    animation-delay: 20s;
}

.newsletter-doodle.doodle-12 {
    top: 40%;
    left: 15%;
    animation-delay: 22s;
}

.newsletter-curved-bg {
    position: relative;
    background: transparent;
    margin: 0 20px;
    padding: 40px 20px;
    z-index: 2;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.newsletter-icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.newsletter-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.newsletter-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.newsletter-icon:hover .newsletter-icon-overlay {
    opacity: 1;
}

.newsletter-icon:hover img {
    transform: scale(1.1);
}

.newsletter-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    background: #f9fafb;
    color: #1a202c;
    transition: var(--transition);
    height: 52px;
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: white;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    height: 52px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 70px 0 0;
    position: relative;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about-section {
    display: none;
}

.footer-section {
    position: relative;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: block;
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-brand-title,
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-icon {
    width: 16px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: white;
    color: #1a202c;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 8px;
}

.payment-icon {
    width: 45px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-1px);
}

.back-to-top-container {
    display: flex;
    align-items: center;
}

.back-to-top {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-to-top:hover {
    color: var(--accent-purple);
    transform: translateY(-1px);
}

.back-to-top i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes catalogFlip {
    0%, 100% { transform: translate(-50%, -50%) rotate(-15deg); }
    50% { transform: translate(-50%, -50%) rotate(-5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        min-width: 200px;
    }
    
    .mega-menu-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .mega-menu-visual {
        padding: 30px;
    }
    
    .mega-menu-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 30px;
    }
}

@media (max-width: 1200px) {
    .search-input {
        width: 250px;
    }
    
    .navbar-nav-center .nav-item {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    /* Mobile navbar adjustments */
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        margin: 0 !important;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .navbar-nav-right {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .search-container {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .search-input {
        width: 100% !important;
    }
    
    .search-input:focus {
        width: 100% !important;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    /* Mega menu mobile styles */
    .mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    
    .mega-menu-content {
        padding: 1rem 0 !important;
    }
    
    .mega-menu-featured {
        display: none;
    }
}

@media (max-width: 992px) {
    .reasons-wrapper {
        padding: 40px 30px;
    }
    
    /* Modern Category Cards - Large Tablet */
    .categories-grid-modern {
        gap: 20px;
    }
    
    .category-card-modern {
        width: calc((100% - 40px) / 3);
        height: 320px;
    }
    
    .category-title-modern {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    /* Modern Category Cards - Mobile/Tablet */
    .categories-grid-modern {
        gap: 15px;
    }
    
    .category-card-modern {
        width: calc((100% - 15px) / 2);
        height: 280px;
    }
    
    .category-title-modern {
        font-size: 1.2rem;
    }
    
    .navbar .container-fluid {
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap;
    }
    
    .search-input {
        width: 150px;
        padding: 10px 35px 10px 15px;
        font-size: 13px;
    }
    
    
    .brand-logo {
        height: 35px;
    }
    
    
    .contact-us-link {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .dropdown-menu {
        min-width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    
    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .mega-menu-visual {
        padding: 20px;
    }
    
    .mega-menu-title {
        font-size: 1.5rem;
    }
    
    .mega-menu-products {
        gap: 10px;
    }
    
    .mega-menu-product {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-circle {
        width: 200px;
        height: 200px;
    }
    
    .hero-catalog {
        width: 150px;
        height: 200px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        display: none;
    }
    
    /* Minimalist Process Flow Responsive */
    .process-flow-minimal {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .process-step-minimal {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        max-width: 300px;
    }
    
    .process-arrow-minimal {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .sample-packs-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .sample-packs-text h2 {
        font-size: 2.2rem;
    }
    
    .sample-packs-visual {
        max-width: 100%;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 500px;
    }
    
    .showcase-large {
        grid-column: 1;
        grid-row: auto;
    }
    
    .showcase-small,
    .showcase-wide {
        grid-column: 1;
        grid-row: auto;
    }
    
    .showcase-stats {
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .newsletter-curved-bg {
        border-radius: 60px 10px 60px 10px;
        margin: 0 10px;
        padding: 60px 20px;
    }
    
    .newsletter-doodle {
        font-size: 20px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
    
    /* Testimonials Responsive */
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        margin: 0 15px;
    }
    
    .quote-marks {
        height: 60px;
        margin-bottom: 16px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .quote-mark-left,
    .quote-mark-right {
        font-size: 2.5rem;
    }
    
    .quote-mark-left {
        top: 0;
        left: 12%;
        transform: translateY(-8px);
    }
    
    .quote-mark-right {
        bottom: 0;
        right: 12%;
        transform: translateY(8px);
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-details {
        text-align: center;
    }
    
    
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about-section {
        display: block;
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .navbar .container-fluid {
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        gap: 20px;
        justify-content: center;
    }
    
    /* 2 items per row on tablet */
    .category-card {
        width: calc((100% - 20px) / 2);
        flex: 0 0 calc((100% - 20px) / 2);
    }
    
    /* Modern Category Cards - Tablet */
    .categories-grid-modern {
        gap: 18px;
    }
    
    .category-card-modern {
        width: calc((100% - 18px) / 2);
        height: 300px;
    }
    
    .category-title-modern {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .curved-products-container {
        padding: 40px 30px;
        border-radius: 24px 6px 24px 6px;
    }
    
    .curved-products-container .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Image-based sections responsive */
    .category-image {
        height: 220px;
    }
    
    .category-info {
        padding: 18px 18px 20px;
    }
    
    .category-info h3 {
        font-size: 1.15rem;
    }
    
    .category-info p {
        font-size: 0.85rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .process-step {
        max-width: 300px;
        width: 100%;
        margin: 0;
    }
    
    .process-icon-container {
        width: 100px;
        height: 100px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .process-custom-icon {
        width: 55px;
        height: 55px;
    }
    
    .process-arrow {
        position: static !important;
        transform: rotate(90deg);
        margin: 20px auto;
        width: 40px !important;
        height: 40px !important;
    }
    
    .process-arrow i {
        font-size: 1.3rem;
    }
    
    .bestselling-wrapper {
        padding: 60px 0;
    }
    
    .bestselling-banner {
        flex-direction: column;
        min-height: auto;
    }
    
    .bestselling-text-section {
        flex: none;
        padding: 40px 30px;
        align-items: flex-start;
        text-align: left;
    }
    
    .bestselling-title {
        font-size: 2.2rem;
    }
    
    
    .sample-packs-badge {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .sample-packs-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .product-showcase {
        padding: 20px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 400px;
        gap: 15px;
    }
    
    .showcase-large,
    .showcase-wide {
        grid-column: 1;
        grid-row: auto;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Client Brands Testimonials Responsive */
    .client-brands-testimonials {
        padding: 60px 0 50px;
    }
    
    .client-section-header {
        margin-bottom: 40px;
    }
    
    .client-section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .client-section-header p {
        font-size: 1rem;
    }
    
    .testimonial-text p {
        font-size: 1.2rem;
    }
    
    .testimonial-quote-section {
        margin-bottom: 40px;
    }
    
    .testimonial-author {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        margin-top: 25px;
        gap: 12px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .client-logos-carousel {
        gap: 15px;
    }
    
    .client-logos-row {
        gap: 16px;
    }
    
    .client-logo-card {
        min-width: 130px;
        max-width: 150px;
        padding: 15px 12px;
    }
    
    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Bestselling Responsive */
    .bestselling-wrapper {
        padding: 70px 0;
    }
    
    .bestselling-banner {
        flex-direction: column;
        min-height: auto;
    }
    
    .bestselling-text-section {
        flex: none;
        padding: 50px 40px;
        align-items: flex-start;
        text-align: left;
    }
    
    .bestselling-title {
        font-size: 2.4rem;
    }
    
    
    .sample-packs-visual {
        max-width: 100%;
    }
    
    .curved-showcase-container {
        padding: 25px;
    }
    
    .showcase-content {
        height: 300px;
        gap: 20px;
    }
    
    .side-showcase-items {
        gap: 15px;
    }
    
    .showcase-stats {
        gap: 20px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Testimonials Carousel Responsive */
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-carousel {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -25px;
    }
    
    .carousel-next {
        right: -25px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        padding: 30px 20px;
    }
    
    .testimonial-title {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    
    /* Testimonials Mobile Responsive */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonials-carousel {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        padding: 25px 20px;
    }
    
    .testimonial-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .testimonial-stars {
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .testimonial-reviewer {
        gap: 12px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .reviewer-title {
        font-size: 0.85rem;
    }
    
    .testimonials-dots {
        margin-top: 30px;
    }
    
    /* Client Brands Testimonials Mobile Responsive */
    .client-brands-testimonials {
        padding: 50px 0 40px;
    }
    
    .client-section-header {
        margin-bottom: 35px;
    }
    
    .client-section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .client-section-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .testimonial-quote-section {
        margin-bottom: 30px;
    }
    
    .testimonial-author {
        margin-top: 20px;
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
    
    .client-logos-carousel {
        gap: 10px;
    }
    
    .client-logos-row {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .client-logo-card {
        min-width: 120px;
        max-width: 140px;
        padding: 12px 8px;
        flex-shrink: 0;
    }
    
    .client-logo-img {
        max-width: 100px;
        max-height: 60px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-text h5 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    /* Top Selling Items Mobile Responsive */
    .top-selling-section {
        padding: 60px 0;
    }
    
    .curved-products-container {
        padding: 30px 20px;
        border-radius: 20px 4px 20px 4px;
        margin: 0 10px;
    }
    
    .curved-products-container .section-title {
        margin-bottom: 30px;
    }
    
    .curved-products-container .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .curved-products-container .section-title p {
        font-size: 0.9rem;
    }
    
    /* Tabs mobile responsive */
    .product-tabs-nav {
        flex-wrap: wrap;
        gap: 6px;
        margin: 30px 0 20px 0;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        flex: 1;
        min-width: calc(50% - 3px);
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-name {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .rating-count {
        font-size: 0.7rem;
    }
    
    .add-to-cart-btn {
        padding: 0.625rem 0.875rem;
        bottom: 16px;
        right: 16px;
        left: 16px;
        font-size: 0.875rem;
    }
    
    .add-to-cart-btn i {
        font-size: 0.8rem;
    }
    
    /* Reduce doodle animation on mobile */
    .selling-doodle {
        font-size: 16px;
        opacity: 0.08;
    }
    
    /* Process Flow Mobile Responsive */
    .reasons-section {
        padding: 60px 0;
    }
    
    .reasons-wrapper {
        padding: 30px 20px;
    }
    
    .reasons-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .reasons-content p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .process-flow {
        gap: 25px;
        margin-top: 40px;
    }
    
    .process-step {
        padding: 25px 20px;
        max-width: 280px;
    }
    
    .process-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-custom-icon {
        width: 50px;
        height: 50px;
    }
    
    .process-number {
        display: none;
    }
    
    .process-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
    
    .process-arrow {
        margin: 15px auto;
        width: 35px !important;
        height: 35px !important;
    }
    
    .process-arrow i {
        font-size: 1.1rem;
    }
    
    /* Minimalist Process Flow Mobile Responsive */
    .process-flow-minimal {
        gap: 15px;
        margin-top: 30px;
    }
    
    .process-step-minimal {
        max-width: 250px;
        gap: 12px;
    }
    
    .process-icon-minimal {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .process-text-minimal h4 {
        font-size: 0.9rem;
    }
    
    .process-text-minimal p {
        font-size: 0.8rem;
    }
    
    .process-arrow-minimal {
        font-size: 1rem;
        margin: 8px 0;
    }

    /* Reduce doodle animation on mobile */
    .process-doodle {
        font-size: 16px;
        opacity: 0.08;
    }
    
    /* Categories Mobile Responsive */
    .categories-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-title p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .categories-grid {
        gap: 15px;
        margin-top: 40px;
        justify-content: center;
    }
    
    /* 1 item per row on mobile */
    .category-card {
        width: 100%;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-info {
        padding: 15px 18px 18px;
    }
    
    .category-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .category-info p {
        font-size: 0.8rem;
    }
    
    /* Modern Category Cards Mobile Responsive */
    .categories-grid-modern {
        gap: 18px;
        margin-top: 40px;
    }
    
    .category-card-modern {
        width: 100%;
        height: 320px;
    }
    
    .category-content-modern {
        padding: 35px 30px 30px;
    }
    
    .category-title-modern {
        font-size: 1.3rem;
        max-width: 85%;
    }
    
    .category-btn-modern {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    /* Bestselling Mobile Responsive */
    .bestselling-wrapper {
        padding: 50px 0;
    }
    
    .bestselling-banner {
        flex-direction: column;
        min-height: auto;
        margin: 0 15px;
    }
    
    .bestselling-text-section {
        flex: none;
        padding: 30px 25px;
        align-items: flex-start;
        text-align: left;
    }
    
    .bestselling-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .bestselling-category {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    
    
    .sample-packs-badge {
        padding: 10px 20px;
        font-size: 11px;
        margin-bottom: 25px;
    }
    
    .sample-packs-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .sample-packs-cta {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .curved-showcase-container {
        padding: 20px;
        border-radius: 24px 6px 24px 6px;
    }
    
    .showcase-content {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .main-showcase-area {
        height: 200px;
    }
    
    .side-showcase-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        height: 150px;
    }
    
    .showcase-item {
        margin: 0;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }
    
    .stat-item {
        justify-content: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Reduce doodle animation on mobile */
    .printing-doodle {
        font-size: 18px;
        opacity: 0.1;
    }

    .newsletter-curved-bg {
        border-radius: 40px 5px 40px 5px;
        margin: 0 5px;
        padding: 40px 15px;
    }
    
    .newsletter-doodle {
        font-size: 16px;
    }
    
    .newsletter-icon {
        width: 100px;
        height: 100px;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-brand-title,
    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 10px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-methods {
        order: -1;
        justify-content: center;
    }
    
    .payment-icon {
        width: 40px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        font-size: 0.8rem;
    }
}

/* Performance Optimizations */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Hardware acceleration for smooth animations */
.category-card,
.product-card,
.client-logo-card,
.testimonial-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Navbar optimization - separate for scroll performance */
.navbar {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Remove transform from hero-banner to prevent scroll jank */
.hero-banner * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize repaints and reflows */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.will-change-auto {
    will-change: auto;
}

/* Performance optimizations for scroll */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Reduce animation complexity during scroll */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimize floating elements */
.floating-item,
.doodle-element,
.printing-element {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Improve paint performance */
.hero-banner .floating-item,
.hero-banner .doodle-element,
.hero-banner .printing-element {
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
}

/* Optimize hero geometric animations */
.geometric-svg {
    will-change: auto;
}

/* Reduce complexity of background animations */
.hero-banner::before,
.categories-section {
    will-change: auto;
}

/* Pause heavy animations during scroll for smoother performance */
body.is-scrolling .doodle-element,
body.is-scrolling .printing-element,
body.is-scrolling .newsletter-doodle,
body.is-scrolling .selling-doodle,
body.is-scrolling .process-doodle {
    animation-play-state: paused !important;
}

/* Reduce animation complexity on mobile */
@media (max-width: 768px) {
    .doodle-element,
    .printing-element,
    .newsletter-doodle,
    .selling-doodle,
    .process-doodle {
        animation-duration: 25s !important;
        opacity: 0.3 !important;
    }
    
    /* Disable parallax on mobile */
    .hero-banner {
        transform: none !important;
    }
}

/* Custom Container Width Override */
/* Increase Bootstrap container max-width for wider layout */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 640px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 860px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}
