:root {
  --brand-primary: #03297c;
  --brand-accent: #36964e;
  --brand-soft-bg: #f5f8ff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-primary);
}
i.ti-check {
  color: var(--clr-white-90) !important;
}
.agency-capabilities .highlight {
  color: #2e964d;
}

.agency-capabilities h2 {
  color: var(--brand-primary);
}

.capability-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.capability-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.capability-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Technology Card Styles */
.tech-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6ebf3;
  padding: 30px 22px 26px;
  height: 100%;
  transition: all 0.35s ease;
  border-radius: 10px;
}

/* Hover state */
.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: 0 16px 40px rgba(3, 41, 124, 0.15);
}

/* Accent dot */
.tech-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
}

/* Badges container */
.tech-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Badge styling */
.tech-badges span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--brand-soft-bg);
  border: 1px solid rgba(3, 41, 124, 0.15);
  color: var(--brand-primary);
}

/* Subtle badge hover */
.tech-card:hover .tech-badges span {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}


.thankyou-popup {
  position: fixed !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.thankyou-popup.active {
  display: flex;
}

.popup-box {
  background: #ffffff;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
}
.popup-close {
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  background: #03297c;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #36964e;
}
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

button.loading .btn-text {
  display: none;
}

button.loading .btn-loader {
  display: inline-block;
}

button.loading {
  pointer-events: none;
  opacity: 0.8;
}
