/**css start form here ***/
.cr-program-box .elementor-icon-box-wrapper {
    border-radius: 20px;
    padding: 30px 12px;
    background: #fff;
    box-shadow: 0px 6px 15px 0px #263C5D1A;
    height: 100%;
	gap: 0 !important;
	transition: all 0.3s ease;
}
.cr-program-box .elementor-icon-box-icon {
	margin-bottom: 20px
}
.cr-program-box .elementor-icon-box-title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 5px !important;
	transition: all 0.3s ease;
}
.cr-program-box .elementor-icon-box-description {
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: capitalize;
	transition: all 0.3s ease;
}
.cr-program-box .elementor-icon-box-wrapper:hover {
    background-color: #087CDE;
}
.cr-program-box .elementor-icon-box-wrapper:hover svg path[stroke],
.cr-program-box .elementor-icon-box-wrapper:hover svg path[fill] {
	  stroke: #fff !important;
	  fill: none !important;
}
.cr-program-box .elementor-icon-box-wrapper:hover .elementor-icon-box-title,
.cr-program-box .elementor-icon-box-wrapper:hover .elementor-icon-box-description {
    color: #fff;
}
/* -----Table design------ */
 .cr-table-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .cr-design-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10,25,40,0.35);
  }

  .cr-design-table thead th {
    background-color: #087CDE;
    color: #fff;
    font-weight: 600;
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #263C5D;
  }

  .cr-design-table tbody td {
    padding: 20px 16px;
    border-bottom: 1px solid #263C5D; 
    vertical-align: middle;
    font-size: 16px;
  }
  .cr-design-table tbody tr:last-child td {
    border-bottom: none;
  }

  .cr-design-table a {
    color: #0b66c2;
    text-decoration: none;
    word-break: break-all;
  }
  .cr-design-table a:hover { text-decoration: underline; }

  @media (max-width: 767px) {
    .cr-design-table, .cr-design-table thead, .cr-design-table tbody, .cr-design-table th, .cr-design-table td, .cr-design-table tr {
      display: block;
    }

    .cr-design-table thead { display: none; }

    .cr-design-table tbody tr {
      margin: 0 0 12px 0;
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(10,25,40,0.06);
    }

    .cr-design-table tbody td {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border-bottom: none;
    }

    .cr-design-table tbody td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #0b66c2;
      margin-right: 12px;
      white-space: nowrap;
    }

    /* make URL wrap nicely */
    .cr-design-table tbody td a { max-width: 60%; display: inline-block; }
  }
