/*==============================================
    Services One (nuevo diseño)
===============================================*/

.services-one {
    position: relative;
    display: block;

    background:
        radial-gradient(circle at 0% 0%, rgba(var(--careon-base-rgb), 0.15), transparent 35%),
        radial-gradient(circle at 100% 0%, rgba(var(--careon-black-rgb), 0.10), transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(27, 102, 131, 0.12), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(var(--careon-base-rgb), 0.15), transparent 35%),
        linear-gradient(180deg, var(--careon-white) 0%, var(--careon-extra) 100%);

    padding: 80px 0 90px;
    z-index: 1;
    overflow: hidden;
}

/* Raya/marco alrededor */
.services-one::before {
    content: "";
    position: absolute;

    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;

    border-radius: 42px;

    border: 1px solid rgba(var(--careon-black-rgb), 0.10);

    pointer-events: none;

    z-index: 1;
}

/* Glow decorativo */
.services-one::after {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--careon-base-rgb), 0.16),
            transparent 70%
        );

    z-index: 1;
}

/* Contenido encima */
.services-one .container {
    position: relative;
    z-index: 2;
}

/* Columna izquierda */
.services-one__left {
    position: relative;
    display: block;
    margin-top: 10px;
}

.services-one__left .section-title {
    margin-bottom: 18px;
}

.services-one__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
}

/* Columna derecha */
.services-one__right {
    position: relative;
    display: block;
    margin-left: 20px;
}

/* Aseguramos espacio entre li (por si no aplica g-4 de Bootstrap) */
.services-one__list {
    row-gap: 24px;
}

/* Card de beneficio */
.services-one__single {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--careon-white);
    border-radius: 30px;
    padding: 26px 24px 24px;
    border: 1px solid rgba(var(--careon-black-rgb), 0.08);
    box-shadow: 0 14px 32px rgba(var(--careon-black-rgb), 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* Borde lateral con gradiente */
.services-one__single::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(180deg, var(--color1), var(--color2));
    opacity: 0.9;
    -webkit-border-radius: 0 12px 12px 0;
    -moz-border-radius: 0 12px 12px 0;
    -ms-border-radius: 0 12px 12px 0;
    -o-border-radius: 0 12px 12px 0;
}

/* Efecto hover */
.services-one__single:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(var(--careon-black-rgb), 0.16);
}

/* Icono */
.services-one__icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* 
    background: var(--color3);
    margin-bottom: 14px;
    border: 2px solid var(--careon-base);
    box-shadow: 0 10px 20px rgba(var(--careon-black-rgb), 0.18);
    transition: all 0.25s ease;
    */
}

.services-one__icon img {
    max-width: 66px;
    max-height: 66px;
    display: block;
    margin-left: 3px;
    transition: all 0.25s ease;
}

.services-one__single:hover .services-one__icon {
    background: var(--color1);
    border-color: var(--color2);
    transform: translateY(-3px);
}

.services-one__single:hover .services-one__icon img {
    filter: brightness(0) invert(1);
}

/* Título del beneficio */
.services-one__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0 10px;
    color: var(--color1);
}

/* Texto del beneficio */
.services-one__text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--black);
    margin: 0;
}

/* Eliminamos márgenes raros de primeros/últimos li */
.services-one__right ul li:first-child,
.services-one__right ul li:last-child {
    margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .services-one__right {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .services-one {
        padding: 60px 0 70px;
    }

    .services-one::before {
        top: 20px;
        left: 18px;
        right: 18px;
        bottom: 20px;
        border-radius: 28px;
    }

    .services-one__single {
        padding: 22px 20px 22px;
    }

    .services-one__title {
        font-size: 18px;
    }
}


/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-two__inner {
    position: relative;
    display: block;
    border: 2px solid var(--careon-bdr-color);
    border-radius: var(--careon-bdr-radius);
    padding: 41px 40px 18px;
}

.services-two__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 22px;
}

.services-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    bottom: 0;
    width: 2px;
    background-color: var(--careon-bdr-color);
}

.services-two__inner ul li:first-child .services-two__single::before {
    display: none;
}

.services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.services-two__title a {
    color: var(--careon-black);
}

.services-two__title a:hover {
    color: var(--careon-base);
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background-color: var(--careon-extra);
    border-radius: 50%;
    margin: 23px auto 20px;
    z-index: 1;
}

.services-two__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--careon-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.services-two__single:hover .services-two__icon:before {
    transform: scaleX(1);
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--careon-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
    transform: scale(0.9);
    color: var(--careon-white);
}

