/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/************************************************************
  ANGELSOFEDU ONE-PAGE BASE STYLES
*************************************************************/

/* -------- Color tokens -------- */
:root {
  --aedu-navy: #061833;
  --aedu-navy-soft: #0b2342;
  --aedu-navy-light: #16335f;
  --aedu-red: #e10102; /* e3262b */
  --aedu-gray-bg: #f5f6fa;
  --aedu-gray-light: #d4d7e0;
  --aedu-text-main: #1b2234;
  --aedu-text-muted: #6f7686;
  --aedu-white: #ffffff;
}

.wpcf7-spinner {
	display:none;
}

.wpcf7-form.init .small {
	font-size:small;
	padding-top:10px;
}

/* -------- Reset-ish helpers (scoped) -------- */
.aedu-section {
  position: relative;
  padding: 80px 20px;
  box-sizing: border-box;
  color: var(--aedu-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.aedu-container {
  max-width: 1120px;
  margin: 0 auto;
}

/* General headings / text */
.aedu-heading {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--aedu-text-main);
}

.aedu-heading-light {
  color: var(--aedu-white);
}

.aedu-final-subheading {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--aedu-text-main);
}

.aedu-text-light {
  color: rgba(255, 255, 255, 0.9);
}

.aedu-text-center {
  text-align: center;
}

/* Section eyebrow */
.aedu-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aedu-red);
  margin-bottom: 10px;
}

.aedu-eyebrow-light {
  color: #ffd1d3;
}

/* Cards */
.aedu-card {
  background: var(--aedu-white);
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(7, 20, 46, 0.18);
  padding: 28px 28px 30px;
}

/* Lists */
.aedu-list {
  margin: 0 0 20px;
  padding-left: 18px;
}

.aedu-list li {
  margin-bottom: 6px;
}

/* Two-column layout */
.aedu-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.aedu-two-col-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

/************************************************************
  HERO SECTION
*************************************************************/

.aedu-hero {
  padding-top: 120px;
  padding-bottom: 120px;
  color: var(--aedu-white);
  overflow: hidden;
}

.aedu-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, #26457a 0%, #061326 45%, #020716 80%),
    url("about:blank");
  background-size: cover;
  opacity: 0.98;
  z-index: 0;
}

.aedu-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  z-index: 1;
  align-items: center;
}

.aedu-hero-left {
  max-width: 560px;
}

.aedu-hero-logo-wrap {
  margin-bottom: 18px;
}

/* .aedu-hero-logo {
  max-width: 120px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
  animation: aedu-logo-float 5s ease-in-out infinite;
}

@keyframes aedu-logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
} */

.aedu-hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
}

.aedu-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
}

/* Hero right card (notify form) */
.aedu-hero-right {
  display: flex;
  justify-content: flex-end;
}

.aedu-hero-card {
  max-width: 320px;
  margin-left: auto;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
}

.aedu-card-title {
  font-size: 1rem;
  margin: 0 0 16px;
}

/************************************************************
  FORMS & BUTTONS
*************************************************************/

.aedu-notify-form .aedu-form-row {
  margin-bottom: 14px;
}

.aedu-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--aedu-gray-light);
  padding: 11px 12px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  box-sizing: border-box;
}

.aedu-input:focus {
  outline: none;
  border-color: var(--aedu-navy-light);
  box-shadow: 0 0 0 2px rgba(16, 49, 107, 0.25);
  background-color: #ffffff;
}

.aedu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
}

.aedu-btn-primary {
  background: linear-gradient(135deg, var(--aedu-red), #ff474c);
  color: var(--aedu-white);
  box-shadow: 0 10px 18px rgba(207, 42, 48, 0.45);
}

.aedu-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(207, 42, 48, 0.55);
}

.aedu-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(207, 42, 48, 0.45);
}

.aedu-btn-full {
  width: 100%;
}

.aedu-form-note {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--aedu-text-muted);
  margin: 8px 0 0;
}

