
body {
  background: #fafbfd;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}

.qr-backdrop {
    position: relative;
  width: 100%;
  height: 10%;
  /* margin-bottom: 1rem; */
}
  .main-title {
    position: absolute;
    top: 280px;
    left: 50%;
    /* bottom: 0; */
    transform: translateX(-50%);
    color: rgb(11, 11, 11);
    font-size: 2rem; /* Adjust size as needed */
    font-weight: bold;
    text-align: center;
    z-index: 10; 
  }
.centered-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px;
  position: relative;
  z-index: 2;
}
.custom-card, .clone-card {
  border: none;
  border-radius: .6rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 24px;
  background: #fff;
}
.main-membership-img {
  width: 100%;
  border-radius: .5rem;
  margin-bottom: 14px;
}
.text-dark2 {
  color: #131D29;
}
.divider {
  height: 1px;
  background: #F2F2F2;
  margin: 10px 0;
  border-radius: 1px;
  width: 100%;
}
.facility-icon {
  width: 44px;
  height: 44px;
  background: #F9F9F9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.shadow-sm2 {
  box-shadow: 1px 6px 30px rgba(0,31,14,0.08) !important;
}
.btn-download {
  background-color: #750118;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  border: none;
  transition: background 0.2s;
}
.btn-download:hover {
  background: #b1070e;
}
.small-label {
  font-size: .86rem;
  color: #767C83;
  margin-bottom: 0;
}







/* Make the card wider */
.wider-card {
    width: 100%; /* Full width of the column */
    max-width: 600px; /* Optional: Restrict max width for larger screens */
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect for cards */
  .custom-hover-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Adjust image size */
  .custom-hover-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .custom-hover-card:hover img {
    transform: scale(1.03);
  }
  
  /* Style the list */
  .custom-hover-card ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    line-height: 1.6;
    color: #444;
    font-size: 0.95rem;
  }
  
  /* Style the download button */
  .custom-hover-card .btn {
    border-radius: 8px;
    font-size: 1rem;
  }
  








@media (max-width: 767px) {
  .main-title { font-size: 1.2rem; margin-top: 40px; top: 110px; }
  .centered-container { padding: 4px; }
}


/* 28/11/25 */

.membership-card {
  width: 100%; ;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #ffffff;
  height: 100%;
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.membership-card img {
  height: 220px;
  object-fit: contain;
  background: #fff;
  padding: 20px 0;
}

.membership-list li {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 15px;
}

.premium-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.membership-card .btn {
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
}

