.elementor-723 .elementor-element.elementor-element-1ad6a93d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-51d208c2 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Logo Animation */
        @keyframes rotateLogo {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                width: 0;
            }
            to {
                opacity: 1;
                width: 40px;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes floatUp {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            animation: fadeInDown 0.8s ease-out;
        }

        .logo {
            width: 35px;
            height: 35px;
            border: 2px solid #c9a961;
            border-radius: 50%;
            animation: rotateLogo 20s linear infinite;
        }

        .logo::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #c9a961;
            border-radius: 50%;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Sidebar Navigation */
        .sidebar-nav {
            position: fixed;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInLeft 1s ease-out;
        }

        .nav-item {
            width: 40px;
            height: 2px;
            background: #c9a961;
            position: relative;
            animation: slideIn 0.8s ease-out;
            animation-fill-mode: backwards;
        }

        .nav-item:nth-child(1) { animation-delay: 0.2s; }
        .nav-item:nth-child(2) { animation-delay: 0.3s; }
        .nav-item:nth-child(3) { animation-delay: 0.4s; }
        .nav-item:nth-child(4) { animation-delay: 0.5s; }
        .nav-item:nth-child(5) { animation-delay: 0.6s; }
        .nav-item:nth-child(6) { animation-delay: 0.7s; }

        .nav-item.active {
            width: 60px;
            box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
        }

        .nav-item:hover {
            width: 55px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 50px 50px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
        }

        .hero-label {
            font-size: 12px;
            letter-spacing: 3px;
            color: #c9a961;
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease-out;
            font-weight: 500;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 120px;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 1.2s ease-out;
            letter-spacing: -2px;
        }

        .hero-title-highlight {
            color: #c9a961;
            display: block;
            animation: fadeInUp 1.4s ease-out;
            font-style: italic;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #888;
            max-width: 550px;
            margin: 40px auto 50px;
            line-height: 1.8;
            animation: fadeInUp 1.6s ease-out;
        }

        /* Divider */
        .divider-line {
            width: 2px;
            height: 80px;
            background: #c9a961;
            margin: 0 auto 30px;
            animation: slideIn 1.2s ease-out 0.4s backwards;
        }

        /* Buttons */
        .button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 50px 0;
            animation: fadeInUp 1.8s ease-out;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1.5px solid #c9a961;
            background: transparent;
            color: #c9a961;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #c9a961;
            z-index: -1;
            transition: left 0.4s ease;
        }

        .btn-primary {
            background: #c9a961;
            color: #0a0a0a;
            border-color: #c9a961;
        }

        .btn-primary::before {
            left: 100%;
        }

        .btn-primary:hover {
            color: #c9a961;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            background: #c9a961;
            color: #0a0a0a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 60px;
            margin-top: 100px;
            padding: 60px 0;
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            animation: fadeInUp 2s ease-out;
        }

        .stat {
            text-align: center;
            animation: scaleIn 0.8s ease-out;
            animation-fill-mode: backwards;
        }

        .stat:nth-child(1) { animation-delay: 1.8s; }
        .stat:nth-child(2) { animation-delay: 2s; }
        .stat:nth-child(3) { animation-delay: 2.2s; }
        .stat:nth-child(4) { animation-delay: 2.4s; }

        .stat-number {
            font-size: 48px;
            font-weight: 600;
            color: #c9a961;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 11px;
            letter-spacing: 2px;
            color: #666;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Vertical Divider */
        .vertical-divider {
            position: absolute;
            right: 50px;
            top: 50%;
            width: 1px;
            height: 200px;
            background: linear-gradient(to bottom, rgba(201, 169, 97, 0.4), transparent);
            transform: translateY(-50%);
            animation: fadeInDown 1.5s ease-out 0.3s backwards;
        }

        .vertical-text {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 10px;
            letter-spacing: 3px;
            color: #666;
            white-space: nowrap;
            text-transform: uppercase;
            transform-origin: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 20px 30px;
            }

            .sidebar-nav {
                left: 20px;
            }

            .hero {
                padding: 80px 20px 30px;
            }

            .hero-title {
                font-size: 60px;
            }

            .hero-label {
                font-size: 10px;
            }

            .hero-subtitle {
                font-size: 14px;
                max-width: 100%;
            }

            .button-group {
                gap: 10px;
                margin: 30px 0;
            }

            .btn {
                padding: 12px 30px;
                font-size: 12px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-top: 50px;
                padding: 40px 0;
            }

            .stat-number {
                font-size: 36px;
            }

            .vertical-divider,
            .vertical-text {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 42px;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .stats-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .logo {
                display: none;
            }
        }

        /* Scroll animation trigger */
        .fade-in-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
    </style>/* End custom CSS */