:root {
    --white: #fff;
    --black: #000;
    --red-50: #fef2f2;
    --orange-50: #fff7ed;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --cyan-800: #155e75;
    --cyan-900: #164e63;
    --cyan-950: #083344;
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-800: #075985;
    --sky-900: #0c4a6e;
    --sky-950: #082f49;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-950: #172554;
    --indigo-50: #eef2ff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
}
/* start: Global */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    color: var(--black);
    font-family:  "Goldplay SemiBold";
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}
.containerH {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;

}
/* end: Global */

/* start: Button */
.btn {
    font-size: 14px;
    font-weight: 600;
    height: 36px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-lg {
    height: 44px;
    font-size: 16px;
}
.btn-icon {
    padding: 0;
    width: 36px;
}
.btn-lg.btn-icon {
    width: 44px;
}
.btn-outline-light {
    background-image: linear-gradient(to bottom, var(--white), var(--neutral-100));
    border: 1px solid var(--neutral-300);
    color: var(--black);
}
.btn-outline-light:hover {
    background-image: linear-gradient(to bottom, var(--neutral-100), var(--neutral-50));
}
.btn-primary {
    background-image: linear-gradient(to bottom, #235a9c, var(--blue-400));
    color: var(--white);
    transition: .5s;
}
.btn-primary:hover {
    transform: scale(1.02);
    background-image: linear-gradient(to bottom, #235a9c, var(--blue-600));
}
/* end: Button */

/* start: Navbar */
.navbar {
    border-bottom: 1px solid var(--neutral-200);
}
.navbar-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand-image {
    width: 100%;
    height: 85px;
    object-fit: cover;
}
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.navbar-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
}
.navbar-menu-item {
    position: relative;
}
.navbar-menu-item::before {
    content: '';
    position: absolute;
    top: 100%;
    height: 100px; /* Bridge height - adjust as needed */
    width: 100%;
    display: none;
    opacity: 0;
    pointer-events: none; /* Allows hover to work through it */
}
.navbar-menu-item:hover::before {
    display: block;
    pointer-events: auto; /* Enable hover bridge */
}
.navbar-menu-item-link {
    display: flex;
    align-items: center;
    height: 36px;
    padding: 15px 12px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: var(--black);
    border: 1px solid transparent;
    gap: 8px;
}
.navbar-menu-item:hover .navbar-menu-item-link {
    border-radius: 14px;
    background-color: var(--blue-200);
    border-color: var(--blue-200);
}
.navbar-menu-item-link-arrow {
    font-size: 24px;
}


.navbar-menu-item-submenu {
    position: fixed;
    top: 100px;
    left: 10%;
    /* transform: translate(50%,50%); */
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    border-radius: 1.2rem;
    background-color: var(--white);
    box-shadow: 0 8px 40px -16px rgba(0, 0, 0, .1);
    border-bottom: 2px solid var(--neutral-200);
    padding: 24px 10px;
    border: 1px solid #000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    display: none;
    z-index: 10;

}
.navbar-menu-item:hover .navbar-menu-item-submenu {
    display: block;
}

.navbar-submenu-item .bx {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	background: #f5f5f5;
	transition: all.3s ease;
}
.bx img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
 a:hover .bx {
	background: var(--blue-300);
    transform: rotate(360deg);
}

.navbar-submenu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: var(--black);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}
.navbar-submenu-item:hover {
 background-color: var(--blue-100);
    border-color: var(--blue-200);
}
.navbar-submenu-item-icon {
    flex-shrink: 0;
    font-size: 28px;
}
.navbar-submenu-item-icon-primary {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-image: linear-gradient(to bottom, var(--emerald-600), var(--emerald-800));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-submenu-item-body {
    width: 100%;
    min-width: 0;
}
.navbar-submenu-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}
.navbar-submenu-item-description {
    font-size: 13px;
    color: var(--neutral-600);
}
.navbar-solution-wrapper,
.navbar-product-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.navbar-product-left {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.navbar-product-right {
    width: 320px;
    flex-shrink: 0;
}
.navbar-product-box {
    padding: 16px;
    border-radius: 12px;
    background-color: var(--neutral-100);
    border: 1px solid var(--neutral-200);
}
.navbar-product-box-image {
    width: 100%;
    height: 270px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}
.navbar-product-box-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.navbar-product-box-description {
    font-size: 14px;
    margin-bottom: 12px;
}
.navbar-product-box-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--emerald-600);
    text-decoration: none;
}
.navbar-product-box-link-icon {
    transition: transform .2s ease-in-out;
}
.navbar-product-box-link:hover .navbar-product-box-link-icon {
    transform: translateX(4px);
}
.navbar-solution-left {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.navbar-solution-right {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.navbar-solution-item-title {
    font-size: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-200);
    color: var(--neutral-600);
    margin-bottom: 16px;
}
.navbar-solution-item-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.navbar-solution-item-link-item {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
}
.navbar-solution-item-link-item:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.navbar-platform-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow-x: auto;
}
.navbar-platform-item {
    flex-direction: column;
    width: 180px;
    min-height: 200px;
    flex-shrink: 0;
    border: 1px solid var(--neutral-200);
}
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.navbar-menu-item-submenu-title,
.navbar-menu-close,
.navbar-mobile {
    display: none;
}
/* end: Navbar */

