.ser-card:hover .mask-img {
  transform: scale(1.1);
  transition: ease all .5s;
}

.ser-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
}

.mask-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease all .5s;
}

/* cards */

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  color: #fff;
  font-size: 18px;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: #555;
  font-size: 14px;
  margin: 0;
}



/* cards */


/* hightlights */

.highlight-card {
  background-color: #f2f6fc;
  /* Light blue background */
  border-radius: 12px;
  padding: 25px;
  height: 100%;
}

.highlight-card h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.highlight-card ul li::before {
  content: "✔";
  color: #000;
  font-weight: bold;
  margin-right: 10px;
}

/* hightlights */

/* carousel */

.swiper.marquee-swiper {

  mask-image: linear-gradient(to right,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%);
}

.swiper-wrapper.marquee-swiper {
  transition-timing-function: linear;
  align-items: center;
}

.swiper-slide.marquee-swiper {
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marq-slid-img {
  width: 100%;
}




/* carousel */


/* cards */

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.ser-card {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat;
  color: #fff;
  border: none;
  overflow: hidden;
}

.ser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for readability */
  z-index: 0;
}

.ser-card * {
  position: relative;
  z-index: 1;
}


/* cards */
