/*! Start Hero Section Bar */

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

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

.hero {
    width: 100%;
    display: flex;
    color: #f8f8f8;
    overflow: hidden;
    position: relative;
    padding: 10px 0 80px;
    align-items: flex-end;

    background-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.75) 100%),
        url("http://kkrfgroup.com/wp-content/uploads/2025/12/crm-banner-scaled.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

.hero .container {
    z-index: 1;
    margin: 0 auto;
    padding-top: 60px;
    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: 18px;
    margin-bottom: 22px;
}

.cta-button {
    color: #f8f8f8;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    background: transparent;
    border: 1px 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: #030303;
    transform: translateY(-4px);
    background-color: #f8f8f8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-form {
    flex: 1;
    padding: 32px;
    color: #fff;
    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;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    font-size: 20px;
    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%;
    color: #fff;
    outline: none;
    font-size: 14px;
    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: #ffffff;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #f0f0f0;
    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 Feature Icon Wrapper Bar */

.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 Bar */


/*! Start NFT Metaverse Section Bar */

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

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

/* TEXT */
.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;
}

/* VIDEO */
.nft-metaverse-media {
    height: 131%;
    display: flex;
}

.nft-metaverse-media video {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 0;
    object-fit: cover;
    mask-image: linear-gradient(to right, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 95%, transparent 100%);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nft-metaverse-container {
        gap: 40px;
        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: 28px;
        line-height: 1.3;
    }
}

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

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

/*! End NFT Metaverse Section Bar */


/*! Start MV Insights Section Bar */

.mv-insights-section {
    padding: 80px 0;
    color: #f8f8f8;
    background: #000;
}

.mv-container {
    margin: 0 auto;
    padding: 0 12px;
    max-width: 1300px;
}

.mv-insights-grid {
    gap: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT */
.mv-insights-title {
    font-size: 36px;
    max-width: 540px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.mv-insights-title span {
    color: #9ca3af;
}

.mv-insights-text {
    font-size: 16px;
    max-width: 540px;
    font-weight: 600;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 10px;
}

/* RIGHT */
.mv-insights-right {
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.mv-stat-item {
    gap: 24px;
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.mv-stat-number {
    line-height: 1;
    font-size: 44px;
    font-weight: 800;
}

.mv-stat-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #e5e7eb;
}

.mv-stat-item.purple .mv-stat-number {
    color: darkgray;
}

.mv-stat-item.red .mv-stat-number {
    color: darkgray;
}

.mv-stat-item.amber .mv-stat-number {
    color: darkgray;
}

.mv-insights-section,
.mv-container,
.mv-insights-grid {
    overflow: visible;
}

/* RESPONSIVE */
@media (min-width: 993px) {
    .mv-insights-right {
        position: sticky;
        top: 180px;
        align-self: flex-start;
    }
}

@media (max-width: 992px) {
    .mv-insights-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .mv-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mv-insights-title {
        font-size: 36px;
    }

    .mv-stat-number {
        font-size: 52px;
    }
}

@media (max-width: 480px) {
    .mv-container {
        margin-left: 12px;
        margin-right: 10px;
    }

    .mv-insights-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .mv-insights-text,
    .mv-stat-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .mv-stat-number {
        font-size: 44px;
    }
}

/*! End MV Insights Section Bar */

/*! Start Pop Up Section Bar */

body.popup-open {
    overflow: hidden;
}

.popup-content {
    margin-top: 40px;
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100000;
}

/*! End Pop Up Section Bar */


/*! Start Select Language Button only Responsive */

@media (max-width: 768px) {
    .mobile-lang {
        display: block;
        position: relative;
        margin-top: 12px;
    }

    .lang-btn {
        width: 100%;
        min-width: 160px;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #ccc;
        background: #000;
        color: #fff;
        cursor: pointer;
        text-align: left;
        white-space: nowrap;
    }

    .lang-dropdown {
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: #fff;
        list-style: none;
        padding: 6px 0;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 9999;
    }

    .lang-dropdown li {
        padding: 10px 14px;
        font-size: 14px;
        cursor: pointer;
        color: #000 !important;
        background: #fff;
    }

    .lang-dropdown li:hover {
        background: #f2f2f2;
    }
}

/*! End Select Language Button only Responsive */

/*! Start the Android Form Group Selection */

.android-form-group select {
    background-color: #000;
    color: #fff !important;
    border: 1px solid #555;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.android-form-group select option {
    background-color: #000;
    color: #fff;
}

.android-form-group select option[value=""] {
    color: #aaa;
}

.android-form-group select {
    background-color: #000;
    color: #fff !important;
    border: 1px solid #555;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media (max-width: 768px) {
    .android-form-group select {
        background-color: #fff !important;
        color: #000 !important;
    }

    .android-form-group select option {
        background-color: #fff !important;
        color: #000 !important;
    }
}

/*! End the Android Form Group Selection */


/*! Start the Android Form Group Career Link */

.career-link {
    color: #f8f8f8;
    text-decoration: none;
}

.career-link:hover {
    color: darkgrey;
}

/*! End the Android Form Group Career Link */