        :root {
            --brand-color: #F28200;
            --dark-text: #1a1a1a;
            --gray-text: #888;
            --white: #ffffff;
            --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            --mobile-nav-bg: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
            font-style: normal !important;
        }

        html,
        body {
            overflow-x: hidden;
            /* Mobile horizontal scroll fix */
            width: 100%;
            position: relative;
            margin: 0;
            padding: 0;
             font-family: 'Montserrat', sans-serif;
            background-color: #fff;
            color: var(--dark-text);
            line-height: 1.6;
        }

     

      
        /* --- Sidebar --- */
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            width: 80px;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 50px 0;
            background: var(--white);
            z-index: 100;
        }

        .vertical-studio-name {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 10px;
            letter-spacing: 5px;
            color: var(--gray-text);
            text-transform: uppercase;
            font-weight: 500;
        }

        .sidebar-socials {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sidebar-socials a {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--dark-text);
            text-decoration: none;
            font-size: 14px;
            background: #f4f4f4;
            transition: var(--transition);
        }

        .sidebar-socials a:hover {
            background: var(--brand-color);
            color: var(--white);
            transform: scale(1.1);
        }

        /* --- NAVBAR STYLING START --- */
        header {
            position: fixed;
            top: 0;
            left: 80px;
            right: 0;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            z-index: 99;
            transition: var(--transition);
            /* Scroll animation ke liye transition */
        }

        /* Scrolled State for Navbar */
        header.scrolled {
            background: var(--white);
            height: 80px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        }

        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
        }

        .nav-desktop {
            margin-left: auto;
            display: flex;
            gap: 15px;
            list-style: none;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-right: 15px;
            transition: var(--transition);
        }

        header.scrolled .nav-desktop {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-desktop a {
            text-decoration: none;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        header.scrolled .nav-desktop a {
            color: var(--dark-text);
            /* Scrolled state mein text black */
        }

        .nav-desktop a:hover {
            color: var(--brand-color);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            min-width: 250px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            list-style: none;
            border-radius: 12px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(12px);
        }

        .dropdown-menu a {
            color: var(--dark-text) !important;
            padding: 10px 25px;
            display: block;
            font-size: 12px !important;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Enquiry Button Styling */
        .btn-enquiry {
            background: var(--brand-color);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 10px !important;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid transparent;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-enquiry:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(242, 130, 0, 0.3);
        }

        header.scrolled .btn-enquiry:hover {
            color: var(--white) !important;
        }





        /* --- NAVBAR STYLING END --- */

        /* --- HERO & SLIDER STYLING START --- */
        .hero {
            margin-left: 80px;
            height: 100vh;
            display: flex;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            width: 100%;
            height: 100vh;
        }

        .hero-left {
            flex: 0.45;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 5%;
            z-index: 10;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: slideUp 0.8s forwards;
        }

        .brand-overlap-card {
            background-color: var(--brand-color);
            color: var(--white);
            padding: 60px 70px;
            width: 125%;
            box-shadow: 40px 40px 80px rgba(242, 130, 0, 0.2);
            position: relative;
            z-index: 5;
            border-radius: 0 80px 0 0;
            animation: slideInLeft 1.2s forwards 0.2s;
        }

        .brand-overlap-card h1 {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            font-size: 70px;
            line-height: 0.95;
            margin-bottom: 35px;
            text-transform: uppercase;
        }

        .btn-look {
            background: var(--white);
            color: var(--dark-text);
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-look:hover {
            background: var(--dark-text);
            color: var(--white);
        }

        .floating-action-btn {
            position: absolute;
            bottom: -32px;
            right: 40px;
            width: 64px;
            height: 64px;
            background: var(--white);
            color: var(--brand-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 20;
            transition: var(--transition);
            animation: bounceIn 2s infinite;
        }

        .floating-action-btn:hover {
            background: var(--dark-text);
            color: var(--white);
            transform: scale(1.1);
        }

        .hero-right {
            flex: 3.55;
            height: 100vh;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        .slider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            /* transition: opacity 1s ease-in-out; */
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.88;
            transition: transform 3s ease;
        }

        /* .slide.active .hero-img {
            transform: scale(1.1);
        } */

        .slider-control {
            position: absolute;
            bottom: 40px;
            right: 0;
            background: var(--white);
            padding: 35px 55px;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
            cursor: pointer;
            box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.05);
            border-top-left-radius: 5px;
        }

        .current-num {
            font-size: 46px;
            font-weight: 700;
            color: var(--brand-color);
            line-height: 1;
        }

        .slider-line {
            width: 30px;
            height: 2px;
            background: var(--gray-text);
        }

        .total-num {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-text);
            letter-spacing: 2px;
        }

        /* --- HERO & SLIDER STYLING END --- */

        /* --- MOBILE NAVIGATION --- */
        .menu-btn {
            display: none;
            cursor: pointer;
            z-index: 1001;
            width: 44px;
            height: 44px;
            background: var(--brand-color);
            border-radius: 4px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }

        .menu-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: #fff;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: var(--mobile-nav-bg);
            z-index: 1000;
            padding: 40px;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
            box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-overlay.active {
            transform: translateX(0);
        }

        .mobile-close {
            align-self: flex-end;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f4f4f4;
            color: var(--dark-text);
            border-radius: 4px;
            margin-bottom: 50px;
            cursor: pointer;
        }

        .mobile-nav {
            list-style: none;
            overflow-y: auto;
        }

        .mobile-nav>li {
            margin-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 15px;
        }

        .mobile-nav a {
            color: var(--dark-text);
            font-size: 22px;
            text-decoration: none;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-submenu {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s;
            background: #fcfcfc;
        }

        .mobile-submenu.open {
            max-height: 200px;
            margin-top: 15px;
            padding: 10px 0;
        }

        .mobile-submenu a {
            font-size: 15px;
            color: var(--gray-text);
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .overlay-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }

        .overlay-bg.active {
            opacity: 1;
            visibility: visible;
        }

        /* Keyframes */
        @keyframes bounceIn {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1100px) {

            .nav-desktop,
            .btn-enquiry {
                display: none !important;
            }

            .menu-btn {
                display: flex;
            }

            .hero-left {
                display: none;
            }

            .hero-right {
                flex: 1;
                width: 100%;
                height: 100vh;
            }

            .sidebar {
                width: 60px;
            }

            header {
                left: 60px;
            }

            header.scrolled {
                height: 70px;
            }

            .hero {
                margin-left: 60px;
            }

            .slider-control {
                padding: 20px 40px;
            }

            .current-num {
                font-size: 28px;
            }
        }

        @media (max-width: 600px) {
            .sidebar {
                display: none;
            }

            header {
                left: 0;
                padding: 0 20px;
                height: 80px;
            }

            .hero {
                margin-left: 0;
            }

            .mobile-overlay {
                width: 100%;
                max-width: none;
            }

            
        }