/* @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

:root {
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --color-primary: #7c05f1;
  --color-secondary: #a71de9;
  --color-accent: #d25cd2;
  --color-highlight: #f97316;
  --color-dark: #0d0718;
} */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

:root {
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --color-primary: #7c05f1;
  --color-secondary: #a71de9;
  --color-accent: #d25cd2;
  --color-highlight: #f97316;
  --color-dark: #0d0718;

  /* overall colors */
  --color-red-100: #ffe2e2;
  --color-red-200: #ffc9c9;
  --color-red-400: #ff6467;
  --color-red-500: #fb2c36;
  --color-red-700: #c10007;
  --color-amber-100: #fef3c6;
  --color-amber-200: #fee685;
  --color-amber-300: #ffd230;
  --color-amber-400: #ffb900;
  --color-amber-500: #fe9a00;
  --color-amber-700: #bb4d00;
  --color-yellow-400: #fdc700;
  --color-green-400: #05df72;
  --color-green-500: #00c950;
  --color-green-600: #00a63e;
  --color-emerald-100: #d0fae5;
  --color-emerald-200: #a4f4cf;
  --color-emerald-300: #5ee9b5;
  --color-emerald-400: #00d492;
  --color-emerald-500: #00bc7d;
  --color-emerald-600: #009966;
  --color-emerald-700: #007a55;
  --color-teal-900: #0b4f4a;
  --color-blue-100: #dbeafe;
  --color-blue-200: #bedbff;
  --color-blue-300: #8ec5ff;
  --color-blue-400: #51a2ff;
  --color-blue-500: #2b7fff;
  --color-blue-700: #1447e6;
  --color-indigo-100: #e0e7ff;
  --color-indigo-200: #c6d2ff;
  --color-indigo-300: #a3b3ff;
  --color-indigo-500: #615fff;
  --color-indigo-600: #4f39f6;
  --color-violet-50: #f5f3ff;
  --color-violet-100: #ede9fe;
  --color-violet-200: #ddd6ff;
  --color-violet-300: #c4b4ff;
  --color-violet-400: #a684ff;
  --color-violet-500: #8e51ff;
  --color-violet-600: #7f22fe;
  --color-violet-700: #7008e7;
  --color-violet-800: #5d0ec0;
  --color-violet-900: #4d179a;
  --color-purple-50: #faf5ff;
  --color-purple-100: #f3e8ff;
  --color-purple-200: #e9d4ff;
  --color-purple-300: #dab2ff;
  --color-purple-400: #c27aff;
  --color-purple-500: #ad46ff;
  --color-purple-600: #9810fa;
  --color-purple-700: #8200db;
  --color-purple-800: #6e11b0;
  --color-purple-900: #59168b;
  --color-fuchsia-100: #fae8ff;
  --color-fuchsia-200: #f6cfff;
  --color-fuchsia-300: #f4a8ff;
  --color-fuchsia-500: #e12afb;
  --color-fuchsia-600: #c800de;
  --color-fuchsia-900: #721378;
  --color-pink-500: #f6339a;
  --color-pink-600: #e60076;
  --color-pink-900: #861043;
  --color-rose-500: #ff2056;
  --color-slate-300: #cad5e2;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5dc;
  --color-gray-400: #99a1af;
  --color-gray-500: #6a7282;
  --color-gray-600: #4a5565;
  --color-gray-700: #364153;
  --color-gray-800: #1e2939;
  --color-gray-900: #101828;
  --color-black: #000;
  --color-white: #fff;
}

* {
  box-sizing: border-box;
  transition: all 0.3s ease !important;
}

body {
  margin: 0 !important;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #7c05f1;
  border-radius: 3px;
}
img {
  width: 100%;
  height: 100%;
}

/* icon box button hover effect */
.elementskit-infobox .box-body .box-footer .elementskit-btn:hover .icon {
  transform: translateX(5px);
}
/* ─── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(14px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 5, 241, 0.3);
  }
  50% {
    box-shadow:
      0 0 50px rgba(124, 5, 241, 0.6),
      0 0 80px rgba(167, 29, 233, 0.3);
  }
}
@keyframes gradient-x {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-slower {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes blob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmerBtn {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(250%) skewX(-15deg);
  }
}
@keyframes marquee-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes marquee-rtl {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes drawLine {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* ─── Animation helpers ───────────────────────────────────────────────────── */
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-floatB {
  animation: floatB 7s ease-in-out infinite;
}
.animate-float-slow {
  animation: floatSlow 9s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}
