 
.sub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  width: 100%;          /* ✅ container ki full width le lega */
  max-width: 320px;     /* ✅ optional: limit max size */
  margin: 10px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  box-sizing: border-box;  /* ✅ padding bhi calculate hogi */
}


.sub-card .sub-title {
    display: block;        /* inline se block banayenge */
    text-align: center;    /* text ko center me rakhega */
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;      /* thoda spacing line breaks ke liye */
    word-break: break-word; /* agar word bahut lamba hua to break ho jaye */
    margin-bottom: 8px;
}





.sub-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.sub-btn {
  flex: 1;
  padding: 8px;
  border: 2px solid #028940;
  background: #fff;
  color: #028940;
  cursor: pointer;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.sub-btn.active {
  background: #028940;
  color: #fff;
}

.sub-price-box {
  background-color: #028940;
  color: #fff;
  padding: 8px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 15px;
  width: 100%;
  text-align: center;
}

.sub-viewmore {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #028940;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.sub-viewmore:hover {
  background: #026f32;
}
.sub-card .sub-title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
    margin: 0 auto 8px auto !important;
	text-decoration: none !important;   /* ✅ underline remove karega */ 
}
