.elementor-1832 .elementor-element.elementor-element-4d2a8b2{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* Force Elementor sections to full width */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
}

/* Force HTML widgets to break out of containers */
.elementor-widget-html {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  overflow-x: hidden !important;
}

/* If using Elementor Flexbox containers */
.e-con {
  --content-width: 100% !important;
  max-width: 100% !important;
}

/* Ensure sections stretch full width */
.elementor-section-full_width .elementor-section-wrap,
.elementor-section-full_width {
  width: 100% !important;
  max-width: 100% !important;
}

/* ── FONTS ── */
@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;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');


/* ── BRAND VARIABLES ── 
   Use these anywhere: var(--navy), var(--cyan), etc.
   ──────────────────── */
:root {
  /* Brand Colors */
  --navy: #050A1E;
  --navy-light: #0B1535;
  --navy-mid: #101D45;
  --blue: #125B92;
  --blue-light: #1A7BC4;
  --cyan: #2BC4C4;
  --cyan-bright: #43E9E9;
  --cyan-dark: #1DA5A5;
  --cyan-glow: rgba(43, 196, 196, 0.12);
  --cyan-subtle: rgba(43, 196, 196, 0.06);
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #43E9E9, #125B92);
  --gradient-brand-r: linear-gradient(135deg, #125B92, #43E9E9);

  /* Backgrounds */
  --bg-page: #F5F8FC;
  --bg-white: #FFFFFF;
  --bg-alt: #EDF2F8;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255,255,255,0.75);
  --bg-footer: #050A1E;

  /* Text Colors */
  --text-heading: #050A1E;
  --text-body: #3A4A5C;
  --text-muted: #7A8DA0;
  --text-light: #A0B0C0;
  --text-on-dark: #E8EEF4;
  --text-on-dark-muted: #8A9AB0;

  /* Borders & Shadows */
  --border: rgba(18, 91, 146, 0.1);
  --border-strong: rgba(18, 91, 146, 0.18);
  --shadow-sm: 0 2px 8px rgba(5,10,30,0.04);
  --shadow-md: 0 8px 30px rgba(5,10,30,0.07);
  --shadow-lg: 0 16px 50px rgba(5,10,30,0.1);
  --shadow-glow: 0 8px 30px rgba(43,196,196,0.15);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1180px;
}


/* ── BASE RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}


/* ── GRADIENT TEXT ── 
   Use class "gradient-text" on any heading/span 
   ─────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ── SECTION LABELS & TITLES ──
   Use on small label above section headings
   ─────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--text-heading);
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}


/* ── SECTION BACKGROUNDS ──
   Apply as classes to Elementor sections
   ──────────────────────── */
.section-white { background: var(--bg-white); }
.section-alt { background: var(--bg-alt); }
.section-page { background: var(--bg-page); }


/* ── BUTTONS ──
   Apply classes: "btn btn-primary", "btn btn-outline", etc.
   ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: rgba(18,91,146,0.06);
  transform: translateY(-2px);
  color: var(--blue);
}

.btn-ghost {
  background: rgba(18,91,146,0.06);
  border: 1px solid var(--border);
  color: var(--blue);
}
.btn-ghost:hover {
  background: rgba(18,91,146,0.1);
  color: var(--blue);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.78rem; }
.btn-lg { padding: 1.1rem 3.2rem; font-size: 0.92rem; }
.btn-full { width: 100%; justify-content: center; }


/* ── CARDS ──
   Apply class "card" to any container
   ───────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}


/* ── FORMS ──
   Apply to input/select/textarea elements
   ───────────── */
.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(43, 196, 196, 0.12);
}
.form-input::placeholder { color: var(--text-light); }


/* ── ANIMATIONS ──
   Apply class "reveal" to any element for scroll-triggered fade-in.
   Requires the JavaScript snippet (see animated-background.html).
   ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── FOOTER ── */
.footer {
  background: var(--bg-footer);
  padding: 4rem 2rem 2rem;
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer a {
  font-size: 0.84rem;
  color: var(--text-on-dark-muted);
}
.footer a:hover {
  color: var(--cyan-bright);
}/* End custom CSS */