/* Insights Breadcrumb */
.insights-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  font-size: 14px;
}

.insights-breadcrumb a {
  color: #5b5bff;
  text-decoration: none;
  margin: 0 4px;
}

.insights-breadcrumb a:hover {
  text-decoration: underline;
}

.insights-breadcrumb .separator {
  margin: 0 6px;
  color: #999;
}

.insights-breadcrumb .current {
  color: #111;
  font-weight: 500;
}

.breadcrumb-right span {
  color: #666;
  margin-right: 6px;
}

.breadcrumb-right a {
  margin-left: 6px;
}

/* Insights Hero Section */
.insights-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.insights-hero .container {
  /* padding-top: 30px;  */
  margin-bottom: 15rem;
}

.insights-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: blur(1px); */
  transform: scale(1.05);
}

.insights-hero-overlay {
  position: absolute;
  inset: 0;
}

.insights-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.insights-subtitle {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .insights-hero {
    min-height: 65vh;
  }

  .insights-hero .container {
    padding-top: 40px;
  }

  .insights-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .insights-hero {
    min-height: 60vh;
  }

  .insights-hero .container {
    padding-top: 30px;
  }

  .insights-title {
    font-size: 2.1rem;
  }

  .insights-subtitle {
    font-size: 1rem;
  }
}

/* ------------------------------------
Case Studies Hero Section
------------------------------------ */

.case-studies-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-studies-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.case-studies-hero-overlay {
  position: absolute;
  inset: 0;
}

.case-studies-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #111;
}

.hero-subheading {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #333;
  margin: 15px 0 28px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .case-studies-hero {
    min-height: 65vh;
  }

  .case-studies-hero .container {
    padding-top: 40px;
  }

  .hero-heading {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .case-studies-hero {
    min-height: 60vh;
  }

  .case-studies-hero .container {
    padding-top: 30px;
  }

  .hero-heading {
    font-size: 2.1rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

/* -----------------------------------------
Success Stories 
--------------------------------------------*/

/* PREMIUM CARD */

.case-card-premium {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;

  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.case-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.case-img-wrap {
  height: 240px;
  overflow: hidden;
}

.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 1.2s ease;
}

.case-card-premium:hover img {
  transform: scale(1.08);
}

/* BODY */

.case-body {
  padding: 26px;
}

.case-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.case-body h4 {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}

.case-read {
  border-top: 1px solid #eee;
  padding-top: 18px;
  font-weight: 500;
}

/* 🔥 PREMIUM GLASS HOVER */

.case-hover-premium {
  position: absolute;
  inset: 0;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: #fff;

  background: linear-gradient(
    140deg,
    rgba(79, 91, 255, 0.92),
    rgba(110, 124, 255, 0.88),
    rgba(52, 198, 176, 0.85)
  );

  backdrop-filter: blur(6px);

  opacity: 0;
  transition: 0.45s;
}

.case-card-premium:hover .case-hover-premium {
  opacity: 1;
}

/* Badge */

.premium-badge {
  background: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
}

/* Arrow animation */

.hover-arrow {
  font-size: 1.6rem;
  align-self: flex-end;
  transition: 0.3s;
}

.case-card-premium:hover .hover-arrow {
  transform: translateX(6px);
}

/* MOBILE */

@media (max-width: 768px) {
  .case-hover-premium {
    display: none;
  }

  .case-card-premium:hover {
    transform: none;
  }
}

.impact-box {
  background: linear-gradient(135deg, #f3f4ff, #eef7ff);
  padding: 24px;
  border-radius: 18px;
}

#modalServices,
#modalImpact {
  white-space: pre-line;
}

/* ------------------------------------------
hr
-----------------------------------*/

.gradient-hr {
  border: none;
  height: 3px;
  background: linear-gradient(
    90deg,
    #8a5cff,
    /* purple */ #5fd3ff,
    /* light blue */ #3ef0c4 /* teal */
  );
  opacity: 1;
  margin: 0;
}
