

a {
  text-decoration: none;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  background-image: url('../images/home-banner.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, .55);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.6rem;
}

.hero p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.btn-hero {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 2px;
  transition: .25s;
}

.btn-hero:hover {
  background: #fff;
  color: var(--maroon);
}


/* ===== ABOUT ===== */
.section-title {
  color: var(--navy);
  font-weight: 700;
}

.section-subtitle {
  color: #444;
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.about-text {
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.services-section {
  background-image: url('../images/cctv-surveillance.avif');
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  padding: 160px 0;
  position: relative;
}

.services-section .row{
  gap: 40px 20px;
  justify-content: center;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.85);
}




.service-img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  text-align: center;
  color: #fff;

  opacity: 0;
  transition: .4s ease;
}

.service-overlay h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.service-img-wrap:hover .service-overlay {
  opacity: 1;
}



.service-overlay {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: .4s ease;
}

.service-img-wrap:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}


/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--maroon);
  color: #fff;
  padding: 46px 0;
}

.cta-title {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.cta-title b {
  font-weight: 700;
}

.cta-sub {
  opacity: .9;
  margin-bottom: 0;
}

.btn-cta {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 2px;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #fff;
  color: var(--maroon);
}



@media (max-width:767px) {
  .info-strip .info-item+.info-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .25);
  }

  .hero {
    background-attachment: scroll;
    padding: 110px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-banner .row>div {
    text-align: center !important;
    margin-bottom: 16px;
  }
}