/* 
    AL MASHREQ - INDUSTRIAL CONSTRUCTION MATERIALS
    Theme: Robust / Professional / Trusted
*/

:root {
    --primary: #FF7F00; /* Safety Orange */
    --secondary: #2B2D42; /* Dark Metallic */
    --concrete: #8D99AE;
    --white: #EDF2F4;
    --black: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Saira', sans-serif;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.industrial-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('im/hero-bg.png') no-repeat center center/cover;
    filter: brightness(0.4) grayscale(0.5);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.9) 0%, rgba(23, 23, 23, 0.4) 100%);
    z-index: 2;
}

/* Content Box - Compact Floating Card */
.content-box {
    position: relative;
    z-index: 10;
    max-width: 650px;
    width: 90%;
    text-align: center;
    padding: 50px; /* More compact padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid var(--primary);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 24px; /* Added for card feel */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.logo {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.brand-name {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
}

.sub-brand {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--concrete);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Progress bar */
.progress-container {
    max-width: 280px;
    margin: 0 auto 35px;
}

.progress-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 2s cubic-bezier(0.1, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--primary);
}

h1 {
    font-family: 'Teko', sans-serif;
    font-size: 3.2rem; /* Scaled down */
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 700;
}

h1 .highlight {
    color: var(--primary);
}

p {
    font-size: 1rem;
    color: var(--concrete);
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.categories-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cat-item {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .content-box { padding: 40px 20px; border-top-width: 6px; }
    .brand-name { font-size: 2.5rem; }
    h1 { font-size: 2.6rem; }
    .categories-preview { flex-direction: column; gap: 10px; align-items: center; }
    .cat-item { width: 200px; justify-content: center; }
    .contact-info { flex-direction: column; gap: 10px; }
}

.info-item i {
    color: var(--primary);
    margin-right: 10px;
}

.copy {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Animations */
.animate-reveal {
    animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes reveal {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .content-box { padding: 40px 20px; border-left: 5px solid var(--primary); }
    .brand-name { font-size: 2.5rem; }
    h1 { font-size: 2.8rem; }
    .categories-preview { flex-direction: column; gap: 15px; }
    .contact-info { flex-direction: column; gap: 10px; }
}
