
/* .para {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    hyphens: auto;
    word-spacing: -0.05em;
    line-height: 1.8;
    
} */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.8s; }

.card {
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.card:hover {
    transform: scale(1.05);
}

.bg-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* min-height: 100vh; */
}

.text-green {
    color: #2ecc71;
}

.border-green {
    border-color: rgba(46, 204, 113, 0.2) !important;
}

.list-icon {
    color: #2ecc71;
    flex-shrink: 0;
    margin-top: 4px;
}

.main-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* min-height: 100vh; */
    
}