.hero-section {
    padding-top: 150px;
    padding-bottom: 6rem;
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black)
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 25%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

/* .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(17, 24, 39, 0.75) 40%,
            rgba(30, 64, 175, 0.35) 100%
        );
    pointer-events: none;
} */

.hero-section .bg-video {
    z-index: 0;
}

.hero-section::before {
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section .hero-inner-content {
    max-width: 672px;
}

.hero-section .hero-inner-content h1,
.hero-section .hero-inner-content p {
    margin-bottom: 20px;
}

.hero-section .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.hero-section .stars {
    display: flex;
    gap: 2px;
}

.hero-section .stars svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.hero-section .badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-primary);
}

.hero-section .hero-section h1 {
    margin-bottom: 24px;
    color: var(--white);
}

.hero-section .hero-section p {
    margin-bottom: 32px;
    color: var(--para-white);
}

.hero-section .underline-wave {
    position: relative;
    display: inline-block;
}

.hero-section .underline-wave svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
}

.hero-section .features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--para-white);
}

.hero-section .feature-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-section .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Video Button */
.hero-section .btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}

.hero-section .btn-video:hover {
    color: var(--primary-color);
}

/* Play Circle */
.hero-section .play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.hero-section .btn-video:hover .play-circle {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-section .play-circle svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    margin-left: 2px;
}

/* Text */
.hero-section .btn-video span {
    font-size: 14px;
    font-weight: 500;
}

.hero-section .play-circle {
    position: relative;
}

.hero-section .play-circle::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


.hero-section .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hero-section .video-box {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.hero-section .video-box video {
    width: 100%;
    border-radius: 10px;
}

.hero-section .close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
}

.hero-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-section .tag {
    padding: 6px 12px;
    font-size: 12px;
    color: var(--para-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-section .tag:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.hero-section .tag:hover {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

.hero-section .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section .stat {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s forwards;
}

.hero-section .counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-primary);
}

.hero-section .label {
    margin-top: 4px;
    color: rgb(156 163 175);
}

.hero-section .stat:nth-child(1) {
    animation-delay: 0s;
}

.hero-section .stat:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-section .stat:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-section .stat:nth-child(4) {
    animation-delay: 0.3s;
}

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

/* responsive */

@media (max-width: 1024px) {

    .hero-section .badge-text {
        font-size: 11px;
    }

    .hero-section .feature-item {
        font-size: 13px;
    }

    .hero-section .btn-video span {
        font-size: 13px;
    }

    .hero-section .tag {
        font-size: 11px;
    }

    .hero-section .counter-number {
        font-size: 40px;
    }

    .hero-section .label {
        font-size: 13px;
    }
}

@media (min-width:767px) {
    .hero-section .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-section .badge-text {
        font-size: 11px;
    }

    .hero-section .feature-item {
        font-size: 12px;
    }

    .hero-section .btn-video span {
        font-size: 13px;
    }

    .hero-section .tag {
        font-size: 11px;
    }

    .hero-section .counter-number {
        font-size: 34px;
    }

    .hero-section .label {
        font-size: 12px;
    }
}

@media (max-width:567px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-section .badge-text {
        font-size: 10px;
    }

    .hero-section .feature-item {
        font-size: 12px;
    }


    .hero-section .btn-video span {
        font-size: 12px;
    }

    .hero-section .tag {
        font-size: 10px;
    }

    .hero-section .counter-number {
        font-size: 28px;
    }

    .hero-section .label {
        font-size: 11px;
    }
}

@media (max-width: 370px) {
    .hero-section .badge {
        flex-direction: column;
        align-items: self-start;
    }
}



/* swiper  */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #111827;
    padding: 18px 0;
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    white-space: nowrap;
    color: #d1d5db;
    font-size: 15px;
    font-weight: 500;
}

.dot {
    width: 7px;
    height: 7px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* 
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
} */