/* ................Buttons............. */

.btn-cls {
  background-color: #009d42;
  border: none;
  color: white;
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  width: 25%;
}

.btn-cls:hover {
  background-color: #007a2e;
  color: white;
}

@media (max-width: 768px) {
  .btn-cls {
    width: 85% !important;
  }
}

/* ...............bg-colors............. */

.bg-colr {
  background-color: #f2f5fc;
  /* background-color: #f2faf5; */
}

/* ................. */

.hvr-bg-clr {
  border: 1px solid lightgreen;
}

/* .hvr-bg-clr:hover{
  background-color: #F3FFF3;

} */

/* ..................... */

.lead-card img {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* Ensures image is cropped evenly */
  border-radius: 8px;
  margin-bottom: 15px;
}

.lead-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  height: 100%;
}

.lead-card:hover {
  transform: translateY(-5px);
}

.lead-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.lead-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ....................... */

/* .............9 - img keliye ............... */
.lead-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  /* text-align: center;  ❌ remove this */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.lead-card .image-wrapper {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.lead-card h4 {
  font-size: 18px;
  margin: 15px 0 10px;
  font-weight: 600;
  text-align: left; /* ✅ left align text */
}

.lead-card p {
  font-size: 15px;
  color: #555;
  text-align: left; /* ✅ left align text */
}
/* ............./............... */

/* testimonial videos */

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 360px;
  /* Adjust as needed */
  height: 202px;
  /* Adjust as needed */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #000;
}

.video-thumbnail-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 64px;
  height: 64px;
  background: url("https://www.iconfinder.com/data/icons/google-material-design-3-0/48/ic_play_circle_outline_48px-512.png")
    no-repeat center;
  background-size: contain;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}
