/*
 * Abelica Global — Elementor Design Widgets
 * Visual-fidelity layer based on the approved client designs.
 */
.abg-benefit-cards,
.abg-work-together,
.abg-testimonial-slider,
.abg-feature-highlight,
.abg-seat-stats {
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
}

.abg-benefit-cards *,
.abg-work-together *,
.abg-testimonial-slider *,
.abg-feature-highlight *,
.abg-seat-stats * {
    box-sizing: border-box;
}

.abg-benefit-cards__container,
.abg-work-together__container,
.abg-testimonial-slider__container,
.abg-feature-highlight__container,
.abg-seat-stats__container {
    width: min(100%, 1200px);
    margin: 0 auto;
}

/* =========================================================
   BENEFIT CARDS — CLIENT APPROVED DESIGN / v1.0.6
   ========================================================= */
.abg-benefit-cards {
    --abg-accent-1: #19b6d2;
    --abg-accent-2: #12b95a;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background: #f5f8fb;
    color: #062f50;
    padding: 58px 20px 64px;
}

.abg-benefit-cards__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1156px);
    margin: 0 auto;
    box-sizing: border-box;
}

.abg-benefit-cards__eyebrow {
    display: none;
}

.abg-benefit-cards__heading {
    margin: 0 0 10px;
    color: #063f65;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
}

.abg-benefit-cards__intro {
    width: 100%;
    max-width: 1156px;
    margin: 0 auto 36px;
    color: #607689;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.abg-benefit-cards__grid {
    --abg-benefit-card-width: 365px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, var(--abg-benefit-card-width)));
    justify-content: space-between;
    align-items: stretch;
    column-gap: 28px;
    row-gap: 28px;
    width: 100%;
    box-sizing: border-box;
}

.abg-benefit-card {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dce8ee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(5, 48, 77, .10);
    transition: transform .22s ease, box-shadow .22s ease;
}

.abg-benefit-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    background: linear-gradient(
        90deg,
        var(--abg-accent-1) 0%,
        var(--abg-accent-2) 100%
    );
}

.abg-benefit-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -68px;
    bottom: -105px;
    width: 205px;
    height: 205px;
    border: 18px solid #d9f3fb;
    border-radius: 50%;
    pointer-events: none;
    opacity: .95;
}

.abg-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(5, 48, 77, .12);
}

.abg-benefit-card__inner {
    position: relative;
    z-index: 3;
    min-height: 270px;
    height: 100%;
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.abg-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    margin: 0 0 38px;
    color: #76c7e2;
    background: #effbfe;
    border: 1px solid #d8edf4;
    border-radius: 10px;
    box-sizing: border-box;
}

.abg-benefit-card__icon i,
.abg-benefit-card__icon svg {
    width: 26px;
    height: 26px;
    font-size: 26px;
}

.abg-benefit-card__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.abg-benefit-card__title {
    margin: 0 0 10px;
    color: #063f65;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 750;
}

.abg-benefit-card__description {
    margin: 0;
    max-width: 100%;
    color: #4e677a;
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .abg-benefit-cards__container {
        width: min(100%, 960px);
    }

    .abg-benefit-cards__grid {
        grid-template-columns: repeat(2, minmax(0, var(--abg-benefit-card-width)));
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .abg-benefit-cards {
        padding: 42px 16px 48px;
    }

    .abg-benefit-cards__container {
        width: 100%;
    }

    .abg-benefit-cards__heading {
        font-size: 26px;
        text-align: center;
    }

    .abg-benefit-cards__intro {
        font-size: 13px;
        margin-bottom: 24px;
        text-align: center;
    }

    .abg-benefit-cards__grid {
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
        row-gap: 22px;
    }

    .abg-benefit-card__inner {
        min-height: 230px;
        padding: 28px 24px 24px;
    }

    .abg-benefit-card__icon {
        margin-bottom: 28px;
    }
}
/* =========================================================
   HOW WE WORK TOGETHER — CLIENT APPROVED DESIGN / v1.0.7
   ========================================================= */
.abg-work-together {
    --abg-work-glow: rgba(21, 106, 151, .28);
    --abg-work-decor: rgba(16, 93, 137, .22);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 78% 8%, var(--abg-work-glow), transparent 28%),
        #031d31;
    color: #fff;
    padding: 80px 20px 112px;
}

