/* ==========================================================================
   V2 DESIGN TOKENS: MODERN MINIMALIST SYSTEM (Marc Lou UI Inspired)
   ========================================================================== */
:root {
    /* Premium Typography Scale */
    --font-family-title: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Theme Scheme Colors (Light Theme Default - Clean Off-white/Zinc) */
    color-scheme: light dark;
    --bg-primary: #fafafa;
    --bg-gradient: none; /* Removed heavy gradients for clean layouts */
    
    --card-bg: #ffffff;
    --card-border: #e4e4e7; /* Zinc-200 */
    --card-hover-border: #a1a1aa; /* Zinc-400 */
    
    --text-primary: #09090b; /* Zinc-950 */
    --text-secondary: #52525b; /* Zinc-600 */
    --text-muted: #71717a; /* Zinc-500 */
    
    --accent-primary: #4f46e5; /* Indigo-600 */
    --accent-primary-rgb: 79, 70, 229;
    --accent-secondary: #3730a3; /* Indigo-800 */
    --accent-secondary-rgb: 55, 48, 163;
    --accent-glow: rgba(79, 70, 229, 0.03);
    
    --nav-bg: rgba(250, 250, 250, 0.85);
    --nav-border: #e4e4e7;
    
    --badge-bg: #f4f4f5; /* Zinc-100 */
    --badge-text: #27272a; /* Zinc-800 */
    
    --timeline-track: #e4e4e7;
    
    /* Elegant UI Depth: High-end Stacked Soft Shadows */
    --shadow-soft: 
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-hover: 
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 12px 24px -4px rgba(0, 0, 0, 0.06),
        0 4px 12px -2px rgba(0, 0, 0, 0.03);
        
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-padding: 6rem 2rem;
}

/* Dark Theme Variables Override (Sleek Deep Charcoal/Black) */
.dark {
    --bg-primary: #09090b; /* Zinc-950 */
    
    --card-bg: #18181b; /* Zinc-900 */
    --card-border: #27272a; /* Zinc-800 */
    --card-hover-border: #52525b; /* Zinc-600 */
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa; /* Zinc-400 */
    --text-muted: #71717a; /* Zinc-500 */
    
    --accent-primary: #818cf8; /* Indigo-400 */
    --accent-primary-rgb: 129, 140, 248;
    --accent-secondary: #6366f1; /* Indigo-500 */
    
    --nav-bg: rgba(9, 9, 11, 0.85);
    --nav-border: #27272a;
    
    --badge-bg: #27272a; /* Zinc-800 */
    --badge-text: #e4e4e7; /* Zinc-200 */
    
    --timeline-track: #27272a;
    
    --shadow-soft: 
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-hover: 
        0 1px 4px rgba(0, 0, 0, 0.5),
        0 16px 32px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.3s ease;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Slim Custom Scrollbars */
body {
    scrollbar-color: var(--card-hover-border) transparent;
    scrollbar-width: thin;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--card-hover-border);
}

/* Typography scale settings */
h1, h2, h3, h4 {
    font-family: var(--font-family-title);
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   UTILITY STYLES
   ========================================================================== */
.gradient-text {
    /* Highly subtle, premium, and clean Indigo gradient */
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }

/* ==========================================================================
   GLASSMORPHIC NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-family-title);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Customized clean language selector */
.lang-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--badge-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding-inline: 0.7rem 0.5rem;
    padding-block: 0.35rem;
    transition: var(--transition-smooth);
}

.lang-selector-wrapper:hover {
    border-color: var(--card-hover-border);
}

.lang-icon {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-right: 0.35rem;
}

.lang-select {
    background: transparent;
    border: none;
    font-family: var(--font-family-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    outline: none;
    padding-inline-end: 0.4rem;
    -webkit-appearance: none;
    appearance: none;
}

.lang-selector-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-muted);
    pointer-events: none;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--badge-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.theme-toggle-btn:hover {
    border-color: var(--card-hover-border);
    color: var(--text-primary);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
}

