﻿.app-wrapper {
    background-color: #f8fafc !important;
    color: #1e293b !important;
    font-family: "Times New Roman", Times, serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}
a {text-decoration: none !important}
.custom-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-nav-link {
    color: #475569;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

    .custom-nav-link:hover {
        color: #0052cc;
    }

@media (min-width: 992px) {
    .nav-item-dropdown {
        position: relative;
    }

        .nav-item-dropdown .dropdown-menu-custom {
            display: block;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 224px;
            background-color: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            transform: translateY(8px);
            transition: all 0.2s ease;
            z-index: 1050;
        }

        .nav-item-dropdown:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-item-dropdown:hover .chevron-icon {
            transform: rotate(180deg);
        }
}
.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}


    .dropdown-item-custom:hover {
        background-color: #f8fafc;
        color: #0052cc;
    }

.dropdown-menu-custom.mega-menu-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: max-content;
    min-width: 260px;
    padding: 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
}

.transition-icon {
    transition: transform 0.3s ease;
}

.card-arrow-link:not(.collapsed) .transition-icon {
    transform: rotate(180deg);
}

.card-arrow-link.collapsed .btn-text-hide {
    display: none;
}

.card-arrow-link:not(.collapsed) .btn-text-show {
    display: none;
}
/* Ô chứa Icon */
.menu-icon-box {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
}

/* Bảng màu nhẹ cho các Icon */
.icon-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.icon-teal {
    background-color: #ccfbf1;
    color: #0d9488;
}

.icon-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.icon-pink {
    background-color: #fce7f3;
    color: #db2777;
}

.icon-red {
    background-color: #ffe4e6;
    color: #e11d48;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.icon-cyan {
    background-color: #cffaff;
    color: #0891b2;
}

.icon-amber {
    background-color: #fef3c7;
    color: #d97706;
}

.icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.menu-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dropdown-item-custom:hover .menu-title {
    color: #0284c7;
}

.chevron-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.btn-brand-primary {
    background-color: #0052cc;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 82, 204, 0.2);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-brand-primary:hover {
        background-color: #0043a8;
        box-shadow: 0 10px 15px -3px rgba(0, 82, 204, 0.3);
    }

.btn-brand-outline {
    border: 1px solid #cbd5e1;
    color: #334155 !important;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    background-color: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-brand-outline:hover {
        background-color: #f8fafc;
        border-color: #94a3b8;
    }
/* Custom Styles cho Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .mobile-drawer-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-drawer-content {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background-color: #ffffff;
    box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1051;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-link {
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
    border-color: #e2e8f0 !important;
}

    .mobile-drawer-link:hover {
        color: #0052cc;
        border-color: #0052cc !important;
    }

.mobile-drawer-link-main {
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .mobile-drawer-link-main:hover {
        color: #0052cc;
    }

/* Styling cho Sub-Navigation */
.sub-nav-wrapper {
    background-color: #ffffff;
    position: sticky;
    top: 80px;
    z-index: 1020;
    border-bottom: 1px solid #f1f5f9;
}

