/*! Start Hero Section Bar */

body.preload * {
    transition: none !important;
    animation: none !important;
}

.hero,
.hero * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
}

.hero {
    width: 100%;
    display: flex;
    color: #f8f8f8;
    overflow: hidden;
    position: relative;
    padding: 10px 0 80px;
    align-items: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url("http://kkrfgroup.com/wp-content/uploads/2025/12/NFT-Banners-scaled.jpg");
}

.hero::before {
    inset: 0;
    z-index: 0;
    content: "";
    position: absolute;
}

.hero .container {
    z-index: 1;
    margin: 0 auto;
    padding-top: 44px;
    max-width: 1290px;
    position: relative;
}

.hero-content {
    gap: 90px;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 480px;
    padding-top: 80px;
    margin-right: 200px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-text p {
    opacity: 0.8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 42px;
}

.cta-button {
    color: #f8f8f8;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    background: transparent;
    border: 2px solid #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.cta-button:hover {
    color: #000;
    transform: translateY(-4px);
    background-color: #f8f8f8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-form {
    flex: 1;
    padding: 32px;
    color: #f8f8f8;
    max-width: 570px;
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45);
}

.form-close {
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    display: none;
    line-height: 1;
    cursor: pointer;
    font-size: 20px;
    color: #f8f8f8;
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.form-row {
    gap: 22px;
    display: flex;
}

.form-group {
    flex: 1;
    display: flex;
    margin-bottom: 6px;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 14px;
}

input,
textarea,
select {
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #f8f8f8;
    padding: 10px 19px;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

input:focus,
textarea:focus,
select:focus {
    color: #000;
    border-color: #eff7f3;
    background: rgba(228, 222, 222, 0.5);
    box-shadow: 0 0 0 3px rgba(229, 238, 234, 0.25);
}

textarea {
    resize: none;
    border-radius: 12px;
}

.recaptcha-box {
    margin: 8px 0 18px;
}

.submit-button {
    width: 100%;
    border: none;
    color: #000;
    font-size: 17px;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.submit-button:active {
    transform: scale(0.98);
}

.hero-form-overlay {
    display: none;
}

.hero-mobile-video-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        display: none !important;
    }

    body.show-mobile-form .contact-form {
        display: none !important;
    }

    .hero-form-overlay {
        display: none !important;
    }

    .hero {
        overflow: visible;
        background: #000;
        position: relative;
        padding: 70px 0 40px;
    }

    .hero .container {
        padding: 0 16px;
        max-width: 480px;
    }

    .hero-content {
        gap: 24px;
        display: flex;
        position: relative;
        align-items: center;
        flex-direction: column;

    }

    .hero-text {
        position: relative;
        z-index: 3;
        max-width: 360px;
        margin: 0 auto;
        padding: 24px 16px;
        margin-top: 40px;
        border-radius: 16px;
        transform: translateY(0);
        transition: transform 0.9s ease-out;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 12px;
        line-height: 1.6;
        margin: 0 10px 18px;
    }

    .hero-text .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        white-space: nowrap;
    }

    .hero-mobile-video-wrapper {
        position: relative;
        top: auto;
        z-index: 1;
        display: block;
        width: 100%;
        margin: 0 auto;
        max-width: 420px;
        overflow: hidden;
        border-radius: 18px;
        transform: translateY(0);
        transition: transform 0.35s ease-out;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    }

    .hero-mobile-video {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 40px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }
}

/*! End Hero Section Bar */


/*! Start Clients Section Bar */

.clients {
    padding: 70px 0;
    color: #f8f8f8;
    background: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("http://kkrfgroup.com/wp-content/uploads/2025/12/NFT-Banner01-scaled.jpg");
}

.clients .container {
    margin: 0 auto;
    padding: 0 12px;
    max-width: 1290px;
    text-align: center;
}

.clients h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 50px;
}

.client-marquee {
    overflow: hidden;
}

.client-logos {
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-logos img {
    height: 52px;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0) invert(1);
}

