.team-card {
    background: #100028;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f1f1;
  }
  
  .team-name {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #ffffff;
  }
  
  .team-role {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;

  }
  
  .team-social a {
    margin: 0 5px;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .team-social a:hover {
    color: #007bff;
  }
  
  .primary-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .primary-btn:hover {
    background-color: #0056b3;
  }
  /* Responsive CSS for Stadium Film Club Cochin */

/* General Responsive Rules */
@media (max-width: 768px) {
  /* Header Section */
  .header__logo {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .header__nav__social {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  /* Hero Section */
  .hero__text {
    text-align: center;
    padding: 0 15px;
  }
  
  .hero__text h2 {
    font-size: 28px;
  }
  
  /* About/Vision Section */
  .services .row.d-flex {
    flex-direction: column;
  }
  
  .vertical-line {
    width: 80%;
    height: 2px;
    margin: 20px auto;
  }
  
  /* Team Section */
  .team-card {
    margin-bottom: 30px;
    width: 100%;
  }
  
  .team-img img {
    width: 150px;
    height: 150px;
  }
  
  /* Committee Section */
  .col-xl-2.col-lg-3.col-md-4.col-sm-6 {
    width: 50%;
    padding: 0 10px;
  }
  
  /* Footer Section */
  .footer .row > div {
    text-align: center;
  }
  
  .footer .d-flex.gap-2 {
    justify-content: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  /* Header Section */
  .header__logo img {
    width: 80px;
  }
  
  /* Hero Section */
  .hero__text h2 {
    font-size: 24px;
  }
  
  .hero__text .primary-btn {
    padding: 10px 20px;
  }
  
  /* Team Section */
  .team-img img {
    width: 120px;
    height: 120px;
  }
  
  /* Committee Members */
  .col-xl-2.col-lg-3.col-md-4.col-sm-6 {
    width: 100%;
  }
  
  /* Footer */
  .footer .input-group {
    max-width: 100%;
  }
}

/* Fix for flex display in team committee section */
@media (max-width: 768px) {
  [style="display: flex;"] {
    display: block !important;
    width: 50%;
    float: left;
  }
  
  [style="display: flex;"] .team-card {
    height: 100%;
  }
  
  /* Clear floats */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
}

@media (max-width: 576px) {
  [style="display: flex;"] {
    width: 100%;
    float: none;
  }
}

/* Improve navigation for mobile */
@media (max-width: 768px) {
  #mobile-menu-wrap {
    display: block;
  }
  
  .header__nav__option {
    text-align: center;
  }
}

/* Improve image loading/display on mobile */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  
  .hero__item {
    background-position: center;
  }
}

/* Improve spacing in sections */
@media (max-width: 768px) {
  .spad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
}