* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: #333; overflow-x: hidden; background: #fff; line-height: 1.6; }

        /* Header */
        .top-bar { background: #0a1628; padding: 20px 0; width: 100%; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
        .container { width: 100%; padding: 0 40px; max-width: 1400px; margin-left: auto; margin-right: auto; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        
        .brand-logo .logo-title { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
        .brand-logo .logo-subtitle { font-size: 11px; color: #e67e22; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #e67e22; }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn-catalog, .btn-shop { background: #e67e22; color: #fff; padding: 8px 18px; border-radius: 4px; text-decoration: none; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
        .btn-catalog:hover, .btn-shop:hover { background: #d35400; transform: translateY(-1px); }
        .search-icon { color: #fff; font-size: 16px; cursor: pointer; transition: color 0.3s; }
        .search-icon:hover { color: #e67e22; }

        /* Page Hero */
        .page-hero { position: relative; height: 500px; width: 100%; background: linear-gradient(rgba(10,22,40,0.75), rgba(10,22,40,0.9)), url('../img/homepage/AKANA_ANA-D20_CAN_SALI-1024x1024.png') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
        .page-hero-content h1 { font-family: 'Inter', sans-serif; font-size: 56px; color: #fff; font-weight: 700; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
        .page-hero-content p { color: #e67e22; font-size: 15px; margin-top: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
        .breadcrumb { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 13px; justify-content: center; }
        .breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
        .breadcrumb a:hover { color: #e67e22; }

        /* General Section Formatting */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-label { color: #e67e22; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
        .section-title { font-family: 'Inter', sans-serif; font-size: 42px; color: #1a2744; font-weight: 700; margin-bottom: 15px; }
        .section-subtitle { color: #666; font-size: 16px; max-width: 680px; margin: 0 auto; line-height: 1.7; }
        
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Product Showcase Grid */
        .product-section { padding: 90px 0; }
        .product-section:nth-child(even) { background: #f8f9fa; }
        .product-section:nth-child(odd) { background: #fff; }
        .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
        .product-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #eee; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; display: flex; flex-direction: column; }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); border-color: #e67e22; }
        .product-badge { position: absolute; top: 15px; left: 15px; background: #e67e22; color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
        .product-badge.badge-davit { background: #1a2744; }
        .product-image-wrapper { overflow: hidden; position: relative; background: #fdfdfd; height: 260px; display: flex; align-items: center; justify-content: center; padding: 15px; }
        .product-image { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.5s; }
        .product-card:hover .product-image { transform: scale(1.06); }
        .product-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,22,40,0.85)); padding: 20px; opacity: 0; transition: opacity 0.3s; display: flex; justify-content: center; }
        .product-card:hover .product-image-overlay { opacity: 1; }
        .product-image-overlay .quick-view { color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; cursor: pointer; }

        .product-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .product-category-tag { color: #e67e22; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
        .product-name { font-size: 22px; font-weight: 700; color: #1a2744; margin-bottom: 10px; line-height: 1.3; }
        .product-desc { color: #666; font-size: 13px; line-height: 1.6; margin-bottom: 18px; }
        .product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
        .product-spec { background: #f4f6f8; padding: 5px 12px; border-radius: 6px; font-size: 12px; color: #444; font-weight: 500; display: flex; align-items: center; gap: 6px; }
        .product-spec i { color: #e67e22; }

        .product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f0f0f0; margin-top: auto; }
        .product-price { display: flex; flex-direction: column; }
        .price-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
        .price-current { font-size: 16px; font-weight: 700; color: #1a2744; }
        .btn-add-cart { background: #e67e22; color: #fff; border: none; padding: 10px 20px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 6px; text-decoration: none; }
        .btn-add-cart:hover { background: #d35400; transform: scale(1.04); }

        /* Feature Cards Grid */
        .features-section { padding: 90px 0; background: #0f1b2e; position: relative; overflow: hidden; }
        .features-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(230,126,34,0.06); border-radius: 50%; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 35px 25px; text-align: center; transition: all 0.4s; }
        .feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-8px); border-color: #e67e22; }
        .feature-icon { width: 70px; height: 70px; background: #e67e22; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 26px; }
        .feature-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
        .feature-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

        /* Technical Specification Table */
        .comparison-table-wrapper { overflow-x: auto; margin-top: 40px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); background: #fff; }
        .comparison-table { width: 100%; border-collapse: collapse; min-width: 800px; text-align: left; }
        .comparison-table th { background: #1a2744; color: #fff; padding: 18px 22px; font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
        .comparison-table th:first-child { border-radius: 16px 0 0 0; }
        .comparison-table th:last-child { border-radius: 0 16px 0 0; }
        .comparison-table td { padding: 16px 22px; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #444; }
        .comparison-table tr:nth-child(even) { background: #f8f9fa; }
        .comparison-table tr:hover { background: #fff8f0; }
        .comparison-table .model-name { font-weight: 700; color: #1a2744; font-size: 15px; }
        .comparison-table .badge-table { display: inline-block; padding: 2px 8px; background: #1a2744; color: #fff; border-radius: 4px; font-size: 11px; font-weight: 700; margin-left: 6px; }

        /* Standards & Certification List Section */
        .specs-highlight { padding: 90px 0; background: linear-gradient(135deg, #1a2744 0%, #0f1b2e 100%); }
        .specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .specs-content .section-title { color: #fff; font-size: 36px; }
        .specs-content .section-subtitle { color: rgba(255,255,255,0.7); }
        .specs-list { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
        .specs-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.6; }
        .specs-item i { color: #e67e22; font-size: 18px; margin-top: 3px; flex-shrink: 0; }
        .specs-image img { width: 100%; max-height: 480px; object-fit: contain; border-radius: 16px; background: rgba(255,255,255,0.03); padding: 20px; border: 1px solid rgba(255,255,255,0.1); }

        /* CTA Section */
        .cta-section { padding: 100px 0; background: linear-gradient(135deg, #1a2744 0%, #0f1b2e 100%); text-align: center; position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: rgba(230,126,34,0.05); border-radius: 50%; }
        .cta-title { font-family: 'Inter', sans-serif; font-size: 42px; color: #fff; font-weight: 700; margin-bottom: 20px; position: relative; z-index: 1; }
        .cta-text { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 650px; margin: 0 auto 35px; line-height: 1.7; position: relative; z-index: 1; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 1; }
        .btn-cta-primary { background: #e67e22; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .btn-cta-primary:hover { background: #d35400; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,126,34,0.3); }
        .btn-cta-secondary { background: transparent; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .btn-cta-secondary:hover { border-color: #e67e22; color: #e67e22; }

        /* Footer */
        .footer { background: #0a1628; padding: 60px 0 30px; color: rgba(255,255,255,0.6); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: all 0.3s; }
        .footer-social a:hover { background: #e67e22; transform: translateY(-3px); }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: #e67e22; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 13px; }
        .scroll-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: #e67e22; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: all 0.3s; border: none; opacity: 0; visibility: hidden; }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: #d35400; transform: translateY(-3px); }
        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 5px; }

        /* Responsive Breakpoints */
        @media (max-width: 1100px) { 
            .features-grid { grid-template-columns: repeat(2, 1fr); } 
            .specs-grid { grid-template-columns: 1fr; gap: 40px; } 
            .footer-grid { grid-template-columns: 1fr 1fr; } 
        }
        @media (max-width: 768px) { 
            .nav-links { display: none; } 
            .mobile-menu-btn { display: block; }
            .page-hero-content h1 { font-size: 38px; } 
            .section-title { font-size: 30px; } 
            .product-grid { grid-template-columns: 1fr; } 
            .features-grid { grid-template-columns: 1fr; } 
            .footer-grid { grid-template-columns: 1fr; } 
            .cta-buttons { flex-direction: column; align-items: center; } 
        }
        
        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }
            5% {
                transform: translate(130%, 130%) rotate(30deg);
            }
            8% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
            10% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
            100% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
        }
            100% {
                left: 140%;
                top: 0;
            }
        }

    
        /* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }
            100% {
                left: 140%;
                top: 0;
            }
        }

        /* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }

        @keyframes slide {
            0% {
                left: -100px;
                top: 0;
            }
            50% {
                left: 40%;
                top: 0px;
            }
            100% {
                left: 140%;
                top: 0;
            }
        }

    
        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2s ease, -webkit-mask-position 2s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            12% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            14% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            26% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            28% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            100% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
        }

    
        

        /* Fullscreen Mobile Nav Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
        }

        .mobile-nav-body {
            padding: 25px 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav-body a {
            color: #fff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-nav-body a:hover {
            color: #e67e22;
        }

        .mobile-sublinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-left: 15px;
            margin-top: 8px;
            border-left: 2px solid rgba(230, 126, 34, 0.5);
        }

        .mobile-sublinks a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

    
        /* Full Width Header Styling */
        .top-bar {
            background: #0a1628;
            padding: 20px 0;
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .top-bar .container {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 40px !important;
            margin: 0 !important;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

        /* Navigation & Dropdown Styling */
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links > li { position: relative; padding: 10px 0; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #e67e22; }

        /* Dropdown Submenu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #0a1628;
            min-width: 240px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.45);
            border-radius: 8px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 200;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu li { width: 100%; }
        .dropdown-menu a {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            white-space: nowrap;
            transition: all 0.2s;
        }
        .dropdown-menu a:hover {
            background: rgba(230, 126, 34, 0.15);
            color: #e67e22;
            padding-left: 24px;
        }

        /* Header Action Buttons */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .btn-catalog, .btn-shop {
            background: #e67e22;
            color: #fff;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }
        .btn-catalog:hover, .btn-shop:hover {
            background: #d35400;
            transform: translateY(-1px);
        }
        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% { -webkit-mask-position: 0%; mask-position: 0%; }
            12% { -webkit-mask-position: 140%; mask-position: 140%; }
            14% { -webkit-mask-position: 140%; mask-position: 140%; }
            26% { -webkit-mask-position: 0%; mask-position: 0%; }
            28% { -webkit-mask-position: 0%; mask-position: 0%; }
            100% { -webkit-mask-position: 0%; mask-position: 0%; }
        }

        

    
        /* 3D Modern White Brand Logo - Side-by-side flex layout */
        .brand-logo {
            text-decoration: none !important;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 14px !important;
            transition: transform 0.3s ease;
        }
        .brand-logo:hover {
            transform: translateY(-1px);
        }
        .header-logo-img {
            height: 48px !important;
            width: auto !important;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }
        .logo-text-wrap {
            display: flex !important;
            flex-direction: column !important;
        }
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif !important;
            font-size: 23px !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif !important;
            font-size: 11px !important;
            color: #ffffff !important;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

    
        /* Mobile Menu Button - Hidden on Desktop */
        .mobile-menu-btn {
            display: none !important;
        }

        /* Responsive Mobile Header (Only Logo + Hamburger on Mobile <= 968px) */
        @media screen and (max-width: 968px) {
            .top-bar { padding: 14px 0; }
            .top-bar .container { padding: 0 20px !important; }
            .nav-links, .header-actions { display: none !important; }
            .mobile-menu-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                color: #fff;
                font-size: 24px;
                cursor: pointer;
                padding: 6px;
            }
        }

    
        /* 4-Column Footer Styling */
        .footer {
            background: #0a1628 !important;
            padding: 70px 0 30px !important;
            color: rgba(255,255,255,0.7) !important;
            width: 100% !important;
        }
        .footer-grid {
            display: grid !important;
            grid-template-columns: 2fr 1fr 1fr 1fr !important;
            gap: 50px !important;
            margin-bottom: 50px !important;
        }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p {
            font-size: 14px !important;
            line-height: 1.8 !important;
            margin-bottom: 22px !important;
            color: rgba(255,255,255,0.65) !important;
        }
        .footer-social {
            display: flex !important;
            gap: 12px !important;
        }
        .footer-social a {
            width: 40px !important;
            height: 40px !important;
            background: rgba(255,255,255,0.08) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #fff !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
        }
        .footer-social a:hover {
            background: #e67e22 !important;
            transform: translateY(-3px) !important;
        }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        .footer-links li {
            margin-bottom: 12px !important;
        }
        .footer-links a {
            color: rgba(255,255,255,0.65) !important;
            text-decoration: none !important;
            font-size: 14px !important;
            transition: color 0.3s ease !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }
        .footer-links a:hover {
            color: #e67e22 !important;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1) !important;
            padding-top: 25px !important;
            text-align: center !important;
            font-size: 13.5px !important;
            color: rgba(255,255,255,0.5) !important;
        }

        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 30px !important;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
            }
        }

    
        /* Centered Boxed Footer Container (Not Full-Width) */
        .footer .container {
            width: 100% !important;
            max-width: 1300px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        @media (max-width: 768px) {
            .footer .container {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }