﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #eef2f7;
}

.landing {
    width: 100%;
    max-width: none; /* ya max-width:100%; */
    margin: 0;
    border-radius: 0;
}

/* govt bar */
.govt-bar {
    background: #1a2e4a;
    padding: 0.45rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    gap: 0.5rem;
}

    .govt-bar a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: 0.15s;
    }

        .govt-bar a:hover {
            color: #fff;
        }

    .govt-bar .emblems {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .govt-bar .emblem-icon {
        height: 28px;
        width: 28px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
    }

    .govt-bar .govt-text {
        text-align: right;
        line-height: 1.4;
    }

        .govt-bar .govt-text strong {
            color: #fff;
            font-size: 0.8rem;
        }

/* header */
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #fff;
    border-bottom: 1px solid #e8edf4;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,#1a5276,#2980b9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,82,118,0.25);
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2e4a;
    line-height: 1.2;
}

    .logo-text h1 span {
        color: #2980b9;
    }

.logo-text p {
    font-size: 0.72rem;
    color: #6b7f99;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
}

    .nav-links a {
        text-decoration: none;
        color: #3a5068;
        font-size: 0.88rem;
        font-weight: 500;
        padding: 0.4rem 0.9rem;
        border-radius: 8px;
        transition: 0.15s;
    }

        .nav-links a:hover {
            background: #eaf1fa;
            color: #1a5276;
        }

    .nav-links .btn-cta {
        background: linear-gradient(135deg,#1a5276,#2980b9);
        color: #fff !important;
        padding: 0.45rem 1.4rem;
        border-radius: 10px;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(26,82,118,0.2);
    }

        .nav-links .btn-cta:hover {
            box-shadow: 0 5px 18px rgba(26,82,118,0.3);
            transform: translateY(-1px);
            background: linear-gradient(135deg,#1a5276,#2471a3);
        }

/* hero slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease,transform 1.2s ease;
    transform: scale(1.04);
}

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,rgba(20,40,70,0.88) 0%,rgba(20,40,70,0.55) 55%,rgba(20,40,70,0.3) 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.5rem 3rem 2.5rem;
    max-width: 560px;
    z-index: 2;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.9rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

    .slide-content h2 span {
        color: #f39c12;
    }

.slide-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f39c12;
    color: #1a2e4a;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 15px rgba(243,156,18,0.3);
    text-decoration: none;
}

    .slide-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(243,156,18,0.4);
        background: #e67e22;
    }

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 3rem;
    display: flex;
    gap: 7px;
    z-index: 5;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

    .slider-dot.active {
        background: #f39c12;
        box-shadow: 0 0 8px rgba(243,156,18,0.5);
        transform: scale(1.25);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.95rem;
}

    .slider-arrow:hover {
        background: rgba(243,156,18,0.6);
        border-color: rgba(243,156,18,0.7);
    }

    .slider-arrow.prev {
        left: 1.5rem;
    }

    .slider-arrow.next {
        right: 1.5rem;
    }

.slide-counter {
    position: absolute;
    top: 1.3rem;
    right: 3rem;
    z-index: 5;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 1px;
}

    .slide-counter span {
        color: #f39c12;
        font-weight: 700;
        font-size: 1rem;
    }

/* quick links ribbon */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: #f8fafd;
    border-bottom: 1px solid #e8edf4;
}

.quick-link {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 1.1rem 0.5rem;
    text-decoration: none;
    color: #3a5068;
    transition: 0.2s;
    border-right: 1px solid #e8edf4;
    cursor: pointer;
}

    .quick-link:last-child {
        border-right: none;
    }

    .quick-link:hover {
        background: #eaf1fa;
        color: #1a5276;
    }

.ql-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.2s;
}

.quick-link:nth-child(1) .ql-icon {
    background: #eaf7ed;
    color: #27ae60;
}

.quick-link:nth-child(2) .ql-icon {
    background: #fef3e2;
    color: #e67e22;
}

.quick-link:nth-child(3) .ql-icon {
    background: #eaf1fa;
    color: #2980b9;
}

.quick-link:nth-child(4) .ql-icon {
    background: #fdecea;
    color: #e74c3c;
}

.quick-link:nth-child(5) .ql-icon {
    background: #f3eaf8;
    color: #8e44ad;
}

.quick-link:nth-child(6) .ql-icon {
    background: #e8f8f0;
    color: #16a085;
}

.quick-link:hover .ql-icon {
    transform: scale(1.1);
}

.quick-link span {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* stats */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1.4rem 2.5rem;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a2e4a;
    display: block;
    line-height: 1;
}

    .stat-num b {
        color: #2980b9;
    }

