/* ===================================
   Fonts - Using Google Fonts Bricolage Grotesque
   =================================== */

/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* THEME: MINIMAL & SIMPLE PURPLE */

    /* Accents - Purple Monochromatic */
    --neon-cyan: #a78bfa;
    /* Soft Purple (replacing Cyan) */
    --neon-cyan-glow: rgba(167, 139, 250, 0.3);
    --neon-purple: #8b5cf6;
    /* Primary Violet */
    --neon-purple-glow: rgba(139, 92, 246, 0.3);
    --neon-pink: #c4b5fd;
    /* Light Lavender (replacing Pink) */
    --neon-pink-glow: rgba(196, 181, 253, 0.2);
    --neon-green: #10b981;
    /* Status: Keep Green for utility */
    --neon-blue: #7c3aed;
    /* Deep Violet */
    --neon-orange: #f97316;
    /* Flat Orange */

    /* Background Colors - Deep Tinted Dark */
    --bg-primary: #050507;
    /* Almost Black with hint of purple */
    --bg-secondary: #0f0a14;
    /* Dark Violet Grey */
    --bg-tertiary: #1a1625;
    --bg-card: rgba(139, 92, 246, 0.03);
    /* Subtle Purple Tint */

    /* Glass Effect - Soft & Clean */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(139, 92, 246, 0.1);
    --glass-blur: 16px;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Gradients - Purple Flow */
    --gradient-primary: linear-gradient(135deg, #a78bfa, #7c3aed);
    --gradient-accent: linear-gradient(135deg, #8b5cf6, #c4b5fd);
    --gradient-glow: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(124, 58, 237, 0.3));

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 80px;
    --spacing-3xl: 128px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 24px;

    /* Font */
    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'Bricolage Grotesque', sans-serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-scroll {
    overflow: hidden !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

/* ===================================
   Parallax Background
   =================================== */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #1a1625 0%, #050507 100%);
    /* Subtle Violet Glow from top */
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.geo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    --mouse-x: 0px;
    --mouse-y: 0px;
    transform: translate(var(--mouse-x), var(--mouse-y));
    transition: transform 0.1s ease-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple-glow);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan-glow);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--neon-pink-glow);
    top: 30%;
    right: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--neon-cyan-glow);
    bottom: 10%;
    left: 20%;
    animation-delay: -7s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    background: var(--neon-purple-glow);
    top: 50%;
    left: 50%;
    animation-delay: -3s;
}

.shape-6 {
    width: 280px;
    height: 280px;
    background: var(--neon-pink-glow);
    bottom: 30%;
    right: 5%;
    animation-delay: -12s;
}

.shape-7 {
    width: 180px;
    height: 180px;
    background: var(--neon-cyan-glow);
    top: 5%;
    right: 30%;
    animation-delay: -8s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* ===================================
   Glass Card Effect
   =================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, #1a1625 0%, #050507 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    overflow: hidden;
    opacity: 1;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.loader-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    animation: pulse-glow 2s infinite ease-in-out;
    margin-bottom: 1rem;
}

.loader-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.4);
        transform: scale(1.05);
    }
}

.loader-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    animation: pulse 2s infinite ease-in-out;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: loading 1.5s infinite ease-in-out;
}