.abg-work-together::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -88px;
    top: 182px;
    width: 220px;
    height: 220px;
    opacity: .48;
    border-radius: 50%;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 8px,
        var(--abg-work-decor) 8px 11px,
        transparent 11px 19px
    );
    pointer-events: none;
}

.abg-work-together::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -58px;
    bottom: -102px;
    width: 280px;
    height: 230px;
    opacity: .42;
    border-radius: 50%;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 8px,
        var(--abg-work-decor) 8px 11px,
        transparent 11px 19px
    );
    transform: rotate(-4deg);
    pointer-events: none;
}

.abg-work-together__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1208px);
    margin: 0 auto;
    box-sizing: border-box;
}

.abg-work-together__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 104px;
}

.abg-work-together__heading {
    flex: 1 1 46%;
    margin: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 700;
}

.abg-work-together__intro {
    flex: 1 1 48%;
    max-width: 620px;
    margin: 6px 0 0;
    color: #f0f5f8;
    font-size: 16px;
    line-height: 1.45;
}

.abg-work-together__grid {
    --abg-work-columns: 4;
    --abg-work-card-width: 292px;
    display: grid;
    grid-template-columns: repeat(var(--abg-work-columns), minmax(0, var(--abg-work-card-width)));
    justify-content: center;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.abg-work-card {
    position: relative;
    min-height: 238px;
    padding: 28px 30px 26px;
    overflow: hidden;
    box-sizing: border-box;
    background: #172f46;
    border: 1px solid rgba(143, 196, 220, .22);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.abg-work-card::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -74px;
    width: 165px;
    height: 145px;
    border: 1px solid rgba(35, 115, 153, .13);
    border-radius: 50%;
    pointer-events: none;
}

.abg-work-card__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 0 18px;
    color: #79d7f2;
    background: rgba(126, 194, 220, .12);
    border: 1px solid rgba(126, 194, 220, .18);
    border-radius: 8px;
    box-sizing: border-box;
}

.abg-work-card__icon i,
.abg-work-card__icon svg {
    width: 28px;
    height: 28px;
    font-size: 28px;
    color: inherit;
    fill: currentColor;
}

.abg-work-card__title {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #fff;
    font-size: 19px;
    line-height: 1.14;
    font-weight: 700;
}

.abg-work-card__description {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #e4edf2;
    font-size: 15px;
    line-height: 1.18;
}

/* =========================================================
   HOW WE WORK TOGETHER — RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
    .abg-work-together__container {
        width: min(100%, 940px);
    }


    .abg-work-together__header {
        margin-bottom: 60px;
    }

    .abg-work-card {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .abg-work-together {
        padding: 52px 18px 70px;
    }

    .abg-work-together::before {
        left: -130px;
        top: 160px;
        width: 190px;
        height: 190px;
    }

    .abg-work-together::after {
        right: -100px;
        bottom: -80px;
        width: 220px;
        height: 190px;
    }

    .abg-work-together__header {
        display: block;
        margin-bottom: 38px;
    }

    .abg-work-together__heading {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .abg-work-together__intro {
        max-width: none;
        font-size: 14px;
        margin-top: 0;
    }

    .abg-work-together__grid {
        --abg-work-columns: 1;
        gap: 18px;
        grid-template-columns: minmax(0, min(100%, var(--abg-work-card-width)));
    }

    .abg-work-card {
        min-height: 210px;
        padding: 24px;
    }
}

/* =========================================================
   TESTIMONIALS — CLIENT APPROVED / v1.0.9
   Transparent section background so the widget can sit on any
   Elementor/theme background without forcing a page color.
   ========================================================= */
.abg-testimonial-slider {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #fff;
    padding: 70px 20px 62px;
}

.abg-testimonial-slider::before {
    content: "";
    position: absolute;
    left: -55px;
    top: 48px;
    width: 255px;
    height: 255px;
    opacity: .18;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 8px,
        #1b79a9 8px 11px,
        transparent 11px 20px
    );
    border-radius: 50%;
    pointer-events: none;
}

.abg-testimonial-slider::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 235px;
    height: 235px;
    opacity: .12;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 8px,
        #1b79a9 8px 11px,
        transparent 11px 20px
    );
    border-radius: 50%;
    pointer-events: none;
}

.abg-testimonial-slider__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1080px);
    margin: 0 auto;
}

.abg-testimonial-slider__heading {
    margin: 0 0 38px;
    color: #fff;
    text-align: center;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
}

.abg-testimonial-slider__viewport {
    position: relative;
    overflow: hidden;
}