/* Accessibility helper for labels */
.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/************************************************************
  WHAT IT IS
*************************************************************/

.aedu-what-it-is {
  background: var(--aedu-white);
}

.aedu-section-header {
  margin-bottom: 28px;
}

.aedu-what-card {
  margin: 0 auto;
}

.aedu-what-grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.aedu-what-icon .aedu-icon-logo {
  width: 64px;
  height: auto;
}

.aedu-what-content p {
  margin: 0 0 10px;
}

.aedu-what-content ul {
  margin: 0 0 18px;
}

.aedu-what-goal-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.aedu-what-goal {
  margin: 0;
  color: var(--aedu-text-muted);
}

/************************************************************
  HOW IT WORKS
*************************************************************/

.aedu-how-it-works {
  background: var(--aedu-gray-bg);
}

.aedu-how-card {
  text-align: center;
}

.aedu-how-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.aedu-how-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.aedu-how-step {
  background: #f9faff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--aedu-text-muted);
  display: inline-flex;
  justify-content: center;
}

/************************************************************
  SIMPLE RULES
*************************************************************/

.aedu-simple-rules {
  background: var(--aedu-white);
}

.aedu-simple-card {
  text-align: center;
}

.aedu-simple-image {
  max-width: 100%;
  border-radius: 16px;
  display: block;
  margin: 0 auto 12px;
}

.aedu-simple-caption {
  font-size: 0.85rem;
  color: var(--aedu-text-muted);
  margin: 0;
}

/************************************************************
  LOW COST MATTERS
*************************************************************/

.aedu-low-cost {
  padding-top: 100px;
  padding-bottom: 100px;
  color: var(--aedu-white);
}

.aedu-low-cost-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, #26457a 0%, #061326 50%, #020716 85%);
  z-index: 0;
}

.aedu-low-cost-card {
  position: relative;
  z-index: 1;
  background: rgba(5, 11, 32, 0.92);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.aedu-low-cost-visual {
  margin-top: 20px;
}

.aedu-low-cost-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.94;
}

/************************************************************
  WHO SUPPORTS THIS
*************************************************************/

.aedu-who-supports {
  background: var(--aedu-white);
}

.aedu-trust-card {
  text-align: center;
}

.aedu-trust-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.aedu-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.aedu-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--aedu-gray-bg);
  color: var(--aedu-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/************************************************************
  FINAL CTA
*************************************************************/

.aedu-final-cta {
  background: var(--aedu-gray-bg);
  padding-bottom: 120px;
  padding-top: 80px;
}

.aedu-final-cta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.aedu-final-cta-card p {
  margin-bottom: 14px;
}

/************************************************************
  RESPONSIVE
*************************************************************/

/* Tablet & down */
@media (max-width: 1024px) {
  .aedu-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
  }

  .aedu-section {
    padding: 70px 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .aedu-section {
    padding: 60px 18px;
  }

  .aedu-hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .aedu-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .aedu-hero-left {
    text-align: center;
    margin: 0 auto 24px;
  }

  .aedu-hero-logo-wrap {
    display: flex;
    justify-content: center;
  }

  .aedu-hero-title {
    font-size: 2.05rem;
  }

  .aedu-hero-subtitle {
    margin: 0 auto;
  }

  .aedu-hero-right {
    justify-content: center;
  }

  .aedu-hero-card {
    margin-left: 0;
    width: 100%;
    max-width: 360px;
  }

  .aedu-two-col,
  .aedu-two-col-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .aedu-what-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .aedu-low-cost-card {
    padding: 24px 20px;
  }
}

/************************************************************
  SIMPLE FADE-IN UTILITY (OPTIONAL)
*************************************************************/

/* If you want light motion, you can add class="aedu-fade" to cards
   and use Elementor motion effects OR just this pure CSS trigger
   plus JS intersection observer later if you want. For now it's
   harmless sugar. */

.aedu-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.aedu-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Wrap from before (unchanged) */
.aedu-hero-logo-wrap {
  position: relative;
  display: inline-block;
}

/* Glow + animation */
.aedu-hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 120, 255, 0.65) 0%,
    rgba(40, 120, 255, 0.35) 35%,
    rgba(40, 120, 255, 0.15) 55%,
    transparent 75%
  );
  filter: blur(25px);
  transform: scale(1.05);
  opacity: 0.7;
  z-index: 1;

  /* 👇 subtle breathing animation */
  animation: aedu-glow-breathe 6.5s ease-in-out infinite;
}

