/* Simple Testimonial Cards */
.simple-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: #064e3b;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.simple-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.simple-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.simple-card-verified {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.simple-card-text {
    font-style: italic;
    color: #d1fae5;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
}

.simple-card-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(52, 211, 153, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .simple-card {
        flex: 0 0 280px;
        padding: 25px;
    }
}

/* New Image Cards for Top Section */
.image-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    /* White bg for cleaner look */
    transition: transform 0.3s ease;
    height: auto;
    /* Revert to auto */
    position: relative;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Show full image */
    /* Crops excess */
    object-position: top center;
    /* Keeps header, cuts bottom black bars */
    display: block;
}

/* Avatar Placeholder */
.simple-card-avatar-placeholder {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(52, 211, 153, 0.4);
}