/* ===== SECTION ===== */
.edu-section {
    padding: 80px 60px;
    background: #f8fafc;
}

/* ===== CONTAINER ===== */
.edu-container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

/* LEFT & RIGHT */
.edu-left,
.edu-right {
    flex: 1;
}

/* HEADINGS */
.edu-left h2,
.edu-right h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

/* DESCRIPTION */
.edu-desc {
    font-size: 12.5px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}


/* ===== POINTS GRID ===== */
.edu-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* POINT ITEM */
.edu-item {
    color: black;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 10 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.edu-item:hover {
    transform: translateY(-3px);
}

/* ===== TAGS ===== */
.edu-subtitle {
    color: black;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* TAG CONTAINER */
.edu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* TAG */
.edu-tags span {
    padding: 6px 14px;
    background: #ffe5e5;
    color: #e60000;
    font-size: 13px;
    border-radius: 20px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.edu-tags span:hover {
    background: #e60000;
    color: white;
}

/* CITY TAG STYLE */
.edu-tags.city span {
    background: #e7f0ff;
    color: #0d6efd;
}

.edu-tags.city span:hover {
    background: #0d6efd;
    color: white;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {

    .edu-container {
        flex-direction: column;
        gap: 40px;
    }

    .edu-section {
        padding: 50px 20px;
    }

    .edu-points {
        grid-template-columns: 1fr;
    }

    .edu-left h2,
    .edu-right h2 {
        font-size: 22px;
    }
}



/* ----------------  */
/* SECTION BLOCK */
.eduX-block{
    margin-top: 30px;
}

/* TITLE ROW WITH ICON */
.eduX-title-row{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* ICON STYLE */
.eduX-icon{
    font-size: 20px;
    /* background: #f3f0f0; */
    padding: 1px;
    border-radius: 10px;
}

/* SUBHEADING */
.eduX-subheading{
    color: black;
    font-size: 18px;
    font-weight: 600;
}

/* TAG BOX */
.eduX-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* TAG STYLE */
.eduX-chip{
    background: #f1f3f6;
    color: black;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
    cursor: pointer;
}

.eduX-chip:hover{
    background: #ff4d4d;
    color: white;
}

/* CITY STYLE (slightly different) */
.eduX-city{
    background: #e6f0ff;
}

.eduX-city:hover{
    background: #0d6efd;
}