/* New Styling */
.new_heading {
    font-family: "Hedvig Letters", Serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 0px;
    color: #005887;
    padding-bottom: 20px;
  }
  
  .colage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 500px;
  }
  
  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image1 {
    grid-column: span 2;
    /* clip-path: ellipse(97% 57% at center); */
  }
  
  
  .btn.btn-primary {
    color: #FFFFFF;
    background-color: #69C206;
    padding: 5px 38px 5px 38px;
    border: 1px solid #69C206;
    border-radius: 38px;
    
  }
  
  
  .text-section {
    max-width: 45%;
  }
  
  .text-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  
  .btn {
    background-color: white;
    color: #005887;
    padding: 12px 18px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;
  
  }
  
  .cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 50%;
  }
  
  .card {
    background: white;
    color: black;
    padding: 8px;
    width: 185px;
    height: 160px;
    /* text-align: center; */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card img {
    width: 40px;
    margin-bottom: 10px;
  }
  
  .card p {
    font-family: "Hedvig Letters", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21.7px;
    letter-spacing: 1%;
    color: #42526B;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-section,
    .cards {
      max-width: 100%;
    }
  
    .cards {
      justify-content: center;
    }
  }
  
  .card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
  }
  
  .card_2 {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card_2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .badge {
    position: relative;
    background-color: #007BFF;
    color: white;
    font-size: 15px !important;
    font-weight: bold;
    padding: 10px !important;
    border-radius: 5px !important;
    top: -15px;
    width: auto;
    
  }
  
  .badge.semi {
    background-color: #17A2B8;
  }
  
  .badge.course {
    background-color: #6C63FF;
  }
  
  .card-content {
    padding: 15px;
    text-align: left;
  }
  
  .card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .card-content a {
    font-size: 14px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
  }
  
  .card-content a:hover {
    text-decoration: underline;
  }
  
  .card-wrapper {
    position: relative;
  }
  
  @media (max-width: 900px) {
    .card-container {
        justify-content: center;
    }
  }