/* =========================================================
   assets/css/social-media-mining.css
   Page: Social Media Mining for Pharmacovigilance
   - UNIQUE dv-smm-* classes only
   - Does NOT affect other pages
========================================================= */

.wow { visibility: visible !important; opacity: 1 !important; }

/* =========================================================
   1) HERO
========================================================= */
.page-title-area.dv-smm-hero{
  background: none !important;
  position: relative;
  overflow: hidden;
  padding: 170px 0 95px !important;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* background image layer */
.page-title-area.dv-smm-hero .dv-smm-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/services/signal-detection-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02) brightness(.95);
  will-change: transform;
}

/* overlay */
.page-title-area.dv-smm-hero .dv-smm-hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(9,16,18,.70) 0%,
    rgba(9,16,18,.65) 45%,
    rgba(9,16,18,.75) 100%
  );
  pointer-events:none;
}

/* subtle brand glow */
.page-title-area.dv-smm-hero .dv-smm-hero__bg::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 320px at 20% 25%, rgba(229,62,107,.18), transparent 62%),
    radial-gradient(700px 320px at 85% 35%, rgba(255,255,255,.08), transparent 62%);
  pointer-events:none;
}

/* content wrapper */
.page-title-area.dv-smm-hero .dv-smm-hero__content{
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* badge */
.dv-smm-hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.50);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dv-smm-hero__badge i{
  color: #f687b3;
  font-size: 14px;
}

/* title */
.dv-smm-hero__title{
  margin: 0;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.08;
  color: #fff !important;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 25px rgba(0,0,0,.45);
  padding: 0 12px;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* breadcrumb pill */
.dv-smm-hero__breadcrumb{
  list-style: none;
  padding: 10px 14px !important;
  margin: 8px auto 0;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,.50);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 90%;
}

/* breadcrumb items */
.dv-smm-hero__breadcrumb li{
  color: rgba(255,255,255,.95);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dv-smm-hero__breadcrumb li::before{
  content: none !important;
}
.dv-smm-hero__breadcrumb li + li::before{
  content: "\203A" !important;
  font-size: 14px;
  line-height: 1;
  opacity: .75;
  color: rgba(255,255,255,.70);
}

.dv-smm-hero__breadcrumb a{
  color:#fff !important;
  text-decoration:none;
  font-weight: 800;
  transition: color .25s ease;
}
.dv-smm-hero__breadcrumb a:hover{
  color: #f687b3 !important;
}
.dv-smm-hero__breadcrumb li.active{
  color: #f687b3 !important;
  font-weight: 900;
}

/* =========================================================
   3) RESPONSIVE
========================================================= */
@media (max-width: 991px){
  .page-title-area.dv-smm-hero{
    min-height: 360px !important;
    padding: 145px 0 80px !important;
  }
}

@media (max-width: 576px){
  .page-title-area.dv-smm-hero{
    min-height: 320px !important;
    padding: 130px 0 70px !important;
  }
  .dv-smm-hero__badge{
    padding: 9px 14px;
    font-size: 12px;
  }
  .dv-smm-hero__breadcrumb{
    border-radius: 18px !important;
    padding: 10px 14px !important;
  }
}
