/* Premium UI & Glassmorphism Effects */

/* Glass Panel for Why Choose Us */
.hira-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hira-glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.hira-glass-panel > * {
    position: relative;
    z-index: 1;
}

/* Stat Items */
.hira-why-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hira-why-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Awards Grid */
.hira-awards-grid {
    padding: 20px;
}

.hira-award-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dark-theme .hira-award-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hira-award-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.award-img-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.award-img-wrap img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.award-year {
    font-size: 12px;
    color: var(--color-primary, #e31e24);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.award-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #1b1b18;
}

.dark-theme .award-title {
    color: #fff;
}

/* Partners Slider */
.hira-partners-section {
    background: #fdfdfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.dark-theme .hira-partners-section {
    background: #121212;
    border-color: #222;
}

.partner-logo {
    max-height: 60px;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.dark-theme .partner-logo {
    filter: grayscale(100%) invert(1) opacity(0.6);
}

.dark-theme .partner-logo:hover {
    filter: grayscale(0%) invert(1) opacity(1);
}

/* Scroll-Driven Animations using modern CSS */
@supports (animation-timeline: view()) {
    .hira-glass-panel,
    .hira-award-card,
    .hira-quick-card {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 30%;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
