/* Highlights Section Styling */
#highlights {
    position: relative;
    z-index: 1;
}

.highlight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    background-color: #ffffff;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.highlight-card .card-body {
    z-index: 1;
    padding: 2rem;
}

.highlight-card i {
    transition: transform 0.3s ease;
    color: #0d6efd;
}

.highlight-card:hover i {
    transform: scale(1.2);
}

.highlight-card .card-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #212529;
}

.highlight-card .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-card .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.highlight-card .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Staggered animation delays for highlights */
#highlights .col-md-4:nth-child(1) { animation-delay: 0.1s; }
#highlights .col-md-4:nth-child(2) { animation-delay: 0.2s; }
#highlights .col-md-4:nth-child(3) { animation-delay: 0.3s; }
#highlights .col-md-4:nth-child(4) { animation-delay: 0.4s; }
#highlights .col-md-4:nth-child(5) { animation-delay: 0.5s; }
#highlights .col-md-4:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .highlight-card {
        margin-bottom: 20px;
    }
    
    .highlight-card .card-body {
        padding: 1.5rem;
    }
}
