/* Hero video styles */
.hero-video{
  position:relative;
  overflow:hidden;
  min-height:100vh; /* 70vh */
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.hero-bg-video{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-bg-video video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  transform:translate(-50%,-50%);
  object-fit:cover;
  pointer-events:none;
}
.hero-video::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:1;
}
.hero-video .container{position:relative;z-index:2;padding-bottom:70px}
.hero-video .section-sub-title{display:block;color:#cfe6ff;margin-bottom:12px;font-weight:600}
.hero-video h1{color:#fff;font-size:46px;line-height:1.05;margin:0 0 10px;font-weight:700}

@media (max-width:991px){
  .hero-video{min-height:60vh}
  .hero-video h1{font-size:32px}
}

@media (max-width:575px){
  .hero-video h1{font-size:24px}
  .hero-video .container{padding-bottom:40px}
}

/* Utility: hide video on very small devices if needed */
@media (max-width:420px){
  .hero-bg-video video{display:none}
  .hero-video::after{background:linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.45))}
}