.services-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-two__btn-box .thm-btn {
    color: var(--careon-black);
    padding: 12px 29px 16px;
    background-color: transparent;
    border: 1px solid var(--careon-black);
}

.services-two__btn-box .thm-btn::before,
.services-two__btn-box .thm-btn::after {
    background-color: var(--careon-black);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 30px 31px;
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: var(--careon-extra);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.services-three__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careon-base);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--careon-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    color: var(--careon-white);
    transform: scale(0.9);
}

.services-three__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 37px;
    margin-bottom: 29px;
}

.services-three__title a {
    color: var(--careon-black);
}

.services-three__title a:hover {
    color: var(--careon-base);
}

.services-three__text {
    margin-bottom: 28px;
}

.services-three__read-more {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    color: var(--careon-black);
    gap: 10px;
}

.services-three__read-more span {
    font-weight: 600;
    font-size: 16px;
}

.services-three__read-more:hover {
    color: var(--careon-base);
}

.services-three__get-a-quote {
    position: relative;
    display: block;
    background-color: var(--careon-base);
    padding: 36px 40px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-three__get-a-quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.services-three__get-a-quote-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(0, 109, 119, 0) -95%, #006D77 65%);
}

.services-three__get-a-quote-sub-title {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 21px;
}

.services-three__get-a-quote-title {
    font-size: 24px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 30px;
}

.services-three__thm-btn {
    position: relative;
    display: block;
    margin-top: 138px;
}

.services-three__thm-btn .thm-btn {
    padding: 22.5px 30px 22.5px;
}

.services-three__thm-btn .thm-btn::before,
.services-three__thm-btn .thm-btn::after {
    background-color: var(--careon-white);
}

.services-three__thm-btn .thm-btn:hover {
    color: var(--careon-black);
}


/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-four__single {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 40px 40px 40px;
    border: 5px solid transparent;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-four__single:hover {
    border: 5px solid rgba(var(--careon-base-rgb), .10);
}

.services-four__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-four__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--careon-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-four__single:hover .services-four__icon span {
    transform: rotateY(360deg);
}

.services-four__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    margin-top: 42px;
    margin-bottom: 24px;
}

.services-four__title a {
    color: var(--careon-black);
}

.services-four__title a:hover {
    color: var(--careon-base);
}

.services-four__text {
    margin-bottom: 31px;
}

.services-four__btn-box {
    position: relative;
    display: block;
}

.services-four__btn-box .thm-btn {
    background-color: var(--careon-extra);
    padding: 21px 30px 21px;
    color: var(--careon-black);
}

/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/
.services-five {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
   background: 
  radial-gradient(circle at 0% 0%, rgba(106, 71, 123, 0.15), transparent 35%), 
  radial-gradient(circle at 100% 0%, rgba(106, 71, 123, 0.12), transparent 35%), 
  radial-gradient(circle at 0% 100%, rgba(106, 71, 123, 0.10), transparent 35%), 
  radial-gradient(circle at 100% 100%, rgba(106, 71, 123, 0.15), transparent 35%), 
  linear-gradient(180deg, #ffffff 0%, #f2eff4 100%);
}

.services-five__single {
    position: relative;
    display: block;
    border: 1px solid var(--careon-extra);
    border-radius: 10px;
    padding: 59px 39px 59px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-five__single:hover {
    border: 1px solid var(--careon-primary);
}

.services-five__count {
    position: absolute;
    top: 63px;
    right: 41px;
}

.services-five__count:before {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: rgba(var(--careon-black-rgb), .20);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-five__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-five__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--careon-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-five__single:hover .services-five__icon span {
    transform: rotateY(360deg);
    color: var(--careon-base);
}

.services-five__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    margin-top: 42px;
    margin-bottom: 24px;
}

.services-five__title a {
    color: var(--careon-black);
}

.services-five__title a:hover {
    color: var(--careon-base);
}

.services-five__text {
    margin-bottom: 31px;
}

.services-five__btn-box {
    position: relative;
    display: block;
}

.services-five__btn-box .thm-btn {
    background-color: var(--careon-extra);
    padding: 21px 30px 21px;
    color: var(--careon-black);
}



/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 113px;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 5%, rgba(var(--careon-base-rgb), 0.16), transparent 26%),
        radial-gradient(circle at 95% 8%, rgba(var(--careon-black-rgb), 0.10), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(27, 102, 131, 0.13), transparent 30%),
        linear-gradient(180deg, var(--careon-white) 0%, var(--careon-extra) 100%);
}

