/* Features Section */
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
  }
  
  .feature-icon i {
    font-size: 1.75rem;
  }
  
  /* Services Cards (for homepage preview) */
  .service-card {
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card .card-img-top {
    height: 220px; /* Consistent height for service images */
    object-fit: cover;
  }
  
  .service-card ul {
    padding-left: 0;
    list-style: none;
  }
  
  .service-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
  }
  
  .service-card ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.25rem; /* Align icon with text */
  }
  
  /* Cases Gallery (for featured case on homepage) */
  .case-card {
    overflow: hidden;
    border-radius: 5px;
  }
  
  .case-card .before-after {
    position: relative;
    height: 200px;
  }
  
  .case-card .before,
  .case-card .after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  
  .case-card .before {
    left: 0;
  }
  
  .case-card .after {
    right: 0;
  }
  
  .case-card .label {
    position: absolute;
    bottom: 10px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.8rem;
  }
  
  .case-card .before .label {
    left: 10px;
  }
  
  .case-card .after .label {
    right: 10px;
  }
  
  /* Location and Map (on homepage) */
  .map-container {
    height: 400px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  