/* /var/www/html/publication/includes/css/styles.css */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d74da;
    --accent-color: #805ad5;
    --success-color: #38a169;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: #2d3748;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Premium Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);.copyright
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.navbar-brand img {
    height: 100px;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(128, 90, 213, 0.1), rgba(45, 116, 218, 0.1));
    color: var(--accent-color);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.3);
}

/* Premium Hero Section */
.hero-section {
    background: linear-gradient(135deg,
            rgba(26, 54, 93, 0.95) 0%,
            rgba(45, 116, 218, 0.9) 50%,
            rgba(128, 90, 213, 0.85) 100%),
        url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 9rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(128, 90, 213, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 116, 218, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.section-title {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 2.5rem;
    font-family: math;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(128, 90, 213, 0.05) 0%,
            rgba(45, 116, 218, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 10px 25px rgba(128, 90, 213, 0.3);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.stat-description {
    color: #718096;
    font-size: 0.95rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* ===========================================
   PREMIUM YEAR CARDS REDESIGN - UPDATED
   =========================================== */

.year-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(128, 90, 213, 0.8),
            rgba(45, 116, 218, 0.8),
            rgba(128, 90, 213, 0.8));
    animation: shimmer 3s infinite linear;
    background-size: 200px 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(100% + 200px) 0;
    }
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Modern Year Card Design */
.year-card {
    background: linear-gradient(145deg, #ffffff, #86b7fe);
    border-radius: 24px;
    padding: 2rem 2rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
}

.year-card.visible {
    animation: cardEntrance 0.8s forwards;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    70% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.year-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(128, 90, 213, 0.05) 0%,
            rgba(45, 116, 218, 0.05) 50%,
            rgba(128, 90, 213, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.year-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
}

.year-card:hover::before {
    opacity: 1;
}

.year-card:hover::after {
    transform: scale(1);
}

.year-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(128, 90, 213, 0.3);
}

/* Year Number with gradient animation */
.year-number {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.0;
    position: relative;
    z-index: 2;
    background: linear-gradient(184deg, #000000 0%, #ff0000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s infinite ease-in-out;
    text-shadow: 0 4px 20px rgb(255 255 255 / 20%), 0 2px 10px rgb(28 63 114 / 19%);
    font-family: fangsong;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Year Count Badge */
.year-count {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%), inset 0 1px 0 rgb(255 255 255 / 60%);
    font-family: auto;
    margin-top: 0.5rem;
}

/* 3D Button Effect */
.btn-explore {
    background: linear-gradient(145deg,
            var(--accent-color),
            var(--secondary-color),
            var(--accent-color));
    color: white;
    /* border: none; */
    /* border-radius: 50px; */
    padding: 1.2rem 3rem;
    /* font-weight: 700; */
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(128, 90, 213, 0.4),
        0 5px 15px rgba(128, 90, 213, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgb(255, 255, 255),
            transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.btn-explore:hover::before {
    left: 100%;
}

.btn-explore:hover {
    color: white;
    transform: translateY(-5px) translateZ(20px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(128, 90, 213, 0.5),
        0 10px 25px rgba(128, 90, 213, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg,
            var(--secondary-color),
            var(--accent-color),
            var(--secondary-color));
}

.btn-explore:active {
    transform: translateY(-2px) translateZ(10px) scale(0.98);
    box-shadow:
        0 10px 20px rgba(128, 90, 213, 0.4),
        0 5px 10px rgba(128, 90, 213, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.1s ease;
    color: white !important;
}

.btn-explore i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(5px) rotate(360deg);
}

/* Staggered animation for cards */
.year-card:nth-child(1) {
    animation-delay: 0.1s;
}

.year-card:nth-child(2) {
    animation-delay: 0.2s;
}

.year-card:nth-child(3) {
    animation-delay: 0.3s;
}

.year-card:nth-child(4) {
    animation-delay: 0.4s;
}

.year-card:nth-child(5) {
    animation-delay: 0.5s;
}

.year-card:nth-child(6) {
    animation-delay: 0.6s;
}

.year-card:nth-child(7) {
    animation-delay: 0.7s;
}

.year-card:nth-child(8) {
    animation-delay: 0.8s;
}

.year-card:nth-child(9) {
    animation-delay: 0.9s;
}

.year-card:nth-child(10) {
    animation-delay: 1s;
}

/* Optional: Add subtle glow effect on hover */
.year-card:hover .year-number {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow:
            0 4px 20px rgba(128, 90, 213, 0.2),
            0 2px 10px rgba(45, 116, 218, 0.2);
    }

    50% {
        text-shadow:
            0 6px 30px rgba(128, 90, 213, 0.4),
            0 4px 20px rgba(45, 116, 218, 0.3),
            0 0 40px rgba(128, 90, 213, 0.2);
    }
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a202c 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 30px !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #e2e8f0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-3px);
}

.copyright {
    margin-top: 0 !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Database Error Styling */
.database-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 2px solid #f1aeb5;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.database-error i {
    font-size: 3rem;
    color: #842029;
    margin-bottom: 1rem;
}

.database-error h4 {
    color: #842029;
    margin-bottom: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 0;
}

.empty-state i {
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
   HERO SECTION FLOATING ICONS - SMOOTH CONTINUOUS
   =========================================== */

.floating-icons-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon-hero {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    opacity: 0.7;
    z-index: 1;
}

/* Position each icon individually with smooth continuous animations */
.floating-icon-hero:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: floatSmooth1 20s infinite ease-in-out;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.floating-icon-hero:nth-child(2) {
    top: 25%;
    right: 15%;
    animation: floatSmooth2 25s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.25);
}

.floating-icon-hero:nth-child(3) {
    top: 40%;
    left: 20%;
    animation: floatSmooth3 30s infinite ease-in-out;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.floating-icon-hero:nth-child(4) {
    top: 60%;
    right: 10%;
    animation: floatSmooth4 22s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.28);
}

.floating-icon-hero:nth-child(5) {
    top: 75%;
    left: 15%;
    animation: floatSmooth5 28s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.22);
}

.floating-icon-hero:nth-child(6) {
    top: 20%;
    right: 5%;
    animation: floatSmooth6 35s infinite ease-in-out;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.25);
}

.floating-icon-hero:nth-child(7) {
    top: 50%;
    left: 5%;
    animation: floatSmooth7 32s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.22);
}

.floating-icon-hero:nth-child(8) {
    top: 30%;
    right: 20%;
    animation: floatSmooth8 40s infinite ease-in-out;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.2);
}

.floating-icon-hero:nth-child(9) {
    top: 65%;
    left: 25%;
    animation: floatSmooth9 26s infinite ease-in-out;
    color: rgba(255, 255, 255, 0.26);
}

.floating-icon-hero:nth-child(10) {
    top: 85%;
    right: 25%;
    animation: floatSmooth10 33s infinite ease-in-out;
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.24);
}

/* Smooth continuous floating animations - no jumps */
@keyframes floatSmooth1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(60px, 10px) rotate(180deg);
    }

    75% {
        transform: translate(30px, 40px) rotate(270deg);
    }
}

