

       /* ============================================
                   HEADER
                   ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        .header.scrolled {
            background: rgba(38, 33, 97, 0.95);
            backdrop-filter: blur(12px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(38, 33, 97, 0.2);
        }

        .header .logo img {
            height: 65px;
            width: auto;
        }

        /* ---- Desktop Nav ---- */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu>li>a {
            color: white;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 14px;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 0.01em;
        }

        .nav-menu>li>a:hover,
        .nav-menu>li>a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #E6BF60;
        }

        .nav-menu>li>a i {
            font-size: 0.75rem;
            margin-left: 2px;
        }

        /* ---- Dropdown ---- */
        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 12px;
            padding: 8px 0;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: var(--transition);
            border: none;
            list-style: none;
            margin: 0;
        }

        .nav-menu>li:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu-custom li {
            position: relative;
        }

        .dropdown-menu-custom li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            color: black;
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .dropdown-menu-custom li a:hover {
            background: rgba(38, 33, 97, 0.06);
            color: var(--primary);
        }

        .dropdown-menu-custom li a i {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* Nested dropdown (right side) */
        .dropdown-menu-custom .dropdown-menu-custom {
            left: 100%;
            top: 0;
            min-width: 200px;
        }

        /* ---- Menu Toggle (Hamburger) ---- */
        .menu-toggle {
            /* display: none; */
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            align-items: center;
            justify-content: center;
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .mobMenu {
            display: none;
        }

        /* ============================================
                   OFF-CANVAS MENU (Right-to-Left)
                   ============================================ */
        .offcanvas-menu {
            position: fixed;
            top: 0;
            right: -420px;
            width: 400px;
            max-width: 85vw;
            height: 100vh;
            background: white;
            z-index: 20000000000;
            padding: 30px 25px;
            transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        }

        .offcanvas-menu.open {
            right: 0;
        }

        .offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1055;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .offcanvas-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .offcanvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(38, 33, 97, 0.08);
            margin-bottom: 20px;
        }

        .offcanvas-header .logo img {
            height: 61px;
        }

        .offcanvas-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: black;
            cursor: pointer;
            padding: 0 8px;
            transition: var(--transition);
        }

        .offcanvas-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* ---- Offcanvas Menu Items ---- */
        .offcanvas-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-nav>li {
            border-bottom: 1px solid rgba(38, 33, 97, 0.06);
        }

        .offcanvas-nav>li>a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            color: black;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

        .offcanvas-nav>li>a:hover {
            color: var(--primary);
        }

        .offcanvas-nav>li>a .arrow {
            font-size: 0.75rem;
            transition: var(--transition);
        }

        .offcanvas-nav>li>a .arrow.open {
            transform: rotate(180deg);
        }

        /* ---- Offcanvas Submenu ---- */
        .offcanvas-sub {
            list-style: none;
            padding: 0 0 0 16px;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .offcanvas-sub.open {
            max-height: 800px;
        }

        .offcanvas-sub li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            color: black;
            font-size: 0.9rem;
            font-weight: 400;
            border-bottom: 1px solid rgba(38, 33, 97, 0.04);
            transition: var(--transition);
        }

        .offcanvas-sub li a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .offcanvas-sub .offcanvas-sub {
            padding-left: 16px;
        }

        .offcanvas-sub .offcanvas-sub li a {
            font-size: 0.85rem;
            color: #8a8a9a;
        }

        .offcanvas-contact {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(38, 33, 97, 0.08);
        }

        .offcanvas-contact p {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .offcanvas-contact p i {
            width: 24px;
            color: var(--primary);
        }



      /* ============================================
                   HERO SECTION
                   ============================================ */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             background: linear-gradient(
248deg, rgb(131 85 85 / 52%) 0%, rgba(38, 33, 97, 0.30) 50%, rgba(0, 0, 0, 0.10) 100%); 
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 40px 80px 40px;
            max-width: 700px;
        }

        .hero-content .badge {
            background: #E6BF60;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            padding: 6px 18px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
        }

        .hero-content h1 span {
            color: #E6BF60;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            line-height: 1.7;
            margin-bottom: 28px;
            font-weight: 400;
        }

        .hero-content .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #E6BF60;
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
        }

        .hero-content .btn-hero:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(245, 166, 35, 0.45);
            color: white;
        }

        .hero-content .btn-hero i {
            font-size: 1.1rem;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.5rem;
            animation: bounceDown 2s infinite;
        }

        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 500px;
                height: 80vh;
            }
            .hero-content {
                padding: 30px 20px 60px 20px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 0.95rem;
            }
            .hero-content .btn-hero {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
        }


