/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

a .logo {
    width: 80px;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect for the logo */
a:hover .logo {
    transform: scale(1.06);
    opacity: 0.9; /* Adds opacity effect on hover */
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #ff6600, #e55d00);
    color: white;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 20px;
}

header .navbar {
    display: flex;
    align-items: center;

}

header .nav-list {
    display: flex;
    gap: 25px;
    font-size: larger;
}

header .nav-list li {
    position: relative;
}

header .nav-list a {
    color: white;
    font-size: 1em;
    padding: 5px 10px;
    position: relative;
}

header .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header .dropdown:hover .dropdown-menu {
    display: block;
}

header .buttons {
    display: flex;
    gap: 15px;
}

header .buttons button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

header .buttons button:hover {
    background: #e55d00;
}

header .menu-toggle {
    display: none;
}

/* Main Section */
main {
    padding-top: 100px;
    text-align: center;
    padding: 80px 20px;
}

main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff6600, #e55d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main p {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
    padding: 0 20px;
}

.action-buttons {
    margin: 40px 0;
}

.action-buttons button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin: 10px;
}

.action-buttons button:hover {
    background: #e55d00;
    transform: translateY(-5px);
}

.big-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 40px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #2a2a2a;
    text-align: center;
    color: #cccccc;
    margin-top: 40px;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ff6600;
}

.features .feature {
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.features .feature:hover {
    transform: translateY(-10px);
}

.features .feature h3 {
    font-size: 1.8em;
    color: white;
    margin-bottom: 15px;
}

.features .feature a {
    color: #ff6600;
    font-weight: bold;
}

/* Advanced Tech Section */
.advanced-tech {
    padding: 80px 20px;
    background: #1a1a1a;
    text-align: center;
    color: #cccccc;
}

.advanced-tech h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ff6600;
}

.advanced-tech .tech-feature {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.advanced-tech .tech-feature:hover {
    transform: translateY(-10px);
}

.advanced-tech .icon {
    font-size: 3em;
    color: #ff6600;
}

.advanced-tech .description h3 {
    font-size: 1.8em;
    color: white;
    margin-bottom: 15px;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: #2a2a2a;
    text-align: center;
    margin-top: 40px;
}

.blog-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ff6600;
}

.blog-section .blogs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.blog-section .blog-post {
    flex: 1 1 calc(33% - 20px);
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 40px;
}

.blog-section .blog-post:hover {
    transform: translateY(-10px);
}

.blog-section .blog-content {
    padding: 20px;
}

.blog-section .blog-content .category {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.blog-section .blog-content h3 {
    font-size: 1.5em;
    margin: 15px 0;
}

.blog-section .view-all-button {
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 40px;
}

.blog-section .view-all-button:hover {
    background: #e55d00;
}

/* Footer */
footer {
    padding: 40px 20px;
    background: #121212;
    text-align: center;
    margin-top: 40px;
}

footer .footer-content {
    color: #cccccc;
    margin-bottom: 20px;
}

footer .footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

footer .footer-nav a {
    color: #ff6600;
}

footer .social-icons a {
    color: white;
    margin: 0 15px;
    font-size: 1.5em;
}
.Sign_Up2{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white;

}
.Sign_Up{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white;
}
.learn-more2{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white;
}
.get-started2{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white;
}
.soccer{
    display: flex;
    height: 30%;
}
.learn-more3{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white;
}
.join{
    margin-right: 50px;
}
.joinus2{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white; 
}
.join2{
    border: none;
    border-radius: 25px;
    background-color: rgb(244, 139, 18);
    padding: 7px;
    font-size: larger;
    color: white; 
}
.logo1{
    height: 50px;
    width: 50px;
    
}