.service-details::before {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 42px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.14);
    pointer-events: none;
    z-index: -1;
}

.service-details::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -190px;
    bottom: -190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--careon-base-rgb), 0.18), transparent 70%);
    z-index: -1;
}

/*--------------------------------------------------------------
# Left Content
--------------------------------------------------------------*/
.service-details__left {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(var(--careon-base-rgb), 0.55),
            rgba(var(--careon-black-rgb), 0.40)
        );
    box-shadow:
        0 26px 60px rgba(var(--careon-black-rgb), 0.16),
        0 10px 24px rgba(var(--careon-base-rgb), 0.14);
}

.service-details__img::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(var(--careon-black-rgb), 0.20) 100%
        );
    z-index: 2;
    pointer-events: none;
}

.service-details__img::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--careon-base-rgb), 0.30), transparent 70%);
    z-index: 3;
    pointer-events: none;
}

.service-details__img img {
    width: 100%;
    border-radius: 22px;
    display: block;
    transition: all 700ms ease;
}

.service-details__img:hover img {
    transform: scale(1.045);
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.service-details__content {
    position: relative;
    display: block;
    margin-top: 32px;
    padding: 34px 34px 38px;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--careon-white-rgb), 0.92),
            rgba(var(--careon-extra-rgb), 0.62)
        );
    border: 1px solid rgba(var(--careon-base-rgb), 0.20);
    box-shadow:
        0 24px 58px rgba(var(--careon-black-rgb), 0.08),
        inset 0 1px 0 rgba(var(--careon-white-rgb), 0.70);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-details__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    width: 5px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(180deg, var(--color2), var(--color1));
}

.service-details__content::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--careon-base-rgb), 0.16), transparent 70%);
    pointer-events: none;
}

.service-details__title-1 {
    position: relative;
    color: var(--color1);
    font-size: 48px;
    font-weight: 800;
    line-height: 58px;
    letter-spacing: -0.8px;
    text-shadow:
        0 0 5px rgba(var(--careon-base-rgb), 0.18),
        0 0 12px rgba(var(--careon-black-rgb), 0.10);
    z-index: 2;
}

.service-details__text-1 {
    position: relative;
    margin: 19px 0 20px;
    color: var(--black);
    font-size: 16px;
    line-height: 29px;
    z-index: 2;
}

.service-details__title-2,
.service-details__title-3 {
    position: relative;
    color: var(--color1);
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    z-index: 2;
}

.service-details__title-2 {
    margin: 33px 0 23px;
}

.service-details__title-3 {
    margin: 0;
}

.service-details__text-3,
.service-details__text-4 {
    position: relative;
    color: var(--black);
    font-size: 16px;
    line-height: 29px;
    z-index: 2;
}

.service-details__text-3 {
    margin: 20px 0 33px;
}

.service-details__text-4 {
    margin: 23px 0 30px;
}

/*--------------------------------------------------------------
# Points
--------------------------------------------------------------*/
.service-details__points-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    z-index: 2;
    padding: 22px;
    border-radius: 22px;
    background: rgba(var(--careon-white-rgb), 0.74);
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    box-shadow: 0 14px 32px rgba(var(--careon-black-rgb), 0.06);
}

.service-details__points-list {
    position: relative;
    display: block;
    flex: 1;
}

.service-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--black);
    font-weight: 600;
}

.service-details__points-list li + li {
    margin-top: 15px;
}

.service-details__points-list li .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color2), var(--color6));
    box-shadow: 0 8px 18px rgba(var(--careon-base-rgb), 0.22);
}

.service-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: var(--careon-white);
}

/*--------------------------------------------------------------
# Image Box
--------------------------------------------------------------*/
.service-details__img-box {
    position: relative;
    display: block;
    z-index: 2;
}

.service-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(var(--careon-base-rgb), 0.45),
            rgba(var(--careon-black-rgb), 0.34)
        );
    box-shadow:
        0 20px 46px rgba(var(--careon-black-rgb), 0.12),
        0 8px 18px rgba(var(--careon-base-rgb), 0.12);
    overflow: hidden;
}

.service-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: all 600ms ease;
}

.service-details__img-box-img:hover img {
    transform: scale(1.035);
}

