:root {
    --bg-color-dark: #f8fafc;
    /* Slate 50 */
    --accent-primary: #2563eb;
    /* Blue 600 */
    --accent-secondary: #0891b2;
    /* Cyan 600 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    /* White glass */
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #475569;
    /* Slate 600 */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Dynamic Animated Background Blobs */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.5;
    animation: drift 15s infinite alternate ease-in-out;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: var(--accent-secondary);
    bottom: -50px;
    right: -100px;
    animation-duration: 20s;
    animation-delay: 2s;
}

.shape3 {
    width: 250px;
    height: 250px;
    background: #6366f1;
    /* Indigo */
    top: 40%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 4s;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }

    100% {
        transform: translateY(50px) translateX(100px) scale(1.1);
    }
}

/* Main Container Container */
.container {
    padding: 2rem;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

/* 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: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: flex-start;
}

.logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--text-main);
}

.contact-item svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1rem;
}

.contact-item strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Animated Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    border-radius: 2px;
    position: relative;
    animation: progressWidth 2s ease-out forwards, shimmer 3s infinite linear;
}

@keyframes progressWidth {
    from {
        width: 0%;
    }

    to {
        width: 65%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .glass-card {
        padding: 2rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-item {
        align-items: flex-start;
    }
}