    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #f8f9fa;
    }

    .bordercard {
      background: rgb(225, 225, 228);
      border-radius: 16px;
      padding: 0;
      width: 100%;
      max-width: 1200px;
      margin: 20px auto;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .container1 {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: stretch;
      padding: 20px;
    }


    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      width: calc(33.333% - 16px);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .card img {
      width: 100%;
      height: 100%;
      /* max-height: 350px; */
      object-fit: contain;
      padding: 12px;
      background: white;
    }

    .card-content {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-title {
      font-size: 1.1rem;
      text-align: center;
      color: #333;
      margin-bottom: 1px;
      margin-top: 1px;
      font-weight: 600;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .card {
        width: calc(50% - 16px);
      }
    }

    /* Mobile */
    @media (max-width: 600px) {
      .card {
        width: 100%;
        max-width: 400px;
      }
      
      .bordercard {
       margin-top: 1%;
      }

      video{
        height: 100px;
        object-fit: fill;
      }
    }