.mobile-drawer {
    display: none;
    position: fixed;
    top: 59px;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--nav-border);
    padding: 1.2rem 2rem;
    z-index: 99;
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    padding-block: 0.2rem;
}

/* ==========================================================================
   HERO SECTION (Balanced and Premium)
   ========================================================================== */
.hero-section {
    padding-block: 9rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Clean status badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--badge-bg);
    border: 1px solid var(--card-border);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-name {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}

.hero-title {
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 580px;
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--text-primary); /* High contrast minimal look */
    color: var(--bg-primary);
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.btn-secondary {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    box-shadow: var(--shadow-soft);
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--card-hover-border);
    transform: scale(1.05);
}

/* Minimal Hero Visual Shading */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Replaced heavy neon glows with simple soft depth */
.visual-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.03) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(0, 0, 0, 0.12); /* Soft shadow depth */
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--card-border);
}

/* ==========================================================================
   SECTIONS GENERAL DESIGN
   ========================================================================== */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 4rem auto;
    text-wrap: pretty;
}

/* ==========================================================================
   PROFESSIONAL TIMELINE SECTION
   ========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    background-color: var(--timeline-track);
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    position: relative;
    padding-left: 45px;
    transition: var(--transition-smooth);
}

.timeline-dot {
    position: absolute;
    left: 9px;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-primary);
    border: 3px solid var(--card-hover-border);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item.active .timeline-dot {
    border-color: var(--accent-primary);
    background-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(var(--accent-primary-rgb), 0.15);
}

.timeline-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.6rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-hover);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.timeline-role {
    font-size: 1.15rem;
    font-weight: 700;
}

.timeline-company-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.timeline-date-badge {
    background-color: var(--badge-bg);
    color: var(--text-primary);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    text-wrap: pretty;
}

/* ==========================================================================
   PROJECTS GRID SECTION
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.8rem;
}

.project-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.project-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-hover);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-icon {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.project-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-wrap: pretty;
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.project-badge {
    background-color: var(--badge-bg);
    color: var(--text-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.project-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.project-link i {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.project-card:hover .project-link i {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   SKILLS MATRIX SECTION
   ========================================================================== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skills-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.skills-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-hover);
}

.skills-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skills-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--badge-bg);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
}

.skills-category {
    font-size: 1.2rem;
    font-weight: 700;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    background-color: var(--badge-bg);
    border: 1px solid transparent;
    color: var(--text-primary);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: default;
}

.skill-tag:hover {
    background-color: var(--card-bg);
    border-color: var(--card-hover-border);
    transform: translateY(-1px);
}

/* ==========================================================================
   CONTACT CTA SECTION (Clean Layout Depth)
   ========================================================================== */
.contact-section {
    padding-bottom: 8rem;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.contact-header {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    text-wrap: pretty;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.channel-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--card-border);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-card:hover {
    border-color: var(--card-hover-border);
    transform: translateX(4px);
    transition: var(--transition-smooth);
}

.channel-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--card-bg);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--card-border);
}

.channel-card:hover .channel-icon-box {
    color: var(--text-primary);
    border-color: var(--card-hover-border);
}

.channel-info {
    display: flex;
    flex-direction: column;
}

.channel-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.channel-link {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    word-break: break-all;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--nav-border);
    padding-block: 3rem;
    background-color: var(--nav-bg);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.footer-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Soft, subtle float */
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0.6; }
}

/* Smooth Fade-in Reveal animations */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInReveal 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-name { font-size: 2.8rem; }
    .hero-title { font-size: 1.7rem; }
    .contact-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-info {
        align-items: center;
    }
    
    .hero-name { font-size: 2.4rem; }
    .hero-title { font-size: 1.5rem; }
    .hero-desc { margin-bottom: 1.8rem; }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .visual-wrapper {
        max-width: 250px;
    }
    
    .timeline-line { left: 8px; }
    .timeline-item { padding-left: 30px; }
    .timeline-dot { left: 1px; }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .timeline-date-badge {
        align-self: flex-start;
    }
    
    .contact-title { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    
    .hero-img {
        animation: none !important;
    }
}
