/* Card Styles */
.home-page .card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.home-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
}

.home-page .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Feature Cards */
.home-page .feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
}

.home-page .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3182ce;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.home-page .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.2) 0%, rgba(49, 130, 206, 0.2) 100%);
}

/* Testimonial Cards */
.home-page .testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
}

.home-page .testimonial-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

/* Journal Cards */
.home-page .journal-card {
    border-radius: 15px;
    overflow: hidden;
}

.home-page .journal-card .card-img-top {
    height: 220px;
}

.home-page .journal-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
} 