       /* Custom CSS */
    body{
           background-color:black;
       }
       .navbar {
        background-color: #f0f8ff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        color: #333;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-nav .nav-link:hover {
        color: #ff5722;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-item .fa {
        margin-right: 8px;
    }

    .navbar-nav .nav-link:hover::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        height: 3px;
        background-color: #ff5722;
        border-radius: 3px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler .fa {
        color: #333;
    }

    .nav-shadow:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /*--------------slide---------------------*/
       .carousel-item {
    height: 100vh;
    background-color: #000;
}

.carousel-item img {
    padding-bottom: 110px;
    margin-top: 110px;
    height: 100%;
    width:100%;
}

.carousel-caption {
    bottom: 20%;
}

.btn-play {
    padding: 10px 20px;
    background-color: #ff5722;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
}

.btn-play:hover {
    background-color: #ff7043;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
    }

    .btn-play {
        font-size: 1rem;
    }
}

    /*------------------------vidoe+details-------------------------*/
        /* Container styling */
.video-div, .text-div {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom:20px;
}

.video-div {
    background-color: #f4f4f4;
}

/* Text Styling */
.text-div {
    background-color: #fff;
}

.heading {
    color: #ff5722;
    font-weight: 700;
}

.subheading {
    color: #ffccbc;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.features-list li i {
    margin-right: 10px;
    color: #ff5722;
}