.sub-nav-link {
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

    .sub-nav-link:hover,
    .sub-nav-link.active {
        color: #0052cc;
        border-bottom-color: #0052cc;
    }
/* Section Overview Base Styles */
.overview-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
    background-image: linear-gradient(to bottom, rgba(191, 219, 254, 0.7), rgba(248, 250, 252, 0.4), #ffffff);
    scroll-margin-top: 8rem;
}

@media (min-width: 768px) {
    .overview-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.overview-bg-blur {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 400px;
    background: linear-gradient(to top, rgba(219, 234, 254, 0.5), transparent);
    filter: blur(48px);
    pointer-events: none;
}
.overview-section img {
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Badge Style */
.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 50rem;
    color: #0052cc;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Heading Typography */
.overview-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

@media (min-width: 576px) {
    .overview-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .overview-title {
        font-size: 3rem;
    }
}

/* Text Gradient Effect */
.text-gradient-primary {
    background: linear-gradient(to right, #2563eb, #4f46e5, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.625;
    max-width: 42rem;
}

/* Bullet Items Check Circle */
.check-icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f0fdf4;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-slate-700 {
    color: #334155;
}

/* Buttons Styling */
.btn-primary-custom {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(147, 197, 253, 0.4);
    transition: all 0.2s ease;
}

    .btn-primary-custom:hover {
        background-color: #1d4ed8;
        color: #ffffff;
        box-shadow: 0 20px 25px -5px rgba(147, 197, 253, 0.5);
    }

.btn-outline-brand-red {
    border: 1px solid #e11d48;
    color: #e11d48;
    background-color: transparent;
    transition: all 0.2s ease;
}

    .btn-outline-brand-red:hover {
        background-color: #fff1f2;
        color: #e11d48;
    }

/* Play Video Button */
.btn-play-video {
    color: #475569;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}

    .btn-play-video:hover {
        color: #0052cc;
    }

.play-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052cc;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.btn-play-video:hover .play-icon-circle {
    background-color: #eff6ff;
}

/* Section Base & Margins */
.industry-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    scroll-margin-top: 8rem;
}

@media (min-width: 768px) {
    .industry-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.industry-grid {
    scroll-margin-top: 8rem;
}

.max-w-3xl {
    max-width: 48rem;
}

/* Header Styles */
.industry-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0f172a;
}

@media (min-width: 768px) {
    .industry-title {
        font-size: 2.25rem;
    }
}

.industry-description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.625;
}

/* Card Container Base */
.bg-slate-50 {
    background-color: #f8fafc !important;
}

.border-slate-100 {
    border-color: #f1f5f9 !important;
}

.text-slate-900 {
    color: #0f172a !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.feature-card {
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        border-color: #bfdbfe !important;
        background-color: rgba(239, 246, 255, 0.4) !important;
    }

/* Icon Box Base & Color Variants */
.feature-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1);
}

/* Icon Box Palette */
.bg-blue-100 {
    background-color: #dbeafe;
}

.text-brand-blue {
    color: #0052cc;
}

.bg-emerald-100 {
    background-color: #d1fae5;
}

.text-emerald-600 {
    color: #059669;
}

.bg-rose-100 {
    background-color: #ffe4e6;
}

.text-rose-600 {
    color: #e11d48;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.text-indigo-600 {
    color: #4f46e5;
}

.bg-amber-100 {
    background-color: #fef3c7;
}

.text-amber-600 {
    color: #d97706;
}

.bg-teal-100 {
    background-color: #ccfbf1;
}

.text-teal-600 {
    color: #0d9488;
}

/* Arrow Hover Motion */
.icon-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-arrow {
    transform: translateX(6px);
}

/* Section Feature Styling */
.feature-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    scroll-margin-top: 8rem;
}

@media (min-width: 768px) {
    .feature-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.feature-section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0f172a;
}

@media (min-width: 768px) {
    .feature-section-title {
        font-size: 2.25rem;
    }
}

.feature-section-description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.625;
}

.feature-item-card {
    transition: all 0.3s ease;
}

    .feature-item-card:hover {
        border-color: #bfdbfe !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
    }

.feature-item-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.feature-item-card:hover .feature-item-icon {
    background-color: #0052cc !important;
    color: #ffffff !important;
}
/* Section Base & Typography */
.client-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    scroll-margin-top: 8rem;
}

.client-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

@media (min-width: 768px) {
    .client-title {
        font-size: 1.875rem;
    }
}

.client-description {
    font-size: 1.2rem;
    color: #64748b;
}

/* Khung tự động */
.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    scroll-margin-top: 8rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-marquee-container {
    width: 100%;
    padding: 20px 0;
    scroll-margin-top: 8rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.myLogoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: grab;
    user-select: none;
    height: 100px;
}

    .client-logo-item:active {
        cursor: grabbing;
    }

    .client-logo-item:hover {
        transform: scale(1.15);
        z-index: 10;
        position: relative;
    }

    .client-logo-item img {
        max-height: 85px;
        max-width: 220px;
        width: auto;
        object-fit: contain;
        pointer-events: none;

        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
        image-rendering: -webkit-optimize-contrast;
    }

/* Typography Custom Rules */
.fw-black {
    font-weight: 900 !important;
}

/*.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}*/

.logo-subtext {
    font-size: 9px;
}

.logo-subtext-sm {
    font-size: 8px;
}

.logo-subtext-xs {
    font-size: 7px;
}

/* Color Palette Bridge */
.text-rose-600 {
    color: #e11d48 !important;
}

.text-amber-900 {
    color: #78350f !important;
}

.text-amber-500 {
    color: #f59e0b !important;
}

.text-green-700 {
    color: #15803d !important;
}

.text-red-600 {
    color: #dc2626 !important;
}

.text-blue-700 {
    color: #1d4ed8 !important;
}

.text-slate-800 {
    color: #1e293b !important;
}

.text-slate-700 {
    color: #334155 !important;
}

.text-slate-400 {
    color: #748194 !important;
}