.client-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logos img:nth-child(n+6) {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .clients {
        padding: 40px 0;
        color: #f8f8f8;
        background: #000;
    }

    .clients .container {
        max-width: 92%;
        margin: 0 auto;
        overflow: hidden;
        background: #000;
        text-align: center;
        border-radius: 18px;
        padding: 20px 18px 14px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    }

    .clients h2 {
        font-size: 14px;
        line-height: 1.4;
        color: #f8f8f8;
        margin-bottom: 18px;
    }

    .client-marquee {
        width: 100%;
        height: 40px;
        margin-top: 6px;
    }

    .client-logos {
        gap: 24px;
        display: flex;
        width: max-content;
        align-items: center;
        animation: marquee 12s linear infinite;
    }

    .client-logos img {
        height: 24px;
        opacity: 0.8;
        margin-top: 10px;
        filter: grayscale(100%) contrast(1.1);
        transform: translateY(0) scale(1);
        transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
    }

    .client-logos img:hover {
        opacity: 1;
        filter: grayscale(0);
        transform: translateY(-3px) scale(1.05);
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/*! End Clients Section Bar */


/*! Start Trusted Section Bar */

.trusted-section {
    padding: 80px 0;
    color: #f8f8f8;
    background: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.trusted-section .ts-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1310px;
}

.trusted-section .ts-header {
    text-align: left;
    margin: 0 auto 32px;
}

.trusted-section .ts-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.trusted-section .ts-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #c5c5c5;
}

.trusted-section .ts-layout {
    gap: 1px;
    display: flex;
    overflow: hidden;
    border-radius: 18px;
    background: #0b0b0b;
    border: 1px solid #262626;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.trusted-section .ts-sidebar {
    width: 38%;
    padding: 12px;
    border-right: 1px solid #262626;
    background: linear-gradient(180deg, #1a1a1a, #101010);
}

.trusted-section .ts-list {
    margin: 0;
    padding: 4px;
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
}

/* Subtle Scrollbar only for this List */
.trusted-section .ts-list::-webkit-scrollbar {
    width: 6px;
}

.trusted-section .ts-list::-webkit-scrollbar-track {
    background: transparent;
}

.trusted-section .ts-list::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 999px;
}

.trusted-section .ts-item {
    gap: 10px;
    display: flex;
    font-size: 13px;
    cursor: pointer;
    color: #9b9b9b;
    padding: 10px 14px;
    position: relative;
    align-items: center;
    border-radius: 10px;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.trusted-section .ts-item+.ts-item {
    margin-top: 4px;
}

.trusted-section .ts-item:hover {
    color: #e8e8e8;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}

.trusted-section .ts-item.ts-item--active {
    color: #111;
    background: #e5e5e5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.trusted-section .ts-item.ts-item--active .ts-item-index {
    color: #666;
}

.trusted-section .ts-item-index {
    font-weight: 600;
    flex-shrink: 0;
}

.trusted-section .ts-item-title {
    font-weight: 500;
    line-height: 1.5;
}

/* RIGHT: Detail Panel */
.trusted-section .ts-detail-panel {
    width: 62%;
    color: #111;
    position: relative;
    background: #f4f4f4;
    padding: 24px 24px 22px;
    border-radius: 0 18px 18px 0;
}

/* Icon INSIDE Each Detail */
.trusted-section .ts-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    background: #fff;
    align-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    justify-content: center;
    border: 1px solid #dadada;
}

.trusted-section .ts-detail-icon-img {
    max-width: 34px;
    max-height: 34px;
    object-fit: contain;
}

/* Detail Content */
.trusted-section .ts-detail {
    display: none;
}

.trusted-section .ts-detail.ts-detail--active {
    display: block;
}

.trusted-section .ts-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trusted-section .ts-detail p {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .trusted-section .ts-layout {
        margin: 0 32px !important;
    }

    .trusted-section .ts-detail-panel {
        padding: 32px 40px !important;
    }

    .trusted-section .ts-sidebar {
        padding: 20px 24px !important;
    }
}

@media (min-width: 769px) {
    .trusted-section .ts-sidebar {
        width: 30%;
    }

    .trusted-section .ts-detail-panel {
        width: 70%;
    }

    /* LEFT LIST ME ICON HIDE  */
    .trusted-section .ts-item-icon {
        display: none;
    }

    .trusted-section .ts-item {
        font-size: 13px;
        min-height: auto;
        padding: 10px 16px;
    }

    .trusted-section .ts-item-title {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 48px 8px;
    }

    .trusted-section .ts-header {
        text-align: left;
        margin-bottom: 20px;
    }

    .trusted-section .ts-header h2 {
        font-size: 26px;
    }

    .trusted-section .ts-header p {
        font-size: 13px;
        color: #d0d0d0;
    }

    .trusted-section .ts-layout {
        gap: 0;
        border: none;
        box-shadow: none;
        flex-direction: column;
        background: transparent;
    }

    .trusted-section .ts-sidebar {
        width: 100%;
        padding: 0;
        border-right: none;
        background: transparent;
    }

    .trusted-section .ts-list {
        padding: 0;
        max-height: none;
    }

    .trusted-section .ts-item {
        gap: 10px;
        display: flex;
        margin-top: 10px;
        color: #f5f5f5;
        position: relative;
        padding: 12px 14px;
        border-radius: 14px;
        align-items: center;
        background: radial-gradient(circle at top left, #282828, #111);
    }

    .trusted-section .ts-item:first-child {
        margin-top: 0;
    }

    .trusted-section .ts-item::before {
        content: none;
    }

    .trusted-section .ts-item-icon {
        width: 26px;
        height: 26px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 6px;
    }

    .trusted-section .ts-item-icon img {
        max-width: 18px;
        max-height: 18px;
        display: block;
    }

    .trusted-section .ts-item-index {
        display: none;
    }

    .trusted-section .ts-item-title {
        font-size: 12px;
        font-weight: 500;
    }

    /* Right Side + / - */
    .trusted-section .ts-item::after {
        top: 50%;
        right: 14px;
        width: 22px;
        content: "+";
        height: 22px;
        display: flex;
        font-size: 14px;
        color: #dcdcdc;
        position: absolute;
        align-items: center;
        border-radius: 999px;
        justify-content: center;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .trusted-section .ts-item.ts-item--active {
        color: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
        background: radial-gradient(circle at top left, #3a3a3a, #181818);
    }

    .trusted-section .ts-item.ts-item--active::after {
        content: "−";
    }

    /* Detail becomes Full-Width Card Below List */
    .trusted-section .ts-detail-panel {
        width: 100%;
        margin-top: 16px;
        border-radius: 16px;
        background: #f6f6f6;
        padding: 18px 16px 16px;
    }

    .trusted-section .ts-detail h3 {
        font-size: 18px;
    }

    .trusted-section .ts-detail p {
        font-size: 13px;
    }

    .trusted-section .ts-item-icon {
        width: 26px;
        height: 26px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .trusted-section .ts-item-icon img {
        max-width: 18px;
        max-height: 18px;
        display: block;
        filter: brightness(0) invert(1);
    }
}

/*! End Trusted Section Bar */


/*! Start NFT Metaverse Section Bar */

.nft-metaverse-section {
    color: #000;
    padding: 60px 0;
    background: #ffffff;
}

.nft-metaverse-container {
    gap: 60px;
    display: grid;
    margin: 0 auto;
    padding: 0 2px;
    max-width: 1280px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.nft-metaverse-text h2 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.nft-metaverse-text .intro {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: #000000bd;
    margin-bottom: 16px;
}

.nft-metaverse-media {
    height: 102%;
    display: flex;
}

.nft-metaverse-media video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .nft-metaverse-container {
        gap: 10px;
        margin: 0 18px;
        grid-template-columns: 1fr;
    }

    .nft-metaverse-media video {
        display: none;
    }

    .nft-metaverse-text {
        text-align: left;
    }

    .nft-metaverse-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .nft-metaverse-text .intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .nft-metaverse-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nft-metaverse-text .intro {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nft-metaverse-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nft-metaverse-text .intro {
        font-size: 16px;
    }
}

/*! End NFT Metaverse Section Bar */


/*! Start Stats Section Bar */

.stats {
    padding: 60px 0;
    background: #000;
}

.stats-card {
    opacity: 0;
    margin: 0 auto;
    max-width: 1270px;
    padding: 40px 48px;
    text-align: center;
    border-radius: 10px;
    background: #f8f8f8;
    border: 1px solid #d7d7d7;
    transform: translateY(20px);
    animation: statsCardFade 0.6s ease forwards;
}

@media (min-width: 769px) {
    .stats-card:hover {
        transform: none !important;
        border-color: #d7d7d7 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
    }
}

@keyframes statsCardFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-card:hover {
    border-color: #f8f8f8;
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.45);
}

/* Numbers Row */
.stats-items {
    gap: 36px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    align-items: center;
    justify-content: space-between;
}

/* Single Stats */
.stat-item {
    flex: 1;
    opacity: 0;
    min-width: 180px;
    transform: translateY(18px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: statsItemUp 0.6s ease-out forwards;
}

/* Stagger Animation Delay */
.stat-item:nth-child(1) {
    animation-delay: 0.12s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.22s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.32s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.42s;
}

.stat-number {
    color: #000;
    display: block;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 660;
    line-height: 1.4;
    color: #555555;
}

.stat-item:hover {
    transform: translateY(-6px);
}


/* Cta Button */
.stats-cta {
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #f8f8f8;
    overflow: hidden;
    position: relative;
    padding: 12px 28px;
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    text-decoration: none;
    border: 1px solid #111111;
    background: linear-gradient(135deg, #111111, #222222);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.stats-cta::after {
    inset: 0;
    opacity: 0;
    content: "";
    position: absolute;
    transform: translateX(-40%);
    transition: opacity 0.35s ease, transform 0.35s ease;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25) 0, transparent 55%);
}


/* Button Hover */
.stats-cta:hover {
    color: #000;
    background: #f8f8f8;
    transform: translateY(-2px);
}

.stats-cta:hover::after {
    opacity: 1;
    transform: translateX(10%);
}

.stats-cta-arrow {
    line-height: 0;
    font-size: 18px;
    transition: transform 0.25s ease;
}


/* Arrow Slide on Hover */
.stats-cta:hover .stats-cta-arrow {
    transform: translateX(4px);
}


/* Keyframes */
@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statsItemUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .stats {
        padding: 50px 0;
    }

    .stats-card {
        padding: 32px 26px;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .stats {
        padding: 40px 0;
    }

    .stats-card {
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .stats-items {
        gap: 14px;
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        display: grid;
        column-gap: 76px;
        padding: 26px 18px;
        border-radius: 10px;
        align-items: center;
        background: #f8f8f8;
        grid-template-columns: 72px 1fr;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    }

    .stat-number {
        color: #000;
        line-height: 1;
        font-size: 22px;
        font-weight: 700;
        padding-left: 28px;
        text-align: center;
    }

    .stat-label {
        color: #444;
        font-size: 16px;
        line-height: 1.45;
        text-align: center;
    }

    .stats-cta {
        width: 100%;
        color: #000;
        margin-top: 18px;
        border-radius: 14px;
        background: #f8f8f8;
        justify-content: center;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 36px 0;
    }

    .stat-item {
        padding: 20px 14px;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-cta {
        font-size: 14px;
        padding: 11px 20px;
    }
}

/*! End Stats Section Bar */


/*! Start Industries Swiper Section Bar */

.industries-section {
    color: #f8f8f8;
    padding: 80px 20px;
    background: #0b0b0b;
}

.industries-container {
    margin: 0 auto;
    max-width: 1270px;
}

.industries-header {
    max-width: 900px;
    margin-bottom: 52px;
}

.industries-heading {
    font-size: 34px;
    font-weight: 700;
    color: #f8f8f8;
    line-height: 1.25;
    margin-bottom: 14px;
}

.industries-intro {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.industries-swiper {
    padding-bottom: 20px;
}

.swiper-slide {
    height: auto;
}

.industry-card {
    height: 100%;
    padding: 34px 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);

    transform-style: preserve-3d;
    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.45s ease,
        background 0.45s ease;
}

@media (hover:hover) {
    .industry-card:hover {
        transform: translateY(-12px) rotateX(6deg) rotateY(-6deg);
        background: linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
        box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.95),
            inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }
}

.industry-icon {
    width: 44px;
    height: 44px;
    display: flex;
    font-size: 18px;
    color: #f8f8f8;
    align-items: center;
    border-radius: 14px;
    margin-bottom: 20px;
    filter: grayscale(100%);
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255, 255, 255, 0.12);
}

.industry-card h3 {
    font-size: 20px;
    color: #f8f8f8;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 768px) {
    .industries-heading {
        font-size: 26px;
    }

    .industry-card {
        padding: 26px 22px;
    }
}

/*! End Industries Swiper Section Bar */


/*! Start Feature Icon Wrapper Section */

.intro-text {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.feature-icon-wrapper {
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper svg {
    width: 14px !important;
    height: 14px !important;
}

/*! End Feature Icon Wrapper Section */


/*!  Start Kkrf Why Section Bar  */

.kkrf-why-section {
    color: #f8f8f8;
    padding: 90px 20px;
    font-family: "Inter", system-ui, sans-serif;
    background: radial-gradient(circle at top, #0d0d0d, #000);
}

.kkrf-why-container {
    margin: 0 auto;
    max-width: 1280px;
}

.kkrf-why-header {
    max-width: 900px;
    margin-bottom: 56px;
}

.kkrf-why-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.kkrf-why-description {
    font-size: 16px;
    line-height: 1.7;
    color: #b5b5b5;
}

/* Layout */
.kkrf-why-layout {
    gap: 44px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 320px 1fr;
}

/* Left Tab */
.kkrf-why-tabs {
    gap: 14px;
    top: 180px;
    display: flex;
    position: sticky;
    flex-direction: column;
}

.kkrf-tab {
    gap: 14px;
    display: flex;
    cursor: pointer;
    padding: 16px 18px;
    align-items: center;
    border-radius: 14px;

    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #e5e5e5;
    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}

.kkrf-tab:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #161616, #0e0e0e);
}

.kkrf-tab.active {
    transform: none;
    color: #f8f8f8;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, #1f1f1f, #141414);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 14px 34px rgba(0, 0, 0, 0.6);
}

.kkrf-tab-icon {
    opacity: 0.85;
    font-size: 18px;
    transition: none !important;
    filter: grayscale(100%) brightness(1.1);
}

.kkrf-tab:hover .kkrf-tab-icon,
.kkrf-tab.active .kkrf-tab-icon {
    opacity: 1;
    filter: grayscale(100%) brightness(1.1) !important;
}

.kkrf-tab.active .kkrf-tab-icon {
    filter: none;
}

.kkrf-why-content {
    position: relative;
    min-height: 420px;
}

.kkrf-content-panel {
    gap: 34px;
    display: grid;
    padding: 32px;
    border-radius: 22px;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
    background: linear-gradient(180deg, #131313, #0b0b0b);

    inset: 0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transform: translateY(24px) scale(0.98);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        visibility 0.45s ease;
}

.kkrf-content-panel.active {
    opacity: 1;
    position: relative;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.kkrf-content-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

.kkrf-content-panel:hover img {
    transform: scale(1.035);
}

.kkrf-content-body h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

.kkrf-content-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 18px;
}

.kkrf-content-body ul {
    padding: 0;
    list-style: none;
    margin-bottom: 22px;
}

.kkrf-content-body li {
    font-size: 14px;
    color: #e2e2e2;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
}

.kkrf-content-body li::before {
    left: 0;
    content: "✓";
    opacity: 0.7;
    color: #f8f8f8;
    position: absolute;
}

/* Button */
.kkrf-btn {
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 14px;
    background: #f8f8f8;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.kkrf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .kkrf-why-layout {
        grid-template-columns: 260px 1fr;
    }
}

@media (max-width: 768px) {
    .kkrf-why-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kkrf-why-container {
        margin: 0 10px;
    }

    .kkrf-why-tabs {
        gap: 12px;
        position: static;
        overflow-x: auto;
        flex-direction: row;
        padding-bottom: 6px;
    }

    .kkrf-tab {
        white-space: nowrap;
        transform: none !important;
    }

    .kkrf-content-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .kkrf-why-title {
        font-size: 28px;
    }

    .kkrf-why-tabs {
        gap: 12px;
        display: flex;
        position: static;
        overflow: visible;
        flex-direction: column;
    }

    .kkrf-tab {
        width: 100%;
        white-space: normal;
        justify-content: flex-start;
        transform: none !important;
    }

    .kkrf-tab-text {
        line-height: 1.4;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kkrf-why-section {
        padding: 60px 16px;
    }

    .kkrf-why-container {
        margin: 0 10px;
    }

    .kkrf-content-body h3 {
        font-size: 22px;
    }
}

/*!  End Kkrf Why Section Bar  */


/*! Start Android Faq Section Bar */

.android-faq-section {
    padding: 30px 0 60px 0;
    background: #f8f8f8;
}

.android-faq-container {
    margin: 0 auto;
    padding: 0 20px;

    max-width: 1290px;
}

.android-faq-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 28px;
}

.android-faq-title::after {
    height: 1px;
    content: "";
    width: 160px;
    display: block;
    margin: 8px auto 0;
    background: #4b5563;
}

/* FAQ Item */
.android-faq-item {
    padding: 12px 0;
    border-bottom: 1px solid #d1d5db;
}

/* FAQ Question Button */
.android-faq-question {
    width: 100%;
    border: none;
    display: flex;
    color: #111;
    padding: 6px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    background: transparent;
    justify-content: space-between;
}

.android-faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* FAQ Answer (Hidden by Default) */
.android-faq-answer {
    opacity: 0;
    max-height: 0;
    padding-left: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 550;
    color: #00000078;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* When active */
.android-faq-item.active .android-faq-answer {
    opacity: 1;
    color: #282727;
    margin-top: 8px;
    max-height: 200px;
}

.android-faq-item.active .android-faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .android-faq-item {
        padding: 12px 0;
    }

    .android-faq-container {
        margin: 0 14px;
    }

    .android-faq-question {
        gap: 12px;
        display: flex;
        font-size: 15px;
        line-height: 1.4;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .android-faq-question span {
        flex: 1;
        white-space: normal;
        word-break: break-word;
    }

    .android-faq-answer {
        font-size: 13px;
        margin-right: 10px;
    }

    .android-faq-icon {
        flex-shrink: 0;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .android-faq-container {
        margin: 0 14px;
    }

}

/*! End Android Faq Section Bar */


/*! Start Recognition Process Section Bar */

.recognition-section {
    padding: 40px 0;
    text-align: center;
    background: #f8f8f8;
    font-family: "Inter", sans-serif;
}

.recognition-section .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300px;
}

.recognition-title {
    color: #111;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
}

.recognition-btn {
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #f8f8f8;
    padding: 12px 28px;
    background: #111;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid #222;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.recognition-btn .arrow {
    font-size: 16px;
    margin-top: 1px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.recognition-btn:hover .arrow {
    transform: translateX(5px);
}

.recognition-image {
    opacity: 1;
    margin-top: 32px;
    overflow: hidden;
    border-radius: 14px;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.recognition-image.reveal {
    opacity: 1;
    transform: translateY(0);
}

.recognition-image img {
    left: 50%;
    width: 120%;
    height: 420px;
    display: block;
    max-width: none;
    object-fit: cover;
    position: relative;
    transition: transform 0.6s ease;
    transform: translateX(-50%) scale(1);
}

.recognition-image:hover img {
    transform: translateX(-50%) scale(1.05);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .recognition-title {
        font-size: 22px;
    }

    .recognition-image img {
        height: 35%;
    }
}

@media (max-width: 480px) {
    .recognition-title {
        font-size: 18px;
    }

    .recognition-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .recognition-image img {
        border-radius: 10px;
    }
}

/*! End Recognition Process Section Bar */