﻿.jumbotron--home {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.home-tagline {
    color: #64748b;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    margin-top: -0.5rem;
}

.home-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin: 2rem auto 0;
    text-align: left;
}

.home-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(147,197,253,0.12);
    border-radius: 10px;
    padding: 20px 24px;
    text-decoration: none;
    color: #cbd5e1;
    transition: background 0.15s, border-color 0.15s;
}

.home-card:hover {
    background: rgba(147,197,253,0.07);
    border-color: rgba(147,197,253,0.3);
    text-decoration: none;
    color: #e2e8f0;
}

.home-card-icon {
    font-size: 1.6rem;
    color: #93c5fd;
    min-width: 36px;
    text-align: center;
}

.home-card-body {
    flex: 1;
}

.home-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 4px;
}

.home-card-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

.home-card-arrow {
    color: #334155;
    font-size: 0.9rem;
    transition: color 0.15s, transform 0.15s;
}

.home-card:hover .home-card-arrow {
    color: #93c5fd;
    transform: translateX(3px);
}

.home-page-navigation {
    padding: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.main-nav {
    padding: 10px;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.wrapper {
    height: 100%;
    width: 100%;
    background: #1b264f;
    background: linear-gradient(to bottom right, #1b264f, #3e4c9f);
    position: absolute;
}

    .wrapper h1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        font-family: sans-serif;
        letter-spacing: 1px;
        word-spacing: 2px;
        color: #fff;
        font-size: 40px;
        font-weight: 888;
        text-transform: uppercase;
    }

    .wrapper div {
        height: 60px;
        width: 60px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        border-radius: 50px;
        position: absolute;
        top: 10%;
        left: 10%;
        animation: 4s linear infinite;
    }

div .dot {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 20%;
    right: 20%;
}

.wrapper div:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}

.wrapper div:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: animate 10s linear infinite;
}

.wrapper div:nth-child(3) {
    top: 40%;
    left: 40%;
    animation: animate 3s linear infinite;
}

.wrapper div:nth-child(4) {
    top: 66%;
    left: 30%;
    animation: animate 7s linear infinite;
}

.wrapper div:nth-child(5) {
    top: 90%;
    left: 10%;
    animation: animate 9s linear infinite;
}

.wrapper div:nth-child(6) {
    top: 30%;
    left: 60%;
    animation: animate 5s linear infinite;
}

.wrapper div:nth-child(7) {
    top: 70%;
    left: 20%;
    animation: animate 8s linear infinite;
}

.wrapper div:nth-child(8) {
    top: 75%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.wrapper div:nth-child(9) {
    top: 50%;
    left: 50%;
    animation: animate 6s linear infinite;
}

.wrapper div:nth-child(10) {
    top: 45%;
    left: 20%;
    animation: animate 10s linear infinite;
}

.wrapper div:nth-child(11) {
    top: 10%;
    left: 90%;
    animation: animate 9s linear infinite;
}

.wrapper div:nth-child(12) {
    top: 20%;
    left: 70%;
    animation: animate 7s linear infinite;
}

.wrapper div:nth-child(13) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
}

.wrapper div:nth-child(14) {
    top: 60%;
    left: 5%;
    animation: animate 6s linear infinite;
}

.wrapper div:nth-child(15) {
    top: 90%;
    left: 80%;
    animation: animate 9s linear infinite;
}

@keyframes animate {
    0% {
        transform: scale(0) translateY(0) rotate(70deg);
    }

    100% {
        transform: scale(1.3) translateY(-100px) rotate(360deg);
    }
}
