.edu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .edu-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .edu-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Card item container */
.edu-card-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 24px 24px 24px;
    border-radius: 24px;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.edu-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Card Header with Badges & Indicator dot */
.edu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.edu-card-badges {
    display: flex;
    gap: 8px;
}

.edu-card-badge {
    background: #FFFFFF;
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.edu-card-dot-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #10B981;
    position: relative;
}

.edu-card-dot-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Card Body text details */
.edu-card-body {
    margin-bottom: 24px;
    flex-grow: 1;
}

.edu-card-title {
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px 0;
    color: #1A1A1A;
}

.edu-card-text {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #555555;
}

/* Image section container */
.edu-card-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.edu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.edu-card-item:hover .edu-card-img {
    transform: scale(1.08);
}

/* Read More modern button */
.edu-card-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #FFFFFF;
    color: #111111;
    padding: 10px 18px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.edu-card-btn:hover {
    background-color: #111111;
    color: #FFFFFF;
}

.edu-card-arrow {
    transition: transform 0.3s ease;
}

.edu-card-btn:hover .edu-card-arrow {
    transform: translateX(4px);
}
