/* =========================================================
   Acurate – Home About Section
   Clean theme-matching layout
   ========================================================= */

.acurate-about {
    --ab-green: #89c73e;
    --ab-green-deep: #6f9641;
    --ab-ink: #0c1e38;
    --ab-muted: #555555;

    padding: 100px 0;
    background: #ffffff;
}

.acurate-about__eyebrow {
    margin: 0 0 10px;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ab-ink);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.acurate-about__eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 2px;
    background: var(--ab-green);
}

.acurate-about__title {
    margin: 0 0 22px;
    font-family: "Krona One", sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 1.3;
    color: var(--ab-ink);
    font-weight: 400;
}

.acurate-about__text {
    margin: 0 0 16px;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ab-muted);
}

.acurate-about__btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 28px;
    background: var(--ab-green);
    color: #fff !important;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.25s ease;
}

.acurate-about__btn:hover {
    background: var(--ab-green-deep);
    color: #fff !important;
}

.acurate-about__slider-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--ab-green);
    background: #f3f3f3;
}

.acurate-about__slider .slick-dots {
    display: none !important;
}

.acurate-about__slide {
    position: relative;
    height: 380px;
}

.acurate-about__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acurate-about__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    background: rgba(12, 30, 56, 0.72);
    color: #fff;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.acurate-about__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ab-green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.acurate-about__arrow:hover {
    background: var(--ab-green);
    color: #fff;
}

.acurate-about__arrow--prev {
    left: 12px;
}

.acurate-about__arrow--next {
    right: 12px;
}

.acurate-about__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.acurate-about__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #c9d6b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.acurate-about__dot.is-active {
    background: var(--ab-green);
    width: 22px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .acurate-about {
        padding: 70px 0;
    }

    .acurate-about__slide {
        height: 320px;
    }

    .acurate-about__content {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .acurate-about__slide {
        height: 260px;
    }

    .acurate-about__arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
