
/* Main Tab Styles */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  background: #f0f0f0;
  color: #333;
}

.tab.active {
  background: #ed1b24;
  color: #fff;
}

.tab-content {
  padding: 16px;
  border-radius: 6px;
  display: none;
}

.tab-content.active {
  display: block;
}

/* Common Package Styles */
.package-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
  color: #3b3b3b;
}

.plan-section {
  margin-bottom: 32px;
}

.plan-section h3 {
  font-size: 18px;
  color: #5a3eff;
  margin-bottom: 12px;
  padding-left: 8px;
      text-align: center;

}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Card Styles */
.plan-card, .plan-card-TV, .plan-card-CorporateHalfYearly {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover, .plan-card-TV:hover, .plan-card-CorporateHalfYearly:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #ed1b24;
}

.plan-card h4, .plan-card-TV h4, .plan-card-CorporateHalfYearly h4 {
  font-size: 20px;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.plan-fup {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.plan-price-label {
  font-size: 12px;
  font-weight: 600;
  color: #d35400;
  margin-top: 8px;
  text-transform: uppercase;
}

.plan-price {
  font-size: 18px;
  font-weight: bold;
  color: #2a9d8f;
  margin-bottom: 12px;
}

.choose-btn {
  background-color: #5a3eff;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.choose-btn:hover {
  background-color: #3d2ac0;
}

/* Inner Tab Styles */
.tab-btn {
  background: #f0f0f0;
  border: none;
  padding: 8px 14px;
  margin: 4px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.tab-btn.active {
  background: #5a3eff;
  color: white;
}

.inner-tab-content {
  display: none;
}

.inner-tab-content.active {
  display: block;
}

.channel-info, .ott-platforms {
  margin-top: 16px;
  padding: 12px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

.ott-platforms span {
  margin-right: 8px;
  display: inline-block;
  font-size: 13px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .tabs {
    gap: 6px;
    margin-bottom: 12px;
  }

  .tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .package-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .plan-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 6px;
  }

  .plan-cards {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .plan-card, .plan-card-TV, .plan-card-CorporateHalfYearly {
    width: calc(50% - 5px); /* Two cards per row with gap */
    max-width: none;
    padding: 12px;
  }

  .plan-card h4, .plan-card-TV h4, .plan-card-CorporateHalfYearly h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .plan-fup {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .plan-price-label {
    font-size: 11px;
    margin-top: 6px;
  }

  .plan-price {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .choose-btn {
    padding: 7px 12px;
    font-size: 13px;
  }

  .tab-btn {
    padding: 7px 12px;
    font-size: 12px;
    margin: 3px;
  }

  .channel-info, .ott-platforms {
    margin-top: 12px;
    padding: 10px;
  }

  .ott-platforms span {
    font-size: 12px;
    margin-right: 6px;
  }
}

@media (max-width: 480px) {
  .tab {
    padding: 6px 10px;
    font-size: 11px;
  }

  .package-title {
    font-size: 18px;
  }

  .plan-section h3 {
   brightness-contrast: auto;    font-size: 14px;
  }

  .plan-card, .plan-card-TV, .plan-card-CorporateHalfYearly {
    width: calc(50% - 5px); /* Maintain two cards per row */
    padding: 10px;
  }

  .plan-card h4, .plan-card-TV h4, .plan-card-CorporateHalfYearly h4 {
    font-size: 16px;
  }

  .plan-fup {
    font-size: 11px;
  }

  .plan-price-label {
    font-size: 10px;
  }

  .plan-price {
    font-size: 14px;
  }

  .choose-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .tab-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .ott-platforms span {
    font-size: 11px;
  }
}