.edu-container {
    padding: 60px 60px;
    margin: 0 auto;
}

.edu-section-title {
    color: #0f4b99; 
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.edu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.edu-row-reverse {
    flex-direction: row; 
}

.edu-col-6 {
    flex: 1 1 calc(50% - 15px); /* 50% width minus half the gap */
    width: 100%;
}

.edu-card,
.edu-card1 {
    background-color: #ffffff; 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

.edu-card {
    border-left: 5px solid #0f4b99; 
}

.edu-card1 {
    border-right: 5px solid #0f4b99; 
}

.edu-card p,
.edu-card1 p {
    color: #0d47a1; 
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.edu-card p:last-child,
.edu-card1 p:last-child {
    margin-bottom: 0;
}

.edu-card:hover,
.edu-card1:hover {
    top: -8px; 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.edu-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.edu-image-container:hover .edu-img {
    transform: scale(1.02); /* Slight zoom on image hover */
}

@media (max-width: 1000px) {
    .edu-assessment-section {
        padding: 40px 20px;
    }
    
  
    .edu-card,
    .edu-card1 {
        padding: 20px;
    }
    
  
    .edu-card p,
    .edu-card1 p {
        font-size: 1rem;
    }
}


@media (max-width: 700px) {
    .edu-row, 
    .edu-row-reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .edu-col-6 {
        flex: 1 1 100%;
    }

    
    .edu-row .edu-text-col {
        order: 2;
    }
    .edu-row .edu-img-col {
        order: 1;
    }

    .edu-row-reverse .edu-img-col {
        order: 1;
    }
    .edu-row-reverse .edu-text-col {
        order: 2;
    }
    
    .edu-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}