.elementor-39 .elementor-element.elementor-element-5fcf224{--display:flex;--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;}.elementor-39 .elementor-element.elementor-element-e2c228a{--display:flex;--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;}/* Start custom CSS for html, class: .elementor-element-c962e51 */:root {
  --primary-yellow: #ffb400;
  --text-dark: #1e293b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 8%;
  background: #fff;
  z-index: 10;
  position: relative;
}

.logo-text {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-text .aura { color: #000; }
.logo-text .thron { color: var(--primary-yellow); }

/* HERO */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 30px;
}

/* YELLOW CURVE BACKGROUND */
.yellow-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--primary-yellow);
  clip-path: ellipse(85% 100% at 50% 100%);
  z-index: 1;
}

/* CARD */
.card {
  background: #fff;
  padding: 60px 50px;
  border-radius: 24px;
  max-width: 650px;
  width: 90%;
  z-index: 5;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.title {
  font-weight: 900;
  color: var(--primary-yellow);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
  font-size: clamp(1.55rem, 5.2vw, 2.6rem);
}

/* TEXT */
p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #4b5563;
}

/* BUTTON */
.btn {
  background: var(--primary-yellow);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(255, 180, 0, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(255, 180, 0, 0.4);
  background-color: #e6a200;
}

/* FOOTER — visible and consistent */
footer {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  background: var(--primary-yellow);
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 20px 5%; }
  .card { padding: 40px 30px; }
  .hero { padding-bottom: 50px; }
  .logo-text { font-size: 2rem; }
}

@media (max-width: 360px) {
  .title { font-size: 1.35rem; }
}/* End custom CSS */