/* Service Detail Page Custom Styles */

/* Hero Section Fix */
.hero.hero-2 {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  height: 685px;
  overflow: hidden;
}

@media screen and (max-width: 991.98px) {
  .hero.hero-2 {
    height: 100vh;
  }
}

.hero.hero-2 .bg-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero.hero-2 .bg-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero.hero-2.bg-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#021c37 0%, #041c35 6.74%, rgba(21, 27, 33, 0) 74.68%, rgba(27, 26, 26, 0) 100%);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.hero.hero-2 .container {
  position: relative;
  z-index: 2;
}

.hero.hero-2 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media screen and (max-width: 991.98px) {
  .hero.hero-2 .hero-content {
    text-align: center;
  }
}

.hero.hero-2 .hero-subtitle {
  font-family: var(--global--font-heading);
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.hero.hero-2 .hero-title {
  font-family: var(--global--font-heading);
  color: #ffffff;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media screen and (max-width: 767.98px) {
  .hero.hero-2 .hero-title {
    font-size: 32px;
  }
}

.hero.hero-2 .hero-desc {
  font-family: var(--global--font-body);
  color: #f9f9f9;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero.hero-2 .hero-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 767.98px) {
  .hero.hero-2 .hero-action {
    flex-direction: column;
  }
}

.hero.hero-2 .hero-action .btn {
  min-width: 200px;
  height: 68px;
}

/* CTA Section Styles */
.cta-section {
  padding: 80px 0 100px;
  background: transparent;
}

.cta-section .cta-box {
  background: #063464;
  padding: 36px 40px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(12, 40, 20, 0.06);
  display: inline-block;
  max-width: 820px;
  width: 100%;
  color
}

.cta-section .cta-subtitle {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-section .cta-title {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-section .cta-desc {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section .cta-actions .btn {
  min-width: 220px;
  padding: 14px 22px;
}

.cta-section .btn--primary {
  background: #9bcb3b;
  color: #fff;
  border: none;
}

.cta-section .btn--alternative {
  background: #06b6ff;
  color: #fff;
  border: none;
}

@media screen and (max-width: 767.98px) {
  .cta-section .cta-box { padding: 28px 20px; }
  .cta-section .cta-title { font-size: 26px; }
  .cta-section .cta-actions { display:flex; flex-direction:column; gap:12px; align-items:center; }
}
