.bookconsultation {
  font-family: Arial, sans-serif !important;
}

/* Main cards (consultation boxes) */
.bookconsultation .service-card {
  border-radius: 12px !important;
  padding: 20px !important;
  border: 1px solid #e5e7eb !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
}

/* Hover effect */
.bookconsultation .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
  border-color: #2f6bff !important;
}

/* Service title */
.bookconsultation .service-name {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

/* Small icon box (TR / IN) */
.bookconsultation .service-icon {
  background: #2f6bff !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

/* Section heading */
.bookconsultation h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}

/* Remove extra spacing */
.bookconsultation * {
  box-sizing: border-box;
}
.hedertext1:hover {
  animation: glowBlink 1s infinite;
  color: #2a7de1;
}

@keyframes glowBlink {
  0% {
    opacity: 1;
    text-shadow: 0 0 5px #2a7de1;
  }
  50% {
    opacity: 0.4;
    text-shadow: 0 0 20px #2a7de1;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 5px #2a7de1;
  }
}