.featured-card-container {
    margin-top: 30px;
}
.featured-card-container .card {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    height: 280px;
    width: 200px;
    display: inline-block; /* Make cards display inline */
    vertical-align: top; /* Align cards at the top */
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    margin-right: 10px;
    margin-bottom: 10px; /* Add some bottom margin for spacing */
}
.featured-card-container .card .icon {
    color: #A936A5;
    font-size:26px;
}
.featured-card-container .card .title {
    margin-top: 15px; /* Margin for title */
    color: lavenderblush;
}
.featured-card-container .card .description {
    margin-top: 15px; /* Margin for title */
    line-height: 1.2; /* Adjust the line height to increase space between lines */
    color:floralwhite;
}

/* Mobile version */
.featured-card-mobile-container {
    margin-top: 10px;
    display: none;
}
.mobile-list {
    list-style-type: none; /* Remove default list style */
    padding-left: 0; /* Remove default padding */
}
.mobile-list li {
    font-family: 'Roboto', sans-serif;
    color: lavenderblush;
    margin-bottom: 15px; /* Add some bottom margin for spacing */
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}
.mobile-list li i {
    margin-right: 10px; /* Add some right margin for spacing between icon and text */
}
/* Icons styles */
.mobile-list li .fas {
    color: #0234bcca; /* Set icon color */
    font-size: 20px; /* Set icon size */
}

/**/
.stand-out {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Apply a text shadow */
}
.subtext {
    color: antiquewhite !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Apply a text shadow */
    font-size: 24px;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    /* CSS for mobile screens */
    .mbr-fullscreen {
        padding-top: 8rem; /* Adjusted padding for mobile */
        padding-bottom: 1rem; /* Adjusted padding for mobile */
    }
    .subtext {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Apply a text shadow */
        font-size: 24px !important;
    }
    .featured-card-container {
        display: none;
    }
    .featured-card-mobile-container {
        display: block;
    }
    .logo-footer-mobile {
        margin-bottom: 30px !important;
    }
}

/* animation */
.featured-card-container {
    opacity: 0; /* Initially hide the container */
    visibility: hidden; /* Hide the container without affecting layout */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}
@keyframes fallAnimation {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes bounceAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    25%, 75% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.featured-card-container .card {
    animation: fallAnimation 2.5s ease forwards;
}
.featured-card-container .card:nth-child(1) {
    animation-delay: calc(0.2s * var(--delay));
}
.featured-card-container .card:nth-child(2) {
    animation-delay: calc(0.2s * var(--delay));
}
.featured-card-container .card:nth-child(3) {
    animation-delay: calc(0.2s * var(--delay));
}
.featured-card-container .card:nth-child(4) {
    animation-delay: calc(0.2s * var(--delay));
}
.featured-card-container .card:nth-child(5) {
    animation-delay: calc(0.2s * var(--delay));
}
.featured-card-container .card.bouncing {
    animation: bounceAnimation 0.5s ease-in-out forwards;
}