/* animations.css */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
  }
  
  .hover-grow:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }

  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .services-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 30px;
    width: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover img {
    transform: scale(1.05);
  }
  
  .service-card h3 {
    color: #212b0f;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    background: linear-gradient(45deg, #d5995b, #d6c3ab);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  .cta-btn:hover {
    background: linear-gradient(45deg, #d6c3ab, #d5995b);
    transform: scale(1.05);
  }
  
  /* Entry animation (slide up on scroll) */
  .animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }
  
  .animate-slide-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }

   /* mobile */
  @media (max-width: 768px) {
    .service-card {
      width: 90%;
    }
  }
  


  .service-img-container {
    width: 100%;
    height: 250px; /* adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* fallback in case image fails */
    border-radius: 10px;
  }
  
  .service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or try object-fit: contain */
    transition: transform 0.3s ease;
  }
  
  .service-img-container img:hover {
    transform: scale(1.05);
  }
  


    /* services carousel*/
  
  