.stat-label {
    font-size: 0.7rem;
    color: #8295ab;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* about */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 2.5rem;
    background: #fff;
}

.about-text {
    flex: 1 1 320px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2980b9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}

    .section-label::before {
        content: '';
        width: 28px;
        height: 2.5px;
        background: #f39c12;
        border-radius: 2px;
    }

.about-text h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

    .about-text h2 span {
        color: #2980b9;
    }

.about-text p {
    color: #5a6e84;
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f0f6fd;
    border: 1px solid #dce8f5;
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    color: #2c4a6a;
    font-size: 0.8rem;
    font-weight: 500;
}

    .about-feat i {
        color: #2980b9;
        font-size: 0.7rem;
    }

.about-images {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.about-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.4s;
    }

    .about-img:hover img {
        transform: scale(1.06);
    }

    .about-img:nth-child(1) {
        height: 150px;
    }

    .about-img:nth-child(2) {
        height: 150px;
        margin-top: 1.5rem;
    }

    .about-img:nth-child(3) {
        height: 110px;
        margin-top: -0.8rem;
    }

    .about-img:nth-child(4) {
        height: 110px;
        margin-top: 0.8rem;
    }

/* services section */
.services-section {
    padding: 2rem 2.5rem 2.5rem;
    background: #f8fafd;
}

.services-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 40px;
}

    .services-header h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #1a2e4a;
    }

        .services-header h3 i {
            color: #2980b9;
            margin-right: 8px;
            font-size: 1.8rem;
        }

    .services-header .badge {
        color: #8295ab;
        font-size: 0.78rem;
        background: #eef2f7;
        padding: 0.2rem 1rem;
        border-radius: 30px;
    }

/* service cards — ICON style */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(185px,1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.6rem 1rem 1.2rem;
    border-radius: 1.4rem;
    border: 1px solid #e8edf4;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
}

    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,#2980b9,#f39c12);
        opacity: 0;
        transition: 0.25s;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,30,60,0.08);
        border-color: #c5d5e8;
    }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover .svc-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(41,128,185,0.18);
        }

    .service-card.selected {
        border-color: #2980b9;
        box-shadow: 0 8px 25px rgba(41,128,185,0.12);
        background: #f8fbff;
    }

        .service-card.selected::after {
            opacity: 1;
        }

