.wrap-80 {
  width: 80%;
  max-width: 1400px;
  margin: auto;
}

/* ===== TOP BANNER (NOT HERO) ===== */
.service-banner {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax */
  display: flex;
  align-items: flex-end;
}


.smallparab {
font-size:14px;
color:#fff;
}

.smallparabold {
font-size:15px;
color:#000;
	font-weight: bold;
}

.parab {
font-size:14px;
color:#fff;
}

.para {
font-size:16px;
color:#fff;
	line-height: 1.4;
}

.banner-text-box {
  position: relative;
  color: #fff;
  padding: 40px;
  max-width: 800px;
}

.banner-text-box h1 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;	
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";	
}

.banner-text-box p {
  font-size: 18px;
  margin-top: 10px;
}

/* ===== INTRO ===== */
.service-intro {
  background: #f3f3f3;
  padding: 70px 0;
}

.service-intro h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.service-intro p {
  line-height: 1.7;
  color: #444;
}

/* ===== SPLIT SECTION ===== */
.service-split {
  padding: 50px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-img img {
  width: 100%;
  border-radius: 12px;
}

.split-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.split-content ul {
  padding-left: 20px;
  font-size:18px;
	line-height: 1.5;
  font-weight:bold;	
}

.split-content li {
  margin-bottom: 10px;
	font-size: 18px;
  line-height: 1.6;

}

.wrap-80 ul {
  padding-left: 30px;
  font-size:16px;
  line-height: 1.5;
}

.wrap-80 li {
  margin-bottom: 10px;
}


/* ===== APPROACH ===== */
.service-approach {
  background: #114a8d;
  color: #fff;
  padding: 80px 0;
}

.service-approach h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-approach ul {
  padding-left: 20px;
}

.service-approach li {
  margin-bottom: 12px;
}

/* ===== CTA ===== */
.service-cta {
  position: relative;
  height: 500px;
  background-size: cover;	
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.service-cta h2 {
  position: relative;
  color: #fff;
  font-size: 36px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .wrap-80 {
    width: 90%;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .banner-text-box h1 {
    font-size: 28px;
  }
}
@media(max-width: 768px) {
  .service-banner {
    background-attachment: scroll;
  }
}

.text-btn-bg {
  padding: 12px 30px;
  border: 1px solid white;
  background: transparent;
  font-size: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}


.center-box {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }

.missiomgrid{
    padding:30px 10%;
    background:#f5f5f5;
  }

  .missiomgrid-container{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:10px;
  }

  .missiomgrid-box{
    background: #DFDFDF;
    color:#fff;
    padding:30px 20px;
    text-align:left;
    border-radius:10px;
  }

  /* Tablet */
  @media(max-width:992px){
    .missiomgrid-container{
      grid-template-columns:repeat(3, 1fr);
    }
  }

  /* Mobile */
  @media(max-width:600px){
    .missiomgrid-container{
      grid-template-columns:repeat(1, 1fr);
    }
  }

.missgrid{
    padding:30px 10%;
    background:#f5f5f5;
  }

  .missgrid-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
  }

  .missgrid-box{
    background: #DFDFDF;
    color:#fff;
    padding:30px 20px;
    text-align:left;
    border-radius:10px;
  }

  /* Tablet */
  @media(max-width:992px){
    .missgrid-container{
      grid-template-columns:repeat(3, 1fr);
    }
  }

  /* Mobile */
  @media(max-width:600px){
    .missgrid-container{
      grid-template-columns:repeat(1, 1fr);
    }
  }