/* start: Breakpoints */
@media (max-width:1024px) {
    .navbar-brand-image {
    width: 100%;
    height: 65px;
    object-fit: cover;
}
.navbar-menu-item-link{

    padding: 12px 8px;
}
.navbar-menu-item-link-text{
    font-size: 13px;
}
.navbar-menu-item-link-arrow {
    font-size: 16px;
}

}
@media screen and (max-width: 950px) {
    .navbar.active .navbar-menu-wrapper {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        padding: 24px 16px;
        padding-bottom: 72px;
        overflow-y: auto;
        z-index: 10;
    }
    
    .navbar-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .navbar-menu-item {
        width: 100%;
    }
    .navbar-menu-item-link {
        justify-content: space-between;
    }
    .navbar-menu-item-link-arrow {
        transform: rotateZ(-90deg);


    }
    .navbar-menu-close {
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
    }
    .navbar-menu-item-submenu {
        top: 0;
        max-height: unset;
        height: 100%;
        padding-bottom: 72px;
    }
    .navbar-menu-item-submenu-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
    }
    .navbar-menu-item:hover::before,
    .navbar-menu-item:hover .navbar-menu-item-submenu,
    .navbar-menu-wrapper {
        display: none;
    }
    .navbar-menu-item.active .navbar-menu-item-submenu,
    .navbar-mobile {
        display: block;
    }
    .navbar-solution-left {
        width: 300px;
    }
    .navbar-platform-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        overflow: visible;
    }
    .navbar-platform-item {
        width: 100%;
    }
    .navbar-brand-image{
        height: 85px;
    }
}
@media screen and (max-width: 767px) {
    .navbar-product-wrapper {
        flex-direction: column;
    } 
    .navbar-product-left {
        grid-template-columns: 1fr;
    }
    .navbar-product-right {
        width: 100%;
    }
    .navbar-product-box {
        display: flex;
        gap: 16px;
    }
    .navbar-product-box-image {
        width: 160px;
        flex-shrink: 0;
        height: 130px;
        margin-bottom: 0;
    }
    .navbar-solution-wrapper {
        flex-direction: column;
    }
    .navbar-solution-left {
        width: 100%;
    }
    .navbar-platform-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 480px) {
    .navbar-submenu-item {
        flex-direction: column;
    }
    .navbar-product-left {
        grid-template-columns: 1fr;
    }
    .navbar-product-box {
        flex-direction: column;
        gap: 12px;
    }
    .navbar-product-box-image {
        width: 100%;
    }
    .navbar-solution-wrapper,
    .navbar-solution-right {
        gap: 32px;
    }
    .navbar-platform-wrapper,
    .navbar-solution-right {
        grid-template-columns: 1fr;
    }
    .navbar-cta {
        display: none;
    }

    .navbar-brand-image{
        height: 60px;
    }
}
/* end: Breakpoints */