/* =========================================
           HERO SECTION: BRANDING (DARK MATRIX 3D)
           ========================================= */
        .branding-hero-section {
            position: relative;
            background: radial-gradient(circle at 20% 50%, #4a4244 0%, #000000 90%) !important;
            background-color: #000 !important;
            min-height: 70vh; 
            padding: 50px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            perspective: 1500px;
        }

        /* CRITICAL FIX: Forces all content to sit ABOVE the background and dust overlay */
        .branding-hero-section .container {
            position: relative;
            z-index: 5; 
        }

        /* Red Dust Particles */
        .dust-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23eb1e24' opacity='0.3'/%3E%3Ccircle cx='50' cy='80' r='1.5' fill='%23eb1e24' opacity='0.2'/%3E%3Ccircle cx='150' cy='40' r='1' fill='%23eb1e24' opacity='0.3'/%3E%3Ccircle cx='180' cy='150' r='1.5' fill='%23eb1e24' opacity='0.2'/%3E%3C/svg%3E");
            animation: drift 60s linear infinite;
            opacity: 0.6;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes drift { 
            from { background-position: 0 0; } 
            to { background-position: 100px -100px; } 
        }

        /* =========================================
           LEFT CONTENT: TEXT & SERVICE RIBBON
           ========================================= */
        .hero-content { position: relative; z-index: 10; padding-right: 30px; }

        .branding-hero-section .premium-tag {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 16px;
            background: rgba(235, 30, 36, 0.1);
            border: 1px solid rgba(235, 30, 36, 0.3);
            border-radius: 50px;
            color: var(--secondary-color); /* Red */
            font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
        }

        .branding-hero-section h1 {
            font-size: 4rem; 
            font-weight: 800; 
            line-height: 1.15; 
            margin-bottom: 25px; 
            color: #fff !important; /* Force white text */
        }
        
        .branding-hero-section .gold-text {
            background: linear-gradient(135deg, #eb1e24 0%, #ff4d4d 100%);
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .branding-hero-section .lead-text {
            font-size: 1.2rem; 
            color: rgba(255,255,255,0.7) !important; 
            margin-bottom: 40px; 
            max-width: 600px; 
            line-height: 1.7;
        }

        /* --- THE SERVICE RIBBON --- */
        .branding-hero-section .service-ribbon {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .branding-hero-section .service-tile {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s ease;
            cursor: default;
        }
        
        .branding-hero-section .service-tile:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--secondary-color); /* Red Border */
            transform: translateY(-5px);
        }

        .branding-hero-section .tile-icon {
            font-size: 20px;
            color: var(--secondary-color); /* Red Icon */
            margin-bottom: 10px;
            display: block;
        }

        .branding-hero-section .tile-name {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        /* Buttons */
        .branding-hero-section .btn-glow {
            position: relative;
            background: var(--secondary-color); /* Red Button */
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
            transition: 0.3s;
            border: none;
            box-shadow: 0 0 20px rgba(235, 30, 36, 0.4);
            overflow: hidden;
        }
        .branding-hero-section .btn-glow:hover { 
            transform: translateY(-3px); 
            background: #fff; 
            color: var(--secondary-color) !important; 
        }

        .branding-hero-section .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            margin-left: 15px;
            transition: 0.3s;
            display: inline-flex;
        }
        .branding-hero-section .btn-outline:hover { 
            background: rgba(255,255,255,0.05); 
            border-color: #fff; 
        }

        /* =========================================
           RIGHT VISUAL: THE BRAND MONUMENT
           ========================================= */
        .visual-wrapper {
            position: relative;
            height: 400px;
            display: flex; align-items: center; justify-content: center;
            perspective: 1200px;
            z-index: 5;
        }

        .monument-stage {
            position: relative;
            width: 400px; height: 500px;
            transform-style: preserve-3d;
            transform: scale(0.85); 
            transform-origin: center center;
            animation: floatStage 8s ease-in-out infinite;
        }
        
        @keyframes floatStage { 
            0%, 100% { transform: scale(0.85) translateY(0); } 
            50% { transform: scale(0.85) translateY(-20px); } 
        }

        /* The Central Monolith (Glass Block) */
        .monolith {
            position: absolute;
            top: 50%; left: 50%;
            width: 280px; height: 400px;
            transform: translate(-50%, -50%) rotateY(-25deg);
            transform-style: preserve-3d;
            background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: -30px 30px 60px rgba(0,0,0,0.7);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            transition: transform 0.5s ease;
        }
        
        .monolith:hover { transform: translate(-50%, -50%) rotateY(-20deg) scale(1.02); }
        
        /* Inner Red Core */
        .mono-core {
            width: 2px; height: 80%;
            background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
            box-shadow: 0 0 20px var(--secondary-color);
            position: absolute;
        }

        /* Floating Artifacts (Representing Services) */
        .artifact {
            position: absolute;
            transform-style: preserve-3d;
        }

        /* 1. Logo Sphere */
        .art-logo {
            top: 20%; left: 50%;
            width: 60px; height: 60px;
            background: radial-gradient(circle at 30% 30%, #fff, #eb1e24); /* Red Gradient */
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(235, 30, 36, 0.4);
            transform: translateZ(60px);
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; color: #fff;
            animation: pulseCore 3s infinite ease-in-out;
        }
        @keyframes pulseCore { 
            0%, 100% { transform: translateZ(60px) scale(1); } 
            50% { transform: translateZ(60px) scale(1.1); } 
        }

        /* 2. Identity Card */
        .art-card {
            bottom: 30%; right: -20px;
            width: 80px; height: 50px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            transform: rotateY(30deg) translateZ(40px);
            backdrop-filter: blur(5px);
            animation: orbitArtifact 12s infinite linear;
        }

        /* 3. Video Ring */
        .art-ring {
            top: 50%; left: 50%;
            width: 200px; height: 200px;
            border: 2px solid rgba(235, 30, 36, 0.3); /* Red glow ring */
            border-radius: 50%;
            transform: translate(-50%, -50%) rotateX(70deg);
            animation: spinRing 20s linear infinite;
        }
        
        /* 4. Graphic Palette */
        .art-palette {
            bottom: 15%; left: -10px;
            width: 50px; height: 50px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
            transform: translateZ(50px) rotateZ(15deg);
        }
        .pal-item { background: #fff; opacity: 0.8; border-radius: 2px; }
        .pal-item:nth-child(2) { background: var(--secondary-color); }
        .pal-item:nth-child(3) { background: var(--primary-color); }

        @keyframes orbitArtifact {
            0% { transform: rotateY(30deg) translateZ(40px) translateY(0); }
            50% { transform: rotateY(30deg) translateZ(40px) translateY(-10px); }
            100% { transform: rotateY(30deg) translateZ(40px) translateY(0); }
        }
        @keyframes spinRing { 
            from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); } 
            to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); } 
        }

        /* Floating Badge */
        .brand-badge {
            position: absolute;
            bottom: -20px; right: 20px;
            padding: 10px 20px;
            background: #fff;
            color: #000;
            border-radius: 8px;
            font-size: 12px; font-weight: 700;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateZ(80px);
            animation: floatBadge 4s ease-in-out infinite;
        }
        @keyframes floatBadge { 
            0%, 100% { transform: translateZ(80px) translateY(0); } 
            50% { transform: translateZ(80px) translateY(-10px); } 
        }

        /* =========================================
           RESPONSIVE QUERIES
           ========================================= */
        @media (max-width: 991px) {
            .branding-hero-section { flex-direction: column; text-align: center; padding-top: 120px; height: auto; }
            .hero-content { padding-right: 0; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
            .branding-hero-section h1 { font-size: 3rem; }
            .branding-hero-section .service-ribbon { grid-template-columns: repeat(2, 1fr); width: 100%; max-width: 400px; }
            .visual-wrapper { height: 400px; width: 100%; perspective: 800px; }
            .monolith { transform: translate(-50%, -50%) rotateY(0deg); } 
        }

        @media (max-width: 576px) {
            .branding-hero-section h1 { font-size: 2.2rem; }
            .branding-hero-section .service-ribbon { grid-template-columns: 1fr 1fr; gap: 10px; }
            .monument-stage { transform: scale(0.65); }
            .brand-badge { bottom: 20px; right: 0; }
            .branding-hero-section .btn-outline { margin-left: 0; margin-top: 15px; }
        }