.loader-percent {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: -0.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes loading {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 60%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(250deg, #5c13b9, #9423aa, #5c13b9);
    background-size: 200% 200%;
    animation: gradientMove 2s ease infinite;
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(143, 38, 228, 0.4);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(143, 38, 228, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Button with subtitle */
.btn-with-subtitle {
    padding: 12px 16px 12px 20px;
    border-radius: var(--radius-md);
    gap: var(--spacing-md);
}

.btn-with-subtitle .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-with-subtitle .btn-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 16px;
    font-weight: 600;
}

.btn-with-subtitle .btn-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.btn-with-subtitle .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(2px);
    /* border-bottom: 1px solid var(--glass-border); */
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
}

.logo-text {
    color: var(--text-primary);
    margin-right: 6px;
}

.logo-accent {
    color: var(--text-primary);
}

.logo-dot {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple-glow);
    font-weight: bold;
    font-size: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    animation: floatBtn 3s ease-in-out infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.floating-status-btn {
    position: fixed;
    bottom: -60px;
    /* Start off-screen */
    left: 24px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-status-light {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px);
}

.floating-status-btn.visible {
    opacity: 1;
    bottom: 0px;
    pointer-events: auto;
    animation: floatBtn 3s ease-in-out infinite;
}


#floatingStatusBtn {
    border-color: var(--neon-green) !important;
    background: rgba(0, 255, 157, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
}

#floatingStatusBtn:hover {
    background: rgba(0, 100, 60, 0.5) !important;
    box-shadow: 0 0 15px rgba(0, 200, 100, 0.3);
    border-color: rgba(0, 200, 100, 0.6) !important;
    transform: translateY(-4px) scale(1.05);
}

.hero-badge:hover,
.floating-status-btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    background: rgba(0, 255, 157, 0.3) !important;
    animation-play-state: paused;
}

@keyframes floatBtn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 16px;
    width: 100%;
}

.stat-item {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-width: 0;
    /* Prevents grid blowout */
    width: 100%;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-avatar-mobile {
    display: none;
}

.hero-title {
    margin-bottom: var(--spacing-md);

}

.greeting {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.name {
    display: block;
    font-size: clamp(32px, 5vw, 32px);
    font-weight: 500;

    line-height: 1.1;
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    margin-bottom: var(--spacing-md);
    /* Force White */
}

.hero-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: 600;

    /* Gradient moved to .gradient-text-light */
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.gradient-text-light {
    background: linear-gradient(250deg, #ff8c00, #ffce91, #ff8c00);
    background-size: 200% 200%;
    animation: gradientMove 2.5s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    line-height: 1.3;
}

.subtitle-accent {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple-glow);
}

.hero-role {
    font-size: 20px;
    color: white;
    /* White */
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    text-shadow: none;
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.image-container {
    position: relative;
    will-change: transform;
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, var(--neon-cyan-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.image-frame {
    padding: var(--spacing-sm);
    overflow: hidden;
}

.image-frame img {
    border-radius: var(--radius-md);
    width: 400px;
    height: 500px;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: var(--spacing-md);
    text-align: center;
    animation: floatCard 6s ease-in-out infinite;
    --parallax-x: 0px;
    --parallax-y: 0px;
    transform: translate(var(--parallax-x), var(--parallax-y));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-1 {
    top: 10%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -60px;
    animation-delay: -3s;
}

.card-3 {
    top: 10%;
    right: -60px;
    animation-delay: -1.5s;
}

.card-4 {
    bottom: 15%;
    left: -60px;
    animation-delay: -4.5s;
}

.card-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(110, 81, 196, 0.8),
        0 0 15px rgba(14, 4, 43, 0.1),
        0 0 30px rgba(14, 4, 43, 0.1);
}

.card-label {
    font-size: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    display: block;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translate(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) + 0px));
    }

    50% {
        transform: translate(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) + -15px));
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-img-container {
    padding: var(--spacing-sm);
    overflow: visible;
    perspective: 1000px;
    background: transparent;
    border: none;
    animation: floatImage 4s ease-in-out infinite;
}

.about-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    will-change: transform;
    animation: autoFlip 5s infinite ease-in-out;
}

.about-img-container:hover .about-img-inner {
    animation-play-state: paused;
}

@keyframes autoFlip {

    0%,
    35% {
        transform: rotateY(0deg);
    }

    50%,
    85% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.about-img-front,
.about-img-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-front {
    background-color: transparent;
    position: relative;
    /* Takes up space */
    z-index: 2;
}

.about-img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    z-index: 1;
}

.about-img-front img,
.about-img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.about-heading {
    font-size: 28px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.about-description {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--glass-border)
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.stat-number.neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(110, 81, 196, 0.8),
        0 0 15px rgba(14, 4, 43, 0.1),
        0 0 30px rgba(14, 4, 43, 0.1);
}

.stat-number.neon-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 30px var(--neon-purple-glow);
}

