/* ========================================
   Awards Hero Section Styles (Mirrors Career)
   ======================================== */
.awards-hero {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.awards-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.awards-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.awards-title+.awards-subtitle {
    margin-top: 0.5rem;
}

.awards-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ========================================
   Tabs & Content Styles
   ======================================== */
.awards-main-section {
    padding: 4rem 1rem;
    background-color: #fff;
    min-height: 60vh;
}

.awards-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-radius: 4px 4px 0 0;
}

.tab-btn:hover {
    color: #007bff;
    background-color: #f9f9f9;
}

.tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.review-quote {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review-quote::before {
    content: "“";
    font-size: 3rem;
    color: #007bff;
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: serif;
}
.exp-name{
    text-align: right;
    font-size: large;
    font-style: italic;
}

/* Awards List */
/* Awards Grid (Reuses/Extends Grid) */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.award-title-group {
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-family: Arial, sans-serif;
}

.award-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.award-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.award-badge-icon {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.award-badge-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.read-more-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.read-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .awards-title {
        font-size: 1.8rem;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 1px solid #eee;
        border-radius: 4px;
        text-align: center;
        background-color: #f9f9f9;
    }

    .tab-btn.active {
        background-color: #e7f1ff;
        border-bottom-color: transparent;
    }
}