﻿:root {
    --ak-about-purple: #5a418b;
    --ak-about-purple-dark: #3f286b;
    --ak-about-purple-light: #806ca5;
    --ak-about-title: #28156f;
    --ak-about-text: #777184;
    --ak-about-border: #ebe7f1;
}

/* =========================================================
   ABOUT SERVICES SECTION
========================================================= */

.ak-about-services-section {
    position: relative;
    width: 100%;
    padding: 34px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #fbfafe 48%, #f7f5fb 100% );
}

    /* decorative background */

    .ak-about-services-section::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        top: -230px;
        right: -70px;
        border-radius: 70px;
        transform: rotate(45deg);
        background: linear-gradient( 135deg, rgba(115,89,158,.08), rgba(115,89,158,0) );
        pointer-events: none;
    }

    .ak-about-services-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 250px;
        left: -180px;
        bottom: -180px;
        transform: rotate(40deg);
        background: linear-gradient( 135deg, rgba(115,89,158,.06), transparent );
        pointer-events: none;
    }

    .ak-about-services-section .container {
        position: relative;
        z-index: 2;
    }


/* =========================================================
   SERVICES BAR
========================================================= */

.ak-about-services-bar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: rgba(255,255,255,.97);
    border: 1px solid var(--ak-about-border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(59,40,94,.06), 0 4px 12px rgba(59,40,94,.025);
}


/* =========================================================
   OLD DIVIDERS - REMOVE THEM
========================================================= */

.ak-about-feature-divider {
    display: none !important;
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.ak-about-service-item {
    position: relative;
    min-width: 0;
    min-height: 122px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    background: transparent;
    transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}

    .ak-about-service-item:not(:last-child) {
        border-inline-end: 1px solid #ece8f1;
    }

    .ak-about-service-item::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        transform: translateX(-50%);
        border-radius: 5px 5px 0 0;
        background: linear-gradient( 90deg, var(--ak-about-purple-light), var(--ak-about-purple-dark) );
        transition: width .3s ease;
    }


/* =========================================================
   ICON
========================================================= */

.ak-about-service-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: var(--ak-about-purple);
    background: linear-gradient( 145deg, #f6f3f9, #ebe5f2 );
    border: 1px solid rgba(90,65,139,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    transition: transform .28s ease, color .28s ease, background .28s ease, box-shadow .28s ease;
}

    .ak-about-service-icon i {
        display: block;
        line-height: 1;
        font-size: 27px;
    }


/* =========================================================
   TEXT
========================================================= */

.ak-about-service-text {
    min-width: 0;
    flex: 1;
}

    .ak-about-service-text h3 {
        margin: 0 0 5px;
        color: var(--ak-about-title);
        font-size: 16px;
        font-weight: 800;
        line-height: 1.35 !important;
        white-space: normal;
        transition: color .28s ease, transform .28s ease;
    }

    .ak-about-service-text p {
        margin: 0;
        color: var(--ak-about-text);
        font-size: 11px;
        font-weight: 400;
        line-height: 1.55;
        white-space: normal;
    }


/* =========================================================
   ARROW
========================================================= */

.ak-about-service-arrow {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ak-about-purple);
    background: #f5f1f8;
    font-size: 15px;
    opacity: 0;
    transition: opacity .28s ease, transform .28s ease, color .28s ease, background .28s ease;
}

html[dir="rtl"] .ak-about-service-arrow {
    transform: translateX(-7px);
}

html[dir="ltr"] .ak-about-service-arrow {
    transform: translateX(7px);
}


/* =========================================================
   HOVER
========================================================= */

