#award-slider{
    margin-top: 60px;
}
#award-slider .slick-track {
    display: flex;
    align-items: center;
}
#award-slider .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
#award-slider .slick-slide a{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1199px){
    #award-slider .slick-slide img{
        width: 80%;
    }
    #award-slider{
    margin-top: 25px;
    }
}

/* ===========================
   HERO SECTION - Premium
   =========================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(219, 32, 50, 0.15);
    border: 1px solid rgba(219, 32, 50, 0.4);
    color: #ff6b7a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.1s;
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.25s;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.text-hero-red {
    color: #db2032;
    position: relative;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.4s;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.55s;
}

.btn-hero-primary {
    background: #db2032;
    color: #fff;
    border: 2px solid #db2032;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(219, 32, 50, 0.4);
}

.btn-hero-primary:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 8px 30px rgba(219, 32, 50, 0.6);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    margin-bottom: 3rem;
    width: fit-content;
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.7s;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.8rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Custom Controls */
.hero-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-ctrl:hover {
    background: #db2032;
    border-color: #db2032;
    transform: translateY(-50%) scale(1.1);
}

.hero-ctrl-prev { left: 1.5rem; }
.hero-ctrl-next { right: 1.5rem; }

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-slide {
        min-height: 100svh;
    }

    .hero-stats {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stat-item {
        padding: 0.5rem 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-ctrl {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .hero-ctrl-prev { left: 0.8rem; }
    .hero-ctrl-next { right: 0.8rem; }
}