.Life_After_MBA {
    margin: 50px 0;
}


.Life_After_MBA .col_header {
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
}

.Life_After_MBA .col_header .why_text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgb(173, 49, 77);
    margin-bottom: 16px;
}

.Life_After_MBA .col_header .col_title {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    margin: 0;
}

.Life_After_MBA .domain_div {
    margin-top: 50px;
}

.Life_After_MBA .domain_div .domain_holder {
    background: #fff;
    padding: 10px 36px;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Gradient overlay */
.Life_After_MBA .domain_div .domain_holder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e5345c, #792358);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Show gradient */
.Life_After_MBA .domain_div .domain_holder:hover::before {
    opacity: 1;
}

.Life_After_MBA .domain_div .domain_holder:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(121, 35, 88, 0.25);
    border-color: transparent;
}

/* Text & icon color change on hover */
.Life_After_MBA .domain_div .domain_holder:hover .item_title,
.Life_After_MBA .domain_div .domain_holder:hover .item_text,
.Life_After_MBA .domain_div .domain_holder:hover .item_icons {
    color: #fff;
}

/*  icon animation */
.Life_After_MBA .domain_div .domain_holder:hover .item_icons {
    transform: scale(1.2) rotate(5deg);
    transition: 0.3s ease;
}

.Life_After_MBA .domain_div .domain_holder .domain_header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.Life_After_MBA .domain_div .domain_holder .item_icons {
    font-size: 25px;
    color: rgb(173, 49, 77);
}

.Life_After_MBA .domain_div .domain_holder .item_title {
    font-size: 20px;
    /* font-family: "Playfair Display", serif; */
    font-weight: 600;
    margin: 0;
    color: rgb(173, 49, 77);
}

.Life_After_MBA .domain_div .domain_holder .item_text {
    font-size: 14px;
    color: #202020;
}

/* ============= Media Queries ============== */

@media (min-width: 0px) and (max-width: 574px) {
    .Life_After_MBA .domain_div .domain_holder .item_title {
        font-size: 18px;
    }

    .Life_After_MBA .domain_div .domain_holder {
        padding: 20px;
    }

    .Life_After_MBA .col_header .col_title {
        font-size: 22px;
    }

    .Life_After_MBA .domain_div .odd_bg {
        background: linear-gradient(135deg, #e5345c, #792358) !important;
        color: #fff;
    }

    .Life_After_MBA .domain_div .odd_bg .item_text,
    .Life_After_MBA .domain_div .odd_bg .item_title,
    .Life_After_MBA .domain_div .odd_bg .item_icons {
        color: #fff;
    }

    .Life_After_MBA .domain_div {
        margin-top: 20px;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .Life_After_MBA .domain_div .domain_holder .item_title {
        font-size: 18px;
    }

    .Life_After_MBA .domain_div .domain_holder {
        padding: 20px;
    }

    .Life_After_MBA .col_header .col_title {
        font-size: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .Life_After_MBA .domain_div .domain_holder .item_title {
        font-size: 18px;
    }

    .Life_After_MBA .domain_div .domain_holder {
        padding: 40px 20px;
    }

    .Life_After_MBA .col_header .col_title {
        font-size: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .Life_After_MBA .domain_div .domain_holder .item_title {
        font-size: 18px;
    }

    .Life_After_MBA .domain_div .domain_holder {
        padding: 40px 20px;
    }
}