.service-details__text-list {
    position: relative;
    display: block;
    padding: 24px;
    border-radius: 22px;
    background: rgba(var(--careon-white-rgb), 0.72);
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    box-shadow: 0 14px 32px rgba(var(--careon-black-rgb), 0.06);
}

.service-details__text-list li {
    position: relative;
    display: block;
    color: var(--black);
    line-height: 28px;
    padding-left: 18px;
}

.service-details__text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color2);
    box-shadow: 0 0 12px rgba(var(--careon-base-rgb), 0.55);
}

.service-details__text-list li + li {
    margin-top: 17px;
}

/*--------------------------------------------------------------
# Right Sidebar
--------------------------------------------------------------*/
.service-details__right {
    position: relative;
    display: block;
}

.service-details__services-box {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.22);
    border-radius: 26px;
    padding: 39px 39px 39px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--careon-white-rgb), 0.94),
            rgba(var(--careon-extra-rgb), 0.66)
        );
    box-shadow:
        0 22px 52px rgba(var(--careon-black-rgb), 0.08),
        inset 0 1px 0 rgba(var(--careon-white-rgb), 0.70);
    overflow: hidden;
}

.service-details__services-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    bottom: 35px;
    width: 5px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(180deg, var(--color2), var(--color1));
}

.service-details__services-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--careon-base-rgb), 0.16), transparent 70%);
    pointer-events: none;
}

.service-details__service-title {
    position: relative;
    color: var(--color1);
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 30px;
    z-index: 2;
}

/*--------------------------------------------------------------
# Service List
--------------------------------------------------------------*/
.service-details__service-list {
    position: relative;
    display: block;
    z-index: 2;
}

.service-details__service-list li {
    position: relative;
    display: block;
}

.service-details__service-list li + li {
    margin-top: 20px;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--careon-gray);
    background: rgba(var(--careon-white-rgb), 0.78);
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    padding: 15px 30px 15px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(var(--careon-black-rgb), 0.05);
    transition: all 400ms ease;
    overflow: hidden;
    z-index: 1;
}

.service-details__service-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            var(--color1) 0%,
            var(--color6) 52%,
            var(--color2) 100%
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 450ms ease;
    z-index: -1;
}

.service-details__service-list li:hover a::before,
.service-details__service-list li.active a::before {
    transform: scaleX(1);
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
    border-color: transparent;
    color: var(--careon-white);
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(var(--careon-black-rgb), 0.14),
        0 8px 18px rgba(var(--careon-base-rgb), 0.14);
}

.service-details__service-list li a span {
    position: relative;
    font-size: 11px;
    color: var(--careon-black);
    transition: all 500ms ease;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
    color: var(--careon-white);
}

/*--------------------------------------------------------------
# Need Help Box
--------------------------------------------------------------*/
.service-details__need-help-inner {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.22);
    border-radius: 26px;
    padding: 18px;
    margin-top: 40px;
    background: rgba(var(--careon-white-rgb), 0.72);
    box-shadow: 0 20px 46px rgba(var(--careon-black-rgb), 0.08);
}

.service-details__need-help {
    position: relative;
    display: block;
    border-radius: 22px;
    text-align: center;
    padding: 82px 50px 82px;
    z-index: 1;
    overflow: hidden;
}

.service-details__need-help::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(var(--careon-base-rgb), 0.28), transparent 38%),
        linear-gradient(
            135deg,
            rgba(var(--careon-black-rgb), 0.88),
            rgba(27, 102, 131, 0.70)
        );
    z-index: -1;
    pointer-events: none;
}

.service-details__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.service-details__need-help-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(var(--careon-black-rgb), 0.72),
            rgba(27, 102, 131, 0.58)
        );
    backdrop-filter: blur(8px);
}

.service-details__need-help-title {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    color: var(--careon-white);
    text-shadow: 0 5px 18px rgba(var(--careon-black-rgb), 0.40);
}

.service-details__need-help-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    background:
        linear-gradient(
            135deg,
            var(--color1) 0%,
            var(--color6) 52%,
            var(--color2) 100%
        );
    border: 2px solid rgba(var(--careon-white-rgb), 0.72);
    border-radius: 50%;
    margin: 26px auto 20px;
    transition: all 500ms ease;
    box-shadow:
        0 16px 34px rgba(var(--careon-black-rgb), 0.30),
        0 8px 22px rgba(var(--careon-base-rgb), 0.22);
}

.service-details__need-help-icon:hover {
    background:
        linear-gradient(
            135deg,
            var(--color2) 0%,
            var(--color6) 100%
        );
    transform: translateY(-4px) scale(1.04);
}

