 .scrolling {
            overflow: hidden;
        }

        .scrolling-track {
            display: flex;
            width: calc(200px * 10);
            animation: scroll 20s linear infinite;
        }

        .logo2 {
            width: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo2 img {
            width: 100px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: 0.3s;
        }

        .logo2 img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }
        .luxury-left {
            flex: 1;
        }

        .luxury-left h2 {
            margin-bottom: 20px;
        }

        .luxury-left p {
            font-size: 16px;
            line-height: 1.7;
        }
        .luxury-right {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .stat-box {
            background: #1a1a1a;
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            transition: 0.3s;
            border: 1px solid rgba(190, 190, 190, 0.2);
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: #ffffff;
        }
        .stat-box h3 {
            font-size: 32px;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .stat-box span {
            font-size: 14px;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .luxury-right {
                grid-template-columns: 1fr;
            }
        }