.tk-about-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: linear-gradient(135deg, #1d43fe 0%, #0b1633 100%);
    color: #fff;
}

.tk-about-section .container {
    position: relative;
    z-index: 5;
}

.tk-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.tk-bg-shapes img {
    position: absolute;
    opacity: 0.12;
    animation: floatShape 8s ease-in-out infinite;
}

.tk-bg-shapes .shape1 {
    top: 70px;
    left: 5%;
}

.tk-bg-shapes .shape2 {
    top: 12%;
    right: 8%;
    animation-delay: 1s;
}

.tk-bg-shapes .shape3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.tk-bg-shapes .shape4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.tk-bg-shapes .shape5 {
    top: 45%;
    right: 35%;
    animation-delay: 4s;
}

.tk-bg-shapes .map-shape {
    width: 900px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    animation: none;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.tk-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.tk-main-image {
    width: 100%;
    border-radius: 28px;
    transition: 0.5s;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.tk-image-box:hover .tk-main-image {
    transform: scale(1.04);
}

.tk-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 18px 22px;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tk-floating h3 {
    color: #fff;
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    font-family: "Kantumruy Pro", sans-serif;
}

.tk-floating p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.tk-left {
    top: 25px;
    left: 25px;
}

.tk-right {
    bottom: 25px;
    right: 25px;
}

.tk-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 35px;
}

.tk-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tk-feature {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
}

.tk-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #f5f8ff);
    opacity: 0;
    transition: 0.35s;
}

.tk-feature > * {
    position: relative;
    z-index: 2;
}

.tk-feature i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #1d43fe;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    transition: 0.35s;
    flex-shrink: 0;
}

.tk-feature h5 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: 0.35s;
    font-family: "Kantumruy Pro", sans-serif;
}

.tk-feature span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    transition: 0.35s;
}

.tk-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.tk-feature:hover::before {
    opacity: 1;
}

.tk-feature:hover h5 {
    color: #0b1633;
}

.tk-feature:hover span {
    color: #666;
}

.tk-feature:hover i {
    transform: rotate(-8deg) scale(1.08);
}

.tk-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    border-radius: 50px;
    background: #fff;
    color: #1d43fe;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s;
    margin-top: 40px;
}

.tk-btn:hover {
    background: #1d43fe;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .tk-features {
        grid-template-columns: 1fr;
    }

    .tk-floating {
        position: relative;
        display: inline-block;
        margin-top: 15px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .tk-bg-shapes .map-shape {
        width: 650px;
    }
}

.trust-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.trust-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.trust-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-card:hover .trust-card__image img {
    transform: scale(1.08);
}

/* icon floating style */
.trust-card__icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(29, 67, 254, 0.12);
    backdrop-filter: blur(6px);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.3s ease;
}

.trust-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.trust-card:hover .trust-card__icon {
    background: #1d43fe;
    transform: scale(1.08);
}

.trust-card:hover .trust-card__icon img {
    filter: brightness(0) invert(1);
}

/* content */
.trust-card__content {
    padding: 18px 18px 22px;
}

.trust-card__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.trust-card__content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* subtle gradient overlay */
.trust-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
    pointer-events: none;
}

.cta-accounting-section {
    padding: 100px 0;
    background: #f8fafc;
}

.cta-accounting-card {
    position: relative;
    overflow: hidden;
    padding: 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1d43fe 0%, #0b1633 100%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-family: "Kantumruy Pro";
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-top: 30px;
}

.cta-features span {
    color: #fff;
    font-size: 15px;
}

.cta-features i {
    color: #10b981;
    margin-right: 8px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    background: blue;
    color: #fff;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 280px;
    height: 280px;
    background: rgba(245, 158, 11, 0.08);
    top: -100px;
    right: -80px;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(16, 185, 129, 0.08);
    bottom: -60px;
    left: -60px;
}

@media (max-width: 991px) {
    .cta-accounting-card {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-buttons {
        align-items: center;
        margin-top: 30px;
    }

    .cta-features {
        justify-content: center;
    }
}

.feature-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: #fff;
    font-size: 30px;
}

.feature-tag {
    font-family: "Kantumruy Pro";
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6366f1;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-family: "Kantumruy Pro";
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.9;
    margin: 0;
}

/* TRUST STRIP */
.trust-strip {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 50px;
    border-radius: 26px;
}

.trust-strip h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111827;
    font-family: "Kantumruy Pro";
}

.trust-strip p {
    color: #6b7280;
    margin: 0;
    line-height: 1.8;
}

.section__title .sub-title-a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section__title .title-a {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    font-family: "Kantumruy Pro";
}

.testimonial__area {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1d43fe 0%, #0b1633 100%);
}

.testimonial__area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.testimonial__area .container {
    position: relative;
    z-index: 2;
}

.section__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.team-modern {
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 2;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-box {
    margin-top: -40px;
    padding: 70px 20px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.team-modern:hover .team-box {
    transform: translateY(-6px);
}

.team-box .name a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.team-box .name a:hover {
    color: #cfe0ff;
}

.team-box .role {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-bottom: 15px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social a:hover {
    background: #fff;
    color: #1d43fe;
    transform: translateY(-3px);
}

.testimonial__shape-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.big-shape {
    opacity: 0.08;
}

@media (max-width: 991px) {
    .section__title .title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .testimonial__area {
        padding: 70px 0;
    }

    .section__title .title {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .partner__card {
        padding: 15px;
    }

    .partner__logo {
        height: 80px;
    }

    .partner__logo img {
        max-height: 60px;
    }

    .partner__card .title {
        font-size: 14px;
    }
}

.client-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    padding-bottom: 50px;
}

.client-marquee-wrapper {
    position: relative;
    padding: 0 80px;
}

@media (max-width: 768px) {
    .client-marquee-wrapper {
        padding: 0 20px;
    }
}

.client-marquee-wrapper::before,
.client-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.client-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.client-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.marquee-row {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 0;
}

.marquee-row::-webkit-scrollbar {
    display: none;
}

.marquee-row.dragging {
    cursor: grabbing;
}

.marquee-row:nth-child(1) {
    transform: translateX(0);
}

.marquee-row:nth-child(2) {
    transform: translateX(-20px);
}

.marquee-row:nth-child(3) {
    transform: translateX(10px);
}

.marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
}

.client-logo {
    flex: 0 0 auto;
    width: 220px;
    height: 160px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 22px 18px 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1d43fe, #4f7cff);
    transform: scaleX(0);
    transition: 0.35s ease;
}

.client-logo:hover::before {
    transform: scaleX(1);
}

.client-logo-image {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-image img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(29, 67, 254, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

.client-logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

.client-name {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .client-logo {
        width: 180px;
        height: 145px;
    }

    .client-logo img {
        height: 60px;
    }

    .client-name {
        font-size: 13px;
    }
}
