/* Highlights Section - Unique Horizontal Scroll Design */
.highlights {
    position: relative;
    overflow: hidden;
}

.highlights-wrapper {
    margin-top: 50px;
    position: relative;
}

.highlights-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.highlights-scroll::-webkit-scrollbar {
    height: 6px;
}

.highlights-scroll::-webkit-scrollbar-track {
    background: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
}

.highlights-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 10px;
}

.highlight-card {
    min-width: 280px;
    background: var(--card-bg);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(5px);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

/* Glowing corner accent */
.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 50%;
    filter: blur(40px);
    transition: opacity 0.4s ease;
}

.highlight-card:hover::before {
    opacity: 0.15;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.highlight-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--primary-text);
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 0;
}

/* Scroll hint */
.scroll-hint {
    text-align: center;
    margin-top: 20px;
    color: var(--secondary-text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scroll-hint i {
    color: var(--primary-accent);
    animation: scroll-arrow 1.5s ease-in-out infinite;
}

@keyframes scroll-arrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-card {
        min-width: 250px;
        padding: 30px 25px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}