
        .blurred-bg {
            backdrop-filter: blur(8px);
            /* Adjust the pixel value for desired blur intensity */
            -webkit-backdrop-filter: blur(8px);
            /* For Webkit-based browsers */
            background-color: rgba(255, 255, 255, 0.3);
            /* Optional: Add a semi-transparent background for better visibility of the blur */
        }

        /* Top Header */
        .header {
            /* padding: 20px 40px;*/
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Header top row - by default hidden on desktop */
        .header-top {
            display: none;
        }



        /* Main Navigation - Horizontal */
        .main-nav {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            /*padding: 8px;*/
            overflow-x: auto;
            max-width: 900px;

            margin: 0 auto;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);

        }

        .main-nav-item {
            flex: 1;
            min-width: 150px;
            padding: 15px 20px;
            text-align: center;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;


        }

        .main-nav-item.active {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow:
                0 4px 20px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .main-nav-item.completed {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
        }

        .main-nav-item.completed::after {
            content: '✓';
            position: absolute;
            top: 5px;
            right: 8px;
            font-size: 8px;
            color: #10b981;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: auto;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* On desktop, show dropdown in nav-container */
        .nav-container .dropdown {
            display: flex;
        }

        /* On desktop, hide dropdown in header-top */
        .header-top .dropdown {
            display: none;
        }

        .main-nav {
            flex: 1;
        }

        .progress-indicator {
            margin-left: 0;
            margin: 10px;
            float: right;

            padding: auto;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: white;
            width: 50px;
            height: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            box-shadow:
                0 4px 20px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        /* Client Data Section */
        .client-data {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            margin-left: auto;
            min-width: 200px;
        }

        .client-welcome {
            color: #e5e7eb;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
        }

        .client-name {
            color: #6366f1;
            font-weight: 600;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
            order: 3;
            left: 0px;
        }

        .dropbtn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: white;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow:
                0 4px 20px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .dropbtn:hover {
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow:
                0 6px 25px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .dropbtn::after {
            content: '▼';
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropbtn::after {
            transform: rotate(180deg);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            margin-top: 5px;
            background: rgba(25, 25, 55, 0.95);
            backdrop-filter: blur(20px);
            min-width: 160px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            overflow: hidden;
            z-index: 1000;
        }

        .dropdown-content.show {
            display: block;
            animation: dropdownFadeIn 0.3s ease-out;
        }

        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

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

        .dropdown-content a {
            color: #e5e7eb;
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
        }

        .dropdown-content a::before {
            content: attr(data-icon);
            font-size: 14px;
        }

        /* Main Content Area */
        .main-content {
            display: flex;
            flex: 1;
            overflow: hidden;
            height: calc(100vh - 120px);
        }

        .header-desktop {
            width: auto;
            float: left;
        }



        .header-right {
            display: flex;
            gap: 15px;
            order: 2;
            margin-left: auto;
            position: relative;
            z-index: 10;
            width: auto;
        }


        .hide {
            display: none;
            /* Initially hide the div */
        }

        /* Force Landscape Mode for Small Screens */
        @media screen and (max-width: 768px) and (orientation: portrait) {

            /* Hide main content in portrait mode */
            .main-content-wrapper {
                display: none !important;
            }

            /* Show landscape orientation message */
            .landscape-message {
                display: flex !important;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 10000;
                color: white;
                text-align: center;
                padding: 20px;
            }

            .landscape-icon {
                font-size: 60px;
                margin-bottom: 20px;
                animation: rotatePhone 2s ease-in-out infinite;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 20px;
                padding: 20px;
                border: 2px dashed rgba(255, 255, 255, 0.3);
            }

            .landscape-title {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 12px;
                background: linear-gradient(135deg, #ffffff, #f0f0f0);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .landscape-description {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.9);
                line-height: 1.5;
                max-width: 280px;
                margin-bottom: 20px;
            }

            .landscape-hint {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.7);
                font-style: italic;
            }

            @keyframes rotatePhone {

                0%,
                100% {
                    transform: rotate(0deg) scale(1);
                    opacity: 0.8;
                }

                25% {
                    transform: rotate(30deg) scale(1.05);
                    opacity: 1;
                }

                50% {
                    transform: rotate(90deg) scale(1.1);
                    opacity: 1;
                }

                75% {
                    transform: rotate(60deg) scale(1.05);
                    opacity: 1;
                }
            }
        }

        /* Hide landscape message by default */
        .landscape-message {
            display: none;
        }

        /* Landscape mode optimizations for small screens */
        @media screen and (max-width: 768px) and (orientation: landscape) {

            /* Remove default mobile viewport behavior */
            body {
                -webkit-text-size-adjust: 100%;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                user-select: none;
            }

            /* Adjust header for landscape mobile */
            header {
                padding: 5px 0;
                min-height: 50px;
            }

            .container-fluid {
                padding: 0 10px;
            }

            .logo img {
                height: 35px;
            }

            .main-nav {
                max-width: 600px;
                gap: 2px;
            }

            .main-nav-item {
                min-width: 100px;
                padding: 8px 12px;
                font-size: 11px;
                border-radius: 8px;
            }

            .sub-header {
                top: 50px;
                padding: 5px 0;
            }

            .nav-btn {
                padding: 4px 8px !important;
                font-size: 11px !important;
                border-radius: 15px !important;
            }

            .nav-btn i {
                font-size: 10px;
            }

            /* Adjust card container for landscape mobile */
            .card-container {
                height: calc(100vh - 100px);
                margin-top: 100px;
            }

            .location-card {
                transform: scale(0.85);
                border-radius: 15px;
            }

            .card-title h2 {
                font-size: 18px;
            }

            /* Optimize progress indicator */
            .progress-indicator {
                width: 35px;
                height: 20px;
                font-size: 9px;
                margin: 5px;
            }

            /* Compact dropdown */
            .dropbtn {
                padding: 4px 8px;
                font-size: 9px;
            }

            .dropdown-content {
                min-width: 120px;
            }

            .dropdown-content a {
                padding: 8px 12px;
                font-size: 11px;
            }

            /* Optimize detail navigation */
            .event-info-details .main-nav-item,
            .event-look-details .main-nav-item,
            .event-services-details .main-nav-item,
            .event-review-details .main-nav-item,
            .event-payment-details .main-nav-item {
                min-width: 80px;
                padding: 6px 10px;
                font-size: 10px;
            }

            /* Hide elements that take up too much space on mobile landscape */
            .tutorial-overlay .tutorial-description {
                font-size: 14px;
            }

            .hand-animation-container {
                width: 200px;
                height: 120px;
            }

            /* Prevent zoom on input focus (if any inputs are added later) */
            input,
            select,
            textarea {
                font-size: 16px !important;
            }
        }

        /* Tablet landscape optimizations */
        @media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
            .main-nav-item {
                min-width: 140px;
                padding: 12px 18px;
                font-size: 13px;
            }

            .location-card {
                transform: scale(0.95);
            }
        }

        /* Desktop and larger screens - no changes needed */
        @media screen and (min-width: 1025px) {
            /* Keep existing desktop styles */
        }

        /* JavaScript will handle the hover effect since elements are not adjacent siblings */