.abg-testimonial-slider__track {
    display: flex;
    width: 100%;
    transition-property: transform;
    will-change: transform;
}

.abg-testimonial-slider__slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 555px;
    padding: 18px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rear card visible on both sides of the main testimonial card. */
.abg-testimonial-slider__back {
    position: absolute;
    z-index: 1;
    width: 82%;
    height: 70%;
    border-radius: 13px;
    background: #f0f0f0;
    box-shadow: 0 9px 25px rgba(0, 0, 0, .10);
    transform: translate(4%, 7%);
    border-bottom: 7px solid #b7f34d;
}

.abg-testimonial-slider__main {
    position: relative;
    z-index: 3;
    width: 65%;
    min-height: 515px;
    padding: 52px 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f7f7f7;
    color: #111;
    border-radius: 13px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.abg-testimonial-slider__main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: #00bd59;
    border-radius: 0 0 13px 13px;
}

.abg-testimonial-slider__quote {
    margin: 0;
    color: #101820;
    font-size: 27px;
    line-height: 1.55;
    font-weight: 500;
}

.abg-testimonial-slider__author {
    display: flex;
    gap: 18px;
    align-items: flex-end;
}

.abg-testimonial-slider__author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.abg-testimonial-slider__name {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 750;
}

.abg-testimonial-slider__meta {
    color: #222;
    font-size: 15px;
    line-height: 1.5;
}

.abg-testimonial-slider__dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 4px;
}

.abg-testimonial-slider__dots button {
    width: 72px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
}

.abg-testimonial-slider__dots button.is-active {
    background: #fff;
}

.abg-testimonial-slider__prev,
.abg-testimonial-slider__next {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #06436a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.abg-testimonial-slider__prev { left: 8px; }
.abg-testimonial-slider__next { right: 8px; }

@media (max-width: 900px) {
    .abg-testimonial-slider__main {
        width: 72%;
        min-height: 500px;
        padding: 44px 38px 40px;
    }

    .abg-testimonial-slider__back { width: 86%; }
    .abg-testimonial-slider__quote { font-size: 24px; }
}

@media (max-width: 767px) {
    .abg-testimonial-slider {
        padding: 52px 16px 48px;
    }

    .abg-testimonial-slider__heading {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .abg-testimonial-slider__slide {
        min-height: 500px;
        padding: 10px 0 30px;
    }

    .abg-testimonial-slider__main {
        width: 88%;
        min-height: 450px;
        padding: 36px 28px 34px;
    }

    .abg-testimonial-slider__back {
        width: 94%;
        height: 76%;
        transform: translate(2%, 5%);
    }

    .abg-testimonial-slider__quote {
        font-size: 20px;
        line-height: 1.45;
    }

    .abg-testimonial-slider__name { font-size: 16px; }
    .abg-testimonial-slider__meta { font-size: 14px; }

    .abg-testimonial-slider__prev,
    .abg-testimonial-slider__next {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .abg-testimonial-slider__prev { left: 0; }
    .abg-testimonial-slider__next { right: 0; }
}

/* =========================================================
   WHY ABELICA GLOBAL IS DIFFERENT
   ========================================================= */
.abg-feature-highlight {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 15%, rgba(8, 62, 92, .35), transparent 30%),
        #061923;
    color: #fff;
    padding: 88px 20px;
}

.abg-feature-highlight::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -60px;
    width: 300px;
    height: 230px;
    opacity: .13;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 8px,
        #1a5f80 8px 11px,
        transparent 11px 20px
    );
    transform: rotate(10deg);
}

.abg-feature-highlight__container {
    position: relative;
    z-index: 2;
}

.abg-feature-highlight__inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

.abg-feature-highlight__left {
    width: 50%;
}

.abg-feature-highlight__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abg-feature-highlight__heading {
    margin: 0 0 20px;
    color: #fff;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
}

.abg-feature-highlight__description {
    margin: 0 0 30px;
    color: #d8e5ec;
    font-size: 15px;
    line-height: 1.55;
}

.abg-feature-highlight__button {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    border-radius: 4px;
    background: #00bd59;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: filter .2s ease, transform .2s ease;
}

.abg-feature-highlight__button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.abg-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 70px;
    padding: 18px 24px;
    background: #17334e;
    border: 1px solid rgba(137, 198, 225, .24);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    text-decoration: none;
}

