:root {
  --teal: #36C2C9;
  --orange: rgb(241, 90, 34);
  --black: #000000;
  --white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 26px;
  --fs-body: 16px;
  --fs-small: 14px;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');

.main-box{
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
      border-radius: 20px;
}
.main-box button{
    height: 70px;
    width: 150px;
    font-size: 1.1rem;
    background: transparent;
    border-radius: 20px;
    border: 2px solid var(--orange);
    color: #000000;
        outline: none;
}
@media (max-width:800px){
    .main-box{
        flex-direction: column;
        gap: 10px;
    }
}
#Diagnostic-test div{
     height: 350px;
}
#Advance-diagnostics .card{
    height: 350px;
}
.card{
    /* height: auto; */
    padding: 0px 3px ;
}
.card h3{
    color: black;
}
.card img{
    width: 100%;
    height: 200px;
}
.main-box .active{
    background-color: var(--orange);
    color: #000000;
}

.hidden{
    display: none;
}
.card-box{
    max-width: 100%;
    width: 300px;
    height:1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: auto;
    border: 1px solid black;
    border-radius: 10px;
    position: relative;
}
.card-min{
    height: 650px;
}
.card-mid{
    height: 800px;
}
.card-high{
    height: 1000px;
}
.card-box img{
    width: 100%;
    height: 200px;
        border-radius: 10px;
}
.card-box h3{
    font-size: 2rem;
    font-weight: bolder;
    color: var(--teal);
        text-align: center;
}
.card-box li{
  font-size: 1rem;
  font-weight: 700;
}
.card{
    height: 400px;
}
.card img{
    height: 200px;
}
.price-box {
      /* margin: 15px; */
      text-align: center;
      padding: 12px;
      margin-bottom: 5px;
      display: flex;
      gap: 3px;
      align-items: center;
      position: absolute;
      bottom: 5%;
    }

    .price-box .mrp {
      text-decoration: line-through;
      color: #888;
      font-size: 16px;
      display: block;

    }

    .price-box .offer-price {
      font-size: 22px;
      font-weight: bolder;
      color: #28a745;
      display: block;
      margin-top: 5px;
    }

     .save {
      background: #ff5252;
      color: #fff;
      font-size: 13px;
      padding: 8px 10px;
      border-radius: 12px;
      position: absolute;
      bottom: 1%;
      text-decoration: none;
      margin-top: 4px;
}
.ad-card {
max-width: 500px;
width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  text-align: center;
}

.ad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ===== Card Image ===== */
.ad-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

/* ===== Card Title ===== */
.ad-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin: 15px 10px 10px;
  font-weight: 600;
}

/* ===== Card Description ===== */
.ad-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  padding: 0 15px;
  margin-bottom: 15px;
}
.ad-card a{
    max-width:200px ;
}
@media (max-width: 480px) {
  .ad-card img {
    height: 150px;
  }

  .ad-card h3 {
    font-size: 1rem;
  }

  .ad-card p {
    font-size: 0.9rem;
  }
}