.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* FORCE BLUE HOVER – ALL HERO BUTTONS */
.hero .btn-primary:hover,
.hero .btn-secondary:hover,
.hero .elementor-button:hover,
.hero a.elementor-button:hover,
.hero button:hover {
  background-color: #669BBC !important;
  box-shadow: 0 20px 55px rgba(102,155,188,0.55) !important;
  border-color: #669BBC !important;
}
.hero .btn-secondary:hover {
  background-color: rgba(102,155,188,0.12) !important;
  box-shadow: 0 18px 45px rgba(102,155,188,0.45) !important;
}
/* =========================
   CINEMATIC LIGHT DRIFT
========================= */
.hero-glow {
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

@keyframes cinematicDrift {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-48%) translateY(-3%) scale(1.05);
  }
  100% {
    transform: translateX(-52%) translateY(2%) scale(1.08);
  }
}

/* =========================
   TYPOGRAPHY REVEAL
========================= */
.hero-title .line-one,
.hero-title .line-two {
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-title .line-one {
  animation: titleFadeUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

.hero-title .line-two {
  animation: titleMaskReveal 1.1s ease forwards;
  animation-delay: 0.55s;
  overflow: hidden;
}

@keyframes titleFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleMaskReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* =========================
   STAGGERED TRUST PROOF
========================= */
.trust-row {
  opacity: 0;
  animation: trustFade 0.6s ease forwards;
  animation-delay: 0.8s;
}

.avatar {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  animation: avatarIn 0.5s ease forwards;
}

.avatar:nth-child(1) { animation-delay: 0.9s; }
.avatar:nth-child(2) { animation-delay: 1.05s; }
.avatar:nth-child(3) { animation-delay: 1.2s; }
.avatar:nth-child(4) { animation-delay: 1.35s; }

@keyframes avatarIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes trustFade {
  to { opacity: 1; }
}

/* =========================
   MOVING GRADIENT BACKGROUND
========================= */
.hero {
  background: #000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      60% 60% at 20% 30%,
      rgba(102,155,188,0.18),
      transparent 60%
    ),
    radial-gradient(
      50% 50% at 80% 70%,
      rgba(0,48,73,0.22),
      transparent 65%
    );
  filter: blur(120px);
  animation: gradientDrift 26s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
/* =========================
   TORCHLIGHT MASK (GRIFLAN STYLE)
========================= */
.torch-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 220px at 50% 50%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.6) 75%
  );
  pointer-events: none;
  z-index: 1; /* above gradients, below content */
  transition: background 0.06s ease-out;
}

/* Disable torch on touch devices */
@media (hover: none) {
  .torch-overlay {
    display: none;
  }
}
/* =========================
   GLOBAL DARK BACKGROUND RESET
   (OVERRIDES THEME & ELEMENTOR)
========================= */

/* Core document */
html,
body {
  background-color: #000 !important;
  color: #FDF0D5;
}

/* Elementor main wrappers */
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.elementor-column,
.elementor-column-wrap {
  background-color: transparent !important;
}

/* WordPress theme wrappers (very important) */
#page,
#content,
#primary,
#main,
.site,
.site-content,
.site-main,
.content-area,
.page,
.page-content,
.entry-content,
.wrap,
.wrapper {
  background-color: #000 !important;
}

/* Fix white strips caused by margins */
body,
.site,
.site-content {
  margin: 0;
}

/* Ensure pseudo-elements don't reveal white */
body::before,
body::after {
  background: #000;
}

/* =========================
   SAFETY: FORM ELEMENTS
========================= */
input,
textarea,
select {
  background-color: transparent;
}



/* =========================
   GRADIENT MOTION
========================= */
@keyframes gradientDrift {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  50% {
    transform: translate(-6%, 4%) scale(1.05);
  }
  100% {
    transform: translate(5%, -5%) scale(1.08);
  }
}/* End custom CSS */