/* Button Styling */
.btn-play-now {
    display: block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: transparent;
    color: #ff5722;
    font-weight: bold;
    border: 2px solid #ff5722;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-play-now:hover {
    background-color: #ff5722;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-div, .text-div {
        
    }
    .row {
        flex-direction: column;
    }
}
/*----------------------4 section=------------------------------------*/
/* Overall Section Styling */
.stats-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Individual Stat Div Styling */
.stats-div {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

/* Blurred Background */
.stats-div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('blur-bg.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(10px);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
}

/* Logo Styling */
.stats-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Text Styling */
h3 {
    color: #ff5722;
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-div {
        margin-bottom: 30px;
    }
}
/*-----------------------3 image div------------------------*/
/* Overall Section Styling */
.centered-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Main Heading Styling */
.main-heading {
    color: #ff5722;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Subheading Styling */
.subheading {
    color: #ffccbc;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Paragraph Styling */
.description {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Divs */
.features-row {
    margin-top: 40px;
}

.feature-div {
    margin-bottom: 30px;
}

.feature-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Image Styling */
.feature-image {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 50%;
}

/* Hover Effects */
.feature-div:hover .feature-content {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.feature-div:hover h3 {
    color: #ff5722;
}

/* Feature Heading */
h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Feature Paragraph */
p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-content {
        padding: 15px;
    }
}
/*----------------------------------------8 bar --------------------------------------*/
    /* Overall Section Styling */
.features-grid-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Main Heading */
.grid-heading {
    color: #ff5722;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Features Grid Styling */
.features-grid {
    margin-top: 30px;
}

/* Feature Item Styling */
.feature-item {
    margin-bottom: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Image Styling */
.feature-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
}

/* Text Styling */
h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

h4 {
    color: #777;
    font-size: 1.1rem;
}

/* Hover Effect */
.feature-item:hover .feature-box {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.feature-item:hover h3 {
    color: #ff5722;
}

/* Play Button */
.play-button {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 40px;
    }
}
/*-----------------------------auto div------------------------------------*/
/* Section Styling */
.scrolling-gallery-section {
    background-color: #f1f1f1;
    padding: 60px 0;
}

/* Heading Styling */
.gallery-heading {
    color: #ff5722;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Scrolling Wrapper Styling */
.scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

/* Scrolling Images */
.scrolling-images {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

/* Individual Image Styling - Updated to 200px */
.scrolling-img {
    width: 200px;
    height: 200px;
    margin: 0 15px;
    display: inline-block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scroll Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrolling-img {
        width: 150px;
        height: 150px;
    }
}
/*------------------------3 item join--------------------*/
/* Section Styling */
.blur-bg-section {
    background-image: url('background.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: white;
}

/* Blur Effect */
.blur-bg-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text visibility */
    filter: blur(5px); /* Apply blur to background */
    z-index: 0;
}

/* Text and Button Over Blur */
.blur-bg-section h1,
.blur-bg-section h3,
.blur-bg-section .btn {
    position: relative;
    z-index: 1; /* Ensures text and button are on top of blur */
}

/* Heading Styling */
.main-heading {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Subheading Styling */
.sub-heading {
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Button Styling */
.btn-custom {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    transition: 0.3s ease;
}

/* Button Hover Effect */
.btn-custom:hover {
    background-color: #ff8a50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .btn-custom {
        font-size: 1rem;
    }
}
/*-------------------------scroll 9 ----------------------------------*/
/* Section Styling */
.scrolling-gallery-section-9 {
    background-color: #f1f1f1;
    padding: 60px 0;
}

/* Heading Styling */
.gallery-heading {
    color: #ff5722;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Scrolling Wrapper Styling */
.scrolling-wrapper-9 {
    overflow: hidden;
    white-space: nowrap;
}

/* Scrolling Images */
.scrolling-images-9 {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left-9 30s linear infinite;
}

/* Individual Image Styling - Updated to Larger Images */
.scrolling-img-9 {
    width: 300px;
    height: 450px;
    margin: 0 15px;
    display: inline-block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scroll Animation */
@keyframes scroll-left-9 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrolling-img-9 {
        width: 300px;
        height: 450px;
    }
}
/*-----------------------faq--------------------*/
#faq-section h2 {
    font-weight: bold;
    color: #333;
}

/* FAQ Styling */
.faq-item {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 0.9rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-question.active .toggle-icon {
    color: #ff5722;
}

/* Adjustments for Paragraphs */
.col-lg-6 p {
    font-size: 1rem;
    margin-bottom: 15px;
}
/*-----------------------tournament------------------------------*/
#upcoming-tournaments h2 {
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Tournament Box Styling */
.tournament-box {
    display: none; /* Hide all boxes initially */
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.tournament-content h4 {
    color: #ff5722;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tournament-content p {
    color: #333;
    font-size: 0.9rem;
}

/* Pagination Button Styling */
.pagination-btn {
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-btn.active {
    background-color: #ff5722;
}
/*---------------------------Recent matches -----------------------*/
#recent-upcoming-matches h2 {
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Match Box Styling */
.match-box {
    display: none; /* Hide all boxes initially */
    background-color: #f2f2f2;
    border: 2px solid #999;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.match-content {
    padding: 15px;
    text-align: center;
}

/* Team Logo and VS Text */
.team-logo {
    width: 50px;
    height: 50px;
}

.vs-text {
    font-size: 1.5rem;
    color: #333;
}

/* Match Score and Result */
.match-result {
    color: #ff5722;
    font-weight: bold;
}

/* Pagination Button Styling */
.pagination-btn {
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-btn.active {
    background-color: #ff5722;
}
/*----------------------------------------footer----------------------------------*/
.footer {
    background-color: #343a40; /* Matching the nav bar color */
    border-top: 2px solid #555; /* Similar border to header */
}

.footer-logo img {
    display: block;
    margin: 0 auto;
}

.footer p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer h5 {
    font-weight: bold;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #ff5722; /* Matching the hover effect from the navbar */
}

.footer .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .list-unstyled li a {
    font-size: 0.9rem;
}

.footer .list-unstyled li a i {
    margin-right: 5px;
}

.footer .d-flex a i {
    font-size: 1.5rem;
    color: #fff;
}

.footer .d-flex a:hover i {
    color: #007bff; /* Matching the hover color from the navbar */
}

.copyright p {
    font-size: 0.8rem;
    color: #ccc;
}
/*-----------------------------fixed div----------------------*/
/* WhatsApp Icon - Bottom Left */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

/* Chatbot Icon - Bottom Right */
.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: none; /* Initially hidden */
    z-index: 1000;
    flex-direction: column;
}

.chat-header {
    background-color: #007bff;
    padding: 10px;
    color: #fff;
    text-align: center;
    position: relative;
}

.chat-header h5 {
    margin: 0;
    font-size: 1.2rem;
}

.close-chat {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background-color: #f1f1f1;
    overflow-y: auto;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chat-input {
    width: 75%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.send-btn {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}