.stat-number.neon-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink-glow);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   Stat Cards
   =================================== */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
    transition: var(--transition-normal);
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan-glow);
    animation: chipBeat 2s infinite;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-present {
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    padding: 2px 6px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* ===================================
   Clients Section
   =================================== */
.client-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: var(--text-muted);
}

.filter-chip.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.chip-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.client-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border-radius: 12px
}

.client-logo.hidden {
    display: none;
}

.client-logo.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

.client-logo {
    padding: var(--spacing-xs) var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--neon-cyan-glow);
    animation: chipBeat 2s infinite;
}

.client-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.logo-svg {
    width: 100%;
    height: 40px;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.client-logo:hover .logo-svg {
    color: var(--text-primary);
}

/* ===================================
   Feedbacks Section
   =================================== */
.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.feedback-card {
    padding: 24px;
    transition: var(--transition-normal);
}

.feedback-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: chipBeat 2s infinite;
}

.feedback-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.feedback-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
    font-style: italic;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.93780px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.portfolio-item {
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition-normal);
    position: relative;
    /* Context for stretched link */
}

.portfolio-item:hover {
    transform: translateY(-5px);
    /* No box shadow on the container, only on image */
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition-slow);
    border-radius: 20px;
}

/* .portfolio-overlay removed/replaced by .portfolio-content */
.portfolio-content {
    padding: var(--spacing-sm) 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Hover effects for image only now */
.portfolio-item:hover .portfolio-image img {
    transform: scale(1.02);
    filter: brightness(1);
    /* Keep brightness normal */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-category {
    font-size: 12px;
    color: #FF9F43;
    /* Flat orange for dark mode */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
}

.portfolio-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.portfolio-link {
    color: var(--text-secondary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.portfolio-link:hover {
    color: var(--neon-cyan);
}

/* Make the whole card clickable */
.portfolio-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

/* ===================================
   Experience Section
   =================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
}

.timeline-item {
    position: relative;
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
}

.timeline-item:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
}

.timeline-marker {
    position: absolute;
    left: calc(-1 * var(--spacing-xl) - 8px);
    top: var(--spacing-lg);
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.timeline-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.timeline-company {
    color: var(--neon-purple);
    font-weight: 500;
}

.timeline-date {
    font-size: 14px;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.timeline-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.tag {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--neon-cyan);
}

/* ===================================
   New Experience Layout
   =================================== */
.timeline-item.new-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
}

@media (max-width: 1024px) {

    /* Disable running border on experience cards for mobile/tablet */
    .timeline-item.new-layout::after {
        display: none !important;
        animation: none !important;
        content: none !important;
    }
}

/* Add timeline dot back */
.timeline-item.new-layout::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--spacing-xl) - 8px);
    top: 40px;
    /* Aligned with icon center */
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    z-index: 2;
    transition: all 0.3s ease;
}

@keyframes circleFlash {
    0% {
        background: var(--bg-primary);
        transform: scale(1);
        box-shadow: 0 0 15px var(--neon-cyan-glow);
    }

    50% {
        background: var(--neon-cyan);
        transform: scale(1.3);
        box-shadow: 0 0 30px var(--neon-cyan);
    }

    100% {
        background: var(--bg-primary);
        transform: scale(1);
        box-shadow: 0 0 15px var(--neon-cyan-glow);
    }
}

.timeline-item.new-layout:hover::before {
    animation: circleFlash 1.5s infinite ease-in-out;
}

/* Show dot animation when card is expanded */
.timeline-item.new-layout:has(.timeline-content.expanded)::before {
    animation: circleFlash 1.5s infinite ease-in-out;
}

/* Running border animation keyframes */
@keyframes borderRotate {
    0% {
        --border-angle: 0deg;
    }

    100% {
        --border-angle: 360deg;
    }
}

/* Register custom property for animation */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Running border container setup */
.timeline-item.new-layout {
    position: relative;
    overflow: visible;
    border: 1px solid transparent;
}

/* Running border effect using ::after */
.timeline-item.new-layout::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from var(--border-angle, 0deg),
            transparent 0deg,
            transparent 340deg,
            var(--neon-cyan) 360deg);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Show running border on hover */
.timeline-item.new-layout:hover::after {
    opacity: 1;
    animation: borderRotate 6s linear infinite;
}