.service-details__need-help-icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: var(--careon-white);
    transition: all 500ms ease;
}

.service-details__need-help-icon:hover span {
    color: var(--careon-white);
}

.service-details__need-help-call {
    position: relative;
    display: block;
}

.service-details__need-help-call a {
    font-size: 23px;
    font-weight: 700;
    line-height: 40px;
    color: var(--careon-white);
    text-shadow: 0 4px 14px rgba(var(--careon-black-rgb), 0.35);
    transition: all 300ms ease;
}

.service-details__need-help-call a:hover {
    color: var(--color3);
}

/*--------------------------------------------------------------
# Download Box
--------------------------------------------------------------*/
.service-details__download-box {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.22);
    border-radius: 26px;
    padding: 38px 38px 38px;
    margin-top: 40px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--careon-white-rgb), 0.94),
            rgba(var(--careon-extra-rgb), 0.66)
        );
    box-shadow:
        0 22px 52px rgba(var(--careon-black-rgb), 0.08),
        inset 0 1px 0 rgba(var(--careon-white-rgb), 0.70);
}

.service-details__download-list {
    position: relative;
    display: block;
}

.service-details__download-list li {
    position: relative;
    display: block;
}

.service-details__download-list li + li {
    margin-top: 20px;
}

.service-details__download-list li a {
    position: relative;
    background: rgba(var(--careon-white-rgb), 0.78);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--careon-gray);
    padding: 18px 30px 18px;
    padding-left: 75px;
    border-radius: var(--careon-bdr-radius);
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(var(--careon-black-rgb), 0.05);
    transition: all 400ms ease;
}

.service-details__download-list li:hover a {
    color: var(--careon-white);
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(var(--careon-black-rgb), 0.14),
        0 8px 18px rgba(var(--careon-base-rgb), 0.14);
}

.service-details__download-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            var(--color1) 0%,
            var(--color6) 52%,
            var(--color2) 100%
        );
    transition: transform 0.5s ease;
    transform-origin: bottom right;
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__download-list li:hover a::before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__download-list li a span {
    font-size: 16px;
    font-weight: 400;
    color: var(--careon-gray);
    transition: all 500ms ease;
}

.service-details__download-list li:hover a span {
    color: var(--careon-white);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .service-details__title-1 {
        font-size: 40px;
        line-height: 50px;
    }

    .service-details__points-box {
        gap: 20px;
    }

    .service-details__services-box,
    .service-details__download-box {
        padding: 32px 28px;
    }
}

@media (max-width: 991px) {
    .service-details {
        padding: 90px 0 95px;
    }

    .service-details__right {
        margin-top: 45px;
    }

    .service-details__points-box {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .service-details {
        padding: 70px 0 80px;
    }

    .service-details::before {
        inset: 18px;
        border-radius: 28px;
    }

    .service-details__content {
        padding: 30px 22px 32px;
        border-radius: 24px;
    }

    .service-details__title-1 {
        font-size: 30px;
        line-height: 40px;
    }

    .service-details__title-2,
    .service-details__title-3 {
        font-size: 22px;
        line-height: 31px;
    }

    .service-details__points-box {
        padding: 18px;
    }

    .service-details__services-box,
    .service-details__download-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .service-details__service-title {
        font-size: 25px;
        line-height: 34px;
    }

    .service-details__service-list li a,
    .service-details__download-list li a {
        padding: 15px 20px;
        padding-left: 22px;
    }

    .service-details__need-help {
        padding: 62px 26px;
    }

    .service-details__need-help-call a {
        font-size: 20px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 30px;
    z-index: 1;
}

.services-page .services-two__single {
    margin-bottom: 30px;
    margin-top: 32px;
}

.services-page .services-two__single-list li {
    border-bottom: 1px solid var(--careon-bdr-color);
}

.services-page .services-two__inner ul li:nth-child(4) .services-two__single::before {
    display: none;
}


.services-page .services-two__inner ul li:nth-child(7) .services-two__single::before {
    display: none;
}

.services-page .services-two__inner ul li:nth-child(7) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(8) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(9) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(1) .services-two__single {
    margin-top: 0px;
}

.services-page .services-two__inner ul li:nth-child(2) .services-two__single {
    margin-top: 0px;
}

.services-page .services-two__inner ul li:nth-child(3) .services-two__single {
    margin-top: 0px;
}


/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.services-carousel-page .services-three__single {
    margin-bottom: 0;
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/