.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15) !important;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.card-text {
    line-height: 1.6;
    color: #6c757d;
}

/* Enhanced btn-solid for articles with Blue/Teal theme */
.btn-solid.btn-sty-dark-primary {
    background: linear-gradient(135deg, #007bff 0%, #20c997 100%) !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-solid.btn-sty-dark-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #1aa179 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white !important;
}

.btn-solid.btn-sty-dark-primary:active {
    transform: translateY(0);
}

/* Page title enhancement */
.page-title {
    position: relative;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #20c997 100%);
    border-radius: 2px;
}

/* Mobile menu box enhancements */
.mobile-menu-box-container .box-head-item {
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.mobile-menu-box-container .box-head-item:hover,
.mobile-menu-box-container .swiper-slide.is-active .box-head-item {
    background: linear-gradient(135deg, #007bff 0%, #20c997 100%);
    color: white;
    text-decoration: none;
}

.toggle-content-item {
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 2px;
    display: block;
    text-decoration: none;
    color: #495057;
}

.toggle-content-item:hover,
.toggle-content-item.is-active {
    background: linear-gradient(135deg, #007bff 0%, #20c997 100%);
    color: white;
    text-decoration: none;
}

/* Add some nice effects to the page */
.page-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
