  .case-studies-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 40px;
    border-radius: 0 0 50px 50px;
    z-index: 999;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
  }

  .section-title {
    font-family: "Druk Text Trial", sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 100px;
    color: #333;
    gap: 40px;
    margin: 0;
  }

  .section-description {
    width: 379px;
    font-size: 24px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
  }

  .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 27px;
  }

  .case-study-card {
    width: auto;
    height: 500px;
    background-color: #000;
    position: relative;
  }

  .card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  }

  .engagement-stats {
    position: absolute;
    width: 100%;
    bottom: 20%;
    opacity: 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }

  .card-overlay:hover .engagement-stats {
    opacity: 1;
  }

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    gap: 5px;
    justify-content: flex-end;
  }

  .card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .stat span {
    font-family: "FONTSPRING DEMO - Tenon Medium", sans-serif;
    font-size: 18px;
  }

  .case-card-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
  }

  .card-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
  }

  .card-details {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
  }

  .card-logo {
    width: 220px;
    height: auto;
  }

  @media (max-width: 991px) {
    .case-studies-section {
      padding: 60px 40px;
    }

    .section-header {
      flex-direction: column;
      gap: 40px;
    }

    .section-title {
      font-size: 50px;
      line-height: 70px;
    }

    .section-description {
      width: 100%;
    }

    .case-studies-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-study-card {
      width: 100%;
    }
  }

  @media (max-width: 640px) {
    .case-studies-section {
      padding: 40px 20px;
    }

    .section-title {
      font-size: 40px;
      line-height: 56px;
    }

    .section-description {
      font-size: 20px;
    }

    .case-studies-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
  }