:root {
    --primary-blue: #0A2540;
    --accent-blue: #0066FF;
    --accent-orange: #FF8C00;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #F3F4F6;
}

/* Dynamic Image Background */
.background-overlay {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110vw;
    height: 110vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7); /* Slightly darkened as requested */
    z-index: 1;
    transform: scale(1.05);
}

/* Floating Particles Container */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Area */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Typography */
.company-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #0A2540, #0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(10, 37, 64, 0.06);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(10, 37, 64, 0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Location Section */
.location-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.location-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.8);
}

.icon {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.location-text strong {
    color: var(--accent-blue);
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 4px;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), #0044ff);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -10px rgba(0, 102, 255, 0.5);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(0, 102, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
    }
    .company-name {
        font-size: 1.8rem;
    }
    .status-title {
        font-size: 1.4rem;
    }
    .location-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
