.options-section {
    padding: 40px 20px;
    background-color: #141313;
    color: #fff;
    text-align: center;
  }
  
  .options-header .subheading {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .options-header .heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .option-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #000;
    padding: 20px 20px;
    width: 220px;
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Changed from row to column */
    align-items: center;     /* Center content horizontally */
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-align: center; /* Center text under image */
  }
  
  .option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  }
  
  .option-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .option-card span {
    font-weight: 600;
    font-size: 16px;
    color: #ccc;
    margin-top: 5px;
  }
  
  .option-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .option-card {
      width: 80%;
   
    }
  }
  