.animate-spin-slow {
  animation: spin-slow 25s linear infinite;
}
.animate-spin-slower {
  animation: spin-slower 35s linear infinite;
}
.animate-blob {
  animation: blob 9s ease-in-out infinite;
}
.animate-ring {
  animation: ringPulse 2.5s ease-out infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    #7c05f1 0%,
    #a71de9 30%,
    #d25cd2 60%,
    #7c05f1 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ─── Glass surfaces ─────────────────────────────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.glass-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(124, 5, 241, 0.06);
}
.glass-card {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
}
.glass-dark {
  background: rgba(13, 7, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Text utilities ─────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #7c05f1 0%, #a71de9 50%, #d25cd2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #f97316 0%, #a71de9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Background utilities ────────────────────────────────────────────────── */
.gradient-bg {
  background: linear-gradient(135deg, #7c05f1 0%, #a71de9 100%);
}
.gradient-bg-full {
  background: linear-gradient(135deg, #7c05f1 0%, #a71de9 50%, #d25cd2 100%);
}

.mesh-dark {
  background-color: #0d0718;
  background-image:
    radial-gradient(at 15% 25%, rgba(124, 5, 241, 0.4) 0, transparent 50%),
    radial-gradient(at 85% 10%, rgba(167, 29, 233, 0.3) 0, transparent 50%),
    radial-gradient(at 60% 85%, rgba(210, 92, 210, 0.22) 0, transparent 50%),
    radial-gradient(at 5% 85%, rgba(189, 60, 216, 0.18) 0, transparent 50%);
}
.mesh-light {
  background-color: #faf8ff;
  background-image:
    radial-gradient(at 20% 20%, rgba(124, 5, 241, 0.07) 0, transparent 50%),
    radial-gradient(at 80% 80%, rgba(167, 29, 233, 0.05) 0, transparent 50%);
}
.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}
.section-dark {
  background: linear-gradient(180deg, #0d0718 0%, #100a1e 100%);
}

/* ─── Component utilities ────────────────────────────────────────────────── */
.card-hover {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(124, 5, 241, 0.14);
}
.card-hover-light {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card-hover-light:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124, 5, 241, 0.12);
  border-color: rgba(124, 5, 241, 0.25) !important;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary .elementskit-btn {
  background: linear-gradient(135deg, #7c05f1, #a71de9) !important;
  color: white !important;
  padding: 13px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.btn-primary .elementskit-btn svg,
.btn-primary .elementskit-btn .icon {
  font-size: 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary .elementskit-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -10% !important;
  width: 40% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  ) !important;
  transform: skewX(-15deg);
  animation: shimmerBtn 3.5s ease-in-out infinite !important;
  opacity: 1 !important;
  z-index: 0 !important;
}
.btn-primary .elementskit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(124, 5, 241, 0.42) !important;
  transition: all 0.3s ease !important;
}
.btn-primary-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-secondary .elementskit-btn {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 13px 28px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.btn-secondary .elementskit-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  transition: all 0.3s ease !important;
}

.btn-outline .elementskit-btn {
  background: transparent !important;
  border: 1.5px solid rgba(124, 5, 241, 0.5) !important;
  color: #7c05f1 !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.btn-outline .elementskit-btn:hover {
  background: #7c05f1 !important;
  color: white !important;
  border-color: #7c05f1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(124, 5, 241, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-ghost .elementskit-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  padding: 11px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}
.btn-ghost .elementskit-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  transform: translateY(-2px) !important;
  transition: all 0.3s ease !important;
}

/* ─── Section badge / eyebrow ─────────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(
    135deg,
    rgba(124, 5, 241, 0.09),
    rgba(167, 29, 233, 0.09)
  );
  border: 1px solid rgba(124, 5, 241, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #7c05f1;
  letter-spacing: 0.03em;
}
.section-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 5, 241, 0.15);
  border: 1px solid rgba(124, 5, 241, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(210, 92, 210, 0.95);
  letter-spacing: 0.03em;
}

/* ─── Tag chip ────────────────────────────────────────────────────────────── */
.tag-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(124, 5, 241, 0.12);
  color: #7c05f1;
  letter-spacing: 0.02em;
}
.tag-chip-dark {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(124, 5, 241, 0.2);
  color: #c084fc;
  border: 1px solid rgba(124, 5, 241, 0.3);
}

/* ─── Line clamp ─────────────────────────────────────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Noise overlay ──────────────────────────────────────────────────────── */
.noise-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

/* ─── Dividers ───────────────────────────────────────────────────────────── */
.divider-gradient {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 5, 241, 0.4),
    rgba(210, 92, 210, 0.35),
    transparent
  );
}
.divider-light {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 5, 241, 0.15),
    transparent
  );
}

