 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


/*@font-face {*/
/*  font-family: 'EpicVictory';*/
/*  src: url('../font/Zuume-Black.woff2') format('woff2');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: 'EpicVictory2';*/
/*  src: url('../font/Zuume-Light.woff2') format('woff2');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

    body {
/*      font-family: Arial, sans-serif;*/
/*font-family: 'EpicVictory2', Arial, sans-serif !important;*/
font-family: "Montserrat", sans-serif;
font-weight: 400;

    }

   /* nav {
      background-color: #ffffff00;

      padding: 10px 20px;
      position: relative;
    }*/


   .video-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.video-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Text & Button Content */
.video-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.banner-btn {
  padding: 12px 25px;
  background-color: #1A237E;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.banner-btn:hover {
  background-color: #ef9b2e;
  color: #000;
}


    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      padding: 10px 20px;
    }


nav.scrolled {
  background: linear-gradient(90deg, #1A237E, #1A237E, #1A237E);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
      background: #ffffff;
    border-radius: 10px;

    }

    .logo img {
      height: 80px;
      /*margin-right: 10px;*/
    }

    .logo span {
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
    }

    .menu a:hover {
      color: #2cc374;
    }

    .book-trial {
      background-color: #313983;
      color: white;
      padding: 8px 14px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 10px;
      }

      .menu.active {
        display: flex;
      }

      .book-trial {
        margin-top: 10px;
        text-align: center;
      }

      .hamburger {
        display: block;
      }
    }



/*    team css*/


.team-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid #ff5722;
  transition: transform 0.3s;
}

.team-img:hover {
  transform: scale(1.1);
}

/* Highlight odd team cards */
.team-card:nth-child(odd) {
  border: 2px solid #1a237e; /* Classic orange border */
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.2); /* Softer orange glow */
}




/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/
/*player css*/

.players-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
 
  /*border-bottom: 3px solid #ef9b2e;*/
  display: inline-block;
 
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.player-img-box {
  position: relative;
  border: 5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.player-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.player-img-box:hover {
  transform: scale(1.03);
  border-color: #1a237e;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.player-img-box:hover .overlay {
  opacity: 1;
}




/*points table*/

.points-table-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

 

.table-responsive {
  overflow-x: auto;
}

.points-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.points-table th, .points-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
}

.points-table th {
  background-color: #313983;
  color: white;
  font-weight: 600;
}

.points-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.team-logo {
  height: 25px;
  vertical-align: middle;
  margin-right: 8px;
}

.form {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin: 0 2px;
  border-radius: 50%;
  font-size: 0.8rem;
  color: white;
  font-weight: bold;
}

.form.win {
  background-color: #4caf50;
}

.form.loss {
  background-color: #f44336;
}

.form.nr {
  background-color: #9e9e9e;
}


/*main players*/
/*main players*/
/*main players*/
/*main players*/
/*main players*/
/*main players*/
/*main players*/
/*main players*/
/*main players*/

/* Custom width for 5-column layout */
@media (min-width: 768px) {
  .custom-5 {
    width: 20% !important;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0px !important;
  }
}

.main-players-section {
  background: linear-gradient(to right, #1f1c2c, #282828);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 3px solid #ffc107;
  display: inline-block;
  padding-bottom: 8px;
}

.player-card {
  background: #ffffff10;
  border: 1px solid #ffffff30;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(6px);
}

.player-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.player-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffc107;
  margin-bottom: 15px;
}

.player-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.player-role {
  font-size: 0.9rem;
  color: #ddd;
}



/*sponsor logo*/

.sponsor-logos-section {
  /*background: linear-gradient(135deg, #0f2027, #2c5364);*/
      background: linear-gradient(135deg, #011fa1, #024fe8);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ef9b2e;
 
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  gap: 40px;
  align-items: center;
}

.logo-track img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  /*filter: grayscale(100%) brightness(1.1);*/
  opacity: 0.9;
}

.logo-track img:hover {
  /*filter: grayscale(0%) brightness(1.2);*/
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .logo-track {
    gap: 30px;
  }
  .logo-track img {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 2rem;
  }
  .logo-track {
    gap: 20px;
  }
  .logo-track img {
    width: 60px;
  }
}














/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */

.gallery-section {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.section-heading-gallery {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 50px;
 
  letter-spacing: 1.5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
  transition: transform 0.3s ease-in-out;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 2.5rem;
  }
}







/*footer css*/



/* Footer Section */
/* Footer Section */
.footer-section {
  background-color: #000000;
  color: #fff;
  padding: 60px 20px;
/*  font-family: 'Georgia', serif;*/
  text-align: left;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flexbox for 4 columns */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  padding: 10px 20px;
  margin-top: 20px;
  min-width: 250px;
}

.footer-column h2 {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #313983;
  text-transform: uppercase;
}

.footer-column p,
.footer-column ul {
  font-size: 1rem;
  color: #ecf0f1;
  line-height: 1.5;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #f39c12;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #bdc3c7;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    min-width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}







.cdtxt{
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #000 !important;
}







