﻿.banner {
    background-color: #151F2E;
    background-image: url(https://www.corsight.ai/wp-content/uploads/2025/04/hp_bg_globe.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 785px;
    display: flex;
    align-items: center;
}
    /*        .banner .row {
            display: flex;
            align-items: center;
        }*/
    .banner .block-title {
        color: white;
        padding-right: 100px;
    }

        .banner .block-title h1 {
            font-size: 38px;
            font-weight: 700;
        }

        .banner .block-title p {
            font-size: 17px;
        }

.elementor-icon-list-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.elementor-icon-list-item {
    padding-bottom: 5px;
}

.elementor-button {
    color: white;
    text-decoration: none;
    background-color: #5d5de9;
    padding: 18px 65px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
}

.elementor-icon-list-text {
    font-size: 18px;
    padding-left: 30px;
}

.elementor-widget-container {
    padding-top: 90px;
}

/*.logo {
    margin: 30px 0;
}
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    pointer-events: none;
}

.logo-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

    .logo-track img {
        height: 60px;
        margin: 0 40px;
    }*/
/* Dừng khi hover */
/*.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}*/
.widget {
    /*margin-top: 75px;*/
}

.widget .block-title h1 {
    font-size: 38px;
    font-weight: 700;
}
.widget .block-title p {
    font-size: 22px;
    color: var(--e-global-color-text);
}

.widget .navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.widget .nav-tabs {
    display: flex;
    background: white;
    position: relative;
}

.widget .nav-item {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}



    .widget .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #ccc;
        transform: scaleX(0);
        transition: all 0.3s ease;
    }

    .widget .nav-item:hover::before {
        transform: scaleX(1);
        background: #888;
    }

    .widget .nav-item.active::before {
        transform: scaleX(1);
        background: #2563eb;
    }

.widget .nav-content {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.widget .nav-item:hover .nav-content {
    background: rgba(0, 0, 0, 0.02);
}

.widget .nav-item.active .nav-content {
    background: rgba(37, 99, 235, 0.05);
}

.widget .nav-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
}

.widget .nav-item:hover .nav-icon {
    border-color: #888;
    transform: translateY(-2px);
}

.widget .nav-item.active .nav-icon {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.widget .nav-icon svg {
    width: 28px;
    height: 28px;
    fill: #6b7280;
    transition: all 0.3s ease;
}

.widget .nav-item:hover .nav-icon svg {
    fill: #374151;
}

.widget .nav-item.active .nav-icon svg {
    fill: #2563eb;
}

.widget .nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.widget .nav-item:hover .nav-title {
    color: #111827;
}

.widget .nav-item.active .nav-title {
    color: #2563eb;
}

.widget .content-section {
    padding: 40px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.widget .content-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

    .widget .content-card.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.widget .content-wrapper {
    position: relative;
    min-height: 400px;
}

.widget .content-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.widget .content-image {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 3px solid #2563eb;
}

    .widget .content-image::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        width: 30px;
        height: 30px;
        border-left: 3px solid #ef4444;
        border-top: 3px solid #ef4444;
    }

    .widget .content-image::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        border-right: 3px solid #10b981;
        border-bottom: 3px solid #10b981;
    }

    .widget .content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.widget .content-details {
    flex: 1;
}

.widget .content-title {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.widget .feature-item {
    margin-bottom: 20px;
}

.widget .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.widget .feature-description {
    color: #6b7280;
    line-height: 1.6;
}

.widget .cta-button {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .widget .cta-button:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .widget .nav-tabs {
        flex-wrap: wrap;
    }

    .widget .nav-item {
        flex: 1 1 33.333%;
        min-width: 120px;
    }

    .widget .content-header {
        flex-direction: column;
        text-align: center;
    }

    .widget .content-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}



    .slider-item .block-title h1 {
        font-size: 40px;
        padding-top: 20px;
        /*padding-bottom: 40px;*/
        font-weight: 700;
    }


.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#slider {
    user-select: none; /* Ngăn chọn văn bản khi kéo */
    -webkit-user-drag: none;
}

/* Kéo thả mượt mà hơn */
.dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
}

.cursor-grabbing {
    cursor: grabbing !important;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

    .animate-slide-up.show {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}


/* Responsive */

.video-mobile {
    display: none;
}
.widget-mobile {
    display: none;
}

@media (max-width: 1024px) {
    header {
        /*overflow: hidden;*/
    }
}
@media (max-width: 900px) {
    .video-mobile {
        display: block;
        padding-bottom: 20px;
    }

    .video-main {
        display: none;
    }

    .banner {
        padding: 80px 0;
    }

        .banner .block-title {
            padding: 0 50px;
            text-align: center;
        }

            .banner .block-title h1 {
                font-size: 29px;
                font-weight: 700;
            }

            .banner .block-title p {
                font-size: 15px;
            }

    .elementor-icon-list-text {
        font-size: 16px;
        text-align: left;
    }

    .elementor-button {
        padding: 15px 40px;
        font-size: 15px;
    }

    .elementor-widget-container {
        padding-top: 18px;
    }

    .widget-mobile {
        display: block;
        overflow: hidden;
    }

    .widget-main {
        display: none;
    }

    .autonomous {
        padding: 40px 0;
    }

        .autonomous .col-lg-3 {
            padding-bottom: 20px;
        }

        .autonomous .block-title h1 {
            font-size: 30px;
        }

        .autonomous .block-title p {
            font-size: 15px;
        }

        .autonomous .e-lottie__animation {
            display: flex;
            justify-content: center;
        }

            .autonomous .e-lottie__animation svg {
                width: 40% !important;
            }

        .autonomous .block-content h2 {
            font-size: 20px;
        }

        .autonomous .block-content p {
            font-size: 18px;
        }
}


@media (max-width: 600px) {
    .video-mobile {
        display: block;
        padding-bottom: 20px;
    }

    .video-main {
        display: none;
    }

    .banner {
        padding: 80px 0;
    }

        .banner .block-title {
            padding: 0 50px;
            text-align: center;
        }

            .banner .block-title h1 {
                font-size: 21px;
                font-weight: 700;
            }

            .banner .block-title p {
                font-size: 14px;
            }

    .elementor-icon-list-text {
        font-size: 16px;
        text-align: left;
    }

    .elementor-button {
        padding: 15px 40px;
        font-size: 15px;
    }

    .elementor-widget-container {
        padding-top: 18px;
    }

    .widget-mobile {
        display: block;
        overflow: hidden;
    }
    .widget-main {
        display: none;
    }

    .slider-item{
                margin-top: 0;
                padding: 50px 0;

    }

    .customer-contact {
        padding: 50px 10px;
    }
    .customer-contact .container{
        padding: 0;
    }
    .customer-contact .block-title h1 {
        font-size: 25px;
    }

    .slider-item-no-btn {
        padding: 40px 0;
    }
    .feature h1 {
        font-size: 24px;
    }

    .autonomous {
        padding: 40px 0;
    }
    .autonomous .col-lg-3{
        padding-bottom: 20px;
    }
        .autonomous .block-title h1 {
            font-size: 30px;
        }
        .autonomous .block-title p {
            font-size: 15px;
        }
        .autonomous .e-lottie__animation {
            display: flex;
            justify-content: center;
        }
        .autonomous .e-lottie__animation svg {
            width: 40% !important;
        }
        .autonomous .block-content h2 {
            font-size: 20px;
        }

        .autonomous .block-content p {
            font-size: 18px;
        }

    .security h2{
        font-size: 28px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 180s linear infinite;
}