* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #167B38;
    --green-dark: #0d6b39;
    --green-light: #2a9d4e;
    --yellow: #E8B800;
    --yellow-dark: #c9a000;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --bg-light: #f9f9f7;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(22,123,56,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== NAVBAR - FULLY RESPONSIVE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,123,56,0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -1px;
}

.nav-logo .logo-main span {
    color: var(--green);
}

.nav-logo .logo-sub {
    font-size: 8px;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-logo .logo-urdu {
    font-size: 10px;
    color: var(--green);
    font-weight: 600;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: rgba(22,123,56,0.08);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Buttons */
.btn-facilitator,
.btn-register,
.btn-login {
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-facilitator {
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
}

.btn-facilitator:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: var(--green);
    color: white;
    border: none;
}

.btn-register:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--yellow);
    color: #1a1a1a;
    border: none;
}

.btn-login:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--green);
    cursor: pointer;
    padding: 5px;
}

/* ===== HERO SECTION - RESPONSIVE ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9f3 0%, #fefdf5 40%, #fffbea 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-content {
    padding: 40px 0;
}

.hero-logo-wrap {
    margin-bottom: 24px;
}

.hero-logo-text .urdu-name {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-logo-text .brand {
    font-size: 48px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -2px;
    line-height: 0.9;
}

.hero-logo-text .brand span {
    color: var(--green);
}

.hero-logo-text .tagline-small {
    font-size: 9px;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-desc strong {
    color: var(--green);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--yellow);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(232,184,0,0.3);
}

.btn-apply:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232,184,0,0.4);
}

.btn-apply-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(22,123,56,0.08);
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    border: 2px solid rgba(22,123,56,0.2);
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-art-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-person-card {
    background: linear-gradient(145deg, #fefdf7, #f0faf4);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(22,123,56,0.1);
    position: relative;
    z-index: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-icons-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.hero-service-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    color: var(--green);
    transition: all 0.3s;
}

.hero-service-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(22,123,56,0.15);
}

.call-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: white;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--yellow);
    z-index: 5;
}

.call-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.call-badge-text small {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
}

.call-badge-text strong {
    font-size: 18px;
    color: var(--green);
    font-weight: 800;
}

/* ===== SERVICES SECTION ===== */
.section {
    padding: 70px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.green {
    color: var(--green);
}

/* Explore Section */
.explore-section {
    background: white;
    padding: 60px 0;
}

.explore-search-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px;
}

.explore-search-wrap input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid rgba(22,123,56,0.2);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
}

.explore-search-wrap input:focus {
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 4px rgba(22,123,56,0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

/* Services Slider */
.services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
}

.services-slider::-webkit-scrollbar {
    height: 6px;
}

.services-slider::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.services-slider::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px;
}

.service-card {
    flex-shrink: 0;
    width: 200px;
    background: white;
    border: 2px solid rgba(22,123,56,0.12);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.card-icon-img {
    width: 50px;
    height: 50px;
    background: rgba(22,123,56,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 22px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.card-dept {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 12px;
}

/* ===== DLIMS SECTION ===== */
.dlims-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #fefef5 100%);
    padding: 70px 0;
}

.dlims-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dlims-logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--green);
}

.dlims-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 8px;
}

.dlims-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 20px;
}

.dlims-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.dlims-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.dlims-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.dlims-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-width: 200px;
    flex: 1;
    transition: all 0.3s;
}

.partner-card:hover {
    box-shadow: 0 8px 24px rgba(22,123,56,0.12);
    transform: translateY(-3px);
}

.partner-icon {
    width: 48px;
    height: 48px;
    background: rgba(22,123,56,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 22px;
    flex-shrink: 0;
}

.partner-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.partner-name span {
    color: var(--green);
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: linear-gradient(135deg, #fdfffe 0%, #f9fdf9 100%);
    padding: 70px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 12px 40px rgba(22,123,56,0.12);
    transform: translateY(-5px);
}

.news-img-wrap {
    padding: 16px 16px 0;
}

.news-img-placeholder {
    border-radius: 16px;
    height: 160px;
    background: linear-gradient(135deg, rgba(22,123,56,0.1) 0%, rgba(232,184,0,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-body {
    padding: 20px;
}

.news-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.news-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.news-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo .brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -1px;
}

.footer-logo .brand span {
    color: white;
}

.footer-logo .sub {
    font-size: 9px;
    color: #a0a0b0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.govt-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--yellow);
    display: inline-block;
    margin-top: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #a0a0b0;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #a0a0b0;
}

.contact-item i {
    color: var(--yellow);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--yellow);
    color: #1a1a2e;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 32px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 12px;
    color: #a0a0b0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232,184,0,0.4);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {

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

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

.animate-up {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.animate-right {
    animation: fadeRight 0.7s ease forwards;
    opacity: 0;
}

.animate-left {
    animation: fadeLeft 0.7s ease forwards;
    opacity: 0;
}

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

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

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

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

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

.float-anim {
    animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .dlims-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dlims-feature {
        justify-content: center;
    }

    .dlims-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .license-badges {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 0 0 20px 20px;
        gap: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-controls .btn-facilitator {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .btn-apply,
    .btn-explore {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .services-slider {
        gap: 15px;
    }

    .service-card {
        width: 170px;
        padding: 15px;
    }

    .card-icon-img {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .card-title {
        font-size: 12px;
    }

    .hero-icons-row {
        justify-content: center;
    }

    .call-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .hero-person-card {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-apply,
    .btn-explore {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        width: 150px;
    }

    .dlims-title {
        font-size: 28px;
    }

    .dlims-subtitle {
        font-size: 16px;
    }
}

/* Urdu Language Support */
body.urdu-mode {
    font-family: 'Noto Nastaliq Urdu', 'Outfit', sans-serif;
    direction: rtl;
    text-align: right;
}

body.urdu-mode .nav-links a,
body.urdu-mode .hero-desc,
body.urdu-mode .section-lead {
    text-align: right;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}