/*--------------------------------------------------------------
# App services - Modern enhancement
--------------------------------------------------------------*/
.services .section-title h2 {
  position: relative;
  display: inline-block;
}

.services .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #3884c3, #5fb0f0);
}

/* Card style for each service */
.services .content .icon-box {
  position: relative;
  padding: 28px 24px 28px 26px;
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid #eef3f8;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(56, 132, 195, 0.07);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Accent bar that appears on hover */
.services .content .icon-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3884c3, #5fb0f0);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.services .content .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(56, 132, 195, 0.16);
  border-color: #d8e8f6;
}

.services .content .icon-box:hover::before {
  transform: scaleY(1);
}

/* Modern circular icon */
.services .content .icon-box i {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-size: 28px;
  border-radius: 14px;
  color: #3884c3;
  background: linear-gradient(135deg, rgba(56, 132, 195, 0.12), rgba(95, 176, 240, 0.18));
  margin-bottom: 16px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.services .content .icon-box:hover i {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #3884c3, #5fb0f0);
  color: #ffffff;
}

.services .content .icon-box h4 {
  margin: 0 0 10px 0;
  font-size: 19px;
}

.services .content .icon-box p {
  margin-left: 0;
  line-height: 1.6;
}

/* Modern CTA buttons in services */
.services .btn-primary {
  border-radius: 50px !important;
  padding: 12px 32px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(56, 132, 195, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(56, 132, 195, 0.35);
}

/* Shine sweep effect on cards */
.services .content .icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.services .content .icon-box:hover::after {
  left: 140%;
}

/*--------------------------------------------------------------
# Hero consulting banner (compact)
--------------------------------------------------------------*/
.hero-consulting-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 132, 195, 0.10), rgba(95, 176, 240, 0.16));
  border: 1px solid rgba(56, 132, 195, 0.18);
  box-shadow: 0 6px 18px rgba(56, 132, 195, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-consulting-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3884c3, #5fb0f0);
}

.hero-consulting-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(56, 132, 195, 0.15);
}

.hero-consulting-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, #3884c3, #5fb0f0);
  box-shadow: 0 6px 14px rgba(56, 132, 195, 0.30);
  animation: heroPulse 2.6s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.hero-consulting-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
  min-width: 0;
}

.hero-consulting-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #2a6aa0;
  margin-bottom: 1px;
  line-height: 1.2;
}

.hero-consulting-desc {
  font-size: 0.78rem;
  color: #5a6b7b;
  line-height: 1.35;
}

.hero-consulting-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2a6aa0;
  background: #fff;
  border: 1px solid rgba(56, 132, 195, 0.2);
  border-radius: 50px;
  box-shadow: 0 3px 9px rgba(56, 132, 195, 0.07);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-pill i {
  font-size: 0.85rem;
}

.hero-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3884c3, #5fb0f0);
  color: #fff;
}

/*--------------------------------------------------------------
# Feature list - harmonized with consulting banner
--------------------------------------------------------------*/
.feature-item {
  border: 1px solid rgba(56, 132, 195, 0.14) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
}

.feature-item:hover {
  background: #ffffff !important;
  border-color: rgba(56, 132, 195, 0.25) !important;
}

.feature-icon-wrapper {
  border-radius: 10px !important;
}

/*--------------------------------------------------------------
# Phone WhatsApp button (hero contact)
--------------------------------------------------------------*/
.contact-card:has(.contact-wtsp-btn) {
  display: flex;
  align-items: center;
}

.contact-wtsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #f2fbf5);
  border: 1px solid rgba(37, 211, 102, 0.22);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.14);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-wtsp-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-wtsp-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
}

@media (max-width: 575px) {
  .hero-consulting-banner {
    padding: 10px 12px;
  }
  .hero-consulting-pills {
    width: 100%;
  }
  .contact-wtsp-btn {
    display: none;
  }
}