@keyframes floatSmooth2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-40px, 30px) rotate(-90deg);
    }

    50% {
        transform: translate(-80px, -10px) rotate(-180deg);
    }

    75% {
        transform: translate(-40px, -50px) rotate(-270deg);
    }
}

@keyframes floatSmooth3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 40px) rotate(45deg);
    }

    50% {
        transform: translate(100px, -20px) rotate(90deg);
    }

    75% {
        transform: translate(50px, -60px) rotate(135deg);
    }
}

@keyframes floatSmooth4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-30px, -40px) rotate(-45deg);
    }

    50% {
        transform: translate(-60px, 20px) rotate(-90deg);
    }

    75% {
        transform: translate(-30px, 60px) rotate(-135deg);
    }
}

@keyframes floatSmooth5 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 30px) rotate(60deg);
    }

    50% {
        transform: translate(40px, -30px) rotate(120deg);
    }

    75% {
        transform: translate(20px, -60px) rotate(180deg);
    }
}

@keyframes floatSmooth6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-50px, 20px) rotate(-60deg);
    }

    50% {
        transform: translate(-100px, -20px) rotate(-120deg);
    }

    75% {
        transform: translate(-50px, -40px) rotate(-180deg);
    }
}

@keyframes floatSmooth7 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -30px) rotate(72deg);
    }

    50% {
        transform: translate(80px, 30px) rotate(144deg);
    }

    75% {
        transform: translate(40px, 60px) rotate(216deg);
    }
}

@keyframes floatSmooth8 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-60px, -20px) rotate(-72deg);
    }

    50% {
        transform: translate(-120px, 20px) rotate(-144deg);
    }

    75% {
        transform: translate(-60px, 40px) rotate(-216deg);
    }
}

@keyframes floatSmooth9 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, 50px) rotate(36deg);
    }

    50% {
        transform: translate(60px, -40px) rotate(72deg);
    }

    75% {
        transform: translate(30px, -80px) rotate(108deg);
    }
}

@keyframes floatSmooth10 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-40px, 50px) rotate(-36deg);
    }

    50% {
        transform: translate(-80px, -40px) rotate(-72deg);
    }

    75% {
        transform: translate(-40px, -80px) rotate(-108deg);
    }
}

/* Add pulsing effect for more life */
.floating-icon-hero {
    animation-timing-function: ease-in-out;
}

/* Subtle scale changes for more dynamic movement */
.floating-icon-hero:nth-child(1):hover,
.floating-icon-hero:nth-child(3):hover,
.floating-icon-hero:nth-child(8):hover {
    animation-play-state: paused;
}

/* Make sure hero content stays above floating icons */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Fix for footer links underline */
.footer-links a,
.social-icons a {
    text-decoration: none !important;
}

/* Social icons specific styling */
.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-3px);
    text-decoration: none;
}

/* Footer links hover effect */
.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .year-number {
        font-size: 3.5rem;
    }

    .year-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .year-card {
        padding: 2.5rem 1.5rem;
    }

    .btn-explore {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .floating-icon-hero {
        font-size: 1.2rem;
        opacity: 0.2;
    }

    .floating-icon-hero:nth-child(1),
    .floating-icon-hero:nth-child(3),
    .floating-icon-hero:nth-child(8) {
        font-size: 1.4rem;
    }

    /* Slower animations on mobile for better performance */
    .floating-icon-hero {
        animation-duration: 40s !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .year-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .year-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}



.scroll-down {
    position: absolute;
    top: 85%;
    /* was 20px, moved down */
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1) 70%);
    box-shadow:
        inset -5px -5px 15px rgba(255, 255, 255, 0.4),
        inset 5px 5px 15px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-down:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow:
        inset -5px -5px 15px rgba(255, 255, 255, 0.5),
        inset 5px 5px 15px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.35);
}

.scroll-down a {
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Bounce animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Hide ChatGPT/AI extension elements */
#USE_CHAT_GPT_AI_ROOT_Context_Menu_Portal,
[id*="USE_CHAT_GPT_AI"],
[class*="use-chat-gpt-ai"],
.use-chat-gpt-ai-context-menu-1tv0a4k,
.maxai-client--chat-hub--container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
}