.card-modern {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
}
.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #3f3d56);
    color: white;
}
h1 {
    font-size: 2.8rem;
    color: var(--bs-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}
h5 {
    font-size: 1rem;
}
.container {
    padding-top: 6vw !important;}
@media (max-width: 992px) {
    .container {
    padding-top: 21vw !important;}
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}