@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        :root {
            --forgex-red: #E10600;
            --forgex-dark: #1A1A1A;
            --soft-slate: #F5F5F7;
            --cool-grey: #6B6B6B;
            --dark-blue: #0F172A;
            --footer-navy: #0F1B2D;
        }
         
        body {
            overflow: hidden;
        }

        /* div{
            border: 2px solid red;
        } */

        /* * {
            outline: 1px solid red;
        } */
        
        
        .hero-pattern {
            background: linear-gradient(135deg, rgba(15, 23, 45, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
                        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(225,6,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(225, 6, 0, 0.1);
        }
        
        .btn-primary {
            background: var(--forgex-red);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #c10500;
            transform: scale(1.05);
        }
        
        .innovation-card {
            border-left: 4px solid var(--forgex-red);
        }
        
        nav {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .nav-sticky {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--forgex-red);
        }

/* ============================
   FORGEX LOADER – CLEAN + MODERN
   ============================ */

   .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F5F5F5; /* Best background for black logo */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

/* Logo Style */
.loader-logo img {
    margin-top: -150px;
    width: 350px;
    height: auto;
    margin-bottom: 18px; /* Perfect spacing */
}

/* Progress Bar Container */
.progress-bar-container {
    width: 260px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 8px auto 0; /* Closer to logo */
    margin-top: -130px;
    overflow: hidden;
}

/* Progress Bar Fill */
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #E10600, #FF0800);
    border-radius: 10px;
    animation: loadingProgress 2.5s ease-in-out forwards;
}

/* Logo subtle breathing animation */
@keyframes subtlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* Progress animation */
@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}
