.section {
        padding: 60px 0;
    }

    .custom-card {
        background: #f5f7fa;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .image-wrapper {
        position: relative;
        height: 100%;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* subtle overlay */
    .image-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
    }

    .content {
        padding: 40px;
    }

    .content h2 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #222;
    }

    .content p {
        text-align: justify;
        line-height: 1.8;
        color: #555;
        margin-bottom: 15px;
    }

    .wgs-title {
        margin-bottom: 20px;
    }

    .custom-body .wgs-title::after {
        content: "";
        width: 50px;
        height: 3px;
        background: #f39c12;
        display: block;
        margin-top: 8px;
    }
/* FEATURE CARD */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* subtle top border accent */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;          /* thickness of the bar */
    height: 100%;
    background: linear-gradient(180deg, #f39c12, #ffcc70);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.feature-card {
    padding-left: 35px; /* give space from the left bar */
}

/* hover effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* TITLE */
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* LIST */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* check icon */
.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

/* CONTENT BOX */
.content-box {
    /*background: #f9fbfd;*/
    border-radius: 12px;
    padding: 30px 35px;
}

/* TEXT IMPROVEMENT */
.content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* FIRST PARAGRAPH EMPHASIS */
.content p:first-child {
    font-weight: 500;
    color: #222;
}

/* HOVER EFFECT (SUBTLE) */
.custom-card:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.content-box::before {
    content: "“";
    font-size: 60px;
    color: #f39c12;
    position: absolute;
    top: 10px;
    left: 25px;
    opacity: 0.15;
}

/* CONTENT BOX BASE */
.content-box {
    position: relative;
    border-radius: 12px;
    padding: 35px 40px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease forwards;
}

/* TOP-LEFT QUOTE */
.content-box::before {
    content: "“";
    font-size: 80px;
    color: #f39c12;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

/* BOTTOM-RIGHT QUOTE */
.content-box::after {
    content: "”";
    font-size: 80px;
    color: #f39c12;
    position: absolute;
    bottom: 10px;
    right: 20px;
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

/* TEXT ABOVE QUOTES */
.content p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* OPTIONAL: EMPHASIZE FIRST LINE */
.content p:first-child {
    font-weight: 500;
    color: #222;
}

/* SUBTLE FADE-IN ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box::before,
.content-box::after {
    filter: blur(0.3px);
}
.custom-body .no-border::after {
    background: none;
    height: 0px;
}