/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

/* Hero Section */
/* Hero Section */
.hero {
    width: 100vw; /* Full Width */
    height: 100vh; /* Full Screen Height */
    background: url('assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover; /* Ensures the image covers the full area */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden; /* Prevents any unwanted scroll */
}


/*.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}*/

.hero-content {
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content span {
    color: #EF5C38;
}
.ban {
    color: black;
    /* text-align: center !important; */
    padding-left: 100px;
}
.ban-p {
    color: black;
    
}
.btn {
    display: inline-block;
    background: #FFD700;
    color: #1e3c72;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    text-align: center;
    background: #eef1f7;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 300px;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Trending News Section */
.trending-news {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    text-align: center;
    color: white;
}

.trending-news h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.news-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-item {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

/* Featured Athletes Section */
.featured-athletes {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.featured-athletes h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.athlete-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.athlete-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 300px;
}

.athlete-item:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
}
@media (max-width: 768px) {
   .ban {
	padding-left: 7px;
}
}