  
      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      background: #f7f8fc;
      color: #333;
      overflow-x: hidden;
      animation: fadeInBody 1s ease-in-out;
    }
    @keyframes fadeInBody {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      animation: slideUp 1.2s ease forwards;
    }
    .main-slider {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .main-image {
      width: 100%;
      height: 400px;
      background-size: cover;
      background-position: center;
      transition: background-image 0.5s ease;
    }
    .thumbnail-wrapper {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .thumbnail-wrapper label {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background-size: cover;
      background-position: center;
      border: 2px solid #4e73df;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .thumbnail-wrapper label:hover {
      transform: scale(1.1);
    }
    input[type="radio"] {
      display: none;
    }
    #slide1:checked ~ .main-image {
      background-image: url('https://assets.codepen.io/1462889/sl1.jpg');
    }
    #slide2:checked ~ .main-image {
      background-image: url('https://assets.codepen.io/1462889/sl2.jpg');
    }
    #slide3:checked ~ .main-image {
      background-image: url('https://assets.codepen.io/1462889/sl3.jpg');
    }
    #slide4:checked ~ .main-image {
      background-image: url('https://assets.codepen.io/1462889/sl4.jpg');
    }

    .main-card {
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      margin: 30px 0;
      text-align: center;
      animation: fadeInUp 1.4s ease;
    }
    .main-card h2 {
      font-size: 28px;
      color: #4e73df;
      margin-bottom: 15px;
    }
    .main-card p {
      font-size: 16px;
      color: #666;
    }
    .card-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 80px;
      animation: fadeInUp 1.6s ease;
    }
    .info-card {
      background-size: cover;
      background-position: center;
      border-radius: 16px;
      padding: 30px;
      color: rgb(151, 151, 151);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    .info-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .info-card p {
      font-size: 16px;
    }
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      display: flex;
      justify-content: space-around;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      z-index: 1000;
    }
    .bottom-nav a {
      color: #555;
      font-size: 12px;
      text-decoration: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: color 0.3s ease;
    }
    .bottom-nav a i {
      font-size: 18px;
      margin-bottom: 4px;
      color: #ffffff;
    }
    .bottom-nav a.active,
    .bottom-nav a:hover {
      color: #ffffff;
    }
    .bottom-nav a.active i,
    .bottom-nav a:hover i {
      transform: scale(1.2);
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (max-width: 768px) {
      .main-image { height: 250px; }
    }
    /* start review membership list */
    /* Font setup (Poppins) already loaded in HTML */
.member-container {
  width: 100%; /* ✅ Desktop full width */
 width: calc(100% - 20px);
 margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.member-heading {
  color: #0077cc;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.member-list-wrapper {
  height: 400px; /* 4 items height */
  overflow: hidden;
  position: relative;
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.8s ease;
}

.member-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background-color: #f1f7fd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 119, 204, 0.2);
}

.member-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0077cc;
}

.member-details {
  flex: 1;
}

.member-details h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 4px;
}

.member-details p {
  font-size: 14px;
  color: #555;
}

.star-rating {
  color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
  .member-heading {
    font-size: 20px;
  }

  .member-img {
    width: 50px;
    height: 50px;
  }

  .member-details h4 {
    font-size: 14px;
  }

  .member-details p {
    font-size: 13px;
  }
}
 /* End member ship list rating */
 /* navbar styling */
 .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
}

.bottom-nav a {
  color: #555;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-nav a i {
  font-size: 18px;
  margin-bottom: 4px;
  color: #4e73df;
}

.bottom-nav a.active,
.bottom-nav a:hover {
  color: #4e73df;
}

.bottom-nav a.active i,
.bottom-nav a:hover i {
  color: #4e73df;
  transform: scale(1.2);
}
/* style navbar start */
 /* navbar css :start */

   .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      display: flex;
      justify-content: space-around;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      z-index: 1000;
    }
    .bottom-nav a {
      color: #555;
      font-size: 12px;
      text-decoration: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .bottom-nav a i {
      font-size: 18px;
      margin-bottom: 4px;
      color: #4e73df;
    }
    .bottom-nav a.active,
    .bottom-nav a:hover {
      color: #4e73df;
    }
    .bottom-nav a.active i,
    .bottom-nav a:hover i {
      color: #4e73df;
      transform: scale(1.2);
    }
    @media (max-width: 768px) {
      .main-image { height: 250px; }
    }