* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0f19; /* Deep tech dark blue */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Background Glowing Animation */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, rgba(11, 15, 25, 1) 40%);
    animation: rotateBg 20s linear infinite;
    z-index: -1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 650px;
}

/* Glassmorphism Card */
.content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(40px);
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Floating Icon */
.icon {
    font-size: 55px;
    color: #3b82f6; /* Blue accent */
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    background: linear-gradient(to right, #60a5fa, #a855f7); /* Blue to Purple Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   THE CONTINUOUS LINE ANIMATION
   ========================================= */
.animated-line-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08); /* Faded track */
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.animated-line {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    /* Glowing Line */
    background: linear-gradient(90deg, transparent, #3b82f6, #a855f7, transparent);
    animation: movingLine 2s linear infinite;
}

@keyframes movingLine {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Profile Info */
h2 {
    font-size: 2.2rem;
    color: #f8fafc;
    margin-bottom: 5px;
    font-weight: 600;
}

.designation {
    font-size: 1.15rem;
    color: #60a5fa; /* Light blue */
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.message {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
    min-height: 48px; /* Prevents layout jump while typing */
}

/* Social Connect Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}