/* ===== MODERN HERO SECTION WITH WAVE ===== */
        .marketplace-hero {
            position: relative;
            padding: 140px 0 180px;
            background: linear-gradient(145deg, #0b1120 0%, #19223f 50%, #2d1b4b 100%);
            overflow: hidden;
            margin-bottom: 80px;
            z-index: 1;
        }

        /* Animated waves background */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0f5fa" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 5;
        }

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

        .float-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatAround 15s infinite linear;
        }

        @keyframes floatAround {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
        }

        /* Gradient orbs */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
            z-index: 2;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: #da0b4e;
            top: -200px;
            right: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: #4f46e5;
            bottom: -200px;
            left: -200px;
            animation: pulse 8s ease-in-out infinite 2s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: #f59e0b;
            top: 30%;
            left: 20%;
            animation: pulse 8s ease-in-out infinite 4s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.2); opacity: 0.3; }
        }

        /* Hero content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: #ffd700;
        }

        .badge i {
            color: #ffd700;
        }

        .hero-title {
            font-size: 4.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #ffd700, #ff8a5c, #ff6b9d, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 300% 300%;
            animation: gradientFlow 6s ease infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Stats cards - updated */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 50px 0 30px;
            flex-wrap: wrap;
        }

        .stat-item-modern {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 25px 40px;
            min-width: 180px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .stat-item-modern:hover::before {
            left: 100%;
        }

        .stat-item-modern:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
        }

        .stat-number-modern {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffd700;
            margin-bottom: 5px;
        }

        .stat-label-modern {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.5px;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #ffd700, #ffa500);
            color: #0b1120;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            margin-top: 20px;
            box-shadow: 0 20px 30px -10px rgba(255,215,0,0.3);
            transition: all 0.4s;
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 30px 40px -10px rgba(255,215,0,0.5);
            gap: 20px;
        }

        .cta-button i {
            transition: transform 0.3s;
            position: relative;
            z-index: 2;
        }

        .cta-button:hover i {
            transform: translateX(8px);
        }

        /* ===== MAIN CONTAINER ===== */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Title */
        .section-main-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-main-title h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #0b1120;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-main-title h2 span {
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5, #f59e0b);
            margin: 0 auto;
            border-radius: 2px;
            animation: widthPulse 2s ease-in-out infinite;
        }

        @keyframes widthPulse {
            0%, 100% { width: 100px; opacity: 1; }
            50% { width: 150px; opacity: 0.7; }
        }

        /* Category Cards - updated */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .category-card-modern {
            background: white;
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
            transition: all 0.4s;
            border: 1px solid rgba(218,11,78,0.1);
            position: relative;
            overflow: hidden;
        }

        .category-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5, #f59e0b, #10b981);
            background-size: 300% 300%;
            animation: gradientMove 3s ease infinite;
        }

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

        .category-card-modern:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 50px -20px rgba(218,11,78,0.3);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(218,11,78,0.1), rgba(79,70,229,0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .category-icon i {
            font-size: 2rem;
            color: #da0b4e;
        }

        .category-card-modern h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0b1120;
            margin-bottom: 10px;
        }

        .category-card-modern p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .category-stats {
            display: flex;
            gap: 20px;
            border-top: 1px solid #e9edf3;
            padding-top: 15px;
        }

        .category-stats span {
            font-size: 0.9rem;
            color: #64748b;
        }

        .category-stats i {
            color: #da0b4e;
            margin-right: 5px;
        }

        /* Row Cards - updated */
        .row_log {
            background: white;
            border-radius: 40px;
            padding: 35px 25px;
            margin-bottom: 40px;
            box-shadow: 0 25px 50px -20px rgba(0,0,0,0.15);
            border: 1px solid rgba(218,11,78,0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .row_log:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 60px -25px rgba(218,11,78,0.3);
            border-color: rgba(218,11,78,0.2);
        }

        .row-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #e9edf3;
        }

        .row-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .row-title i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .row-title h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0b1120;
        }

        .row-badge {
            background: rgba(218,11,78,0.1);
            color: #da0b4e;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* ===== MODERN SLIDER DESIGN ===== */
        .customer-logos {
            margin: 0 -10px;
        }

        .slide {
            padding: 15px;
            outline: none;
        }

        .slide a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
            border-radius: 25px;
            padding: 25px 20px;
            height: 140px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            position: relative;
            border: 1px solid #e9edf3;
            box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .slide a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(218,11,78,0.05), rgba(79,70,229,0.05));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .slide a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(218,11,78,0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: 1;
        }

        .slide a:hover::after {
            width: 200px;
            height: 200px;
        }

        .slide a:hover::before {
            opacity: 1;
        }

        .slide a:hover {
            transform: scale(1.05) translateY(-8px);
            border-color: #da0b4e;
            box-shadow: 0 20px 30px -12px rgba(218,11,78,0.3);
            background: white;
        }

        .slide img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            object-fit: contain;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 2;
        }

        .slide a:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        /* Modern Arrows */
        .slick-prev, .slick-next {
            width: 50px;
            height: 50px;
            background: white !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid #e9edf3;
        }

        .slick-prev:hover, .slick-next:hover {
            background: linear-gradient(135deg, #da0b4e, #4f46e5) !important;
            transform: scale(1.15);
            border-color: transparent;
            box-shadow: 0 15px 25px -8px rgba(218,11,78,0.4);
        }

        .slick-prev:before, .slick-next:before {
            color: #da0b4e !important;
            font-size: 22px !important;
            opacity: 1 !important;
            transition: all 0.3s;
        }

        .slick-prev:hover:before, .slick-next:hover:before {
            color: white !important;
        }

        .slick-prev {
            left: -25px;
        }

        .slick-next {
            right: -25px;
        }

        /* Modern Dots */
        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li {
            margin: 0 6px;
        }

        .slick-dots li button {
            width: 30px;
            height: 6px;
            background: rgba(218,11,78,0.2);
            border-radius: 10px;
            transition: all 0.4s;
        }

        .slick-dots li button:before {
            display: none;
        }

        .slick-dots li.slick-active button {
            width: 50px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5);
        }

        /* ===== INFO SECTION - FIXED ===== */
        .info-section {
            background: linear-gradient(135deg, #0b1120, #19223f);
            border-radius: 60px;
            padding: 60px 50px;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            transform: scale(1) !important;
            z-index: 10;
        }

        .info-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .info-content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .info-content h3 span {
            color: #ffd700;
        }

        .info-content p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .brand-grid-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            margin: 40px 0;
        }

        .brand-pill {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            padding: 12px 30px;
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .brand-pill:hover {
            background: rgba(255,215,0,0.1);
            border-color: #ffd700;
            transform: translateY(-5px);
        }

        .brand-pill i {
            color: #ffd700;
            margin-right: 8px;
        }

        /* ===== FOOTER DISCLAIMER - UPDATED ===== */
        .disclaimer-modern {
            background: white;
            border-radius: 40px;
            padding: 30px 40px;
            margin: 60px 0 30px;
            box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
            border: 1px solid #e9edf3;
        }

        .disclaimer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .disclaimer-text {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #64748b;
        }

        .disclaimer-text i {
            color: #ffd700;
            font-size: 1.5rem;
        }

        .disclaimer-text p {
            font-size: 0.95rem;
            max-width: 600px;
            line-height: 1.6;
        }

        .info-badge {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f8fafc;
            padding: 10px 20px;
            border-radius: 50px;
        }

        .info-badge i {
            color: #da0b4e;
        }

        .trademark-modern {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            color: #94a3b8;
            font-size: 0.85rem;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px dashed #e9edf3;
        }

        /* ===== FIX FOR AOS HIDING ELEMENTS ===== */
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
        }

        /* Only apply AOS transitions for non-critical elements if needed */
        @media (min-width: 768px) {
            .category-card-modern[data-aos],
            .row_log[data-aos],
            .section-main-title[data-aos] {
                transition: transform 0.6s ease, opacity 0.6s ease;
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .stats-container {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .marketplace-hero {
                padding: 100px 0 150px;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            .row-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .disclaimer-content {
                flex-direction: column;
                text-align: center;
            }
            .disclaimer-text {
                flex-direction: column;
            }
            .info-section {
                padding: 40px 20px;
            }
            .brand-grid-info {
                gap: 15px;
            }
            .brand-pill {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            .info-content h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-description {
                font-size: 1rem;
            }
            .stat-item-modern {
                padding: 20px 30px;
                min-width: 140px;
            }
            .stat-number-modern {
                font-size: 2rem;
            }
            .slick-prev, .slick-next {
                display: none !important;
            }
            .trademark-modern {
                flex-direction: column;
                gap: 10px;
            }
            .info-content h3 {
                font-size: 1.8rem;
            }
            .info-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .badge {
                font-size: 0.8rem;
                padding: 8px 15px;
            }
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            .brand-pill {
                width: 100%;
                text-align: center;
            }
        }