
  .swiper {
    width: 100%;
    height: 300px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
.custom-hover {
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 100%;
  }

  .custom-hover:hover {
    background-color: #f1f1f1;
    transform: translateY(-5px);
  }
  .custom-hover {
  transition: background-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.custom-hover:hover {
  background-color: #f5f5f5;
  transform: translateY(-5px);
}
.fancy-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.4s ease;
  padding: 25px;
}

.fancy-card:hover {
  background: linear-gradient(135deg, #f574df, #fffaf0);
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fancy-card .icon {
  background-color: #f3f3f3;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(to bottom, #fa7bd0, #ffeae4);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card h5 {
  font-weight: 600;
}
nav a:hover {
  color: #f060f5; /* soft yellow highlight on hover */
  border-bottom: 2px solid white;
}
.branch-card {
  background-color: #ffffff;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  border-radius: 12px;
  cursor: pointer;
}

.branch-card:hover {
  background-color: #fa71e3;
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.nav-item {
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent */
  color: white;
  margin: 0 15px;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.2s;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.section-title {
  background: linear-gradient(to right, #58023f, #58023f);
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
}
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  background-color: #be2593;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: 0.3s;
}
#scrollTopBtn:hover {
  background-color: #920869;
}


