/* Awards Section Styling */

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Award Cards */
.award-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Glossy effect for award cards */
.award-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 25%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    pointer-events: none;
    z-index: 1;
}

.award-card:hover::after {
    left: 100%;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #db7093);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.award-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.15);
}

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

.award-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ff69b4;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.4);
    z-index: 3;
}

.award-icon {
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    background: rgba(255, 105, 180, 0.1);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.award-card:hover .award-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 105, 180, 0.2);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.award-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.award-title {
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.award-meta {
    color: #db7093;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.award-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.award-card:hover .award-description {
    color: #ff69b4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .award-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}