/* Show running border when card is expanded */
.timeline-item.new-layout:has(.timeline-content.expanded)::after {
    opacity: 1;
    animation: borderRotate 8s linear infinite;
}

.timeline-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.timeline-content {
    flex-grow: 1;
    position: relative;
    cursor: pointer;
    /* For absolute button positioning */
}

/* Accordion Toggle */
.exp-toggle-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.exp-toggle-btn:hover {
    background: var(--bg-tertiary);
    color: var(--neon-cyan);
}

.exp-toggle-btn svg {
    transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.timeline-content.expanded .exp-toggle-btn svg {
    transform: rotate(180deg);
}

.exp-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
    /* Remove margin, handled by list padding */
    padding-right: 40px;
    /* Space for arrow */
}

.exp-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.exp-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.exp-company {
    color: #6B8AFD;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.exp-company:hover {
    color: #8BA3FF;
}

.exp-location {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Collapsible List */
.exp-list {
    padding-left: 24px;
    list-style-type: disc;
    color: var(--text-primary);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.timeline-content.expanded .exp-list {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    margin-top: 16px;
}

.exp-list li {
    margin-bottom: 8px;
}

/* ===================================
   Skills Section
   =================================== */
.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.skills-heading {
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.skill-name {
    color: var(--text-primary);
    font-weight: 500;
}

.skill-percent {
    color: var(--neon-cyan);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    width: var(--progress);
    position: relative;
    animation: progressAnim 1.5s ease-out forwards;
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

@keyframes progressAnim {
    from {
        width: 0;
    }
}

@keyframes chipBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Skills & Expertise Tags */
.skills-expertise {
    width: 100%;
}

.skills-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
}

.skills-tags,
.tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.skill-tag:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    animation: chipBeat 2s infinite;
}

.tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.tool-tag img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.tool-tag:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    animation: chipBeat 2s infinite;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.tool-item {
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-normal);
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple-glow);
}

.tool-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-xs);
}

.tool-name {
    font-size: 14px;
    color: var(--text-secondary);
}

.certifications {
    width: 100%;
    margin: 0 auto;
}

.cert-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    width: 100%;
}

/* Card hover effect removed */
.cert-item:hover {
    transform: none;
}

.cert-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevent shrinking */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-size: 24px;
}

.cert-icon img {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cert-issuer {
    font-size: 14px;
    color: var(--text-muted);
}

.cert-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex: 1;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-left: auto;
    width: fit-content;
    padding: 10px 20px;
    border: 1px solid var(--neon-purple);
    border-radius: 12px;
    transition: var(--transition-normal);
}


.cert-link:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    transform: translateY(-2px);
}

.cert-link.in-progress {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
    background: rgba(255, 165, 0, 0.1);
}

.cert-link.in-progress:hover {
    background: var(--neon-orange);
    color: white;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

/* ===================================
   Contact Section
   =================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-heading {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form {
    padding: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Portfolio Showcase
   =================================== */

.portfolio-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: 2rem 0;
    overflow: hidden;
    perspective: 1000px;
    height: auto;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
}

.portfolio-showcase:active {
    cursor: grabbing;
}

.project-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(20, 20, 30, 0.6);
    /* Slightly darker for depth */
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease, box-shadow 0.3s ease;
    user-select: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 10;
    pointer-events: auto;
    background: var(--glass-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.project-preview {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    pointer-events: none;
    /* Let drag events pass through image */
}

.project-preview img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.project-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    pointer-events: none;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.project-company {
    font-size: 17.6px;
    color: var(--neon-cyan);
    margin: 0;
}

.project-industry {
    font-size: 14.4px;
    color: var(--text-secondary);
    margin: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.project-tags .tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12.8px;
    color: var(--text-secondary);
}

.project-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    /* Above card content */
    cursor: pointer;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    z-index: 20;
}

