        * {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #fafafa;
        }
        /* Header with white background */
        .nav-bg {
            background: #ffffff;
            border-bottom: 2px solid #0B1F6D;
        }
        .accent {
            color: #F4B400;
        }
        .accent-bg {
            background: #F4B400;
        }
        .text-navy {
            color: #0B1F6D;
        }
        .bg-navy {
            background: #0B1F6D;
        }
        .bg-soft {
            background: #F5F5F5;
        }
        .card-shadow {
            box-shadow: 0 8px 24px rgba(11, 31, 109, 0.08);
            transition: all 0.25s ease;
        }
        .card-shadow:hover {
            box-shadow: 0 16px 40px rgba(11, 31, 109, 0.15);
            transform: translateY(-4px);
        }
        /* Hero Video Background */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .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;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(25, 26, 30, 0.6) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hero-cta {
            animation: hero-cta-float 4s ease-in-out infinite;
            will-change: transform;
        }
        .hero-cta-delay {
            animation-delay: 0.35s;
        }
        .hero-cta:hover {
            animation: none;
            transform: translateY(-3px) scale(1.015);
        }
        @keyframes hero-cta-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-2px); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-cta {
                animation: none;
            }
        }
        #about {
            padding-top: 2rem;
        }
        .about-video-card {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(11, 31, 109, 0.15);
            min-height: 520px;
            background: #000;
        }
        .about-video-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 520px;
        }
        .about-video-card video[loop] {
            /* keep looping clean */
        }
        @media (min-width: 1024px) {
            .about-video-card {
                margin-top: 2rem;
            }
            #aboutLeft {
                margin-top: -1.5rem;
            }
            #aboutHeading {
                font-size: 3.25rem;
                line-height: 1.1;
            }
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #0B1F6D;
        }
        .stat-number-white {
            font-size: 2.6rem;
            font-weight: 700;
            color: white;
        }
        .breadcrumb a {
            color: #0B1F6D;
        }
        .breadcrumb a:hover {
            color: #F4B400;
        }
        .back-to-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #0B1F6D;
            color: white;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 24px rgba(11, 31, 109, 0.24);
            transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
            z-index: 999;
            border: 2px solid #F4B400;
            cursor: pointer;
            font-size: 1.25rem;
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top:hover {
            transform: scale(1.08);
            background: #F4B400;
            color: #0B1F6D;
        }
        .back-to-top:focus-visible {
            outline: 3px solid rgba(244, 180, 0, 0.45);
            outline-offset: 3px;
        }
        @media (max-width: 640px) {
            .back-to-top {
                right: 1rem;
                bottom: 1rem;
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
        }
        .admin-panel {
            display: none;
        }
        .admin-panel.active {
            display: block;
        }
        @media (min-width: 641px) {
            .admin-panel {
                padding-left: 260px;
            }
        }
        .user-dashboard {
            display: block;
        }
        .user-dashboard.hidden {
            display: none;
        }
        .products-view {
            display: block;
            background: #f8fafc;
        }
        .products-view.hidden {
            display: none !important;
        }
        .product-category-card {
            cursor: pointer;
        }
        .product-category-card:focus-visible {
            outline: 3px solid #F4B400;
            outline-offset: 4px;
        }
        .product-detail-image {
            display: block;
            width: 100%;
            height: 220px;
            object-fit: contain;
            background: #f8fafc;
        }
        .admin-tab {
            cursor: pointer;
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .admin-tab.active {
            background: #F4B400;
            color: #0B1F6D;
        }
        .admin-tab.inactive {
            background: transparent;
            color: #64748b;
            border: 1px solid #cbd5e1;
        }
        .admin-tab.inactive:hover {
            background: rgba(244, 180, 0, 0.1);
        }
        .login-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }
        .login-overlay.show {
            display: flex;
        }
        .login-card {
            background: white;
            max-width: 460px;
            width: 100%;
            padding: 2.5rem;
            border-radius: 32px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        .login-card .back-btn {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: none;
            border: none;
            color: #0B1F6D;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .login-card .back-btn:hover {
            color: #F4B400;
        }

        .back-navigation-btn {
            width: 10rem;
            padding: 0.625rem 0.75rem;
            font-size: 0.875rem;
            line-height: 1.25rem;
        }
        .gallery-scroll {
            display: flex;
            overflow-x: auto;
            gap: 1.2rem;
            padding: 0.5rem 0.25rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .gallery-scroll::-webkit-scrollbar {
            display: none;
        }
        .gallery-item {
            flex: 0 0 auto;
            width: 340px;
            scroll-snap-align: start;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            background: white;
        }
        .gallery-item:hover {
            transform: scale(1.02);
        }
        .gallery-item img,
        .gallery-item video {
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            object-fit: cover;
            display: block;
        }
        .gallery-item .caption {
            padding: 0.8rem 1.2rem;
            min-height: 5.25rem;
            background: white;
            font-weight: 600;
            font-size: 1rem;
            color: #0B1F6D;
            line-height: 1.45;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }
        .gallery-nav-btn {
            background: #F4B400;
            color: #0B1F6D;
            border: none;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
        }
        .gallery-nav-btn:hover {
            background: #0B1F6D;
            color: white;
            transform: scale(1.05);
        }
        .gallery-nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: white;
            padding: 1rem;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            z-index: 100;
            border-top: 2px solid #0B1F6D;
            border-bottom: 2px solid #0B1F6D;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        .mobile-menu.open {
            display: flex;
        }
        @media (min-width: 768px) {
            .mobile-menu.open {
                display: none;
            }
        }
        .mobile-menu a {
            padding: 0.7rem 1rem;
            color: #0B1F6D;
            font-size: 1rem;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 500;
        }
        .mobile-menu a:hover {
            background: rgba(244, 180, 0, 0.1);
            color: #0B1F6D;
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        .text-large {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        /* About section: preserve user-entered spacing and justify text */
        #aboutContent p,
        #aboutDescription,
        #aboutCTA,
        #aboutMission,
        #aboutVision,
        #aboutValues {
            text-align: justify;
            text-justify: inter-word;
            white-space: pre-wrap; /* preserves multiple spaces and line breaks from admin input */
            word-break: keep-all;
        }
        /* Core values list layout (plain items - no containers) */
        .about-three {
            align-items: stretch;
        }
        @media (min-width: 1024px) {
            .about-three {
                grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
            }
            #aboutValuesCard {
                margin-left: -3.75rem;
                width: calc(100% + 3.75rem);
            }
        }
        .about-info-stack {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            align-self: start;
            max-width: 88%;
            margin-left: 1rem;
        }
        .about-info-card {
            border-radius: 12px;
            padding: 1.5rem;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }
        .about-info-title {
            font-size: 1.25rem;
            line-height: 1.35;
            margin-bottom: 0.75rem;
        }
        .about-info-text {
            font-size: 1.08rem;
            line-height: 1.7;
            text-align: justify;
            text-justify: inter-word;
            white-space: pre-wrap;
            word-break: break-word;
        }
        .about-values-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: block;
        }
        .about-value-item {
            margin-bottom: 0.5rem;
            padding: 0;
            background: transparent;
            border: none;
            font-weight: 600;
            line-height: 1.6;
            text-align: left;
            white-space: normal;
            word-break: break-word;
        }
        .about-value-item:last-child {
            margin-bottom: 0;
        }

        /* Mission & Vision containers (card wrappers) */
        #aboutMissionCard,
        #aboutVisionCard,
        #aboutValuesCard {
            /* visual styles are already applied via utility classes; ensure text wraps and spacing */
        }
        #aboutMissionCard,
        #aboutVisionCard {
            background: #0B1F6D !important;
            border-color: #0B1F6D !important;
        }
        #aboutValuesCard {
            background: #F4B400 !important;
            border-color: #F4B400 !important;
        }
        #aboutMissionCard .about-info-title,
        #aboutVisionCard .about-info-title,
        #aboutMissionCard .about-info-text,
        #aboutVisionCard .about-info-text {
            color: #ffffff !important;
        }
        #aboutValuesCard .about-info-text,
        #aboutValuesCard .about-value-item {
            color: #ffffff !important;
        }
        #aboutValuesCard .about-info-title {
            color: #ffffff !important;
        }
        #aboutMissionCard,
        #aboutVisionCard {
            min-height: auto;
            padding: 0.9rem 1.1rem;
        }
        #aboutMissionCard .about-info-title,
        #aboutVisionCard .about-info-title {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }
        #aboutMissionCard .about-info-text,
        #aboutVisionCard .about-info-text {
            font-size: 1rem;
            line-height: 1.6;
        }
        #aboutMissionCard .about-info-text,
        #aboutVisionCard .about-info-text,
        #aboutValuesCard .about-info-text {
            white-space: pre-wrap;
            text-align: justify;
            line-height: 1.7;
        }
        .heading-xl {
            font-size: 2.8rem;
            font-weight: 700;
        }
        .heading-lg {
            font-size: 2.2rem;
            font-weight: 700;
        }
        .nav-link {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0B1F6D;
        }
        .nav-link:hover {
            color: #F4B400;
        }
        .brand-full {
            font-weight: 800;
            letter-spacing: -0.02em;
            font-size: 1.8rem;
            color: #0B1F6D;
        }
        .highlight {
            color: #F4B400;
        }
        .brand-full .highlight {
            color: #F4B400;
        }
        .contact-message {
            border-left: 4px solid #F4B400;
        }
        .contact-message.unread {
            background: rgb(246, 246, 246);
        }
        .admin-media-item {
            border: 1px solid rgba(245, 245, 245, 0.15);
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 12px rgb(244, 243, 243);
        }
        .admin-media-item img,
        .admin-media-item video {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .admin-project-item {
            border: 1px solid rgba(11, 31, 109, 0.15);
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }
        .admin-project-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .admin-message-item {
            border: 1px solid rgba(11, 31, 109, 0.15);
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            padding: 1rem;
        }
        .admin-workspace {
            display: block;
        }
        .admin-section-nav {
            position: fixed;
            top: 6.5rem;
            left: 0;
            z-index: 30;
            width: 260px;
            height: calc(100vh - 6.5rem);
            max-height: calc(100vh - 6.5rem);
            overflow-y: auto;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            border: 0;
            border-right: 1px solid #e2e8f0;
            border-radius: 0 1.25rem 1.25rem 0;
            background: #fff;
            padding: 1rem;
            box-shadow: 0 4px 18px rgba(11, 31, 109, 0.05);
        }
        .admin-section-nav-label {
            margin: 0 0 0.65rem;
            padding: 0 0.65rem;
            color: #94a3b8;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .admin-section-nav-list {
            display: grid;
            flex: none;
            gap: 0.35rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .admin-section-nav-list li { min-width: 0; }
        .admin-section-nav-list .admin-sub-tab { width: 100%; }
        .admin-sidebar-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid #e2e8f0; }
        .admin-sidebar-logout {
            display: inline-flex;
            width: 100%;
            align-items: center;
            justify-content: flex-start;
            gap: 0.75rem;
            min-height: 44px;
            padding: 0.65rem 0.8rem;
            border-radius: 0.75rem;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background 0.2s;
        }
        .admin-sidebar-logout:hover { background: #fee2e2; }
        .admin-workspace > [id$="Content"] { min-width: 0; margin-top: 0 !important; }
        .admin-content-card { border: 1px solid #e2e8f0; box-shadow: 0 8px 24px rgba(11, 31, 109, 0.05); }
        .admin-sub-tab {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.75rem;
            min-height: 44px;
            padding: 0.65rem 0.8rem;
            border-radius: 0.75rem;
            font-weight: 600;
            transition: all 0.2s;
            font-size: 0.9rem;
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .admin-sub-tab.active {
            background: #F4B400;
            color: #0B1F6D;
            border-color: #F4B400;
            box-shadow: 0 5px 12px rgba(244, 180, 0, 0.2);
        }
        .admin-sub-tab.inactive {
            background: #fff;
            color: #64748b;
            border-color: transparent;
        }
        .admin-sub-tab.inactive:hover {
            background: #f8fafc;
            color: #0B1F6D;
        }
        .admin-inbox-list { border: 1px solid #e2e8f0; border-radius: 1rem; overflow: hidden; }
        .admin-inbox-row { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) auto; gap: 0.9rem; align-items: center; padding: 1rem; border-bottom: 1px solid #e2e8f0; background: #fff; transition: background 0.2s; }
        .admin-inbox-row:last-child { border-bottom: 0; }
        .admin-inbox-row:hover { background: #f8fafc; }
        .admin-inbox-row.is-unread { border-left: 3px solid #F4B400; background: #fffdf6; }
        .admin-inbox-avatar { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: #e8eefc; color: #0B1F6D; font-size: 0.9rem; }
        .admin-inbox-heading { display: flex; align-items: center; gap: 0.55rem; }
        .admin-inbox-heading p { margin: 0; color: #0B1F6D; font-size: 0.9rem; font-weight: 700; }
        .admin-inbox-status { border-radius: 9999px; background: #fff1c9; color: #936b00; padding: 0.15rem 0.45rem; font-size: 0.65rem; font-weight: 700; }
        .admin-inbox-status.archived { background: #eef2f7; color: #64748b; }
        .admin-inbox-contact, .admin-inbox-preview { margin: 0.25rem 0 0; overflow: hidden; color: #64748b; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }
        .admin-inbox-contact span { padding: 0 0.25rem; color: #cbd5e1; }
        .admin-inbox-preview { color: #475569; font-size: 0.82rem; }
        .admin-inbox-actions { display: grid; justify-items: end; gap: 0.45rem; }
        .admin-inbox-actions time { color: #94a3b8; font-size: 0.7rem; white-space: nowrap; }
        .admin-inbox-actions > div { display: flex; gap: 0.25rem; }
        .admin-row-action { display: inline-flex; align-items: center; gap: 0.35rem; border-radius: 0.5rem; padding: 0.38rem 0.5rem; color: #0B1F6D; font-size: 0.72rem; font-weight: 600; }
        .admin-row-action:hover { background: #e8eefc; }
        .admin-row-action.archive { color: #936b00; }
        .admin-row-action.delete { color: #dc2626; }
        .admin-empty-state { padding: 3rem 1rem; text-align: center; color: #94a3b8; }
        .admin-empty-state i { font-size: 1.75rem; color: #cbd5e1; }
        .admin-empty-state p { margin: 0.75rem 0 0.2rem; color: #64748b; font-weight: 600; }
        .admin-empty-state span { font-size: 0.8rem; }
        @media (max-width: 640px) {
            .admin-panel { padding-left: 0; }
            .admin-workspace { display: block; }
            .admin-section-nav {
                position: static;
                width: auto;
                max-height: none;
                margin-bottom: 1rem;
                padding: 1rem;
                overflow: visible;
                border-radius: 1.25rem;
            }
            .admin-section-nav-label { display: block; }
            .admin-section-nav-list { display: grid; width: 100%; gap: 0.35rem; }
            .admin-workspace > [id$="Content"] { padding-top: 0; }
            .admin-sub-tab {
                min-height: 44px;
                padding: 0.65rem 0.8rem;
                font-size: 0.9rem;
            }
            .admin-inbox-row { grid-template-columns: 2.25rem minmax(0, 1fr); gap: 0.65rem; }
            .admin-inbox-avatar { width: 2.25rem; height: 2.25rem; }
            .admin-inbox-actions { grid-column: 2; justify-items: start; }
            .admin-inbox-actions time { display: none; }
        }
        .admin-panel {
            background: #f8fafc;
        }
        .admin-panel .bg-white\/5 {
            background: white;
        }
        .admin-panel .text-gray-300 {
            color: rgba(255, 255, 255, 0.8) !important;
        }
        .admin-panel .text-white {
            color: white !important;
        }
        .admin-panel thead.text-white th,
        .admin-panel thead.text-white td {
            color: white !important;
        }
        .admin-panel .border-white\/20 {
            border-color: #e2e8f0;
        }
        .admin-panel .bg-white\/10 {
            background: #f1f5f9;
        }
        .admin-panel .text-gray-400 {
            color: #94a3b8;
        }
        .admin-panel .border-white\/10 {
            border-color: #e2e8f0;
        }
        @media (max-width: 640px) {
            .heading-xl {
                font-size: 2rem;
            }
            .heading-lg {
                font-size: 1.6rem;
            }
            .text-large {
                font-size: 1rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .stat-number-white {
                font-size: 1.8rem;
            }
            .gallery-item {
                width: 260px;
            }
            .gallery-item img,
            .gallery-item video {
                height: auto;
            }
            .brand-full {
                font-size: 1rem;
            }
            .nav-link {
                font-size: 1rem;
            }
            .gallery-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .about-video-card,
            .about-video-card video {
                min-height: 440px;
            }
            #aboutThree {
                grid-template-columns: minmax(0, 1fr);
                gap: 1.25rem;
            }
            #aboutThree .about-info-stack {
                display: contents;
            }
            #aboutThree #aboutMissionCard,
            #aboutThree #aboutVisionCard {
                box-sizing: border-box;
                width: 100% !important;
                padding: 1.15rem !important;
            }
            .about-info-card {
                padding: 1.15rem;
            }
            .about-info-title {
                font-size: 1rem;
            }
            .about-info-text {
                font-size: 0.94rem;
                line-height: 1.65;
            }
        }
        @media (max-width: 480px) {
            .heading-xl {
                font-size: 1.6rem;
            }
            .gallery-item {
                width: 180px;
            }
            .gallery-item img,
            .gallery-item video {
                height: 140px;
            }
        }
        /* Keep the three About cards level on phones and tablets. */
        @media (max-width: 1023px) {
            #aboutThree {
                grid-template-columns: minmax(0, 1fr);
                gap: 1.25rem;
            }
            #aboutThree .about-info-stack {
                display: contents !important;
                width: auto;
                max-width: none !important;
                margin-left: 0 !important;
            }
            #aboutThree #aboutMissionCard,
            #aboutThree #aboutVisionCard,
            #aboutThree #aboutValuesCard {
                box-sizing: border-box;
                width: 100% !important;
                max-width: none !important;
                margin-left: 0 !important;
            }
        }
