  .section-header {
      font-size: 2.5rem;
      font-weight: bold;
      color: #d63384;
      text-align: center;
      margin-bottom: 1.5rem;
  }

  .feature-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .feature-card h3 {
      color: #d63384;
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .feature-card p {
      color: #333;
      font-size: 1rem;
  }

  .icon {
      font-size: 2rem;
      color: #d63384;
      margin-bottom: 0.5rem;
  }

  .image-gallery {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .image-gallery img {
      width: 250px;
      height: 350px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .image-gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }



  @media (max-width: 500px) {
     .image-gallery {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .image-gallery img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  }



  .call-now-btn {
      display: inline-block;
      padding: 12px 24px;
      font-size: 1.2rem;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(45deg, #d63384, #ff6b6b);
      border-radius: 50px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 4px 15px rgba(214, 51, 132, 0.4);
  }

  .call-now-btn:hover {
      background: linear-gradient(45deg, #ff6b6b, #d63384);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(214, 51, 132, 0.6);
      color: #fff;
  }

  .call-now-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(214, 51, 132, 0.3);
  }









  .category-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }

  .category-card h3 {
      color: #d63384;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
  }

  .category-card p {
      color: #333;
      font-size: 0.9rem;
  }

  .category-card:hover {
      transform: translateY(-5px);
  }








  .about-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.about-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Change as needed */
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* Improves readability on image */
}
