
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f4f4f4;
    }

    .card-slider-container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      overflow: hidden;
      position: relative;
    }
    .card-slider-container h2{
      text-align: center;
      font-size: 26px;
      color: blue;
    }


    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slider-card {
      flex: 0 0 calc(100% / 3);
      max-width: calc(100% / 3);
      padding: 15px;
      box-sizing: border-box;
    }

    .slider-card-content {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      /* height: 200px; */
    }

    .slider-card-content h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
    }

    .slider-card-content p {
      font-size: 14px;
      color: #666;
      text-align: justify;
    }

    .slider-buttons {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
    .slider-next{
        position: absolute;
        right: 50px;
    }

    .slider-button {
      background: #007bff;
      color: #fff;
      border: none;
      font-size: 24px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: background 0.3s;
    }

    .slider-button:hover {
      background: #0056b3;
    }

    @media screen and (max-width: 768px) {
      .slider-card {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media screen and (max-width: 480px) {
      .slider-card {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }
