.flip-card {
    perspective: 1000px;
    height: 200px;
    cursor: pointer;
    margin-bottom: 15px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 15px;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
  }
  
  .flip-card-front {
    background: white;
    color: #90127e;
    border: 2px solid #90127e;
  }
  
  .flip-card-front i {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .flip-card-back {
    background: linear-gradient(135deg, #90127e 0%, #5a0a4d 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 15px;
  }
  
  .service-details {
    text-align: center;
  }
  
  .service-details ul {
    padding-right: 20px;
    text-align: right;
    margin: 10px 0;
  }
  
  .service-details li {
    margin-bottom: 5px;
    list-style-type: square;
  }
  
  .read-more-btn {
    background: white;
    color: #90127e;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .service-full-details {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 15px;
    text-align: right;
    border: 1px solid #eee;
    animation: fadeIn 0.5s;
  }
  
  .close-details {
    background: #90127e;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  } 