/* ==============
    HERO SECTION
================= */
.blog-hero {
    height: 287px;
    background-image: url("../img/building.webp");
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Overlay (like screenshot) */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Content */
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Title Green Box */
.hero-title {
    width: 297px;
    height: 67px;

    background: #AA5A95;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Urbanist", sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F3E6EF;

    margin: 0 auto 20px;
    /* center horizontally */
}


/* Breadcrumb */
.hero-breadcrumb {
    font-family: "Quicksand", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    opacity: 0.8;
    color: #F3E6EF;
}

.breadcrumb-current {
    color: #fff;
}



/* Facilities SECTION */
.facilities-section {
    background: #ffffff;
}

.experts-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -2%;
    color: #333333;
    margin-bottom: 100px;
}

.experts-title span {
    color: #AA5A95;
}

.experts-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0%;
    color: #4C4C4C;
    width: 80%;
}


/* CARD */
.facility-card {
    background: #F9FFFB;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 27px;
    border-bottom-left-radius: 20px;

    padding: 30px 25px 70px;
    position: relative;

    display: flex;
    flex-direction: column;

    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);

    width: auto;
    height: 255px;
    min-height: 270px;

    border: 2px solid transparent;   
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    border-color: #AA5A95;   
}


/* Make text push arrow down */
.facility-card p {
    flex-grow: 1;
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.2px;
    color: #4C4C4C;
}

/* Title */
.facility-card h6 {
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    margin-top: 15px;
    color: #93437E;
}

.facility-card h5 {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    /*margin-top: 15px;*/
    color: #93437E;
}

/* ICON */
.icon {
    font-size: 32px;
}

/* ARROW BUTTON */
.arrow-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #AA5A95;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.facility-card:hover .arrow-btn {
    transform: translateX(6px);
}

.facility-card:hover .arrow-btn {
    transform: translateX(6px) scale(1.05);
}