/* =====================================================================
   Service / Content Pages — Professional UI layer
   Scoped under .box-service-details so it never affects other components.
   Pure presentation: no content changes.
   ===================================================================== */

.box-service-details {
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, rgba(51, 185, 203, .07), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(51, 185, 203, .06), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    overflow: hidden;
}

/* soft decorative blobs */
.box-service-details::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(51, 185, 203, .16), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.box-service-details::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(31, 140, 155, .10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.box-service-details .container {
    position: relative;
    z-index: 1;
}

/* ---- main content as an elevated card ---- */
.box-service-details .content-post {
    background: #ffffff;
    border: 1px solid #eef3f6;
    border-radius: 24px;
    padding: 50px 52px;
    box-shadow: 0 40px 90px -50px rgba(9, 29, 62, .35);
}

@media (max-width: 991px) {
    .box-service-details .content-post { padding: 34px 28px; }
}

@media (max-width: 575px) {
    .box-service-details .content-post { padding: 24px 18px; border-radius: 16px; }
}

/* ---- eyebrow ---- */
.box-service-details .content-post .heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.box-service-details .content-post .heading::before {
    content: "";
    width: 36px;
    height: 2px;
    background: #33b9cb;
    display: inline-block;
}

/* ---- H1 ---- */
.box-service-details .content-post h1.title-heading {
    font-family: 'Jost', sans-serif;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -.5px;
    color: #091D3E;
}

@media (max-width: 991px) { .box-service-details .content-post h1.title-heading { font-size: 34px; } }
@media (max-width: 575px) { .box-service-details .content-post h1.title-heading { font-size: 27px; } }

/* ---- H2 section headings with accent bar ---- */
.box-service-details .content-post h2.title-details {
    position: relative;
    padding-left: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    line-height: 1.28;
    font-weight: 700;
    color: #091D3E;
}

.box-service-details .content-post h2.title-details::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    border-radius: 6px;
    background: linear-gradient(180deg, #33b9cb, #1f8c9b);
}

@media (max-width: 575px) { .box-service-details .content-post h2.title-details { font-size: 23px; } }

/* ---- body text ---- */
.box-service-details .content-post p {
    font-size: 16.5px;
    line-height: 1.85;
    color: #44546d;
}

.box-service-details .content-post .svc-lead {
    font-size: 18.5px;
    line-height: 1.7;
    color: #2b3c56;
    font-weight: 500;
}

/* ---- hero / intro two-column ---- */
.box-service-details .svc-hero { align-items: center; }

.box-service-details .svc-hero-media {
    position: relative;
    padding: 6px;
}

.box-service-details .svc-hero-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 45px 90px -45px rgba(9, 29, 62, .55);
    object-fit: cover;
}

.box-service-details .svc-hero-media::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(51, 185, 203, .30), rgba(31, 140, 155, .12));
    z-index: 0;
}

.box-service-details .svc-hero-media::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -10px;
    top: -10px;
    border: 6px solid rgba(51, 185, 203, .25);
    border-radius: 18px;
    z-index: 0;
}

@media (max-width: 991px) {
    .box-service-details .svc-hero-media { margin-top: 34px; max-width: 560px; }
}

/* ---- callout cards ---- */
.box-service-details .content-post .about-callout {
    position: relative;
    border: 0;
    border-left: 5px solid #33b9cb;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(135deg, #e9f8fb 0%, #f4fbfc 100%);
    padding: 24px 28px 24px 64px;
    box-shadow: 0 24px 50px -34px rgba(9, 29, 62, .45);
    font-style: normal;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: #0c2747;
}

.box-service-details .content-post .about-callout::before {
    content: "\201C";
    position: absolute;
    left: 20px;
    top: 6px;
    font-size: 58px;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    color: #33b9cb;
    opacity: .45;
}

/* ---- unordered lists as a card grid ---- */
.box-service-details .content-post .about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 4px 0 6px;
}

@media (max-width: 600px) {
    .box-service-details .content-post .about-list { grid-template-columns: 1fr; }
}

.box-service-details .content-post .about-list li {
    margin: 0;
    padding: 15px 18px 15px 50px;
    background: #f6fbfc;
    border: 1px solid #e7f1f3;
    border-radius: 13px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.box-service-details .content-post .about-list li:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #bfe7ed;
    box-shadow: 0 18px 34px -22px rgba(9, 29, 62, .5);
}

.box-service-details .content-post .about-list li::before {
    content: "\e90b";
    left: 16px;
    top: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #33b9cb, #1f8c9b);
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
    box-shadow: 0 8px 16px -8px rgba(31, 140, 155, .9);
}

/* ---- ordered lists as numbered steps ---- */
.box-service-details .content-post .about-olist {
    list-style: none;
    counter-reset: svc-step;
    padding-left: 0;
}

.box-service-details .content-post .about-olist li {
    position: relative;
    padding: 4px 0 4px 56px;
    min-height: 38px;
    display: flex;
    align-items: center;
}

.box-service-details .content-post .about-olist li::marker { content: none; }

.box-service-details .content-post .about-olist li::before {
    counter-increment: svc-step;
    content: counter(svc-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #33b9cb, #1f8c9b);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px -8px rgba(31, 140, 155, .85);
}

/* ---- tables ---- */
.box-service-details .content-post .about-table-wrap {
    border-radius: 16px;
    border: 1px solid #e7f1f3;
    box-shadow: 0 30px 60px -42px rgba(9, 29, 62, .55);
    overflow: hidden;
}

.box-service-details .content-post .about-table { border-collapse: separate; border-spacing: 0; }

.box-service-details .content-post .about-table thead th {
    background: linear-gradient(135deg, #33b9cb, #1f8c9b);
    color: #fff;
    font-size: 15px;
    letter-spacing: .3px;
    border: 0;
}

.box-service-details .content-post .about-table th,
.box-service-details .content-post .about-table td {
    border: 0;
    border-bottom: 1px solid #eef3f6;
}

.box-service-details .content-post .about-table tbody tr { transition: background .2s ease; }
.box-service-details .content-post .about-table tbody tr:hover { background: #e9f8fb; }
.box-service-details .content-post .about-table tbody tr:last-child td,
.box-service-details .content-post .about-table tbody tr:last-child th { border-bottom: 0; }

/* ---- sub-section titles (h3) ---- */
.box-service-details .content-post .about-value-title {
    position: relative;
    padding-left: 30px;
}

.box-service-details .content-post .about-value-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(51, 185, 203, .16);
    border: 2px solid #33b9cb;
}

/* ---- FAQ cards ---- */
.box-service-details .content-post .about-faq {
    display: grid;
    gap: 14px;
}

.box-service-details .content-post .about-faq-item {
    border: 1px solid #e7f1f3;
    border-radius: 14px;
    padding: 22px 24px;
    background: #ffffff;
    box-shadow: 0 18px 38px -32px rgba(9, 29, 62, .5);
    transition: transform .25s ease, box-shadow .25s ease;
}

.box-service-details .content-post .about-faq-item:first-child { border-top: 1px solid #e7f1f3; }

.box-service-details .content-post .about-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 46px -30px rgba(9, 29, 62, .55);
}

.box-service-details .content-post .about-faq-item h3 {
    position: relative;
    padding-left: 38px;
}

.box-service-details .content-post .about-faq-item h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, #33b9cb, #1f8c9b);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- links ---- */
.box-service-details .content-post a {
    color: #1f8c9b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(51, 185, 203, .4);
    transition: color .2s ease, border-color .2s ease;
}

.box-service-details .content-post a:hover {
    color: #33b9cb;
    border-color: #33b9cb;
}
