/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5f7 100%);
    padding: 70px 0;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.awards-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6dbdc8 0%, #5aacb7 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.award-card:hover::before {
    transform: scaleY(1);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
}

.award-card:hover .award-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.5);
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-info {
    flex: 1;
}

.award-info h3 {
    font-size: 1.4rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.award-year {
    font-size: 0.95rem;
    color: #6dbdc8;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(109, 189, 200, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.award-desc {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .awards-title {
        font-size: 2rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-card {
        padding: 25px 20px;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
    }
    
    .award-icon i {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .award-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .award-icon {
        margin-bottom: 10px;
    }
}
