

  body.service-page section.service-section {
    padding: 60px 20px;
   
  }
  
  body.service-page .service-section > div {
    margin-bottom: 40px;
  }
  
  html {
    scroll-behavior: smooth;
  }

.scroll-offset-anchor {
  display: block;
  height: 140px;   
  margin-top: -100px; 
  visibility: hidden;
  pointer-events: none;
}

body.service-page .service-section h2,
body.service-page .service-section h3 {
  color: #2FC646; 
}

body > .aos-init,
body > header + .aos-init {
  transform: none !important;
  will-change: unset !important;
  
}

body > main .aos-init {
  transform: initial !important;
}

body.service-page .service-section .aos-init {
  transform: none !important;
}

.service-grid-wrapper {
  background-color: #1c1f26; 
  padding: 60px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  width: calc(33.333% - 20px);
  background-image: 
    linear-gradient(145deg, #0e1421, #1a1f2d),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 2px
    );
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    inset 0 0 10px rgba(0, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    inset 0 0 14px rgba(0, 255, 255, 0.08);
  background-image: 
    linear-gradient(145deg, #0e1421, #1a1f2d),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 2px
    );
  transform: translateY(-8px);
}

@media (max-width: 1200px) {
  .service-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
}

.service-card h3,
.service-card h5 {
  font-size: 1.5rem;
  color: #2FC646;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #bbb;
  flex-grow: 1;
}

.service-card .learn-more-btn,
.service-card .btn-primary {
  display: inline-block;
  background-color: #2FC646;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card .learn-more-btn:hover,
.service-card .btn-primary:hover {
  background-color: #28b03e;
  color: #fff;
  box-shadow: 0 0 12px rgba(47, 198, 70, 0.5);
}

.deliverables-card {
  background-image: 
    linear-gradient(145deg, #0e1421, #1a1f2d),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 2px
    );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  color: #ccc;

  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    inset 0 0 10px rgba(0, 255, 255, 0.04);

  transition: transform 0.4s ease, box-shadow 0.4s ease;

  position: relative;
  z-index: 5;               
  pointer-events: auto;     
  transform: translateZ(0); 
  isolation: isolate;       
}

.deliverables-card:hover {
  transform: translateY(-6px) translateZ(0);
  z-index: 6;
}

.deliverables-card * {
  pointer-events: auto;
}

.deliverables-card h4 {
  font-size: 1.4rem;
  color: #2FC646;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1; 
}

.deliverables-card h4::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #2FC646;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;

  z-index: 0; 
}

.ticks {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #bbb;
  line-height: 1.6;
  position: relative;
}

.ticks li i {
  color: #2FC646;
  font-size: 1.2rem;
  position: relative;
   flex-shrink: 0;
}

.ticks li div {
  flex: 1;
}

.ticks li strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 4px;
}

.strategy-image {
  width: 100%;
  height: auto;         
  max-width: 100%;
  max-height: 700px;    
  display: block;
  border-radius: 8px;
}

  @media (min-width: 768px) {
    body.service-page .service-section .row.align-items-center {
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;
    }
  
    body.service-page .service-section .row.align-items-center .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

