.awards-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(199, 32, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(24, 94, 141, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.section-title p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.award-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.award-icon {
    background: var(--primary-color);
    color: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    overflow: hidden;
}

.award-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.award-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.award-card:hover .award-icon i {
    transform: scale(1.1);
}

.award-content {
    padding: 30px 25px;
    text-align: center;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
    line-height: 1.4;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-subtitle {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(24, 94, 141, 0.08);
    border-radius: 6px;
    display: inline-block;
    border-left: 3px solid var(--secondary-color);
}

.btn-download {
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(24, 94, 141, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-download::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-download:hover {
    color: #fff;
    background: #154a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(24, 94, 141, 0.3);
}

.btn-download:hover::after {
    transform: translateX(0);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
    margin-top: 30px;
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h4 {
    color: #718096;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #a0aec0;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Card border accent on hover */
.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.award-card:hover::before {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .awards-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .award-card {
        margin-bottom: 30px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .award-icon {
        height: 90px;
        font-size: 38px;
    }
    
    .award-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .award-title {
        font-size: 1.1rem;
    }
    
    .award-icon {
        height: 80px;
        font-size: 34px;
    }
    
    .btn-download {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}