/* ─── Scrollbar hide ─────────────────────────────────────────────────────── */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ─── Code block style ───────────────────────────────────────────────────── */
.code-block {
  background: rgba(13, 7, 24, 0.9);
  border: 1px solid rgba(124, 5, 241, 0.2);
  border-radius: 14px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 12px;
  overflow: hidden;
}
.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.elementor-shortcode input[type="text"],
.elementor-shortcode input[type="email"],
.elementor-shortcode input[type="url"],
.elementor-shortcode input[type="password"],
.elementor-shortcode input[type="search"],
.elementor-shortcode input[type="number"],
.elementor-shortcode input[type="tel"],
.elementor-shortcode input[type="date"],
.elementor-shortcode input[type="month"],
.elementor-shortcode input[type="week"],
.elementor-shortcode input[type="time"],
.elementor-shortcode input[type="datetime-local"],
.elementor-shortcode textarea,
.elementor-shortcode select {
  padding: 12px 16px;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--color-gray-900) !important;
  font-size: 14px !important;
  line-height: 17px !important;
  border: 1px solid var(--color-gray-200) !important;
  width: 100% !important;
}

.elementor-shortcode input[type="text"]:focus,
.elementor-shortcode input[type="email"]:focus,
.elementor-shortcode input[type="url"]:focus,
.elementor-shortcode input[type="password"]:focus,
.elementor-shortcode input[type="search"]:focus,
.elementor-shortcode input[type="number"]:focus,
.elementor-shortcode input[type="tel"]:focus,
.elementor-shortcode input[type="date"]:focus,
.elementor-shortcode input[type="month"]:focus,
.elementor-shortcode input[type="week"]:focus,
.elementor-shortcode input[type="time"]:focus,
.elementor-shortcode input[type="datetime-local"]:focus,
.elementor-shortcode textarea:focus,
.elementor-shortcode select:focus {
  border-color: var(--color-purple-400);
  box-shadow: 0 0 5px 1px rgba(168, 85, 247, 0.35) !important;
  outline: none;
}

/* ─── Form Submit Buttons ────────────────────────────────────────────────── */
.elementor-shortcode form p:has(input[type="submit"]),
.elementor-shortcode form p:has(button[type="submit"]),
.elementor-shortcode form p:has(.wpcf7-submit),
.elementor-shortcode form p span:has(> input[type="submit"]),
.elementor-shortcode form p span:has(> .wpcf7-submit) {
  position: relative !important;
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50px !important;
  overflow: hidden !important;
}

.elementor-shortcode form p input[type="submit"],
.elementor-shortcode form p button[type="submit"],
.elementor-shortcode form p .wpcf7-submit {
  background: linear-gradient(135deg, #7c05f1, #a71de9) !important;
  color: white !important;
  padding: 13px 46px 13px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  border: none !important;
  margin: 0 !important;
}

.elementor-shortcode form p:has(input[type="submit"])::before,
.elementor-shortcode form p:has(button[type="submit"])::before,
.elementor-shortcode form p:has(.wpcf7-submit)::before,
.elementor-shortcode form p button[type="submit"]::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -10% !important;
  width: 40% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  ) !important;
  transform: skewX(-15deg);
  animation: shimmerBtn 3.5s ease-in-out infinite !important;
  opacity: 1 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.elementor-shortcode form p:has(input[type="submit"])::after,
.elementor-shortcode form p:has(button[type="submit"])::after,
.elementor-shortcode form p:has(.wpcf7-submit)::after,
.elementor-shortcode form p button[type="submit"]::after {
  content: "\2192" !important;
  position: absolute !important;
  right: 22px !important;
  top: 46% !important;
  transform: translateY(-50%) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: white !important;
  transition: transform 0.3s ease !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.elementor-shortcode form p:has(input[type="submit"]):hover,
.elementor-shortcode form p:has(button[type="submit"]):hover,
.elementor-shortcode form p:has(.wpcf7-submit):hover,
.elementor-shortcode form p button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(124, 5, 241, 0.42) !important;
  transition: all 0.3s ease !important;
}

.elementor-shortcode form p:has(input[type="submit"]):hover::after,
.elementor-shortcode form p:has(button[type="submit"]):hover::after,
.elementor-shortcode form p:has(.wpcf7-submit):hover::after,
.elementor-shortcode form p button[type="submit"]:hover::after {
  transform: translate(4px, -50%) !important;
}

/* Prevent double hover lift when input is inside <p> or <span> wrapper */
.elementor-shortcode form p:has(input[type="submit"]) input[type="submit"],
.elementor-shortcode form p:has(.wpcf7-submit) .wpcf7-submit,
.elementor-shortcode
  form
  p
  span:has(> input[type="submit"])
  input[type="submit"],
.elementor-shortcode form p span:has(> .wpcf7-submit) .wpcf7-submit {
  box-shadow: none !important;
  transform: none !important;
}

.elementor-shortcode form p .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 600;
}

.wpcf7-response-output {
  margin-bottom: 0 !important;
}

/* listing */
.inner-blog-left-content .ekit-heading__description ul,
.policy-page-left ul {
  padding-left: 20px !important;
  margin-bottom: 20px !important;
}

.inner-blog-left-content .ekit-heading__description ul li {
  margin-bottom: 8px !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.inner-blog-left-content .ekit-heading__description ul li::marker {
  color: #a71de9;
}