.slider-dot {
    width: 8px;
    /* Smaller dots */
    height: 8px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    width: 24px;
    /* elongated active dot */
    border-radius: 4px;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }



    .portfolio-slider {
        height: 600px;
    }

    .project-card {
        width: 95%;
        padding: var(--spacing-md);
    }

    .project-preview img {
        max-height: 250px;
    }

    .project-title {
        font-size: 24px;
    }

    .cert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .cert-link {
        margin-left: 0;
        margin-top: var(--spacing-xs);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 100%;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-brand .logo {
    font-size: 24px;
}

.footer-brand .logo-dot {
    font-size: 40px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
    max-width: 100%;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer-nav a {
    color: var(--text-secondary);
}

.footer-nav a:hover {
    color: var(--neon-pink);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.version {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.back-to-top {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    transition: var(--transition-normal);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-cyan-glow);
}

/* ===================================
   Scroll Reveal Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Expertise Section (What I Do)
   =================================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.expertise-card {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

.expertise-card:hover {
    /* transform: translateY(-5px); Replaced by beat animation */
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple-glow);
    animation: chipBeat 2s infinite;
}

.expertise-card:hover .expertise-title {
    color: white;
}

.expertise-card:hover .expertise-list li {
    color: rgba(255, 255, 255, 0.9);
}

.expertise-card:hover .expertise-list li svg {
    color: white;
    opacity: 1;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    background: rgba(167, 139, 250, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(167, 139, 250, 0.1);
}

.expertise-card:hover .expertise-icon {
    background: var(--neon-cyan);
    color: white;
    box-shadow: 0 0 20px var(--neon-cyan-glow);
    border-color: transparent;
}

.expertise-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.expertise-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition-fast);
}

/* Hover effect removed as requested */
/* .expertise-list li:hover { ... } */

.expertise-list li svg {
    color: var(--neon-purple);
    flex-shrink: 0;
    opacity: 0.8;
}

.expertise-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.7;
    margin-top: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Portfolio Cards Slider (Swiper)
   =================================== */
.swiper.swiper-cards {
    overflow: visible;

}

#workswiper,
#workswiper2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
    width: 100%;
    height: 100%;

}

#workswiper .swiper-wrapper,
#workswiper2 .swiper-wrapper {
    /* Cards effect handles positioning */
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

#workswiper .swiper-slide,
#workswiper2 .swiper-slide {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Fix for flicker */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 1;
}

#workswiper .swiper-slide.is-work,
#workswiper2 .swiper-slide.is-work {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Cards effect shadow styling */
.swiper-slide-shadow-cards {
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 24px;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    position: relative;
}

.work-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.work-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-slide.is-work:hover .work-card-image {
    transform: scale(1.05);
}

.work-details {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgb(255 255 255 / 5%);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 0 0 24px 24px;
    align-items: center;
    text-align: center;

}

.work-details-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.title-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 24px;
}

.title-link-text {
    font-size: inherit;
}

.title-link-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: var(--transition-fast);
}



/* Work Chips */
.work-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0;
    justify-content: center;
}