.svc-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 0.9rem;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .svc-icon {
    background: linear-gradient(135deg,#e8f4fd,#d0e8fa);
    color: #2176bd;
}

.service-card:nth-child(2) .svc-icon {
    background: linear-gradient(135deg,#e6f7ed,#c8ecd6);
    color: #1e8449;
}

.service-card:nth-child(3) .svc-icon {
    background: linear-gradient(135deg,#fef3e2,#fde0b5);
    color: #c47a1a;
}

.service-card:nth-child(4) .svc-icon {
    background: linear-gradient(135deg,#f3eaf8,#e0cff0);
    color: #7d3c98;
}

.service-card:nth-child(5) .svc-icon {
    background: linear-gradient(135deg,#fdecea,#f8c8c4);
    color: #c0392b;
}

.service-card:nth-child(6) .svc-icon {
    background: linear-gradient(135deg,#e8f8f0,#c5edda);
    color: #148f77;
}

.service-card-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2e4a;
    margin-bottom: 0.15rem;
}

.service-card-body p {
    font-size: 0.74rem;
    color: #8295ab;
    margin-bottom: 0.55rem;
}

.badge-svc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.64rem;
    font-weight: 600;
    padding: 0.18rem 0.7rem;
    border-radius: 20px;
}

    .badge-svc.online {
        background: #eaf7ed;
        color: #1e8449;
        border: 1px solid #c8e6c9;
    }

    .badge-svc.partial {
        background: #fef3e2;
        color: #b7791f;
        border: 1px solid #fde8c8;
    }

/* categories */
.categories-section {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1.4rem 1.6rem 1.2rem;
    border: 1px solid #e8edf4;
    margin-bottom: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2e4a;
    margin-bottom: 1rem;
}

    .section-title i {
        color: #2980b9;
        font-size: 0.95rem;
    }

    .section-title small {
        font-weight: 400;
        font-size: 0.76rem;
        color: #8295ab;
        margin-left: 4px;
    }

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f8fafd;
    padding: 0.65rem 1.3rem;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: all 0.15s;
    cursor: pointer;
    gap: 8px;
}

    .category-item:hover {
        border-color: #b8cde2;
        background: #eaf1fa;
    }

    .category-item.clicked {
        border-color: #2980b9;
        background: #e8f2fc;
        box-shadow: 0 2px 8px rgba(41,128,185,0.08);
    }

.category-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #2c4a6a;
    font-size: 0.88rem;
}

    .category-name i {
        color: #2980b9;
        font-size: 0.85rem;
        width: 18px;
        text-align: center;
    }

.availability-badge {
    padding: 0.12rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .availability-badge.online {
        background: #eaf7ed;
        color: #1e8449;
        border: 1px solid #c8e6c9;
    }

    .availability-badge.offline {
        background: #fdecea;
        color: #c0392b;
        border: 1px solid #f5c6cb;
    }

    .availability-badge i {
        font-size: 0.58rem;
    }

.click-hint {
    color: #a3b4c8;
    font-size: 0.65rem;
    background: #f0f4f8;
    padding: 0.12rem 0.7rem;
    border-radius: 16px;
}

/* signup cta */
.signup-prompt {
    background: linear-gradient(135deg,#1a5276,#2980b9);
    border-radius: 14px;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    transition: all 0.3s;
    gap: 0.8rem;
}

    .signup-prompt p {
        font-weight: 500;
        color: rgba(255,255,255,0.9);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
    }

        .signup-prompt p i {
            color: #f39c12;
            font-size: 1.1rem;
        }

.btn-signup {
    background: #f39c12;
    border: none;
    padding: 0.55rem 1.8rem;
    border-radius: 10px;
    color: #1a2e4a;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 3px 12px rgba(243,156,18,0.3);
}

    .btn-signup:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 18px rgba(243,156,18,0.4);
        background: #e67e22;
    }

.footer-note {
    margin-top: 1rem;
    font-size: 0.68rem;
    color: #a3b4c8;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

    .footer-note span {
        background: #f0f4f8;
        padding: 0.15rem 0.8rem;
        border-radius: 16px;
    }

/* footer */
.footer {
    background: #1a2e4a;
    padding: 2.5rem 2.5rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 180px;
    min-width: 140px;
}

    .footer-col h5 {
        font-size: 0.92rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-col h5 i {
            color: #f39c12;
            font-size: 0.85rem;
        }

    .footer-col p, .footer-col a {
        color: rgba(255,255,255,0.5);
        font-size: 0.82rem;
        line-height: 1.9;
        text-decoration: none;
        display: block;
        transition: 0.15s;
    }

        .footer-col a:hover {
            color: #f39c12;
        }

        .footer-col p i {
            color: #f39c12;
            margin-right: 5px;
            font-size: 0.75rem;
        }

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.5);
        font-size: 1rem;
        transition: 0.2s;
    }

        .footer-social a:hover {
            background: rgba(243,156,18,0.15);
            border-color: rgba(243,156,18,0.3);
            color: #f39c12;
            transform: translateY(-2px);
        }

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 1.5rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    gap: 0.5rem;
}

    .footer-bottom a {
        color: rgba(255,255,255,0.4);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #f39c12;
        }

/* toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a2e4a;
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    font-size: 0.85rem;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
}

    .toast.show {
        transform: translateY(0);
        opacity: 1;
    }

    .toast i {
        color: #f39c12;
    }

/* animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    animation: fadeUp 0.5s ease both;
}

.d1 {
    animation-delay: 0.08s;
}

.d2 {
    animation-delay: 0.16s;
}

.d3 {
    animation-delay: 0.24s;
}

.d4 {
    animation-delay: 0.32s;
}

@media(max - width:768px) {
    .govt-bar {
        padding: 0.4rem 1.2rem;
        font-size: 0.68rem;
    }

        .govt-bar .govt-text {
            display: none;
        }

    .header {
        padding: 0.8rem 1.2rem;
    }

    .nav-links a:not(.btn-cta) {
        display: none;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 1.5rem 1.2rem;
        max-width: 100%;
    }

        .slide-content h2 {
            font-size: 1.4rem;
        }

    .slider-arrow {
        display: none;
    }

    .quick-link {
        min-width: 90px;
        padding: 0.8rem 0.3rem;
    }

    .ql-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .quick-link span {
        font-size: 0.68rem;
    }

    .stats-bar {
        gap: 1.2rem;
        padding: 1rem 1.2rem;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .about-section {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .about-images {
        flex: 1 1 100%;
    }

    .services-section {
        padding: 1.5rem 1.2rem;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
        gap: 0.8rem;
    }

    .svc-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        border-radius: 16px;
    }

    .category-item {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 10px;
        padding: 0.8rem;
    }

    .signup-prompt {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 12px;
        padding: 1.2rem;
    }

    .footer {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header.anim.d1 {
    animation: fadeSlideDown 0.4s ease both;
}


