*{
    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: gold;
    font-weight: bold;
    text-align: start;
}
h4{
    font-size: 20px !important;
    color: gold;
    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: 0;
    left: 0;
    height: 100vh;
    background-color: #42424D;
    color: white;
    width: 60px;
    transition: width 0.3s;
    overflow-x: hidden;
  }

  .sidebar.open {
    width: 200px;
  }

  .sidebar .toggle-btn {
    text-align: center;
    padding: 15px;
    cursor: pointer;
    background-color: #444;
  }

  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar ul li {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
  }

  .sidebar ul li:hover {
    background-color: #555;
  }

  .sidebar ul li i {
    font-size: 18px;
    width: 30px;
    color: #fff;
  }

  .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;
  }

  .main-content {
    margin-left: 60px;
    padding: 20px;
    transition: margin-left 0.3s;
  }

  .sidebar.open ~ .main-content {
    margin-left: 200px;
  }
  .saf{
    width: 40px;
    height: 40px;
}
.logo{
    width: 200px;
    margin-left: 50px;
}
.nav-link{
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
}

.navbar-nav{
    margin-left: 100px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #161617; /* Background zaroori hai */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bottom shadow */
  }
  
  
  .navbar-light .navbar-toggler-icon {
  
    color: #fff !important;
    
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .navbar-toggler{
    background-color: #fff;
  }
  .nav-item {
    color: #fff !important;
    margin-left: 20px;
  }
  .login-btn {
    background-color: #161617;
    color: #fff;                   
    border: none;
    padding: 8px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px !important;
    margin-left: 20px;
  }
  .sign-btn {
    background-color: #F9D949;
    color: #000;                   
    border: none;
    padding: 8px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px !important;
    margin-left: 10px;
  }
  .back{
    margin-top: 20px;
  }
  /* header end */
  .carousel {
    overflow: hidden;
    width: 100%;
    background: #000;
  }

  .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;
    border: 4px solid gold; /* ✨ Gold border */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6); /* ✨ Gold shadow */
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
.took{
    background-image: url('img/casino.webp');
    background-position: center;
    background-size: cover;
    width: 48%;
    margin-left: 10px;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.look{
    background-image: url('img/sport-bg.webp');
    background-position: center;
    background-size: cover;
    width: 48%;
    margin-left: 10px;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.ply{
    background-color: gold;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600px;
    border-radius: 20px;
    border: none;
}
.buck{
    background-color: #42424D;
    border-radius: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.lock{
    border-top: 2px solid #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
}
.slider-wrapper {
    overflow: hidden;
    background: #000; /* Optional background */
    padding: 20px 0;
  }

  .slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 20px;
  }

  .slider-track img {
    height: 80px; /* Set as needed */
    width: auto;
    border: 2px solid gold;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
    border-radius: 6px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  #whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
    }
    #whatsapp-button a img {
      width: 60px;
      height: auto;
    }

  @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;
    }
    .look{
        width: 90%;
        margin-top: 10px;
    }
    .took{
        width: 90%;
        margin-top: 10px;
    }
    .buck{
        display: none;
    }
}
