/* Custom animations and effects inspired by main-files templates */

/* Floating animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 6s ease-in-out infinite 2s;
}

/* Service card hover effects */
.service-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Service icon animations */
.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pulse animation for small circles */
@keyframes pulse-soft {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

.animate-pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

/* Mission header animations */
.mission-header {
    position: relative;
    overflow: hidden;
}

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

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

/* Modal animations */
.modal-enter {
    animation: modalFadeIn 0.3s ease-out;
}

.modal-exit {
    animation: modalFadeOut 0.3s ease-in;
}

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

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

/* Text gradient effect */
.text-gradient {
    background: linear-gradient(135deg, #14b8a6, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover glow effect */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

/* Company logos hover effect */
.company-logo {
    transition: all 0.3s ease;
    cursor: pointer;
}

.company-logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Background gradient animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #14b8a6, #3b82f6, #8b5cf6, #ec4899);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Button hover effects inspired by main-files */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Service number styling */
.service-number {
    position: relative;
    z-index: 1;
}

.service-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Loading animations for when content appears */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .service-icon {
        transform: scale(0.9);
    }
}

/* Enhanced Skill progress bar animations */
.skill-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
    position: relative;
}

.skill-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Neumorphic Progress Wrapper */
.skill-progress-container {
    position: relative;
    width: 100%;
    height: 16px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset -3px -3px 6px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dark .skill-progress-container {
    background: #4a5568;
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.3),
        inset -3px -3px 6px rgba(255, 255, 255, 0.05);
}

/* Neumorphic Progress Bar */
.skill-progress-bar {
    height: 100%;
    width: 0%;
    border-radius: 12px;
    position: relative;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-item.animate .skill-progress-bar {
    width: var(--target-width);
}

/* Clean Neumorphic Progress Bar Colors */
.skill-progress-bar.csharp {
    background: #6366f1;
    box-shadow: 
        2px 2px 4px rgba(99, 102, 241, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.html-css {
    background: #ec4899;
    box-shadow: 
        2px 2px 4px rgba(236, 72, 153, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.javascript {
    background: #fbbf24;
    box-shadow: 
        2px 2px 4px rgba(251, 191, 36, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.php {
    background: #a855f7;
    box-shadow: 
        2px 2px 4px rgba(168, 85, 247, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.python {
    background: #10b981;
    box-shadow: 
        2px 2px 4px rgba(16, 185, 129, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.cpp {
    background: #3b82f6;
    box-shadow: 
        2px 2px 4px rgba(59, 130, 246, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.unity {
    background: #1e40af;
    box-shadow: 
        2px 2px 4px rgba(30, 64, 175, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.illustrator {
    background: #f97316;
    box-shadow: 
        2px 2px 4px rgba(249, 115, 22, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.photoshop {
    background: #06b6d4;
    box-shadow: 
        2px 2px 4px rgba(6, 182, 212, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.photon {
    background: #ef4444;
    box-shadow: 
        2px 2px 4px rgba(239, 68, 68, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.git {
    background: #6b7280;
    box-shadow: 
        2px 2px 4px rgba(107, 114, 128, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.laravel {
    background: #dc2626;
    box-shadow: 
        2px 2px 4px rgba(220, 38, 38, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.skill-progress-bar.vscode {
    background: #3b82f6;
    box-shadow: 
        2px 2px 4px rgba(59, 130, 246, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

/* Clean solid colors work well in both light and dark modes */

/* Clean design without shimmer for simpler appearance */

/* Clean Neumorphic Hover Effects */
.skill-item:hover .skill-progress-container {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.15),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.skill-item:hover .skill-progress-bar {
    filter: brightness(1.1);
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.dark .skill-item:hover .skill-progress-container {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.4),
        inset -4px -4px 8px rgba(255, 255, 255, 0.08);
}

/* Skill Icon Styles */
.skill-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.skill-item:hover .skill-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Removed - using flex layout directly in HTML now */

/* Clean Neumorphic Card Design */
.neumorphic-card {
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.neumorphic-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.12),
        -12px -12px 24px rgba(255, 255, 255, 0.9),
        0 6px 20px rgba(0, 0, 0, 0.08);
}

.dark .neumorphic-card {
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .neumorphic-card:hover {
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Clean layout - dark mode handled in HTML classes */

/* Skill card enhanced hover effects */
.skill-card-enhanced {
    position: relative;
    overflow: hidden;
}

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

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

/* Feature card enhanced animations */
.feature-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Staggered animation for skill items */
.skill-item:nth-child(1) { transition-delay: 0.1s; }
.skill-item:nth-child(2) { transition-delay: 0.2s; }
.skill-item:nth-child(3) { transition-delay: 0.3s; }
.skill-item:nth-child(4) { transition-delay: 0.4s; }
.skill-item:nth-child(5) { transition-delay: 0.5s; }
.skill-item:nth-child(6) { transition-delay: 0.6s; }

/* Circular Progress Charts */
.circular-progress {
    position: relative;
    display: inline-block;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 140px;
    max-height: 140px;
}

.circle-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 0 100;
    transition: stroke-dasharray 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.percentage {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 5px;
    text-anchor: middle;
    dominant-baseline: middle;
}

/* Initial state - no progress */
.circular-progress:not(.animated) .circle {
    stroke-dasharray: 0 100;
}

/* Animated state */
.circular-progress.animated .circle {
    stroke-dasharray: var(--progress) 100;
}

/* Circular skill card animations */
.circular-skill-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.circular-skill-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.circular-skill-card:nth-child(1) { transition-delay: 0.1s; }
.circular-skill-card:nth-child(2) { transition-delay: 0.3s; }
.circular-skill-card:nth-child(3) { transition-delay: 0.5s; }
.circular-skill-card:nth-child(4) { transition-delay: 0.7s; }

/* Circular progress glow effect */
.circular-progress .circle {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

/* Enhanced hover effect for circular cards */
.circular-skill-card:hover .circular-chart {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.circular-skill-card:hover .circle {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

/* Logo Carousel Animation */
.logo-carousel-track {
    animation: scrollLeft 48s linear infinite;
    will-change: transform;
    display: flex;
    white-space: nowrap;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo Item Styles */
.logo-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo-item:hover::before {
    opacity: 1;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.logo-item:hover p {
    color: #374151;
}

.dark .logo-item:hover p {
    color: #f9fafb;
}

/* Technology Stack Section Enhancements */
.logo-carousel-container {
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Brand Color Variants for Logo Items */
.logo-item:nth-child(1):hover .w-16 { /* Unity */
    background-color: #f3f4f6;
    border: 2px solid #374151;
}

.logo-item:nth-child(2):hover .w-16 { /* VS Code */
    background-color: #dbeafe;
    border: 2px solid #3b82f6;
}

.logo-item:nth-child(3):hover .w-16 { /* JavaScript */
    background-color: #fef3c7;
    border: 2px solid #f59e0b;
}

.logo-item:nth-child(4):hover .w-16 { /* C# */
    background-color: #f3e8ff;
    border: 2px solid #8b5cf6;
}

.logo-item:nth-child(5):hover .w-16 { /* PHP */
    background-color: #e0e7ff;
    border: 2px solid #6366f1;
}

.logo-item:nth-child(6):hover .w-16 { /* Python */
    background-color: #d1fae5;
    border: 2px solid #10b981;
}

.logo-item:nth-child(7):hover .w-16 { /* HTML5 */
    background-color: #fed7aa;
    border: 2px solid #ea580c;
}

.logo-item:nth-child(8):hover .w-16 { /* Git */
    background-color: #fecaca;
    border: 2px solid #ef4444;
}

.logo-item:nth-child(9):hover .w-16 { /* Laravel */
    background-color: #fecaca;
    border: 2px solid #ef4444;
}

.logo-item:nth-child(10):hover .w-16 { /* Illustrator */
    background-color: #fed7aa;
    border: 2px solid #ea580c;
}

.logo-item:nth-child(11):hover .w-16 { /* Photoshop */
    background-color: #dbeafe;
    border: 2px solid #3b82f6;
}

/* Dark mode adjustments for logo items */
.dark .logo-item:nth-child(1):hover .w-16 {
    background-color: #374151;
    border: 2px solid #6b7280;
}

.dark .logo-item:nth-child(2):hover .w-16 {
    background-color: #1e3a8a;
    border: 2px solid #3b82f6;
}

.dark .logo-item:nth-child(3):hover .w-16 {
    background-color: #92400e;
    border: 2px solid #f59e0b;
}

.dark .logo-item:nth-child(4):hover .w-16 {
    background-color: #581c87;
    border: 2px solid #8b5cf6;
}

.dark .logo-item:nth-child(5):hover .w-16 {
    background-color: #3730a3;
    border: 2px solid #6366f1;
}

.dark .logo-item:nth-child(6):hover .w-16 {
    background-color: #065f46;
    border: 2px solid #10b981;
}

.dark .logo-item:nth-child(7):hover .w-16 {
    background-color: #9a3412;
    border: 2px solid #ea580c;
}

.dark .logo-item:nth-child(8):hover .w-16 {
    background-color: #991b1b;
    border: 2px solid #ef4444;
}

.dark .logo-item:nth-child(9):hover .w-16 {
    background-color: #991b1b;
    border: 2px solid #ef4444;
}

.dark .logo-item:nth-child(10):hover .w-16 {
    background-color: #9a3412;
    border: 2px solid #ea580c;
}

.dark .logo-item:nth-child(11):hover .w-16 {
    background-color: #1e3a8a;
    border: 2px solid #3b82f6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #14b8a6, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0d9488, #2563eb);
}

/* Skills Grid with Progress Bars */
.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.skills-grid .column {
    padding: 1rem 0;
}

.skills-grid .skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(156, 163, 175, 0.3);
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
}

.skills-grid .skill-item.border-none {
    border-bottom: none;
}

.dark .skills-grid .skill-item {
    color: #f9fafb;
    border-bottom-color: rgba(75, 85, 99, 0.5);
}

.skills-grid .skill-item .percentage {
    font-weight: 700;
    color: #6a0dad;
    font-size: 1.25rem;
}

/* Responsive adjustments for skills grid */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skills-grid .column {
        padding: 1.5rem;
    }
    
    .skills-container {
        padding: 0 15px;
    }
}

/* Skill Highlights Section */
.skill-highlights-container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem;
}

.skill-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.skill-highlights-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.skill-highlights-item:hover {
    transform: translateY(-5px);
}

.skill-highlights-item h2 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.skill-highlights-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: #222;
    font-family: 'Oswald', sans-serif;
}

.skill-highlights-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.dark .skill-highlights-item {
    background: #1f2937;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dark .skill-highlights-item h3 {
    color: #f9fafb;
}

.dark .skill-highlights-item p {
    color: #d1d5db;
}

@media (max-width: 600px) {
    .skill-highlights-item h2 {
        font-size: 2rem;
    }
    .skill-highlights-item h3 {
        font-size: 1.1rem;
    }
}

/* New Hero Section Styles */
.hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: auto;
}

.hero-card {
    background: #111;
    border-radius: 20px;
    padding: 2.5rem;
    width: 360px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    border: 1px solid white;
}

.dark .hero-card {
    background: #0f1419;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    border: 1px solid white;
}

.hero-card .image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

.hero-card .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(17, 17, 17, 0.9) 70%, #111 100%);
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

.hero-card .image-banner {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #9eff60, #00ff9d);
    margin: 0 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-card .image-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9eff60, #00ff9d);
    border-radius: 22px;
    z-index: -1;
    filter: blur(4px);
    opacity: 0.5;
}

.hero-card h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0 0.2rem;
    font-family: 'Oswald', sans-serif;
}

.subtitle-rotator {
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 2px;
    margin-top: 0.3rem;
    height: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #9eff60;
}

.hero-card .socials {
    margin: 1.2rem 0;
}

.hero-card .socials i {
    font-size: 1.1rem;
    margin: 0 0.5rem;
    color: #ccc;
    transition: color 0.3s;
}

.hero-card .socials i:hover {
    color: #00ff9d;
}

.hero-card .btn {
    margin-top: 1.5rem;
    background: #9eff60;
    color: #000;
    padding: 0.9rem 1.6rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-card .btn:hover {
    background: #8ae050;
    transform: translateY(-2px);
}

.hero-intro {
    flex: 1;
    padding-left: 4rem;
    max-width: 800px;
}

.hero-intro h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-intro h3 span#hero-fade {
    display: inline-block;
    color: #9eff60;
    font-weight: 600;
    transition: opacity 0.3s ease-in-out;
}

.hero-intro h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.hero-intro h1 span {
    background-color: #77c642;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
}

.hero-intro p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 700px;
}

.dark .hero-intro p {
    color: #d1d5db;
}

.hero-stats {
    display: flex;
    margin-top: 2.5rem;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.hero-stat {
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.hero-stat .number-wrapper {
    display: inline;
    font-size: 3rem;
}

.dark .hero-stat {
    color: #f9fafb;
}

.hero-stat small {
    display: inline;
    font-size: 1rem;
    color: #888;
    line-height: 1.2;
    font-weight: normal;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-intro {
        padding: 2rem 0 0;
    }

    .hero-intro h1 {
        font-size: 2.5rem;
    }
    
    .hero-intro h1 span {
        padding: 0.15rem 0.4rem;
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        gap: 0.3rem;
    }
    
    .hero-stat .number-wrapper {
        font-size: 2.5rem;
    }
    
    .hero-stat small {
        font-size: 0.85rem;
    }
}

/* Active Navigation Styles */
.nav-link.active {
    color: #3b82f6 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #3b82f6;
    border-radius: 1px;
}

/* Mobile menu active state */
.mobile-menu .nav-link.active::after {
    left: 0;
    transform: none;
    width: 4px;
    height: 100%;
    top: 0;
    bottom: auto;
    border-radius: 0 2px 2px 0;
}