.ak-about-service-item:hover {
    color: inherit;
    text-decoration: none;
    background: linear-gradient( 145deg, #ffffff, #faf8fd );
}

    .ak-about-service-item:hover::before {
        width: 72%;
    }

    .ak-about-service-item:hover .ak-about-service-icon {
        color: #fff;
        background: linear-gradient( 135deg, #765ca2, #4a2e78 );
        transform: translateY(-3px);
        box-shadow: 0 10px 23px rgba(73,44,118,.20);
    }

    .ak-about-service-item:hover .ak-about-service-text h3 {
        color: var(--ak-about-purple);
    }

    .ak-about-service-item:hover .ak-about-service-arrow {
        opacity: 1;
        color: #fff;
        background: var(--ak-about-purple);
        transform: translateX(0);
    }


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .ak-about-service-item {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .ak-about-service-text {
    text-align: right;
}


/* =========================================================
   LTR
========================================================= */

html[dir="ltr"] .ak-about-service-item {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .ak-about-service-text {
    text-align: left;
}


/* =========================================================
   LAPTOP
========================================================= */

@media(max-width:1199.98px) {

    .ak-about-services-section {
        padding: 28px 0;
    }

    .ak-about-service-item {
        min-height: 112px;
        padding: 20px 16px;
        gap: 12px;
    }

    .ak-about-service-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 15px;
    }

        .ak-about-service-icon i {
            font-size: 23px;
        }

    .ak-about-service-text h3 {
        font-size: 14px;
    }

    .ak-about-service-text p {
        font-size: 10px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:991.98px) {

    .ak-about-services-bar {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .ak-about-service-item {
        min-height: 105px;
    }

        .ak-about-service-item:nth-child(2n) {
            border-inline-end: 0;
        }

        .ak-about-service-item:nth-child(-n+2) {
            border-bottom: 1px solid #ece8f1;
        }

    .ak-about-service-arrow {
        opacity: 1;
        transform: none !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:575.98px) {

    .ak-about-services-section {
        padding: 18px 0;
    }

        .ak-about-services-section .container {
            padding-left: 15px;
            padding-right: 15px;
        }

    .ak-about-services-bar {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .ak-about-service-item {
        min-height: 88px;
        padding: 16px 15px;
        gap: 13px;
        border-inline-end: 0 !important;
        border-bottom: 1px solid #ece8f1;
    }

        .ak-about-service-item:last-child {
            border-bottom: 0;
        }

        .ak-about-service-item:nth-child(-n+2) {
            border-bottom: 1px solid #ece8f1;
        }

    .ak-about-service-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
    }

        .ak-about-service-icon i {
            font-size: 22px;
        }

    .ak-about-service-text h3 {
        margin-bottom: 3px;
        font-size: 14px;
        line-height: 1.35 !important;
    }

    .ak-about-service-text p {
        font-size: 10px;
        line-height: 1.5;
    }

    .ak-about-service-arrow {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        opacity: 1;
        transform: none !important;
    }

    .ak-about-service-item::before {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:380px) {

    .ak-about-service-item {
        padding: 14px 12px;
        gap: 10px;
    }

    .ak-about-service-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

        .ak-about-service-icon i {
            font-size: 20px;
        }

    .ak-about-service-text h3 {
        font-size: 13px;
    }

    .ak-about-service-text p {
        font-size: 9px;
    }

    .ak-about-service-arrow {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }
}
/* =========================================================
   END - HOME ABOUT SECTION
   ========================================================= */
/* =========================================
  Start Why Choose Alakaber
========================================= */

.why-choose-section {
    padding: 28px 0 24px;
    margin: 0;
}

.why-choose-banner {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid rgba(86, 72, 149, 0.12);
    border-radius: 24px;
    background: #eeeaf5;
    box-shadow: 0 18px 45px rgba(45, 33, 92, 0.11);
    isolation: isolate;
}

.why-choose-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .why-choose-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }

.why-choose-banner:hover .why-choose-image img {
    transform: scale(1.015);
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(247, 245, 251, 0.98) 0%, rgba(247, 245, 251, 0.92) 26%, rgba(247, 245, 251, 0.52) 47%, rgba(247, 245, 251, 0) 70%), linear-gradient(180deg, rgba(25, 17, 55, 0.04), rgba(25, 17, 55, 0.08));
    pointer-events: none;
}

.why-choose-content {
    position: absolute;
    top: 50%;
    left: clamp(28px, 2vw, 85px);
    z-index: 2;
    width: min(500px, 43%);
    transform: translateY(-50%);
}

html[dir="rtl"] .why-choose-content {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .why-choose-content {
    direction: ltr;
    text-align: left;
}

.why-choose-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 14px;
    margin-bottom: 12px;
    color: #fff;
    background: rgba(86, 72, 149, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(86, 72, 149, 0.22);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.why-choose-title {
    max-width: 500px;
    margin: 0 0 10px;
    color: #302267;
    font-size: clamp(27px, 2.6vw, 40px);
    font-weight: 750;
    line-height: 1.25;
}

.why-choose-description {
    max-width: 475px;
    margin: 0;
    color: #616160;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.why-choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 160px;
    min-height: 47px;
    padding: 11px 22px;
    margin-top: 20px;
    color: #fff !important;
    background: linear-gradient(135deg, #564895, #443675);
    border: 1px solid transparent;
    border-radius: 13px;
    box-shadow: 0 11px 25px rgba(86, 72, 149, 0.27);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

    .why-choose-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.22s ease;
    }

    .why-choose-btn:hover {
        color: #fff !important;
        background: linear-gradient(135deg, #443675, #616160);
        box-shadow: 0 14px 30px rgba(86, 72, 149, 0.33);
        transform: translateY(-2px);
    }

html[dir="rtl"] .why-choose-btn svg {
    transform: rotate(180deg);
}

html[dir="rtl"] .why-choose-btn:hover svg {
    transform: rotate(180deg) translateX(3px);
}

html[dir="ltr"] .why-choose-btn:hover svg {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 22px 0 18px;
    }

    .why-choose-banner {
        min-height: 320px;
        border-radius: 20px;
    }

    .why-choose-content {
        left: 34px;
        width: 52%;
    }

    .why-choose-overlay {
        background: linear-gradient(90deg, rgba(247, 245, 251, 0.97) 0%, rgba(247, 245, 251, 0.88) 42%, rgba(247, 245, 251, 0.15) 78%);
    }

    .why-choose-title {
        font-size: 29px;
    }

    .why-choose-description {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 18px 0 14px;
    }

    .why-choose-banner {
        min-height: 430px;
        border-radius: 18px;
    }

    .why-choose-image img {
        object-position: 68% center;
    }

    .why-choose-overlay {
        background: linear-gradient(180deg, rgba(30, 21, 66, 0.08) 0%, rgba(30, 21, 66, 0.14) 35%, rgba(247, 245, 251, 0.96) 68%, #f7f5fb 100%);
    }

    .why-choose-content {
        top: auto;
        right: 16px;
        bottom: 18px;
        left: 16px;
        width: auto;
        padding: 18px;
        background: rgba(255, 255, 255, 0.91);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(31, 22, 67, 0.14);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: none;
    }

    .why-choose-label {
        min-height: 27px;
        padding: 5px 11px;
        margin-bottom: 9px;
        font-size: 11px;
    }

    .why-choose-title {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .why-choose-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .why-choose-btn {
        min-width: 145px;
        min-height: 43px;
        padding: 9px 17px;
        margin-top: 14px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .why-choose-banner {
        min-height: 450px;
    }

    .why-choose-content {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 16px;
    }

    .why-choose-title {
        font-size: 22px;
    }

    .why-choose-btn {
        width: 100%;
    }
}

/* =========================================
   Customer Benefits Sidebar
========================================= */

.customer-benefits-box {
    padding: 0 !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(86, 72, 149, 0.14);
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(45, 33, 92, 0.07);
}

.customer-benefits-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 16px;
    text-align: start;
    background: linear-gradient(135deg, rgba(86, 72, 149, 0.11), rgba(121, 121, 121, 0.06));
    border-bottom: 1px solid rgba(86, 72, 149, 0.1);
}

.customer-benefits-header-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: #fff;
    background: linear-gradient(135deg, #564895, #616160);
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(86, 72, 149, 0.22);
}

    .customer-benefits-header-icon svg {
        width: 23px;
        height: 23px;
    }

.customer-benefits-header h3 {
    margin: 0 0 3px;
    color: #302267;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
}

.customer-benefits-header p {
    margin: 0;
    color: #6b6b6b;
    font-size: 11px;
    line-height: 1.5;
}

.customer-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 12px;
}

.customer-benefit-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 5px;
    text-align: start;
    border-bottom: 1px solid rgba(97, 97, 96, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

    .customer-benefit-item:last-child {
        border-bottom: 0;
    }

    .customer-benefit-item:hover {
        background: linear-gradient(135deg, rgba(86, 72, 149, 0.065), rgba(121, 121, 121, 0.035));
        transform: translateX(2px);
    }

html[dir="rtl"] .customer-benefit-item:hover {
    transform: translateX(-2px);
}

.customer-benefit-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #564895;
    background: rgba(86, 72, 149, 0.08);
    border: 1px solid rgba(86, 72, 149, 0.12);
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

    .customer-benefit-icon svg {
        width: 21px;
        height: 21px;
    }

.customer-benefit-item:hover .customer-benefit-icon {
    color: #fff;
    background: linear-gradient(135deg, #564895, #616160);
    transform: scale(1.04);
}

.customer-benefit-content {
    min-width: 0;
    padding-top: 1px;
}

    .customer-benefit-content h4 {
        margin: 0 0 4px;
        color: #302267;
        font-size: 13px;
        font-weight: 750;
        line-height: 1.45;
    }

    .customer-benefit-content p {
        margin: 0;
        color: #6b6b6b;
        font-size: 11px;
        font-weight: 400;
        line-height: 1.6;
    }

html[dir="rtl"] .customer-benefits-box {
    direction: rtl;
}

html[dir="rtl"] .customer-benefits-header,
html[dir="rtl"] .customer-benefit-item,
html[dir="rtl"] .customer-benefit-content {
    text-align: right;
}

html[dir="ltr"] .customer-benefits-box {
    direction: ltr;
}

html[dir="ltr"] .customer-benefits-header,
html[dir="ltr"] .customer-benefit-item,
html[dir="ltr"] .customer-benefit-content {
    text-align: left;
}

@media (max-width: 1199.98px) {
    .customer-benefits-box {
        margin-top: 20px;
    }
}

/* =========================================
   Inline 1 Catalog Section
========================================= */

..inline1-catalog-section {
    position: relative;
    padding: 32px 0;
    margin: 28px 0;
    overflow: hidden;
}

.inline1-catalog-section[hidden] {
    display: none !important;
}

.inline1-catalog-holder {
    position: relative;
    padding: 12px 54px 16px;
}

.inline1-catalog-swiper {
    width: 100%;
    padding: 10px 0 12px;
    overflow: hidden;
    box-sizing: border-box;
}

    .inline1-catalog-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .inline1-catalog-swiper .swiper-slide {
        display: flex;
        height: auto;
    }

.inline1-catalog-card {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(86, 72, 149, 0.12);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(45, 33, 92, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .inline1-catalog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(45, 33, 92, 0.14);
    }

.inline1-catalog-link {
    display: block;
    width: 100%;
    aspect-ratio: 400 / 477;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
}

.inline1-catalog-image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none;
    transition: transform 0.45s ease;
}

.inline1-catalog-card:hover .inline1-catalog-image {
    transform: scale(1.015);
}

/* Navigation */
.inline1-catalog-section .swiper-button-next,
.inline1-catalog-section .swiper-button-prev {
    top: 50%;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    color: #564895;
    background: #fff;
    border: 1px solid rgba(86, 72, 149, 0.16);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(45, 33, 92, 0.12);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.inline1-catalog-section .swiper-button-prev {
    left: 0;
}

.inline1-catalog-section .swiper-button-next {
    right: 0;
}

    .inline1-catalog-section .swiper-button-next::after,
    .inline1-catalog-section .swiper-button-prev::after {
        font-size: 15px;
        font-weight: 700;
    }

    .inline1-catalog-section .swiper-button-next:hover,
    .inline1-catalog-section .swiper-button-prev:hover {
        color: #fff;
        background: #564895;
        transform: scale(1.05);
    }

.inline1-catalog-section .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Pagination */
.inline1-catalog-section .sw-pagination-inline1 {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 15px;
}

.inline1-catalog-section .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: #797979;
    border-radius: 999px;
    opacity: 0.35;
    transition: width 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.inline1-catalog-section .swiper-pagination-bullet-active {
    width: 23px;
    background: #564895;
    opacity: 1;
}

/* Tablet and Mobile */
@media (max-width: 991.98px) {


    .inline1-catalog-section {
        padding: 26px 0;
        margin: 22px 0;
    }

    .inline1-catalog-holder {
        padding: 10px 0 14px;
    }

    .inline1-catalog-swiper {
        padding: 8px 0 10px;
    }

    .inline1-catalog-section .swiper-button-next,
    .inline1-catalog-section .swiper-button-prev {
        display: none;
    }

    .inline1-catalog-card {
        max-width: 430px;
        margin-inline: auto;
        border-radius: 17px;
    }

}

@media (max-width: 575.98px) {
    .inline1-catalog-section {
        padding: 20px 0;
        margin: 18px 0;
    }

    .inline1-catalog-holder {
        padding: 8px 0 12px;
    }

    .inline1-catalog-swiper {
        padding: 7px 0 9px;
    }

    .inline1-catalog-card {
        width: 100%;
        max-width: 400px;
        border-radius: 14px;
    }

    .inline1-catalog-link {
        aspect-ratio: 400 / 477;
    }

    .inline1-catalog-section .sw-pagination-inline1 {
        margin-top: 13px;
    }
}

/*===========Start review section================*/
.ak-customer-reviews {
    position: relative;
    padding: 75px 0;
    background: #f8f8fa;
    overflow: hidden;
}

.ak-review-section-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
    text-align: center;
}

.ak-review-heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ak-review-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #604697;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding-bottom:10px;
}

    .ak-review-label::before,
    .ak-review-label::after {
        content: "";
        width: 24px;
        height: 1px;
        background: rgba(96, 70, 151, .45);
    }

    .ak-review-label::before {
        margin-inline-end: 9px;
    }

    .ak-review-label::after {
        margin-inline-start: 9px;
    }

.ak-review-heading h2 {
    margin: 0 0 15px;
    color: #171717;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.ak-review-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #74747b;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.ak-review-swiper {
    width: 100%;
    overflow: hidden;
    padding: 5px 3px 16px;
}

    .ak-review-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .ak-review-swiper .swiper-slide {
        height: auto;
    }

.ak-review-card {
    position: relative;
    height: 330px;
    min-height: 330px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3e2e9;
    border-radius: 17px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .ak-review-card:hover {
        transform: translateY(-3px);
        border-color: rgba(96, 70, 151, .28);
        box-shadow: 0 15px 35px rgba(30, 23, 45, .065);
    }

.ak-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ak-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbc04;
    font-size: 17px;
    line-height: 1;
}

.ak-review-google-mini {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ededf0;
    border-radius: 50%;
}

.ak-review-quote-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    color: #604697;
    background: rgba(96, 70, 151, .085);
    border-radius: 10px;
}

    .ak-review-quote-icon svg {
        width: 18px;
        height: 18px;
    }

.ak-review-text {
    flex: 1;
    color: #58585f;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ak-review-card[dir="rtl"] .ak-review-text {
    direction: rtl;
    text-align: right;
}

.ak-review-card[dir="ltr"] .ak-review-text {
    direction: ltr;
    text-align: left;
}

.ak-review-author {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    padding-top: 14px;
    margin-top: 13px;
    border-top: 1px solid #eeeef1;
}

.ak-review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #604697;
    background: rgba(96, 70, 151, .10);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ak-review-author-info {
    min-width: 0;
}

    .ak-review-author-info strong {
        display: block;
        margin-bottom: 2px;
        overflow: hidden;
        color: #19191d;
        font-size: 13.5px;
        font-weight: 700;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .ak-review-author-info span {
        display: block;
        color: #9a9aa0;
        font-size: 10.5px;
    }

.ak-review-card[dir="rtl"] .ak-review-author-info {
    text-align: right;
}

.ak-review-card[dir="ltr"] .ak-review-author-info {
    text-align: left;
}

.ak-review-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12px;
    margin-top: 18px;
}

    .ak-review-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 4px !important;
        background: #604697;
        opacity: .22;
        transition: width .25s ease, opacity .25s ease;
    }

    .ak-review-pagination .swiper-pagination-bullet-active {
        width: 23px;
        border-radius: 10px;
        opacity: 1;
    }

.ak-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
}

.ak-review-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ak-review-nav {
    width: 43px;
    height: 43px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242429;
    background: #fff;
    border: 1px solid #e1e1e6;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s ease;
}

    .ak-review-nav svg {
        width: 18px;
        height: 18px;
    }

    .ak-review-nav:hover {
        color: #fff;
        background: #604697;
        border-color: #604697;
        transform: translateY(-2px);
    }

.ak-view-all-reviews {
    min-height: 46px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #35353b;
    background: #fff;
    border: 1px solid #e2e2e7;
    border-radius: 11px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .2s ease;
}

    .ak-view-all-reviews > svg:first-child {
        width: 20px;
        height: 20px;
        color: #604697;
    }

    .ak-view-all-reviews:hover {
        color: #604697;
        transform: translateY(-2px);
        border-color: rgba(96, 70, 151, .35);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .045);
    }

.ak-button-arrow {
    width: 16px;
    height: 16px;
    color: #9a9aa0;
    transition: transform .2s ease;
}



html[dir="ltr"] .ak-view-all-reviews:hover .ak-button-arrow {
    transform: translateX(3px);
}

html[dir="rtl"] .ak-view-all-reviews:hover .ak-button-arrow {
    transform: translateX(-3px);
}

@media (max-width: 991.98px) {
    .ak-customer-reviews {
        padding: 65px 0;
    }

    .ak-review-card {
        height: 320px;
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .ak-customer-reviews {
        padding: 55px 0;
    }

    .ak-review-section-header {
        margin-bottom: 27px;
    }

    .ak-review-heading h2 {
        font-size: 28px;
    }

    .ak-review-heading p {
        font-size: 13.5px;
    }

    .ak-review-card {
        height: 315px;
        min-height: 315px;
        padding: 19px;
    }

    .ak-review-text {
        font-size: 13px;
        line-height: 1.7;
        -webkit-line-clamp: 6;
    }

    .ak-review-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ak-review-navigation {
        justify-content: center;
    }

    .ak-view-all-reviews {
        width: 100%;
    }
}

/*===========End review section================*/
.inline1-resource-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    min-height: 150px;
    padding: 25px 28px;
    background: #fff;
    border: 1px solid #564895;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(48, 34, 103, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .inline1-resource-card:hover {
        transform: translateY(-4px);
        border-color: rgba(86, 72, 149, .35);
        box-shadow: 0 18px 38px rgba(48, 34, 103, .12);
    }

.inline1-resource-line {
    top: 50%;
    bottom: auto;
    height: 65%;
    transform: translateY(-50%);
    width: 4px;
    border-radius: 4px;
}

html[dir="rtl"] .inline1-resource-line {
    left: auto;
    right: 0;
    border-radius: 8px 0 0 8px;
}

.inline1-resource-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f4f1fb;
    color: #564895;
    transition: .25s ease;
}

    .inline1-resource-icon svg {
        width: 27px;
        height: 27px;
    }

.inline1-resource-card:hover .inline1-resource-icon {
    background: #564895;
    color: #fff;
}

.inline1-resource-body {
    flex: 1;
    min-width: 0;
}

.inline1-resource-type {
    display: block;
    margin-bottom: 5px;
    color: #6e6689;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.inline1-resource-title {
    margin: 0;
    color: #302267;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.inline1-resource-desc {
    margin: 7px 0 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.7;
    max-width: 450px;
}

.inline1-resource-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1ddec;
    border-radius: 50%;
    color: #564895;
    background: #fff;
    transition: .25s ease;
}

    .inline1-resource-arrow svg {
        width: 18px;
        height: 18px;
    }

.inline1-resource-card:hover .inline1-resource-arrow {
    background: #302267;
    border-color: #302267;
    color: #fff;
    transform: translateX(4px);
}

html[dir="rtl"] .inline1-resource-card:hover .inline1-resource-arrow {
    transform: translateX(-4px);
}

html[dir="rtl"] .inline1-resource-arrow svg {
    transform: rotate(180deg);
}

html[dir="rtl"] .inline1-resource-body {
    text-align: right;
}

html[dir="ltr"] .inline1-resource-body {
    text-align: left;
}

@media (max-width: 767.98px) {
    .inline1-resource-card {
        min-height: 125px;
        padding: 20px 18px;
        gap: 15px;
        border-radius: 17px;
    }

    .inline1-resource-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 14px;
    }

        .inline1-resource-icon svg {
            width: 23px;
            height: 23px;
        }

    .inline1-resource-title {
        font-size: 17px;
    }

    .inline1-resource-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .inline1-resource-arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media (max-width: 575.98px) {
    .inline1-resource-card {
        padding: 18px 15px;
        gap: 12px;
    }

    .inline1-resource-desc {
        display: none;
    }

    .inline1-resource-title {
        font-size: 16px;
    }

    .inline1-resource-type {
        font-size: 10px;
    }
}