/* Enhanced Feature Boxes Styling */

/* Enhanced Dashboard Cards */
.dashboard-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Removed top accent strip for cleaner appearance */

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
}

.dashboard-card:hover::after {
    opacity: 1;
}

.dashboard-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease, opacity 0.3s ease;
    opacity: 0;
}

.dashboard-card:hover::after {
    left: 100%;
    opacity: 1;
}

/* Enhanced Card Body */
.dashboard-card .card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Enhanced Icons */
.dashboard-card .fas {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 95, 0.1));
}

.dashboard-card:hover .fas {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(30, 58, 95, 0.2));
}

/* Enhanced Card Titles */
.dashboard-card .card-title {
    color: #1e3a5f !important;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.dashboard-card:hover .card-title {
    color: #0f1d2f !important;
}

/* Enhanced Card Text */
.dashboard-card .card-text {
    color: #2c3e50 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease;
}

.dashboard-card:hover .card-text {
    color: #1a252f !important;
}

/* Icon Container Enhancement */
.dashboard-card .mb-3 {
    margin-bottom: 1.5rem !important;
    padding: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(44, 82, 130, 0.05) 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.dashboard-card:hover .mb-3 {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(44, 82, 130, 0.1) 100%);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-card {
        margin-bottom: 1.5rem;
    }
    
    .dashboard-card .card-body {
        padding: 1.5rem;
    }
    
    .dashboard-card .fas {
        font-size: 2.5rem !important;
    }
    
    .dashboard-card .mb-3 {
        width: 80px;
        height: 80px;
        padding: 0.75rem;
    }
}

/* Special Effects for Different Card Types */
.dashboard-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dashboard-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dashboard-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dashboard-card:nth-child(4) {
    animation-delay: 0.4s;
}

.dashboard-card:nth-child(5) {
    animation-delay: 0.5s;
}

.dashboard-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Fade in animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card {
    animation: fadeInUp 0.6s ease-out both;
}

/* Enhanced Focus States for Accessibility */
.dashboard-card:focus-within {
    outline: 2px solid #1e3a5f;
    outline-offset: 2px;
}

/* Enhanced Benefit Cards for Membership Landing Page */
.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Removed top accent strip for cleaner appearance */

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease, opacity 0.3s ease;
    opacity: 0;
}

.benefit-card:hover::after {
    left: 100%;
    opacity: 1;
}

/* Enhanced Benefit Icons */
.benefit-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(44, 82, 130, 0.1) 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15) 0%, rgba(44, 82, 130, 0.15) 100%);
    transform: scale(1.05);
}

/* Enhanced Benefit Card Titles */
.benefit-card h3 {
    color: #1e3a5f !important;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #0f1d2f !important;
}

/* Enhanced Benefit Card Text */
.benefit-card p {
    color: #2c3e50 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover p {
    color: #1a252f !important;
}

/* Enhanced Benefit Features List */
.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    color: #2c3e50 !important;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.benefit-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3a5f;
    font-weight: bold;
    font-size: 1rem;
}

.benefit-card:hover .benefit-features li {
    color: #1a252f !important;
}

/* Enhanced Preview Cards */
.preview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

/* Removed top accent strip for cleaner appearance */

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
}

.preview-card .preview-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(44, 82, 130, 0.1) 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.preview-card:hover .preview-icon {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15) 0%, rgba(44, 82, 130, 0.15) 100%);
    transform: scale(1.05);
}

.preview-card h3 {
    color: #1e3a5f !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.preview-card p {
    color: #2c3e50 !important;
    font-size: 0.9rem;
    margin: 0;
}