.abg-feature-item__icon {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c85a;
    border: 2px solid #00b95b;
    border-radius: 50%;
}

.abg-feature-item__icon::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
}

.abg-feature-item__icon i,
.abg-feature-item__icon svg {
    position: absolute;
    opacity: 0;
}

.abg-feature-item__text {
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
}

/* =========================================================
   A STRONGER SEAT AT THE TABLE
   ========================================================= */
.abg-seat-stats {
    position: relative;
    overflow: hidden;
    background: #f1f9fd;
    color: #061a2d;
    padding: 38px 50px 46px;
}

.abg-seat-stats::after {
    content: "";
    position: absolute;
    right: -92px;
    top: -110px;
    width: 410px;
    height: 410px;
    border: 28px solid #bde9fa;
    border-radius: 50%;
    opacity: .75;
    pointer-events: none;
}

.abg-seat-stats__container {
    position: relative;
    z-index: 2;
}

.abg-seat-stats__heading {
    margin: 0 0 28px;
    color: #4db0cf;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .01em;
}

.abg-seat-stats__grid {
    display: flex;
    gap: 34px;
    align-items: stretch;
}

.abg-seat-stat {
    width: 50%;
    min-height: 210px;
    padding: 38px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5edf2;
    border-radius: 12px;
    box-shadow: 0 9px 28px rgba(12, 55, 79, .10);
}

.abg-seat-stat__number {
    margin: 0 0 20px;
    color: #061a2d;
    font-size: 62px;
    line-height: .95;
    font-weight: 800;
}

.abg-seat-stat__label {
    color: #061a2d;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .abg-benefit-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .abg-testimonial-slider__main,
    .abg-testimonial-slider__back {
        width: 86%;
    }

    .abg-testimonial-slider__main {
        padding: 52px 55px;
    }

    .abg-testimonial-slider__quote {
        font-size: 25px;
    }

    .abg-feature-highlight__inner {
        gap: 40px;
    }

    .abg-feature-item__text {
        font-size: 17px;
    }

    .abg-seat-stats {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .abg-benefit-cards,
    .abg-work-together,
    .abg-testimonial-slider,
    .abg-feature-highlight {
        padding-left: 16px;
        padding-right: 16px;
    }

    .abg-benefit-cards__grid,
    .abg-work-together__grid {
        grid-template-columns: 1fr;
    }

    .abg-benefit-cards__heading,
    .abg-work-together__heading,
    .abg-feature-highlight__heading {
        font-size: 30px;
    }

    .abg-benefit-card__inner {
        min-height: 235px;
    }

    .abg-work-together__header {
        display: block;
    }

    .abg-work-together__heading,
    .abg-work-together__intro {
        max-width: none;
    }

    .abg-work-together__intro {
        margin-top: 16px;
    }

    .abg-testimonial-slider {
        padding-top: 58px;
        padding-bottom: 55px;
    }

    .abg-testimonial-slider__heading {
        margin-bottom: 20px;
        font-size: 29px;
    }

    .abg-testimonial-slider__slide {
        min-height: 510px;
        padding: 12px 0 25px;
    }

    .abg-testimonial-slider__main {
        width: 100%;
        min-height: 485px;
        padding: 42px 28px 42px;
    }

    .abg-testimonial-slider__back {
        display: none;
    }

    .abg-testimonial-slider__quote {
        font-size: 21px;
        line-height: 1.45;
    }

    .abg-testimonial-slider__dots {
        gap: 10px;
    }

    .abg-testimonial-slider__dots button {
        width: 45px;
    }

    .abg-feature-highlight {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .abg-feature-highlight__inner {
        display: block;
    }

    .abg-feature-highlight__left,
    .abg-feature-highlight__right {
        width: 100%;
    }

    .abg-feature-highlight__right {
        margin-top: 35px;
    }

    .abg-feature-item__text {
        font-size: 16px;
    }

    .abg-seat-stats {
        padding: 34px 18px;
    }

    .abg-seat-stats__heading {
        font-size: 21px;
    }

    .abg-seat-stats__grid {
        flex-direction: column;
        gap: 18px;
    }

    .abg-seat-stat {
        width: 100%;
        min-height: 175px;
    }

    .abg-seat-stat__number {
        font-size: 52px;
    }

    .abg-seat-stat__label {
        font-size: 21px;
    }

    .abg-seat-stats::after {
        width: 300px;
        height: 300px;
        right: -120px;
        top: -70px;
    }
}
