    /* Main Container */


    /* Header Section */


    .phi--achievements-container {
      padding-top: 3rem;
      padding-bottom: 3rem;
  }


  .phi--achievements-header {
    text-align: center;
    margin-bottom: 60px; 
  }

  .phi--achievements-subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 0px; 
    font-weight: 400;
  }

  .pi-dark-mode .phi--achievements-subtitle {
 
    color: #fff;
    
  }

  .phi--achievements-title {
    font-size: 48px;
    font-weight: 700;
    color: #16E0A8;
    margin: 0;
    line-height: 1.2;
  }

  /* Grid Container */
  .phi--achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  /* Card Styles */
  .phi--achievement-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 0 2rem;
  }

  .phi--achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

  .phi--card-content {
  padding: 32px;
  max-width: 454px;
  padding-bottom: 2.2rem; 
  margin: 0 auto;
}


.phi--card-title {
  font-size: 24px;
  font-weight: 400;

  font-family: Poppins;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: center;
}


  .phi--card-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: center;
  }

  /* Image Container - Using media system approach */
  .phi--card-image-container {
    position: relative;
    overflow: hidden;
    background-color: transparent;
  }

  /* Media system classes for consistent image sizing */
  .phi--card-image-container.phi--media--transparent {
    background-color: transparent;
  }

  .phi--card-image-container.phi--media--landscape {
    padding-bottom: 66.6%; /* 3:2 aspect ratio */
  }

  .phi--card-image-container.phi--media--adapt {
    padding-bottom: 70%; /* Custom ratio for achievement cards */
  }

  @media screen and (min-width: 750px) {
    .phi--card-image-container.phi--media--adapt {
      padding-bottom: 68%; /* Slightly different ratio on larger screens */
    }


    .phi--achievement-card {

    padding: 0 4rem;
  }


  }

  .phi--card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease, opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .phi--achievement-card:hover .phi--card-image {
    transform: scale(1.05);
  }

  .phi--browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
  }

  .phi--browser-dot:nth-child(1) {
    background: #ff5f57;
  }

  .phi--browser-dot:nth-child(2) {
    background: #ffbd2e;
  }

  .phi--browser-dot:nth-child(3) {
    background: #28ca42;
  }

  /* Browser Dots */
  .phi--browser-dots {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
  }

  /* Hover Overlay */
  .phi--card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #252522db;
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
  }

  .phi--achievement-card:hover .phi--card-overlay {
    transform: translateY(0);
  }


  .phi--overlay-header {
    padding: 1px 0;
    border-radius: 30px;
    border: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}


.phi--case-study-label {
  font-size: 14px;
  font-weight: 700;
  color: #fffdfd;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

  .phi--read-more-arrow {
    width: 28px;
    height: 28px;
    background: #20B2AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #fff;
    transform: scale(1.1);
  }

  .phi--read-more-arrow:hover {
    background: #16E0A8;
    transform: scale(1.1);
  }

  .phi--arrow-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-left: 1px;
  }

  .phi--overlay-text {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin: 0;
  }

  /* Services Button Styling */
  .phi--services__actions {
    width: 286px;
    margin: 20px auto 0;
  }

  .phi--services__button {
    display: flex;
    padding-right: 38px;
    position: relative;
    text-decoration: none;
    color: #000;
  }

  .phi--services__button-text {
    color: #000;
    z-index: 1;
    background: #fff;
    border: 1px solid;
    border-radius: 22px;
    padding: 10px 39px;
    font-weight: 500;
    font-size: 14px;
  }

  .phi--services__button-icon {
    background: #16E0A8;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    border-radius: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 14px;
    border: 1px solid #000;
  }

  .phi--services__button-icon svg {
    width: 12px;
    height: 13px;
  }

  /* Small hide utility */
  .phi--small-hide {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .phi--small-hide {
      display: none !important;
    }


    .phi--overlay-text {
    font-size: 11px;
    line-height: 1.6;
    color: white;
    margin: 0;
    
  }

  .phi--case-study-label {
    font-size: 12px;
}


.phi--card-subtitle {
  font-size: 10px;
  color: #666;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: center;
}



  }

  /* Responsive Design */
  @media (max-width: 768px) {


    .phi--achievements-title {
      font-size: 32px;
    }

    .phi--achievements-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .phi--card-content {
      padding: 20px;
    }

    .phi--card-title {
      font-size: 20px;
    }

    /* Adjust image ratio for mobile */
    .phi--card-image-container.phi--media--adapt {
      padding-bottom: 75%; /* Taller ratio on mobile for better visibility */
    }

    .phi--card-overlay {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .phi--achievements-title {
      font-size: 28px;
    }



    .phi--card-title {
      font-size: 18px;
    }

    .phi--card-overlay {
      padding: 20px;
    }
  }


  span.phi--arrow-icons {
  display: flex;
}


@media screen and (min-width: 768px) {

.phi--achievements-container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}


}