/* awards.css - Specific styles for Awards & Achievements Page */

:root {
    --neon-gold: #ff6600;
    --neon-gold-dim: rgba(255, 102, 0, 0.25);
    --gold-gradient: linear-gradient(135deg, #ff7900, #ff5500);
}

/* Page Header */
.awards-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: url('assets/trophy_bg.png') center center/cover no-repeat fixed;
    z-index: 1;
}

.awards-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(244, 246, 250, 0.95));
    z-index: -1;
}

.awards-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-shadow: 0 0 20px var(--neon-gold-dim);
}

.glow-gold {
    color: var(--neon-gold);
    text-shadow: 0 0 15px var(--neon-gold-dim);
}

.title-underline.gold {
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
}

/* Trophy Animation */
@keyframes floatTrophy {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes goldGlow {
    0% { box-shadow: 0 0 10px rgba(255, 102, 0, 0.1); }
    50% { box-shadow: 0 0 25px rgba(255, 102, 0, 0.2); }
    100% { box-shadow: 0 0 10px rgba(255, 102, 0, 0.1); }
}

/* Awards Counters Section */
.awards-counter-section {
    padding: 3rem 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.awards-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.award-counter-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    animation: goldGlow 4s infinite ease-in-out;
    transition: transform 0.4s ease;
    box-shadow: var(--glass-shadow);
}

.award-counter-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-gold);
}

.award-counter-icon {
    font-size: 2.5rem;
    color: var(--neon-gold);
    margin-bottom: 1rem;
    animation: floatTrophy 4s infinite ease-in-out;
}

.award-counter-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-head);
    margin-bottom: 0.5rem;
}

.award-counter-label {
    color: var(--text-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections - Expertise Areas */
.expertise-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--glass-shadow);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.expertise-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--neon-gold-dim);
}

.expertise-card:hover::before {
    transform: scaleY(1);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--neon-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-silver);
    line-height: 1.6;
}

/* Certificate Showcase */
.certificates-section {
    padding: 6rem 0;
    background: var(--bg-navy);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.cert-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--glass-shadow);
}

.cert-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--neon-gold-dim);
    z-index: 2;
    border-color: var(--neon-gold);
}

.cert-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f4f6fa;
}

.cert-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.cert-info {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
}

.cert-info h4 {
    color: var(--neon-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cert-info p {
    color: var(--text-silver);
    font-size: 0.9rem;
}

/* Achievement Timeline */
.achievement-timeline {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.a-timeline-container {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.a-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background: var(--neon-gold-dim);
}

.a-timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.a-timeline-item:last-child {
    margin-bottom: 0;
}

.a-timeline-icon {
    position: absolute;
    left: 20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-gold);
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--neon-gold-dim);
    z-index: 2;
}

.a-timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--neon-gold);
    transition: transform 0.3s ease, background 0.3s ease;
}

.a-timeline-item:hover .a-timeline-content {
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 10px 30px var(--neon-gold-dim);
}

.a-timeline-year {
    color: var(--neon-gold);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.a-timeline-content h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.a-timeline-content p {
    color: var(--text-silver);
}

/* CTA Banner */
.awards-cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-navy);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.awards-cta::before {
    content: '\f091';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(255, 102, 0, 0.03);
    pointer-events: none;
}

.awards-cta h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .awards-header h1 { font-size: 2.5rem; }
    .a-timeline-container::before { left: 20px; }
    .a-timeline-item { padding-left: 60px; }
    .a-timeline-icon { left: 0; width: 30px; height: 30px; font-size: 1rem; }
    .cert-grid { grid-template-columns: 1fr; }
}
