/* ==============
    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;
}



/* Services Section */
.services-section {
    background: #ffffff;
    padding-top: 130px !important;
    padding-bottom: 80px !important;
}

.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 */
.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 70px 20px 40px;
    position: relative;
    transition: all 0.4s ease;
    min-height: 230px;
}

/* Hover Card */
.service-card:hover {
    border: 2px solid #AA5A95;
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.service-row {
    --bs-gutter-y: 6.5rem !important;
    /* padding-left: 5px;
    padding-right: 5px; */
}

/* ICON */
.service-icon {
    width: 113px;
    height: 113px;
    background: #F3E6EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #AA5A95;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* Icon Hover */
.service-card:hover .service-icon {
    background: #AA5A95;
    color: #fff;
    transform: translateX(-50%) scale(1.1);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

/* CARD TITLE */
.service-card h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-top: 20px;
    color: #333333;

    max-width: 190px;
    margin: 20px auto 0;
    text-align: center;
}

.service-card h6 {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    /*margin-top: 15px;*/
    color: #93437E;

    max-width: 246px;
    margin: 20px auto 0;
    text-align: center;
}

/* Title Hover Effect */
.service-card:hover h5 {
    color: #AA5A95;
    transition: color 0.3s ease;
}

.service-card:hover h6 {
    color: #AA5A95;
    transition: color 0.3s ease;
}


/* Modal Background */
#serviceModal .modal-content {
    background: #F3E6EF;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Header */
#serviceModal .modal-header {
    background: #F3E6EF;
    color: #fff;
    border-bottom: 1px dotted #AA5A95;
    padding: 20px;
}

/* Title */
#serviceModal .modal-title {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: #AA5A95;
}

#serviceModal .btn-close {
    filter: invert(27%) sepia(52%) saturate(501%) hue-rotate(84deg) brightness(94%) contrast(91%);
}

/* Body */
#serviceModal .modal-body {
    padding: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #AA5A95;
}

/* List styling */
#serviceModal ul {
    padding-left: 20px;
}

#serviceModal ul li {
    margin-bottom: 8px;
}