
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Basic Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.navbar .logo a {
    text-decoration: none;
    color: white;
}

.navbar .logo img {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #bdb002;
    font-size: 18px;
}

.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; 
        width: 100%;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 0;
        z-index: 1;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 20px;
    }

    .hamburger {
        display: flex; 
    }

    .nav-links.active {
        display: flex; 
    }
}

/* General styles for the homepage container */
.homepage {
    width: 100%;
    height: 100%; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}


.image-container {
    width: 100%;
    height: 660px;  
    background-image: url('banner_infinity.png'); 
    background-size: cover;
    background-position: center;
}

/* Mobile-specific Background Image */
@media (max-width: 767px) {
    .image-container {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('first.jpg');
    }
}
@media (max-width: 480px) {
    .image-container {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('first.jpg');
    }
}
@media (max-width: 320px) {
    .image-container {
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url('first.jpg');
    }
    
}
/* @media (max-width: 300px) {
    .image-container {
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url('000.jpg');
    }
    
} */

.bg_img {
    text-align: center;
    color: white; 
    padding: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .bg_img h1 {
        font-size: 2rem;
    }
    
    .w_btn {
        font-size: 1rem;
        padding: 8px 15px; 
    }
}

@media (max-width: 480px) {
    .bg_img h1 {
        font-size: 1.5rem; 
    }
    
    .w_btn {
        font-size: 0.9rem; 
        padding: 6px 12px; 
    }
}

.content-container {
    display: flex;
    justify-content: space-between; 
   background-color: #000;
    padding: 20px;
    flex-wrap: wrap; 
}

/* video section */
        
/* About Us Section */
.about-us {
    width: 48%;
    height: 1120px;
    text-align: center; 
    position: relative;
    overflow: hidden; 
    margin-top: 20px;
    display: flex;
}

/* Video Styling */
.about-video {
    width: 100%; 
    object-fit: fill; 
}

/* Image Section */
.image-section {
    text-align: center;
    margin-top: 20px;
}

/* Optional: Make layout responsive */
@media screen and (max-width: 768px) {
    .about-us {
        height: 470px; 
    }
}

/* video section  end*/



.image-section {
    width: 48%; 
    box-sizing: border-box;
    padding: 10px;
}


.image-section img {
    width: 100%; 
    height: auto;
    
}
.whatsapp-btn {
    background-color: #378328; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E; 
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; 
        align-items: center; 
    }

    .about-us,
    .image-section {
        width: 100%; 
        margin-bottom: 20px;
    }
    .whatsapp-btn {
        font-size: 1rem; 
        padding: 10px 18px; 
    }
}

.features-benefits-container {
    padding: 20px;
    text-align: center; 
    background-color: #000;
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap; 
}


.features-benefits-container h2 {
    color: #bdb002;
    font-size: 2.5rem;
    font-family: 'Nunito Sans';
    margin-bottom: 20px;
    width: 100%; 
}


.feature-item {
    width: 23%; 
    box-sizing: border-box;
    padding: 20px;
    margin: 10px;
    border: 3px solid #ddbd0a; 
    border-radius: 8px; 
    text-align: center;
    background-color: #000000; 
}


.feature-item h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}


.feature-item p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}


.feature-btn {
    background-color: #04802d; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.feature-btn:hover {
    background-color: #128C7E;
}
.feature-item:hover {
    background-color: #bdb002;
}

@media (max-width: 768px) {
    .features-benefits-container {
        flex-direction: column; 
        align-items: center;
    }

    .feature-item {
        width: 100%; 
        margin-bottom: 20px; 
    }

  
    .feature-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }
}
/* upcomming tournaments */
.Upcoming-tournaments-container {
    padding: 20px;
    background-color: #000;
    text-align: center;
    overflow: hidden; 
    position: relative;
}

.Upcoming-tournaments-container h2 {
    color: #bdb002;
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 100%;
}

.tournaments-slider {
    display: flex;
    flex-wrap: nowrap;  
    transition: transform 1s ease; 
}

.tournaments-item {
    width: 23%; 
    box-sizing: border-box;
    padding: 20px;
    margin: 0 10px;
    border: 3px solid #e7d801;
    border-radius: 8px;
    text-align: center;
    background-color: #000000;
    color: white;
}

.tournaments-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tournaments-item p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.tournaments-btn {
    background-color: #037a2b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tournaments-btn:hover {
    background-color: #128C7E;
}

.tournaments-item:hover {
    background-color: #bdb002;
} 

/* .Upcoming-tournaments-container end */

/* khelo or jeeto */
    .Khelo-or-jeeto{
                    display: flex;
                    background-color: #000000;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
    }
    .Khelo-or-jeeto h1{
                        color: #bdb002;
                        font-size: 2.5rem;
                       font-family: 'Nunito Sans';
    }
/* khelo or jeeto end*/

.swiper-slide img{
                border-radius: 2px;
                align-items: center;
                justify-content: center;
                text-align: center;
}
.mySwiper{
    
    background: transparent;
    
}

/* slider end*/


/* slider mobile responsive */
.cfs {
    background-color: #000000 ;
    background-size: cover; 
    height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    text-align: center;
  }
  

  @media screen and (max-width: 767px) {
    .swiper-slide img {
      width: 100%; 
      height: auto; 
    }
  }
  
 
  .img-responsive {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }

  .swiper-container {
    width: 100%;
  }
  
 /* slider mobile responsive end */


/* best services */
.best-services-container {
    padding: 20px;
    background-color: #000;
    text-align: center; 
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap; 
}


.best-services-container h2 {
    color: #bdb002;
    font-family: 'Nunito Sans';
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 100%; 
}


.best-services-item {
    width: 23%; 
    box-sizing: border-box;
    padding: 20px;
    margin: 10px;
    border: 3px solid #ddbd0a; 
    border-radius: 8px; 
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #000000; 
}


.best-services-item h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}


.best-services-item p {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}


.best-services-btn {
    background-color: #04802d; 
    color: white;
    margin-top: 10%;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.best-services-btn:hover {
    background-color: #128C7E;
}
.best-services-item:hover {
    background-color: #bdb002;
}

@media (max-width: 768px) {
    .best-services-container {
        flex-direction: column; 
        align-items: center; 
    }

    .best-services-item {
        width: 100%; 
        margin-bottom: 20px; 
    }

  
    .best-services-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }
}
/* best services end */
.get-in-touch{
    height: 60vh;
    background-image: url('Footer_infinity.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.text-container h2 {
    color: #bdb002;
    font-family: 'Nunito Sans';
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}


.text-container p {
    color: #f5f4e9;
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.whatsapp-btn {
    background-color: #12770e; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E; 
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .get-in-touch {
        height: auto; 
        padding: 20px;
    }

    .text-container {
        width: 100%; 
        /* padding: 15px; */
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}
.disclaimer {
    background-color: #000;
    color: white;
    text-align: center; 
    padding: 20px 0; 
}

.disclaimer p {
    font-size: 1rem;
    margin: 5px 0;
}

.disclaimer p:first-child {
    font-weight: normal; 
}

.disclaimer p:last-child {
    font-weight: bold; 
}

/* WhatsApp icon styling */
.whatsapp-icon-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:hover {
    cursor: pointer;
}

/* telegram icon styling */
.telegram-icon-container {
    position: fixed;
    bottom: 8px;
    right: 10px;
    z-index: 1000;
}

.telegram-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.telegram-icon:hover {
    cursor: pointer;
}

