/* Hero Section */
.logo-slider {
    background: var(--primary-white);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/assets/images/jafferyu17.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

.cta-button.secondary {
    background-color: rgb(0, 149, 255);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Featured Content */
.featured-content {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

.featured-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* News Slider */
.news-slider {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -1.5rem;
}

.slide {
    min-width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slide img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.slide-content {
    flex: 1;
}

.slide-content h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.slide-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.prev:hover,
.next:hover {
    background: var(--hover-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Quick Stats */
.quick-stats {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quick-stats h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-content .container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-track {
        gap: 2rem;
    }

    .logo-track img {
        height: 40px;
    }

    .slide {
        flex-direction: column;
        text-align: center;
    }

    .slide img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo-track {
        gap: 1.5rem;
    }

    .logo-track img {
        height: 30px;
    }
}