/* AWARDS PAGE CSS */

/* Hero Section */
.awards-hero {
    position: relative;
    min-height: 60vh;
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), url('../../assets/images/hero-section/Award and recognition.webp') no-repeat center center/cover;
    border-bottom: 4px solid var(--color-professional-purple);
}

.awards-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 120%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.awards-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.awards-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}

.awards-hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--color-sky-blue);
    line-height: 1.7;
}

.awards-search-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 0 0;
    text-align: center;
}

.awards-search-container input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    outline: none;
    font-family: 'Inter', sans-serif;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
}

.awards-section.bg-white {
    background-color: #ffffff;
    color: var(--dark-text);
}

.awards-section.bg-dark {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Year Title with Border Line */
.award-year-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.award-year-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #2778D6;
    border-radius: 3px;
}

.awards-section.bg-dark .award-year-title::after {
    background-color: #5a9df5;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Award Card */
.award-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-text);
    height: 100%;
}

.awards-section.bg-dark .award-card {
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    color: var(--dark-text);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.awards-section.bg-dark .award-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.award-img-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.award-img-wrapper img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-card:hover .award-img-wrapper img {
    transform: scale(1.05);
}

.award-title {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
    color: #333;
}

.awards-section.bg-dark .award-title {
    color: #333;
}

.award-desc {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
    margin-top: 5px;
}

.awards-section.bg-dark .award-desc {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 991px) {
    .awards-hero {
        min-height: auto;
        padding: 140px 0 60px;
    }
    .awards-hero h1 {
        font-size: 2.4rem;
    }
    .awards-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .awards-hero {
        padding: 120px 0 50px;
    }
    .awards-hero h1 {
        font-size: 2rem;
    }
    .awards-hero p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .awards-hero {
        padding: 90px 0 40px;
    }
    .awards-hero h1 {
        font-size: 1.6rem;
    }
    .awards-hero p {
        font-size: 0.85rem;
    }
}
