/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Set the font family and base styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0F172A;
    color: #FFFFFF;
    position: relative;
}

/* Background elegance */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(0, 173, 181, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced profile image styles */
.glow-effect {
    position: relative;
    padding: 1px;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, rgba(0, 173, 181, 0.3), transparent, rgba(0, 173, 181, 0.3));
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 173, 181, 0.2) 0%,
        rgba(0, 173, 181, 0.1) 25%,
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(12px);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button styles and animations */
.button {
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transition: left 0.7s ease-in-out;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.button:hover::before {
    left: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}
