body {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('images/wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
}

#animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

header {
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #00ff00;
}

.nav-link.active, .nav-link:hover {
    background: #00ff00 !important;
    color: #000 !important;
}

.nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 2;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #00ff00;
}

.navbar-nav .nav-link {
    margin: 0 15px;
    font-size: 1.2rem;
    transition: background 0.3s;
    border-radius: 50px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.tab-content.active {
    display: block;
}

.card-custom {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.card-custom:hover::before {
    opacity: 1;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.list-group-item {
    background: #444;
    color: #fff;
}

.carousel-inner img {
    border-radius: 15px;
}

.project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-card {
    background: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 250px;
    transition: transform 0.3s;
    overflow: hidden;
    z-index: 3;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

.project-card h3 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #00ff00;
}

.project-card p {
    font-size: 0.9rem;
    color: #ccc;
}

.project-card:hover {
    transform: translateY(-5px);
}

.close-card {
    float: right;
    cursor: pointer;
    color: #00ff00;
    font-size: 1.2rem;
    z-index: 4;
}

#reload-message {
    margin-top: 20px;
}

#reload-cards {
    background-color: #00ff00;
    border-color: #00ff00;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.progress {
    height: 20px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #444;
}

.progress-bar {
    background-color: #00ff00;
    border-radius: 10px;
    line-height: 20px;
    text-align: center;
    color: #000;
}
