/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  padding: 40px 0;
  background: #f6f6f6;
}

.page-title .breadcrumbs {
  margin-top: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-title .breadcrumbs ol li {
  color: var(--default-color);
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  padding: 0 10px;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-2 {
  padding: 60px 0;
}

.about-2 .section-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  background: #e3effd;
  color: #146ebe;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.about-2 .section-badge i {
  margin-right: 6px;
}

.about-2 .about-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-2 .about-description {
  color: #6c757d;
  margin-bottom: 20px;
}

.about-2 .about-text {
  color: #444;
  margin-bottom: 15px;
}

/* Features Boxes */
.features-boxes .feature-box {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
}

.features-boxes .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.features-boxes .feature-box .icon-box {
  width: 55px;
  height: 55px;
  background: #e9f5ff;
  color: #0d6efd;
  font-size: 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Video Box */
.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-box img {
  border-radius: 12px;
}

.pulsating-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65px;
  height: 65px;
  margin-left: -32px;
  margin-top: -32px;
  display: inline-block;
  border-radius: 50%;
  z-index: 2;
  background: var(--accent-color);
}

.pulsating-play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  animation: playPulse 1.5s ease-out infinite;
}

@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.pulsating-play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  z-index: 3;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 60px 0;
  background: #f7f9fc;
}

.stats .avatars img {
  width: 55px;
  height: 55px;
  margin-right: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.stats .counters h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0d6efd;
}

.stats .counters p {
  color: #6c757d;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonial-masonry {
  column-count: 3;
  column-gap: 25px;
}

.testimonial-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
  border: 1px solid #eaeaea;
  transition: 0.3s;
  page-break-inside: avoid;
  break-inside: avoid;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-item.highlight {
  background: #f0f7ff;
  border-color: #cfe2ff;
}

.testimonial-content {
  position: relative;
}

.quote-pattern i {
  font-size: 32px;
  color: #0d6efd;
  opacity: 0.25;
  position: absolute;
  top: -5px;
  left: -5px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info .client-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 15px;
}

.client-details h3 {
  font-size: 18px;
  font-weight: 600;
}

.client-details .position {
  font-size: 14px;
  color: #6c757d;
}

/* Masonry responsive */
@media (max-width: 991px) {
  .testimonial-masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .testimonial-masonry {
    column-count: 1;
  }
}
