#herosection{
    height: 580px;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}
.major-filter {
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin: 1rem 0;
    /* border: 3px solid black; */
}

.major-filter div {
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}
.major-filter div:hover{
    color: #FF6200;
}

.major-filter div.active {
    color: #FF6200;
    border-bottom: 2px solid #FF6200;
}

.filter-container h1{
    font-weight: 600;
}

.filter-container .heads-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

#clarall{
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
    color: #FF6200;
}

.see-more{
    text-align: left;
    color: #FF6200;
}

.hidden {
    display: none !important;
}
.featured-games:not(.hidden) {
    display: block;
}
.grounds-card{
    margin:0px 1px;
    min-width: 300px;
    height: 350px;
    flex-shrink: 0; 
    width: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    /* border: 2px solid red; */
    border-radius: 10px;
    box-shadow: 0.5px 0.5px 2px 0.5px black;
    cursor: pointer;
}
.grounds-card .img-holder{
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    /* border: 3px solid black; */
}
.grounds-card .para-content{
    font-size: 20px;
    font-weight: 600;
    margin-top: 2px;
    text-align: left;
}
.content-main{
    padding: 5px 10px;
    /* border: 2px solid rebeccapurple !important; */
}
.content-main .bi{
    font-size: 18px;
}
.display-flex{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 14px;
    margin-top: 5px;
}
.location-section-strong,.timing-section-strong,.available-section-strong,.rating-section-strong{
    font-weight: 550;
}
.rating-section-img img{
    width: 100px;
}
.overflow{
    white-space: wrap;
    text-align: left;
}
/* .iconstournment{
    font-size: 16px;
} */
.card-container {
    perspective: 1000px;
    position: relative;
    min-width: 300px;
    height: 350px;
  }

  .card-coach {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .card-container:hover .card-coach {
    transform: rotateY(180deg);
  }

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .card-front {
    background-position: center;
    background-size: cover;
  }

  .card-back {
    background-position: center;
    background-size: cover;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: start;
    overflow: hidden;
  }

  .card-name-flip {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: white;
    position: absolute;
    bottom: 30px;
    z-index: 2;
  }

  .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
  }

  .card-container:hover .card-back .overlay {
    opacity: 1;
  }

  .card-back .content,
  .card-back .view-profile-btn {
    position: relative;
    z-index: 2;
    color: black;
  }

  .card-container:hover .card-back .after-content,
  .card-container:hover .card-back .before-content,
  .card-container:hover .card-back .card-name-flip {
    color: white !important;
  }

  .view-profile-btn {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 12px 0px;
    background: #FFFFFF;
    color: black !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
  }

  .view-profile-btn:hover {
    background: #0047AB;
    color: black;
  }

  .content {
    padding: 20px;
  }
/* 
  .display-flex {
    display: flex;
    justify-content: stretch;
    align-items: start;
    gap: 10px;
    white-space: nowrap;
  } */

  .before-content {
    font-weight: 600;
    width: 100px;
  }

  .after-content {
    text-align: left;
    white-space: wrap !important;
  }


  .grounds-card-new{
    height: 400px;
  }

  .para-content-new{
    font-size: 18px;
    font-weight: 500;
  }