#pricing-tab{
    padding: 30px 5%;
    background: #fafafa;
}


.tabs {
    display: flex;
    flex-wrap: wrap;
  }

  .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .tab-button {
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
    flex: 1;
    text-align: center;
  }

  .tab-button.active {
    background: #00aeeb;
    color: white;
  }

  .tab-content {
    display: none;
    padding: 20px;
    width: 100%;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .tab-content.active {
    display: block;
  }
  .btn{
    width: fit-content;
    margin: 3rem auto 1rem;
    padding: 15px 27px;
    font-size: 16px;
    background: #00aeeb;
    border-radius: 15px;
  }
  .btn a{
    text-decoration: none !important;
    color: #fff;
    margin: auto;
  }
  #iit-pricing .para{
    font-size: 16px;
    text-align: center;
  }
  #iit-pricing h5{
    font-size: 18px;
    text-align: center;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media(max-width: 600px) {
    .tab-button {
      font-size: 18px;
      padding: 10px;
    }
  }

  /* Pricing Table  */
  .pricing-table-section {
    padding: 60px 20px;
    background-color: #f9fbfd;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #005b80;
  }
  
  .container {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .pricing-table {
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 10px;
  }
  .pricing-table tr:nth-child(even) {
    background-color: #f1f5f9;
  }
  
  .pricing-table td {
    padding: 10px 20px;
    font-size: 1.6rem;
    color: #333;
  }
  
  
  @media (max-width: 600px) {
  
    .pricing-table {
      width: 100%;
      max-width: none;
    }
  
    .pricing-table td {
      font-size: 1.4rem;
    }
    .container {
      flex-direction: column;
    }
    .dryclean-box{
      padding: 0 1.5rem;
    }
  }
  