/* Logo on top */
.aedu-hero-logo {
  position: relative;
  z-index: 2;
  max-width: 400px !important;
  display: block;

  /* base glow */
  filter:
    drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 25px rgba(40, 120, 255, 0.6));

  animation: aedu-glow-edge 6s ease-in-out infinite;
}

/* Animated glow */
@keyframes aedu-glow-edge {
  0% {
    filter:
      drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 18px rgba(40, 120, 255, 0.45));
  }

  40% {
    filter:
      drop-shadow(0 22px 45px rgba(0, 0, 0, 0.65))
      drop-shadow(0 0 38px rgba(40, 120, 255, 0.85));
  }

  70% {
    filter:
      drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 22px rgba(40, 120, 255, 0.6));
  }

  100% {
    filter:
      drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 18px rgba(40, 120, 255, 0.45));
  }
}

h2.aedu-section-title {
	position: relative;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 600;
	font-size: 0.95rem;
	color: #e3262b; /* your red */
	margin: 0 0 40px;
	display: inline-block;
}

.aedu-section-title::before,
.aedu-section-title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 70px;        /* line length */
	height: 2px;        /* line thickness */
}

.aedu-section-title::before {
	right: 100%;
	margin-right: 18px;
	background: linear-gradient(
		to right,
		transparent,
		rgba(225, 1, 2, 0.5)
	);
}

.aedu-section-title::after {
	left: 100%;
	margin-left: 18px;
	background: linear-gradient(
		to right,
		rgba(225, 1, 2, 0.5),
		transparent
	);
}

/*************************************************
  THREE-STEP STACKED DIAGRAM
**************************************************/

.aedu-steps-diagram {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Each row */
.aedu-step-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 12px;
}

.aedu-step-row:last-child {
  margin-bottom: 0;
}

/* Arrow on the left */
.aedu-step-arrow {
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.aedu-step-arrow::before,
.aedu-step-arrow::after {
  content: "";
  display: block;
  position: relative;
}

/* Arrow tail */
.aedu-step-arrow::before {
  width: 40px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(183, 199, 233, 0),
    rgba(183, 199, 233, 0.9)
  );
}

/* Arrow tip */
.aedu-step-arrow::after {
  margin-left: -4px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent rgba(183, 199, 233, 0.95);
}

/* Card */
.aedu-step-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 26px 10px 18px;
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(7, 20, 46, 0.12);
}

/* Icon circle */
.aedu-step-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 40%, #edf1ff 100%);
  box-shadow: 0 8px 18px rgba(18, 35, 85, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Vertical connector line between icons */
.aedu-step-row:not(.aedu-step-row--last) .aedu-step-icon-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 28px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(183, 199, 233, 0.9),
    rgba(183, 199, 233, 0.1)
  );
}

/* Label text */
.aedu-step-label {
  font-size: 1.02rem;
  color: #0b2342;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .aedu-step-label {
    font-size: 0.96rem;
    white-space: normal;
  }
}

/* ---------- Icons (you can change these) ---------- */

.aedu-step-icon {
  font-size: 22px;
  color: #0b2342;
}

/* Emoji-based placeholders (easy to replace with SVG / font icons) */
.aedu-step-icon-1::before {
  content: "🏠";
}

.aedu-step-icon-2::before {
  content: "👤";
}

.aedu-step-icon-3::before {
  content: "📈";
}
