  /* body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #4db6f7;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      overflow: hidden;
    } */

    .carousel {
      position: relative;
      width: 90%;
      max-width: 500px;
      height: 300px;
      perspective: 1200px;
    }

    .card {
      position: absolute;
      width: 100%;
      height: 100%;
      background: white;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.8s ease;
      opacity: 0;
      transform: scale(0.8) translateX(0);
      filter: blur(3px);
      z-index: 0;
    }

    .card.active {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
      z-index: 2;
    }

    .card.left,
    .card.right {
      opacity: 0.6;
      filter: blur(3px);
      z-index: 1;
    }

    .card.left {
      transform: translateX(-30%) scale(0.9);
    }

    .card.right {
      transform: translateX(30%) scale(0.9);
    }

    .quote {
      font-size: 30px;
      color: #ccc;
    }

    .text {
      margin-top: 10px;
      font-size: 16px;
      color: #333;
    }

    .profile {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .profile img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .profile-info .name {
      font-weight: bold;
    }

    .profile-info .role {
      font-size: 13px;
      color: #777;
    }

    @media (max-width: 600px) {
      .card.left,
      .card.right {
        opacity: 0.3;
        transform: translateY(20px) scale(0.85);
        filter: blur(4px);
        z-index: 0;
      }

      .card.active {
        transform: scale(1) translateY(0);
        z-index: 2;
      }

      .card {
        transition: all 0.8s ease;
      }
    }