.work-chip {
    padding: 4px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.work-tags-industry {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.work-details-tag {
    padding: 4px 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.work-tags-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.work-clickable-tag {
    padding: 6px 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 12px;
    color: #495057;
    font-weight: 500;
    transition: var(--transition-fast);
}

.work-clickable-tag:hover {
    background: var(--neon-purple);
    color: #ffffff;
    border-color: var(--neon-purple);
}

/* Swiper Cards Effect Customization */
#workswiper .swiper-slide-shadow-cards,
#workswiper2 .swiper-slide-shadow-cards {
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 24px;
}

/* Swiper Pagination */
.portfolio-slider .swiper-pagination {
    bottom: 0;
    position: relative;
    margin-top: var(--spacing-lg);
}

.portfolio-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(139, 92, 246, 0.3);
    opacity: 1;
    transition: var(--transition-normal);
}

.portfolio-slider .swiper-pagination-bullet-active {
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    transform: scale(1.2);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .geo-shape {
        opacity: 0.3;
        transform: scale(0.8);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .swiper-slide.is-work:hover .work-card-image {
        transform: none !important;
    }

    /* 
       pointer-events: none removed to allow swiping 
    */

    /* Re-enable pointer events for the swiper wrapper to allow swiping */
    .swiper-wrapper {
        pointer-events: auto;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .gradient-text-light {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 18px;
    }

    .image-frame img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .floating-card {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feedbacks-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-content {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .contact-info {
        align-items: center;
    }

    .contact-title,
    .contact-description {
        text-align: center;
    }

    .contact-links {
        justify-content: center;
    }

    .contact-cta {
        justify-content: center;
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .contact-form .form-group label {
        text-align: left;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .contact-method {
        justify-content: flex-start;
    }

    .contact-method .method-info {
        text-align: left;
    }

    .hero-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .hero-cta .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-bottom .copyright {
        position: static;
        transform: none;
        order: 2;
    }

    .footer-bottom .version {
        order: 1;
    }

    .footer-bottom .back-to-top {
        order: 3;
    }

    /* Align chips left on tablet/mobile */
    .client-filters,
    .skills-tags,
    .tools-tags {
        justify-content: flex-start;
        text-align: left;
    }
}

/* ===================================
   Portfolio Slider Override
   =================================== */
.portfolio-slider,
#workswiper,
#workswiper2 {
    max-width: 1000px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing-xl);
        transition: var(--transition-normal);
        border-left: 1px solid var(--glass-border);
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        padding: 5px 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-avatar-mobile {
        display: block;
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto var(--spacing-lg);
    }

    .avatar-glow {
        display: none;
    }

    .avatar-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 3px solid var(--neon-cyan);
        object-fit: cover;
    }

    .hero-image {
        display: none;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .feedbacks-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .about-stats .stat-item {
        width: calc(50% - var(--spacing-sm) / 2);
        height: 165px;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        margin-left: 0;
    }

    .timeline-marker {
        display: none;
    }

    .hero-cta {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: var(--spacing-md);
        justify-content: center;
        position: relative;
    }

    .back-to-top {
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 0;
    }

    .copyright {
        position: relative;
        left: auto;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        grid-template-columns: 1fr;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: var(--spacing-xs);
    }

    .filter-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 13px;
    }

    /* Portfolio Slider Mobile */
    .portfolio-slider {
        padding: 40px 10px 80px;
        height: 600px;
    }

    .swiper-slide.is-work {
        /* height: auto !important; */
        /* min-height: 400px; */
        height: 100%;
    }

    .card-content-wrapper {
        /* height: auto !important; */
        height: 100%;
    }

    .work-image-wrapper {
        height: 250px;
        flex-shrink: 0;
    }

    .work-details {
        padding: var(--spacing-sm) var(--spacing-xs);
        height: auto;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .title-link {
        font-size: 18px;
    }

    .work-details-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .skills-section-title {
        text-align: center;
    }

    .skills-tags,
    .tools-tags {
        justify-content: flex-start;
    }


    .skill-tag,
    .tool-tag span {
        font-size: 14px;
    }

    .work-clickable-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .contact-methods {
        grid-template-columns: 1fr;

    }

    .contact-methods>a {
        padding: var(--spacing-sm);
    }

    .exp-title {
        font-size: 18px;
    }

    .exp-location {
        font-size: 14px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;

    }

    .lucide {
        width: 20px;
        height: 20px;
    }
}

/* Slider Title Glass Effect */
.slider-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-full);
    color: var(--text-primary);
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    width: fit-content;
    transition: var(--transition-normal);
}


.slider-title svg {
    width: 18px;
    height: 18px;
}


.slider-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 32px;
}

.slider-header-wrapper .slider-divider {
    transition: transform 5s cubic-bezier(0.22, 1, 0.36, 1), opacity 5s ease;
    transform: scaleX(0);
    opacity: 0;
}

.slider-header-wrapper.active .slider-divider {
    transform: scaleX(1);
    opacity: 1;
}

.slider-header-wrapper .slider-divider:first-child {
    transform-origin: right;
}

.slider-header-wrapper .slider-divider:last-child {
    transform-origin: left;
}

.slider-header-wrapper .slider-title {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease, transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-header-wrapper.active .slider-title {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.slider-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    flex: 1;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 16px;
        padding: 6px 16px;
        gap: 6px;
    }

    .slider-title svg {
        width: 16px;
        height: 16px;
    }

    .slider-header-wrapper {
        gap: 16px;
        margin-bottom: 24px;
    }
}