.elementor-17 .elementor-element.elementor-element-67818ff{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c6315cf */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@400;700;800&display=swap');

:root {
  --clr-bg:        #f5f0fc;
  --clr-bg2:       #ede5f8;
  --clr-primary:   #945cc0;
  --clr-accent:    #c076e6;
  --clr-dark:      #44338e;
  --clr-text:      #2a1f45;
  --clr-muted:     #7a6899;
  --clr-white:     #ffffff;
  --clr-card:      rgba(255, 255, 255, 0.65);

  --font-display:  'Syne', sans-serif;
  --font-body:     'Outfit', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   GRADIENT BACKGROUND
=========================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(192, 118, 230, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(148, 92, 192, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(68, 51, 142, 0.07) 0%, transparent 70%),
    linear-gradient(160deg, #f5f0fc 0%, #ede5f8 50%, #e8dcf5 100%);
  z-index: 0;
  pointer-events: none;
  animation: bgShift 16s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { opacity: 1; filter: hue-rotate(0deg); }
  100% { opacity: 1; filter: hue-rotate(8deg); }
}

/* ===========================
   GRADIENT ORBS
=========================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(192, 118, 230, 0.22) 0%, transparent 70%);
  top: -140px;
  left: -100px;
  animation: orbDrift1 20s ease-in-out infinite alternate;
}

.orb-2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(148, 92, 192, 0.16) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation: orbDrift2 24s ease-in-out infinite alternate;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(68, 51, 142, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: orbPulse 12s ease-in-out infinite;
}

.orb-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(192, 118, 230, 0.13) 0%, transparent 70%);
  top: 30%;
  left: -80px;
  animation: orbDrift3 18s ease-in-out infinite alternate;
}

.orb-5 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(68, 51, 142, 0.12) 0%, transparent 70%);
  top: -60px;
  right: 15%;
  animation: orbDrift1 22s ease-in-out infinite alternate-reverse;
}

.orb-6 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(148, 92, 192, 0.11) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation: orbPulse 15s ease-in-out infinite;
  animation-delay: -5s;
}

.orb-7 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192, 118, 230, 0.18) 0%, transparent 70%);
  bottom: 25%;
  right: 8%;
  animation: orbDrift2 17s ease-in-out infinite alternate;
  animation-delay: -8s;
}

.orb-8 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(68, 51, 142, 0.09) 0%, transparent 70%);
  top: 65%;
  left: 70%;
  animation: orbDrift3 25s ease-in-out infinite alternate;
  animation-delay: -3s;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 70px) scale(1.1); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -40px) scale(1.12); }
}

@keyframes orbDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -55px) scale(1.08); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.25); }
}

/* ===========================
   FLOATING SHAPES (CSS only)
=========================== */
.shape {
  position: fixed;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: floatUp linear infinite;
}

.shape-1 {
  width: 8px; height: 8px;
  background: var(--clr-accent);
  left: 12%;
  animation-duration: 14s;
  animation-delay: 0s;
}
.shape-2 {
  width: 5px; height: 5px;
  background: var(--clr-primary);
  left: 35%;
  animation-duration: 18s;
  animation-delay: 3s;
}
.shape-3 {
  width: 10px; height: 10px;
  background: var(--clr-dark);
  left: 60%;
  animation-duration: 12s;
  animation-delay: 6s;
  border-radius: 3px;
  transform: rotate(45deg);
}
.shape-4 {
  width: 6px; height: 6px;
  background: var(--clr-accent);
  left: 78%;
  animation-duration: 16s;
  animation-delay: 1.5s;
}
.shape-5 {
  width: 4px; height: 4px;
  background: var(--clr-primary);
  left: 88%;
  animation-duration: 20s;
  animation-delay: 9s;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0.8);
  }
  10% { opacity: 0.35; }
  80% { opacity: 0.25; }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1.1);
  }
}

/* ===========================
   HERO LAYOUT
=========================== */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;

  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 660px;
  width: 100%;

  background: var(--clr-card);
  border: 1px solid rgba(148, 92, 192, 0.15);
  border-radius: 28px;
  padding: clamp(1.25rem, 3vh, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 24px rgba(148, 92, 192, 0.08),
    0 1px 0 rgba(255,255,255,0.9) inset;
}

/* ===========================
   BADGE
=========================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 92, 192, 0.25);
  background: rgba(192, 118, 230, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.45s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 6px var(--clr-accent);
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ===========================
   HERO ICON
=========================== */
.icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.6s both;
}

.icon-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 118, 230, 0.2) 0%, transparent 70%);
  animation: iconGlow 3.5s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.18); opacity: 1; }
}

.hero-icon {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 14px rgba(148, 92, 192, 0.3));
  animation: iconSpin 22s linear infinite;
}

@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===========================
   TYPOGRAPHY
=========================== */
.heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--clr-text);
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.75s both;
}

.heading-accent {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 60%, var(--clr-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheading {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-muted);
  max-width: 480px;
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.9s both;
}

/* ===========================
   CTA BUTTON
=========================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-dark));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: 1px solid rgba(192, 118, 230, 0.25);
  box-shadow:
    0 6px 24px rgba(148, 92, 192, 0.28),
    0 1px 0 rgba(255,255,255,0.15) inset;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth),
    border-color 0.3s;
  animation: fadeInUp 0.9s var(--ease-out-expo) 1.05s both;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
  border-radius: inherit;
}

.cta-btn:hover::before  { opacity: 1; }

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(192, 118, 230, 0.55);
  box-shadow:
    0 0 0 5px rgba(148, 92, 192, 0.1),
    0 0 32px rgba(192, 118, 230, 0.35),
    0 12px 32px rgba(68, 51, 142, 0.3);
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-icon,
.cta-btn > span {
  position: relative;
  z-index: 1;
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   HOME BUTTON
=========================== */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.5rem;
  border-radius: 999px;
  background: transparent;
  color: var(--clr-muted);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(148, 92, 192, 0.2);
  transition:
    color 0.25s var(--ease-smooth),
    border-color 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth),
    transform 0.25s var(--ease-smooth);
  animation: fadeInUp 0.9s var(--ease-out-expo) 1.2s both;
}

.home-btn:hover {
  color: var(--clr-primary);
  border-color: rgba(148, 92, 192, 0.45);
  background: rgba(192, 118, 230, 0.06);
  transform: translateY(-2px);
}

.home-btn:active {
  transform: translateY(0);
}

.home-btn .cta-icon {
  opacity: 0.75;
}

.home-btn:hover .cta-icon {
  opacity: 1;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 600px) {
  .hero {
    padding: 1rem;
  }

  .hero-inner {
    padding: 1.5rem 1.25rem;
    gap: 0.85rem;
    border-radius: 20px;
  }

  .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .hero-icon {
    width: 56px;
    height: 56px;
  }

  .cta-btn,
  .home-btn {
    width: 100%;
    justify-content: center;
  }

  .orb-1 { width: 260px; height: 260px; }
  .orb-2 { width: 320px; height: 320px; }
  .orb-4 { width: 200px; height: 200px; }
  .orb-5 { width: 150px; height: 150px; }
  .orb-6 { width: 180px; height: 180px; }
  .orb-7 { width: 120px; height: 120px; }
  .orb-8 { display: none; }
}/* End custom CSS */