*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none !important;
}
li{
    color: #fff;
    list-style: none;
}
span{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
h1{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    padding-top: 20px;
}
h2{
    color: #fff;
}
h3{
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    text-align: start;
}
h4{
    font-size: 20px !important;
    color: #fff;
    font-weight: bold !important;
    padding-top: 20px;
    text-align: start !important;
}
h5{
    font-size: 50px !important;
    color: #4876CE;
    font-weight: bold !important;
    padding-top: 20px;
    text-align: center !important;
}
p{
    font-weight: 600;
    color: #fff;
}
.sidebar {
    position: fixed;
    top: 120px;
    left: 0;
    height: 100vh;
    background-color: #EDF1F3;
    color: #000;
    width: 200px !important;
    transition: width 0.3s;
    overflow-x: hidden;
  }

  .sidebar.open {
    width: 200px;
  }


  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar ul li {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    color: #000;
  }

  .sidebar ul li:hover {
    background-color: #0183E1;
  }

  .sidebar ul li i {
    font-size: 18px;
    width: 30px;
    color: #000;
  }

  .sidebar ul li span {
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .sidebar.open ul li span {
    opacity: 1;
    margin-left: 10px;
    color: #000;
  }

  .main-content {
    margin-left: 60px;
    padding: 20px;
    transition: margin-left 0.3s;
  }

  .sidebar.open ~ .main-content {
    margin-left: 200px;
  }
  .saf{
    width: 40px;
    height: 40px;
}

    .btn-login {
      background-color: red;
      color: white;
    }
    .btn-login:hover {
      background-color: red;
      color: white;
    }
    .btn-signup:hover {
      background-color: green;
      color: white;
    }
    .btn-signup {
      background-color: green;
      color: white;
    }

  .back{
    margin-top: 20px;
  }
  /* header end */
  .content{
    margin-left: 230px;
    margin-top: 80px;
    background-color: #0b0d2a;
    color: #fff;
  }
  .carousel {
    overflow: hidden;
    width: 100%;

  }

  .carousel-track {
    display: flex;
    width: calc(6 * 200px * 2); /* 6 images * width * 2 for seamless loop */
    animation: slide 20s linear infinite;
  }

  .carousel img {
    width: 180px;
    /* height: 200px; */
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
  }
.carousel-caption {
  bottom: 25%;
  left: 8%;
  right: auto;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
}
.carousel-caption h2 {
  font-size: 2rem;
}
.carousel-caption p {
  font-size: 1.1rem;
}
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

.lock{
    border-top: 2px solid #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}


  @media only screen and (max-width: 476px){
    .navbar-nav{
        margin-left: 0px;
    }
    .sidebar{
        display: none;
    }
    .sign-btn{
        padding-top: 10px;
    }
    .logo{
        margin-left: 0px;
    }
    p{
        text-align: justify;
    }

    .content{
      margin-left: 0px;
    }
    .carousel img {
    width: 180px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 10px;
}
    }

    .sports-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sports-list li {
  display: flex;
  align-items: center;
  padding: 12px 16px;

  cursor: pointer;
}

.sports-list li:hover {
  background: #1a1a1a;
}

.sports-list li img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.sports-menu {
  position: fixed;
  top: 53px; /* Adjust based on your navbar height */
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: nowrap; /* Must be nowrap for horizontal scroll */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 25px;
  scrollbar-width: none; /* Hide scrollbar on Firefox */

}


    .sports-menu::-webkit-scrollbar {
      height: 5px;
    }

    .sports-menu::-webkit-scrollbar-thumb {
      background-color: #888;
      border-radius: 10px;
    }

    .menu-item {
      display: inline-block;
      color: #000;
      padding: 10px 10px;
      text-align: center;
      padding-bottom: 2px;
      font-weight: 600;
      transition: background 0.3s;
      font-size: 12px;
      border: 1px solid #0d6efd;
    }

    .menu-item img {
      width: 24px;
      height: 24px;
      margin-right: 5px;
      vertical-align: middle;
    }

    .menu-item:hover {
      background-color: #18325C;
      cursor: pointer;
      color: #fff;
    }
    .mee{
        width: 50px;
    }
     /* FAQ Section Styling */
  .faq-section {
    background: #18325C;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }

  .faq-container {
    max-width: 800px;
    margin: auto;
  }

  .faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
  }

  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }

  .faq-question {
    font-size: 16px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    display: block;
    position: relative;
    padding-right: 25px;
  }

  /* Plus/Minus Icons */
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #666;
    transition: transform 0.3s ease, content 0.3s ease;
  }

  input[type="checkbox"] {
    display: none;
  }

  input[type="checkbox"]:checked + .faq-question::after {
    content: '-';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
    color: white;
    margin-top: 0;
  }

  input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
    margin-top: 10px;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .faq-title {
      font-size: 20px;
    }
    .faq-question {
      font-size: 15px;
    }
    .faq-answer {
      font-size: 14px;
    }
  }
   .footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .footer-box h2,
  .footer-box h3 {
    color: #facc15;
    margin-bottom: 15px;
  }

  .footer-box p {
    font-size: 14px;
    line-height: 22px;
    color: #ddd;
  }

  .footer-box ul {
    list-style: none;
    padding: 0;
  }

  .footer-box ul li {
    margin-bottom: 8px;
  }

  .footer-box ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-box ul li a:hover {
    color: #facc15;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #bbb;
    border-top: 1px solid #333;
    padding-top: 15px;
  }

  /* Mobile Friendly */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-box h2,
    .footer-box h3 {
      margin-top: 10px;
    }
  }
  .footer {
    background:  black;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }

  .footer h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #facc15; /* gold highlight */
  }

  .footer ul {
    list-style: none;
    padding: 0;
  }

  .footer ul li {
    margin-bottom: 8px;
  }

  .footer ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer ul li a:hover {
    color: #facc15;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .footer-container {
      text-align: center;
    }
    .footer-box {
      margin-bottom: 20px;
    }
    .footer h4 {
      font-size: 15px;
      margin-top: 15px;
    }
    .footer ul li a {
      font-size: 15px;
    }
  }