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

body {
    font-family: 'Inter', sans-serif;
    background: #0A0E27;
    color: #E2E8F0;
    overflow-x: hidden;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}


/* Custom Scrollbar */

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background: #0F172A;
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3B82F6, #0EA5E9);
    border-radius: 5px;
}


/* Animated Background */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0A0E27 0%, #0F172A 50%, #1E293B 100%);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}


/* Glassmorphism */

.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.glass-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.3);
}


/* Gradient Text */

.gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}


/* Circular Profile Image with Animated Border */

.profile-circle-container {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto;
}

.profile-circle-border {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9, #06B6D4, #3B82F6);
    background-size: 300% 300%;
    animation: borderGradient 4s ease infinite;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
}

@keyframes borderGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.profile-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0A0E27;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    white-space: nowrap;
}


/* Neon Button */

.neon-button {
    position: relative;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.neon-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.6);
}


/* Project Tabs */

.tab-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tab-button.active {
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.tab-button:not(.active):hover {
    background: rgba(59, 130, 246, 0.2);
}


/* Project Card Enhanced */

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.25);
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9, #06B6D4);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card-image {
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

.project-card p,
.project-card h3 {
    transition: color 0.35s ease;
}

.project-card:hover p {
    color: #E5E7EB;
    /* slate-200 */
}


/* Status Badge */

.status-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* Completed */

.status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}


/* Ongoing */

.status-ongoing {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}


/* Modifying */

.status-modifying {
    background: rgba(251, 191, 36, 0.18);
    color: #FBBF24;
}


/* Live */

.status-live {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.status-development {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}


/* Stats Counter Animation */

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-card {
    animation: countUp 0.8s ease-out forwards;
}


/* Timeline */

.timeline-line {
    position: relative;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #3B82F6, #0EA5E9, #06B6D4);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}


/* Navbar Scroll Effect */

nav {
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}


/* Scroll to Top Button */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.6);
}


/* Loading Screen */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A0E27;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/* Responsive */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    .profile-circle-container {
        width: 300px;
        height: 300px;
    }
}


/* Tech Icon Animation */

.tech-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-icon:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.2);
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.5));
}


/* Hover Lift */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
}


/* Skill Badge */

.skill-badge {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-badge:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.2);
}


/* About Cards */

.about-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}


/* Hero Section Base */

#home {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #0F172A 50%, #1E293B 100%);
}


/* Floating Particles Background */

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 3s;
    animation-duration: 15s;
}

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


/* Status Badge */

.status-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    animation: statusPulse 3s ease-in-out infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #10B981;
}

.status-text {
    color: #10B981;
    font-size: 14px;
    font-weight: 600;
}

@keyframes statusPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}


/* Animated Gradient Text */

.gradient-text-animated {
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 25%, #06B6D4 50%, #3B82F6 75%, #0EA5E9 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}


/* Typing Effect */

.typing-text {
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    color: #3B82F6;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}


/* Highlight Text Effect */

.highlight-text {
    color: #3B82F6;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #0EA5E9);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%,
    100% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
}


/* Neon Button Hero */

.neon-button-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.button-content {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.neon-button-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.6), 0 0 100px rgba(59, 130, 246, 0.3);
}

.neon-button-hero:hover .button-glow {
    left: 100%;
}


/* Glass Button */

.glass-button-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glass-button-hero:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}


/* Social Icons */

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    color: #94A3B8;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icon:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}


/* =============================================== */


/* PROFILE IMAGE SECTION - ADVANCED ANIMATIONS */


/* =============================================== */

.hero-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.profile-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Animated Rings */

.profile-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.3;
}

.ring-1 {
    width: 420px;
    height: 420px;
    border-color: #3B82F6;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 460px;
    height: 460px;
    border-color: #0EA5E9;
    animation: ringRotate 25s linear infinite reverse;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: #06B6D4;
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Orbiting Tech Icons */

.orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: orbitPulse 3s ease-in-out infinite;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

.orbit-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.orbit-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbitPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}


/* Main Profile Container */

.profile-main-container {
    position: relative;
    width: 350px;
    height: 350px;
    z-index: 10;
}


/* Glowing Animated Border */

.profile-glow-border {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9, #06B6D4, #3B82F6);
    background-size: 400% 400%;
    animation: gradientRotate 8s ease infinite;
    padding: 5px;
    z-index: 1;
}

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


/* Image Wrapper */

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #0A0E27;
    z-index: 2;
    animation: profileFloat 6s ease-in-out infinite;
}

@keyframes profileFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageZoom 10s ease-in-out infinite;
}

@keyframes imageZoom {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* Shine Effect */

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 60%, transparent 70%);
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    10%,
    90% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}


/* Floating Badge */

.profile-badge-float {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 20;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* Background Glow */

.profile-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #3B82F6;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
    color: rgba(148, 163, 184, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0%,
    100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    .profile-wrapper {
        width: 300px;
        height: 300px;
    }
    .profile-main-container {
        width: 260px;
        height: 260px;
    }
    .ring-1 {
        width: 320px;
        height: 320px;
    }
    .ring-2 {
        width: 360px;
        height: 360px;
    }
    .ring-3 {
        width: 400px;
        height: 400px;
    }
    .orbit-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Slide Down Animation */

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-down {
    animation: slide-down 0.8s ease-out;
}