  
  /* Clubs Section */
  .clubs-section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .clubs-section h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .clubs-section h1::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff9900;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .clubs-section > p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 2rem;
    color: #555;
  }
  
  /* Club Card */
  .club-card {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .club-card:hover {
    transform: translateY(-3px);
  }
  
  .club-card h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .club-card p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #444;
  }
  
  /* Coordinator Details */
  .club-details {
    list-style: none;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .club-details li{
    color: #333;
    padding-left: 1.5rem;     /* ✅ Space for bullets */
    padding-top: 8px;
    margin: 0;
    line-height: 1.7;         /* ✅ Better readability */
    list-style-type: square;
    list-style-position: outside;
    font-size: 16px;
    word-break: break-word;   /* ✅ Avoid long words breaking layout */
  }
  
  /* Initiatives */
  .club-card h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
  }
  
  .club-initiatives {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
  }
  
  /* Insta-Style Image Gallery */
  .club-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-top: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }
  
  .club-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .club-gallery img {
    flex: 0 0 auto;
    width: 300px;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .club-gallery img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .clubs-section h1 {
    font-size: 2rem;
  }

  .clubs-section > p {
    font-size: 1rem;
  }

  .club-card h2 {
    font-size: 1.4rem;
  }

  .club-card p {
    font-size: 1rem;
  }

  .club-gallery img {
    width: 250px;
    height: auto;
  }
}

/* Large Mobiles / Small Tablets (<=768px) */
@media (max-width: 768px) {
  .clubs-section {
    padding: 1rem;
  }

  .clubs-section h1 {
    font-size: 1.8rem;
  }

  .clubs-section > p {
    font-size: 0.95rem;
  }

  .club-card {
    padding: 1.5rem;
  }

  .club-card h2 {
    font-size: 1.3rem;
  }

  .club-card p {
    font-size: 0.95rem;
  }

  .club-gallery img {
    width: 200px;
    height: auto;
  }
}

/* Mobiles (<=576px) */
@media (max-width: 576px) {
  .clubs-section h1 {
    font-size: 1.6rem;
  }

  .clubs-section > p {
    font-size: 0.9rem;
  }

  .club-card h2 {
    font-size: 1.2rem;
  }

  .club-card p {
    font-size: 0.9rem;
  }

  .club-gallery {
    gap: 0.5rem;
  }

  .club-gallery img {
    width: 160px;
    height: auto;
    border-radius: 10px;
  }
}

/* Small Mobiles (<=400px) */
@media (max-width: 400px) {
  .clubs-section h1 {
    font-size: 1.4rem;
  }

  .clubs-section > p {
    font-size: 0.85rem;
  }

  .club-card h2 {
    font-size: 1.1rem;
  }

  .club-card p {
    font-size: 0.85rem;
  }

  .club-gallery img {
    width: 140px;
    height: auto;
  }
}


  