 /* Hero Section */
 .hero-section {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin-top: 80px;
}

.slideshow {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(88, 27, 24, 0.8);
    height: 150px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .players-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .squad-header h2 {
        font-size: 2em;

    }
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.feature i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--bg-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;

}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}