
        /* Preloader Styles */
        #gmcs-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #002244;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.6s ease-out;
        }

        #gmcs-preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-content {
            text-align: center;
            position: relative;
        }

        /* Logo Container with Animation */
        .logo-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .logo-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #f4f4f4;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .logo-circle img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        /* Rotating Building Icon */
        .building-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            border: 3px dashed rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        .building-icon {
            position: absolute;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .building-icon:nth-child(1) {
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
        }

        .building-icon:nth-child(2) {
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
        }

        .building-icon:nth-child(3) {
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
        }

        .building-icon:nth-child(4) {
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
        }

        @keyframes rotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Company Name */
        .company-name {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease-out;
        }

        .company-tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Progress Bar */
        .progress-container {
            width: 250px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            margin: 30px auto 0;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #fff 0%, #e0e7ff 100%);
            border-radius: 2px;
            animation: progress 2s ease-in-out forwards;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        @keyframes progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* Loading Text */
        .loading-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            margin-top: 15px;
            letter-spacing: 1px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* SPA Loader Styles */
        #gmcs-spa-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #gmcs-spa-loader.active {
            opacity: 1;
        }

        .spa-progress {
            height: 100%;
            background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
            width: 0%;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
        }

        /* Decorative Elements */
        .decorative-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float-dot 3s ease-in-out infinite;
        }

        .dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
        .dot:nth-child(3) { top: 40%; right: 15%; animation-delay: 1s; }
        .dot:nth-child(4) { top: 70%; right: 25%; animation-delay: 1.5s; }
        .dot:nth-child(5) { top: 30%; left: 85%; animation-delay: 2s; }

        @keyframes float-dot {
            0%, 100% { transform: translateY(0px); opacity: 0.3; }
            50% { transform: translateY(-30px); opacity: 0.8; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .company-name {
                font-size: 22px;
            }

            .company-tagline {
                font-size: 12px;
            }

            .logo-container {
                width: 100px;
                height: 100px;
            }

            .logo-circle {
                width: 100px;
                height: 100px;
            }

            .logo-circle img {
                width: 65px;
                height: 65px;
            }

            .building-ring {
                width: 120px;
                height: 120px;
            }

            .progress-container {
                width: 200px;
            }
        }