
body {
    box-sizing: border-box;
}

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

::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 rgba(26, 26, 26, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px #3b82f6;
    }

    to {
        box-shadow: 0 0 30px #60a5fa, 0 0 40px #3b82f6;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

@keyframes slideInUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }

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

@keyframes slideInDown {
    from {
        transform: translateY(-80px);
        opacity: 0;
    }

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

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-10deg) scale(0.9);
        opacity: 0;
    }

    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
    }

    60% {
        transform: perspective(400px) rotateY(10deg);
    }

    80% {
        transform: perspective(400px) rotateY(-5deg);
    }

    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes slideInBlur {
    from {
        transform: translateY(50px);
        opacity: 0;
        filter: blur(10px);
    }

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

@keyframes expandIn {
    from {
        transform: scale(0.5) translateY(30px);
        opacity: 0;
    }

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

@keyframes liquidShimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.project-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.hover-glow {
    transition: all 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Advanced Scroll Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.scroll-fade {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.scroll-blur {
    filter: blur(0px);
    transition: filter 0.3s ease-out;
}

.scroll-scale {
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

.stagger-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Liquid Glass Effects */
.liquid-glass-enhanced {
    backdrop-filter: blur(25px) saturate(200%);
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.08) 25%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(59, 130, 246, 0.12) 75%,
            rgba(96, 165, 250, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 60px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.liquid-glass-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(59, 130, 246, 0.1) 50%,
            rgba(255, 255, 255, 0.15) 70%,
            transparent 100%);
    animation: liquidFlow 4s ease-in-out infinite;
}

.liquid-glass-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%);
    animation: liquidPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidFlow {

    0%,
    100% {
        left: -100%;
        opacity: 0;
    }

    50% {
        left: 100%;
        opacity: 1;
    }
}

@keyframes liquidPulse {

    0%,
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.1;
    }
}

.glass-card {
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(59, 130, 246, 0.05) 25%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(96, 165, 250, 0.08) 75%,
            rgba(255, 255, 255, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
}

.glass-navigation {
    backdrop-filter: blur(30px) saturate(200%);
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.8) 0%,
            rgba(59, 130, 246, 0.1) 25%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(96, 165, 250, 0.08) 75%,
            rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(59, 130, 246, 0.1);
}

.morphing-background {
    background: linear-gradient(-45deg,
            rgba(10, 10, 10, 1) 0%,
            rgba(26, 26, 26, 1) 25%,
            rgba(59, 130, 246, 0.05) 50%,
            rgba(26, 26, 26, 1) 75%,
            rgba(10, 10, 10, 1) 100%);
    background-size: 400% 400%;
    animation: morphingGradient 15s ease infinite;
}

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

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

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

/* Professional Hover Effects */
.hover-scale {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-glow-subtle {
    transition: all 0.4s ease;
}

.hover-glow-subtle:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.hover-slide {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.hover-slide:hover::before {
    left: 100%;
}

.professional-fade {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-fade:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.hover-border-glow {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.hover-border-glow:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.hover-text-glow {
    transition: all 0.3s ease;
}

.hover-text-glow:hover {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    color: #60a5fa;
}

.hover-backdrop-blur {
    transition: all 0.4s ease;
}

.hover-backdrop-blur:hover {
    backdrop-filter: blur(15px);
    background: rgba(26, 26, 26, 0.9);
}

.hover-rotate-subtle {
    transition: all 0.3s ease;
}

.hover-rotate-subtle:hover {
    transform: rotate(2deg) scale(1.02);
}

.hover-shadow-expand {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-shadow-expand:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(59, 130, 246, 0.1);
}

.hover-brightness {
    transition: all 0.3s ease;
}

.hover-brightness:hover {
    filter: brightness(1.1);
}

.hover-magnetic {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.hover-magnetic:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #404040;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Subtle magnetic glow effect */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(160, 160, 160, 0.1) 0%,
            rgba(180, 180, 180, 0.05) 50%,
            rgba(160, 160, 160, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(160, 160, 160, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(180, 180, 180, 0.5);
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(160, 160, 160, 0.2);
}



.stat-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}



.hero-element {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.liquid-glass {
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(96, 165, 250, 0.05) 25%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(59, 130, 246, 0.08) 75%,
            rgba(96, 165, 250, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    animation: liquidShimmer 3s ease-in-out infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-spinner {
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    border-top: 2px solid #3b82f6;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profile Image Styles */
.profile-image-container {
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    padding: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.profile-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.profile-image:hover {
    transform: scale(1.1);
}

.profile-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Animation Classes */
.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

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

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

.animate-flip-in {
    animation: flipIn 0.8s ease-out forwards;
}

.animate-slide-blur {
    animation: slideInBlur 1s ease-out forwards;
}

.animate-expand-in {
    animation: expandIn 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Initial Hidden States */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.horizontal-parallax {
    transform: translateX(0);
    transition: transform 0.1s ease-out;
}

/* Advanced Scroll Effects */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.scroll-fade {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.scroll-blur {
    filter: blur(0px);
    transition: filter 0.3s ease-out;
}

.scroll-scale {
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

.stagger-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Liquid Glass Effects */
.liquid-glass-enhanced {
    backdrop-filter: blur(25px) saturate(200%);
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(96, 165, 250, 0.08) 25%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(59, 130, 246, 0.12) 75%,
            rgba(96, 165, 250, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 60px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.liquid-glass-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(59, 130, 246, 0.1) 50%,
            rgba(255, 255, 255, 0.15) 70%,
            transparent 100%);
    animation: liquidFlow 4s ease-in-out infinite;
}

.liquid-glass-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%);
    animation: liquidPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidFlow {

    0%,
    100% {
        left: -100%;
        opacity: 0;
    }

    50% {
        left: 100%;
        opacity: 1;
    }
}

@keyframes liquidPulse {

    0%,
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.1;
    }
}

.glass-card {
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(59, 130, 246, 0.05) 25%,
            rgba(26, 26, 26, 0.3) 50%,
            rgba(96, 165, 250, 0.08) 75%,
            rgba(255, 255, 255, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
}

.glass-navigation {
    backdrop-filter: blur(30px) saturate(200%);
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.8) 0%,
            rgba(59, 130, 246, 0.1) 25%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(96, 165, 250, 0.08) 75%,
            rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(59, 130, 246, 0.1);
}

.morphing-background {
    background: linear-gradient(-45deg,
            rgba(10, 10, 10, 1) 0%,
            rgba(26, 26, 26, 1) 25%,
            rgba(59, 130, 246, 0.05) 50%,
            rgba(26, 26, 26, 1) 75%,
            rgba(10, 10, 10, 1) 100%);
    background-size: 400% 400%;
    animation: morphingGradient 15s ease infinite;
}

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

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

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

/* Professional Hover Effects */
.hover-scale {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.hover-glow-subtle {
    transition: all 0.4s ease;
}

.hover-glow-subtle:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.hover-slide {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.hover-slide:hover::before {
    left: 100%;
}

.professional-fade {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-fade:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.interactive-btn {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.interactive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.interactive-btn:hover::before {
    left: 100%;
}

.interactive-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.interactive-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

@view-transition {
    navigation: auto;
}