/* Main container */
.testimonial-two {
  padding: 12px;
  background-color: #191919;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image container */
.testimonial-two-image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.testimonial-two-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info section */
.testimonial-two-info {
  padding: 16px 20px 10px;
  color: white;
}

.testimonial-two-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.testimonial-two-title {
  font-size: 15px;
  color: #9e9e9e;
  font-weight: 400;
  margin: 0;
}

/* Footer section */
.testimonial-two-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 16px;
}

.testimonial-two-social-icons {
  display: flex;
  gap: 12px;
}

.testimonial-two-icon {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.testimonial-two-x-icon {
  font-weight: 700;
}

.testimonial-two-linkedin-icon {
  font-weight: 700;
}

.testimonial-two-checkbox-container {
  display: flex;
  align-items: center;
}

.testimonial-two-toggle {
  width: 24px;
  height: 24px;
  border: 2px solid #00c896;
  border-radius: 4px;
  cursor: pointer;
}

a.testimonial-two-icon {
  padding: 8px;
  background: #232627;
  border-radius: 4px;
}
a.testimonial-two-icon i {
  font-size: 24px;
}

.testimonial-two-img {
  overflow: hidden;
}

.testimonial-two-img {
  transition: transform 0.3s ease;
  transition: all 0.4s ease-in-out;
}

.testimonial-two-img:hover {
  transform: scale(1.1);
}

a.testimonial-two-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px !important;
}