/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#page-hero {
  background-image: url(../assets/images/services/main-service-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.services .card {
  border: 1.5px solid #007ac7;
  background: #777777;
  position: relative;
  border-radius: 0;
  height: 100%;
}
.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
  height: 260px;
  object-fit: cover;
  width: 100%;
}
.section-title h2 {
  text-align: center;
  padding-bottom: 30px;
}
.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.services .card a {
  color: #fafcfd;
  transition: 0.3;
}
.services .card a:hover {
  color: #000000;
  color: #205184;
}
.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: #000000;
  font-size: 15px;
}
.services .card:hover .card-img img {
  transform: scale(1.1);
}

/* Hero video overlay text */
#hero.page-hero { position: relative; }
#hero .video-bg { position: relative; }
#hero .video-bg video { width: 100%; height: 60vh; object-fit: cover; display: block; }
#hero .video-bg .overlay-color { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)); }
.hero-overlay { position:absolute; inset:0; display:flex; align-items:center; }
.hero-text { color:#fff; text-align:left; max-width: 800px; animation: heroFade .9s ease both; }
.hero-text .pre-title { text-transform: uppercase; letter-spacing: .12em; font-weight:600; opacity:.9 }
.hero-title { font-size: clamp(28px, 4vw, 44px); font-weight:800; margin:.25rem 0 .5rem 0 }
.hero-subtitle { font-size: clamp(14px, 2vw, 18px); opacity:.95; margin:0 }
@keyframes heroFade { from{ transform: translateY(12px); opacity:0 } to{ transform:none; opacity:1 } }

