*{
  font-family: 'roboto',sans-serif;
}
/* General comparison card style */
.comparison-card {
  /* padding: 20px; */
  /* margin-bottom: 20px; */
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.comparison-card:hover{
   transform: translateY(-6px);
}
/* Icon Box */
.icon-box {
     border-radius: 8px;
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 20px;
    flex-direction: column;
}

/* Benefits & Challenges */
.benefits {
  color: #33995D; /* Bootstrap success green */
  font-size: 13px;
  gap: 12px;
  display: flex;
}
.challenges {
  color:#D83D35; /* Bootstrap danger red */
  font-size: 13px;
   gap: 12px;
   display: flex;
}

/* Arrows */
.arrow-up {
    display: flex;
    height: 28px;
    width: 28px;
    align-items: center;
    justify-content: center;
    background: #E6F2EB;
    border-radius: 6px;
}
.arrow-down {
    display: flex;
    height: 28px;
    width: 28px;
    align-items: center;
    justify-content: center;
    background: #FAE7E6;
    border-radius: 6px;
}
.arrow-up img{
  animation: upAndDown 2s infinite ease-in-out;
}
@keyframes upAndDown {
 0%   { transform: translateY(100%); opacity: 0; }   /* below */
  25%  { transform: translateY(0); opacity: 1; }      /* reach center */
  45%  { transform: translateY(0); opacity: 1; }      /* stay in center (pause) */
  75%  { transform: translateY(-100%); opacity: 0; }  /* move up & fade */
  100% { transform: translateY(100%); opacity: 0; }   /* reset below */
}
/* For arrow pointing down */
.arrow-down img {
  animation: downAndUp 2s infinite ease-in-out;
}

@keyframes downAndUp {
  0%   { transform: translateY(-100%); opacity: 0; }  /* start above */
  25%  { transform: translateY(0); opacity: 1; }      /* reach center */
  45%  { transform: translateY(0); opacity: 1; }      /* stay in center (pause) */
  75%  { transform: translateY(100%); opacity: 0; }   /* move down & fade */
  100% { transform: translateY(-100%); opacity: 0; }  /* reset above */
}

.card_pro{
  border-radius: 16px;
    border: 1px solid #E6F2EB;
    padding: 12px;
    height: 100%;
}
.card_cons{
  border-radius: 16px;
    border: 1px solid #FAE7E6;
    padding: 12px;
    height: 100%;
}
.card_header{
      font-size: 16px;
    color: #1f1f1f;
        margin-bottom: 5px;
}
.card_info{
  font-size: 14px;
  color: #4C4C4C;
      margin-bottom: 12px;
}
.card_icon_bg_pro{
    background: #E6F2EB;
    border-radius: 8px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-bottom: 12px;
}
.card_icon_bg_cons{
    background: #FAE7E6;
    border-radius: 8px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-bottom: 12px;
}
/* three cards section css starts here */
.section-title {
      text-align: center;
      margin-bottom: 2rem;
      line-height: unset !important;
    }
    .section-title small {
      color: #1077DA;
      font-weight: 500;
      font-style: italic;
      font-size: 14px;
    }
    .section-title h2 {
      font-weight: 700;
      font-size: 36px;
      color: #2C2E31;
      margin-bottom: 40px;
    }
    .card-custom {
      border-radius: 24px;
      border: 1px solid #e9e9e9;
      box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.1);  /* soft base */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
    }
    .card-custom:hover {
      transform: translateY(-4px);
    }
    .card-custom img {
      /* border-top-left-radius: 12px;
      border-top-right-radius: 12px; */
      border-radius: 12px;
      height: 180px;
      object-fit: cover;
    }
    .card-body h5 {
      color:#1F1F1F;
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .card-body{
      font-weight: 400;
      font-size: 14px;
      color: #4C4C4C;
          text-align: center;
          padding: 16px 0px;
    }
    .card-body p{
      margin-bottom: 0px;
    }

    /* three cards section css ends here */

    /* single side matter with image below three cards starts here */

    .highlight-text_lose_money {
      color: #D83D35; /* red highlight */
      font-weight: 700;
    }
    .sub-text {
      color: #1077DA; /* blue italic text */
      font-style: italic;
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .reason-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .reason-list li {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 15px;
    }
    .reason-list img {
      width: 28px;
      height: 28px;
      margin-right: 12px;
    }
    .hospital-img {
      border-radius: 24px;
      max-width: 100%;
      width: 100%;
    }
     /* single side matter with image below three cards ends here */
     /* featues starts here */
     .feature-box {
      text-align: center;
      padding: 0px;
    }
    .feature-box img {
      width: 55px;
      height: 55px;
      margin-bottom: 12px;
      transition: transform 0.3s ease;
    }
    .feature-box img:hover {
    transform: translateY(-16px);
}
    .outcome-text {
    font-style: italic;
    color: #1077DA;
    font-weight: 500;
    margin-top: 16px;
    font-size: 16px;
    margin-bottom: 40px;
    }
    .btn-custom {
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #1077DA;
    color: #1077DA;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: #fff;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    }
    .btn-custom:hover{
      border-radius: 6px;
      color: #1077DA;
    } 
    .btn-custom_contact{
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid #1077DA;
    color: #fff;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1077DA;
    outline: none;
     gap: 10px;
    font-weight: 500;
     text-decoration: none;
    }
    .btn-custom_contact:hover{
      border-radius: 6px;
      color: #fff;
    }
    .feature-box p{
      font-size: 15px;
    }
    /* features ends here */
    /* last part starts*/
     .custom-card {
      border-radius: 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 0px;
      background: #fff;
      /* margin-bottom: 30px; */
    }
    .custom-img {
      width: 100%;
      border-radius: 24px;
    }
    .check-list {
      list-style: none;
      padding-left: 0;
      font-size: 15px;
    color: #1f1f1f;
    margin-bottom: 0px;
    }
    .check-list li {
      margin-bottom: 10px;
    }
    .highlight-text {
      color: #007bff;
      font-weight: bold;
    }
    .map-card {
  background-image: url("../images/mk_background_map_img.svg");
  background-size: cover;        /* fit background */
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 20px; */
  border-radius: 24px;
}
.last-card-blue_text{
    color: #1077DA;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
        margin-bottom: 10px;
}
.last_card_header{
  font-size: 32px;
  color: #2C2E31;
  margin-bottom: 20px;
}
.check-list-header{
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 500;
    margin-bottom: 20px;
}
.last_card_footer_text{
      font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
}
    /* last part ends here */
/* table starts here */
p.table-subtitle {
      text-align: center;
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 30px;
    }

    .table-card {
      margin-bottom: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 4px solid #3c3c3c;
    }

    th, td {
      text-align: center;
      vertical-align: middle;
    }

    .table-bg-green {
      background-color: #008035 !important;
      color: #3C3C3C;
    }

    .table-bg-red {
      /* background-color: #D83D35 !important; */
      color: #3C3C3C;
       animation: blinkRed 0.5s infinite;
    }
    @keyframes blinkRed {
    0%   { background-color: #D83D35; }
    50%  { background-color: #FF0000; }
    100% { background-color: #D83D35; }
  }
    .table-bg-yellow {
      background-color: #FFDD33 !important;
      color: #3C3C3C;
    }
    .table-bg-light-red{
      background-color: #DE5D55 !important;
      color: #3C3C3C;
    }

    .table-responsive {
    overflow-x: auto;
    /* border: 1px solid #e9e9e9; */
    /* border-radius: 6px; */
    margin: 8px;
    margin-bottom: 40px;
    }
    .table_highlight-text{
    color: #007bff;
    font-weight: 500;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
    }
    .table_mainheader{
      font-size: 36px;
      color: #2C2E31;
          margin-bottom: 40px;
    }
    .table_head{
      background: #E7F1FA;
    }
    .table_head th{
      background: #E7F1FA;
      border: none;
      font-weight: 700;
    }
    table{
      border: 1px solid #e9e9e9;
      font-size: 13px;
      font-weight: 400;
      color:#3C3C3C;
      margin-bottom: 0px !important;
    }

     .table-card {
    margin-bottom: 30px;
    border-radius: 12px; /* card radius */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #fff;
  }

  .table {
    border-collapse: collapse; /* needed for border-radius */
    border-spacing: 0;         /* remove spacing */
    border-radius: 6px;        /* table border-radius */
    overflow: hidden;          /* ensures corners are rounded */
    margin-bottom: 0px;
  }

  .table td {
    border: 1px solid #e9e9e9;
  }

  .table thead tr:first-child th:first-child {
    border-top-left-radius: 6px;
  }

  .table thead tr:first-child th:last-child {
    border-top-right-radius: 6px;
  }

  .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
  }

  .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
  }

    /* table ends here */
    /* media queries starts here */
    @media (max-width: 400px) {
  .btn-custom_contact,.btn-custom{
        padding: 10px;
  }
  .challenges span,.benefits span{
    display: block;
  }
  .challenges,.benefits {
    display: block;
}
.table-card div img{
  display: none;
}
.last-card-blue_text{
  margin-top: 20px;
}

}
@media (max-width: 320px) {
  .btn-custom_contact,.btn-custom{
        padding: 5px;
        font-size: 13px;
  }
  .challenges span,.benefits span{
    display: block;
  }
  .challenges,.benefits {
    display: block;
}
.table-card div img{
  display: none;
}
.last-card-blue_text{
   margin-top: 20px;
}
}
     /* media queries ends here */