/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b1120; /* Deep premium dark blue */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Dynamic Background Glows */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}

.glow-blue {
    width: 500px;
    height: 500px;
    background: #1d4ed8; /* Corporate Blue */
    top: -100px;
    left: -100px;
}

.glow-green {
    width: 400px;
    height: 400px;
    background: #10b981; /* Fresh Green */
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Container and Layout */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Logo */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 220px;
    height: auto;
    /* Adding a subtle drop shadow to make the logo pop against dark bg */
    filter: drop-shadow(0px 4px 15px rgba(255,255,255,0.1));
}

/* Typography */
.title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 40px;
}

.subtitle strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-section p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1d4ed8 0%, #10b981 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #34d399 100%);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, #1d4ed8, #10b981);
    border-radius: 4px;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 65%; } /* Simulating progress */
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 40px 20px;
    }
    .title {
        font-size: 1.75rem;
    }
}
