/* ============================================================
   MAP EDUCATION — Homepage Redesign
   css/homepage-redesign.css
   ============================================================ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --navy:       #0b1437;
  --navy-dark:  #070b20;
  --navy-mid:   #162054;
  --white:      #FFFFFF;
  --accent:     #1E6FFF;
  --teal:       #0EA5C4;
  --amber:      #F59E0B;
  --emerald:    #10B981;
  --rose:       #F43F5E;
  --grey-light: #F4F6FB;
  --grey-text:  #6B7280;
  --light-bg:   #F0F4FF;
}

/* ── BASE FONT ───────────────────────────────────────────── */
.page-wrapper { font-family: 'DM Sans', system-ui, sans-serif !important; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes hpFadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes hpFadeUp  { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:none } }
@keyframes hpPulse   { 0%,100%{ transform:scale(1) } 50%{ transform:scale(1.08) } }
@keyframes hpSlideIn { from { opacity:0; transform:translateX(-20px) } to { opacity:1; transform:none } }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.1s }
.reveal-d2 { transition-delay:.2s }
.reveal-d3 { transition-delay:.3s }
.reveal-d4 { transition-delay:.4s }
.reveal-d5 { transition-delay:.5s }
.reveal-d6 { transition-delay:.6s }

/* ── HEADINGS: force font + disable theme uppercase ──────── */
.home-trial h1, .home-trial h2, .home-trial h3,
.home-trial h4, .home-trial h5, .home-trial h6,
.home-trial .sec-title h2,
.home-trial .hp-services-heading {
  font-family: 'Syne', sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  line-height: 1.25 !important;
}


/* ══════════════════════════════════════════════════════════
   1. NAVBAR / HEADER
══════════════════════════════════════════════════════════ */

.header-top,
.header-top .inner-container {
  background-color: var(--navy) !important;
  min-height: 36px !important;
}
.header-top .list-style-one li,
.header-top .list-style-one li a,
.header-top .social-icon-one li a {
  color: rgba(255,255,255,.8) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.header-style-two,
.header-style-two .header-lower,
.main-header .sticky-header,
.sticky-header.fixed-header {
  background-color: var(--white) !important;
}
.header-style-two:before { background: none !important; }

/* Header style two normally places the nav over the next section.
   Keep it in the document flow so the hero image starts below it. */
.header-style-two .header-lower {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(10,31,92,.08) !important;
  box-shadow: 0 8px 24px rgba(10,31,92,.06) !important;
}

.main-header.scrolled .header-lower {
  box-shadow: 0 2px 16px rgba(10,31,92,.12) !important;
  border-bottom: 2px solid var(--navy) !important;
}

.header-lower .logo img,
.sticky-header .logo img,
.mobile-menu .nav-logo img {
  height: 48px !important;
  width: auto !important;
}

.main-menu .navigation > li > a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: color .2s ease !important;
}
.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current > a {
  color: var(--accent) !important;
}

.main-header .outer-box .theme-btn,
.header-lower .outer-box .theme-btn {
  background-color: var(--navy) !important;
  border-radius: 9999px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  transition: background .2s ease !important;
}
.main-header .outer-box .theme-btn .btn-title {
  color: var(--white) !important;
}
.main-header .outer-box .theme-btn:hover {
  background-color: var(--accent) !important;
}
.main-header .outer-box .theme-btn::before,
.main-header .outer-box .theme-btn::after { display:none !important; }


/* ══════════════════════════════════════════════════════════
   2. HERO — Split Layout with Consultation Form
══════════════════════════════════════════════════════════ */

.home-trial {
  background: #fafbff !important;
}

/* Hero section */
.hp-hero {
  position: relative;
  background: linear-gradient(160deg, #f8faff 0%, #edf2ff 40%, #f5f1ff 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}
/* Decorative circle — large */
.hp-hero::before {
  content: '';
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1.5px solid rgba(11,20,55,0.05);
  pointer-events: none;
}
/* Decorative circle — inner */
.hp-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,148,58,0.08);
  pointer-events: none;
}

/* SVG curve layer */
.hp-hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hp-hero-curves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* Floating accent dots */
.hp-hero-dot {
  position: absolute;
  border-radius: 50%;
}
.hp-hero-dot-1 {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, #c9943a 0%, rgba(201,148,58,0.3) 55%, transparent 70%);
  right: 33%;
  bottom: 16%;
  animation: hpDotFloat 4s ease-in-out infinite;
}
.hp-hero-dot-2 {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, rgba(30,111,255,0.55) 0%, rgba(30,111,255,0.15) 55%, transparent 70%);
  left: 44%;
  top: 18%;
  animation: hpDotFloat 5s ease-in-out infinite reverse;
}
@keyframes hpDotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Inner flex container */
.hp-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* ── Left: headline text ── */
.hp-hero-text {
  flex: 1;
  max-width: 540px;
}
.hp-hero-tagline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 18px;
}
.hp-hero-text h1 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(36px, 4.5vw, 60px) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.12 !important;
  margin: 0 0 32px !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}
.hp-hero-gold {
  color: #c9943a;
}
.hp-hero-call-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.2s, box-shadow 0.25s;
}
.hp-hero-call-btn:hover {
  background: #162054;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,20,55,0.25);
}

/* ── Right: form card ── */
.hp-hero-form-card {
  flex: 0 0 400px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(11,20,55,0.14);
  background: #fff;
  position: relative;
  /* overflow: visible so absolutely-positioned dropdown panels can escape */
}
.hp-hero-form-head {
  background: var(--navy);
  padding: 22px 28px;
  text-align: center;
  border-radius: 16px 16px 0 0;
}
.hp-hero-form-body {
  border-radius: 0 0 16px 16px;
}
.hp-hero-form-head h3 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin: 0 !important;
}
.hp-hero-form-body {
  padding: 28px 28px 32px;
}

/* Floating-label fields — matches Contact Us style */
.hp-hf-field {
  position: relative;
  margin-bottom: 16px;
}
.hp-hf-field input,
.hp-hf-field select {
  width: 100%;
  background: #f9f8f6;
  border: 1.5px solid #e5dfd4;
  border-radius: 12px;
  padding: 18px 18px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
  letter-spacing: 0.01em;
}
/* ── HOMEPAGE-HERO CUSTOM DROPDOWN (.hp-hd-*) ──
   Real button/div dropdown — replaces native <select> so the
   open panel can be styled with rounded corners, animations, icons. */
.hp-hf-field.hp-hd-wrap {
  position: relative;
}
.hp-hd-trigger {
  width: 100%;
  min-height: 62px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px 18px 22px;
  background: #fbfaf7;
  border: 1.5px solid #e5dfd4;
  border-radius: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.005em;
  transition: border-color .25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow .25s cubic-bezier(0.22, 1, 0.36, 1),
              background .25s, transform .15s;
}
.hp-hd-trigger:hover {
  border-color: #d6cab2;
  background: #fff;
}
.hp-hd-trigger:focus, .hp-hd-wrap.is-open .hp-hd-trigger {
  border-color: #c9943a;
  box-shadow: 0 0 0 4px rgba(201,148,58,0.10);
  background: #fff;
}
.hp-hd-icn {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(201,148,58,0.12);
  color: #c9943a;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.hp-hd-trigger:hover .hp-hd-icn { background: rgba(201,148,58,0.18); transform: scale(1.04); }
.hp-hd-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-hd-text.is-placeholder { color: #9ca3af; font-weight: 500; font-style: italic; }
.hp-hd-text:not(.is-placeholder) { color: var(--navy); font-weight: 600; font-style: normal; }
.hp-hd-arrow {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(201,148,58,0.10);
  color: #c9943a;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background .25s;
}
.hp-hd-trigger:hover .hp-hd-arrow { background: rgba(201,148,58,0.18); }
.hp-hd-wrap.is-open .hp-hd-arrow { transform: rotate(180deg); background: rgba(201,148,58,0.22); }

/* The dropdown panel — uses position: fixed + JS so it can escape
   the hero section's overflow:hidden (needed for decorative circles). */
.hp-hd-panel {
  position: fixed;
  top: 0; left: 0;
  width: 0;            /* set by JS to match trigger width */
  z-index: 9999;
  margin: 0; padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(11,20,55,0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11,20,55,0.22);
  max-height: 360px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity .22s cubic-bezier(0.22, 1, 0.36, 1),
              transform .25s cubic-bezier(0.22, 1, 0.36, 1),
              visibility .22s;
  pointer-events: none;
}
.hp-hd-wrap.is-open .hp-hd-panel {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hp-hd-panel::-webkit-scrollbar { width: 6px; }
.hp-hd-panel::-webkit-scrollbar-thumb { background: rgba(201,148,58,0.35); border-radius: 6px; }
.hp-hd-panel::-webkit-scrollbar-track { background: transparent; }

.hp-hd-panel li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.hp-hd-panel li:hover, .hp-hd-panel li.is-focused {
  background: #fff7e6;
}
.hp-hd-panel li.is-selected {
  background: #fff1d3;
}
.hp-hd-panel li.is-selected .hp-hd-opt-mark {
  background: #c9943a; color: #fff;
}
.hp-hd-opt-mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(201,148,58,0.10);
  color: #c9943a;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.hp-hd-opt-mark svg { width: 18px; height: 18px; }
.hp-hd-panel li:hover .hp-hd-opt-mark {
  background: rgba(201,148,58,0.20);
}
.hp-hd-opt-tx {
  display: flex; flex-direction: column; gap: 2px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.25;
}
.hp-hd-opt-tx strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.hp-hd-opt-tx em {
  font-style: normal;
  font-size: 12px;
  color: #6b7280;
  letter-spacing: 0.01em;
}
.hp-hf-field label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #9ca3af;
  pointer-events: none;
  transition: all 0.2s ease;
}
.hp-hf-field input:focus,
.hp-hf-field select:focus {
  border-color: #c9943a;
  box-shadow: 0 0 0 4px rgba(201,148,58,0.1);
  background: #fff;
}
.hp-hf-field input:focus ~ label,
.hp-hf-field input:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #c9943a;
  font-weight: 600;
  text-transform: uppercase;
}
.hp-hf-field input::placeholder {
  color: transparent;
}

/* Submit button */
.hp-hf-submit {
  width: 100%;
  background: #c9943a;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hp-hf-submit:hover {
  background: #b8842f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,58,0.4);
}

/* Form result banner (inside hero consultation card) */
.hp-hf-alert {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  animation: hpAlertIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hp-hf-alert strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: 14px; }
.hp-hf-alert span   { display: block; opacity: 0.85; }
.hp-hf-alert-ok {
  background: rgba(52,199,89,0.10);
  border: 1px solid rgba(52,199,89,0.28);
  color: #0a6b34;
}
.hp-hf-alert-err {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.28);
  color: #8a1c1c;
}
@keyframes hpAlertIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   3. STATS — Why Choose Us (Card Grid)
══════════════════════════════════════════════════════════ */

.hp-stats-section {
  background: linear-gradient(180deg, #f0eeff 0%, #f8faff 50%, #fff 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-stats-section::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hp-stats-section::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,148,58,0.06);
  pointer-events: none;
}
.hp-stats-heading {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-align: center !important;
  line-height: 1.35 !important;
  max-width: 700px;
  margin: 0 auto 52px !important;
  text-transform: none !important;
}
.hp-stats-heading span {
  color: #c9943a;
}
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.hp-stats-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(11,20,55,0.07);
  position: relative;
  overflow: visible;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(11,20,55,0.13);
}

/* Dot at top */
.hp-stats-card-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(30,111,255,0.3);
  z-index: 2;
}
.dot-gold    { background: #c9943a !important; box-shadow: 0 2px 8px rgba(201,148,58,0.3) !important; }
.dot-teal    { background: #0EA5C4 !important; box-shadow: 0 2px 8px rgba(14,165,196,0.3) !important; }
.dot-emerald { background: #10B981 !important; box-shadow: 0 2px 8px rgba(16,185,129,0.3) !important; }

/* Card body */
.hp-stats-card-body {
  padding: 36px 20px 24px;
}

/* Icon */
.hp-stats-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hp-stats-icon.icon-gold    { color: #c9943a; }
.hp-stats-icon.icon-teal    { color: #0EA5C4; }
.hp-stats-icon.icon-emerald { color: #10B981; }

/* Number */
.hp-stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* Label */
.hp-stats-lbl {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-text);
  letter-spacing: 0.02em;
}

/* Bottom colored line */
.hp-stats-card-line {
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 16px 16px;
}
.hp-stats-card-line.line-gold    { background: #c9943a; }
.hp-stats-card-line.line-teal    { background: #0EA5C4; }
.hp-stats-card-line.line-emerald { background: #10B981; }


/* ══════════════════════════════════════════════════════════
   4. ABOUT / WELCOME
══════════════════════════════════════════════════════════ */

.home-trial .about-section-three {
  background: linear-gradient(180deg, #fff 0%, #f8faff 50%, #f2f5ff 100%) !important;
  padding: 64px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Decorative background elements */
.home-trial .about-section-three::before {
  content: '' !important;
  position: absolute !important;
  left: -140px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 500px !important;
  height: 500px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(30,111,255,0.05) !important;
  background: radial-gradient(circle, rgba(30,111,255,0.03) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.home-trial .about-section-three::after {
  content: '' !important;
  position: absolute !important;
  right: -80px !important;
  bottom: -80px !important;
  width: 360px !important;
  height: 360px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(201,148,58,0.06) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.home-trial .about-section-three .anim-icons { display: none !important; }
.home-trial .about-section-three .row {
  align-items: center !important;
}
.home-trial .about-section-three .sec-title {
  margin-bottom: 0 !important;
}
.home-trial .about-section-three .sec-title h2 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(24px, 2.8vw, 34px) !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin-bottom: 18px !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  line-height: 1.25 !important;
}
.home-trial .about-section-three .sec-title .text {
  color: var(--grey-text) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* Learn more link */
.hp-about-link {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #c9943a !important;
  text-decoration: none !important;
  margin-top: 20px;
  transition: color 0.2s, gap 0.2s;
  gap: 4px;
}
.hp-about-link:hover {
  color: var(--navy) !important;
}

/* Image column — compact */
.home-trial .about-section-three .image-column {
  padding-right: 20px !important;
}
.home-trial .about-section-three .image-column .inner-column {
  max-width: 360px !important;
  margin: 0 auto !important;
}
.home-trial .about-section-three .image-column .image-1 {
  border: none !important;
  outline: none !important;
}
.home-trial .about-section-three .image-column .image-1 img {
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(10,31,92,.12) !important;
  border: none !important;
  width: 100% !important;
  height: auto !important;
  max-height: 320px !important;
  object-fit: cover !important;
}
.home-trial .about-section-three .image-column .image-1::before,
.home-trial .about-section-three .image-column .image-1::after {
  display: none !important;
}
.home-trial .about-section-three .image-column .image-2 { display: none !important; }
.home-trial .about-section-three .image-column .inner-column .icon-dots { display: none !important; }
.home-trial .about-section-three .image-column .inner-column::before,
.home-trial .about-section-three .image-column .inner-column::after {
  display: none !important;
}

/* Text column — compact */
.home-trial .about-section-three .content-column .inner-column {
  padding: 0 0 0 16px !important;
}


/* ══════════════════════════════════════════════════════════
   5. OUR SERVICES — 12-card icon grid
══════════════════════════════════════════════════════════ */

.hp-svc-section {
  background: linear-gradient(180deg, #f2f5ff 0%, #f8fbff 50%, #f4f6fb 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-svc-section::before {
  content: '';
  position: absolute;
  right: -140px;
  top: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.05);
  background: radial-gradient(circle, rgba(30,111,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hp-svc-section::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hp-svc-badge {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9943a;
  margin-bottom: 12px;
}
.hp-svc-heading {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-align: center !important;
  line-height: 1.3 !important;
  max-width: 600px;
  margin: 0 auto 48px !important;
  text-transform: none !important;
}

.hp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Card */
.hp-svc-card {
  background: #fff;
  border: 1.5px solid rgba(11,20,55,0.06);
  border-radius: 14px;
  padding: 32px 16px 24px;
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hp-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11,20,55,0.1);
  border-color: rgba(201,148,58,0.2);
}

/* Icon circle */
.hp-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30,111,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.25s, transform 0.25s;
}
.hp-svc-icon svg {
  width: 28px;
  height: 28px;
}
.hp-svc-card:hover .hp-svc-icon {
  transform: scale(1.08);
}
/* Color variants */
.hp-svc-icon.icon-gold    { background: rgba(201,148,58,0.12); color: #c9943a; }
.hp-svc-icon.icon-teal    { background: rgba(14,165,196,0.12); color: #0EA5C4; }
.hp-svc-icon.icon-emerald { background: rgba(16,185,129,0.12); color: #10B981; }
.hp-svc-icon.icon-rose    { background: rgba(244,63,94,0.1);  color: #F43F5E; }
.hp-svc-icon.icon-amber   { background: rgba(245,158,11,0.12); color: #F59E0B; }
.hp-svc-icon.icon-navy    { background: rgba(11,20,55,0.08);  color: var(--navy); }

/* Label */
.hp-svc-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}


/* ══════════════════════════════════════════════════════════
   6 + 7. TABBED — Our Process & Why Australia
══════════════════════════════════════════════════════════ */

.hp-tabs-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1fa 50%, #f4f6fb 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hp-tabs-section::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.04);
  background: radial-gradient(circle, rgba(30,111,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hp-tabs-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Tab nav */
.hp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 52px;
  padding: 6px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 16px rgba(11,20,55,0.07);
  border: 1.5px solid rgba(11,20,55,0.06);
}
.hp-tab-btn {
  flex: 1;
  padding: 12px 28px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  border-radius: 44px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  letter-spacing: 0.02em;
  position: relative;
  opacity: 0.55;
}
.hp-tab-btn.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(11,20,55,0.22);
  opacity: 1;
}
.hp-tab-btn:not(.active):hover {
  opacity: 1;
  background: rgba(11,20,55,0.05);
}

/* Tab panels */
.hp-tab-panel {
  display: none;
}
.hp-tab-panel.active {
  display: block;
  animation: hpFadeUp 0.35s ease;
}

/* Card grid */
.hp-tabs-grid {
  display: grid;
  gap: 18px;
}
.hp-tabs-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Card */
.hp-tabs-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px 22px;
  border-left: 4px solid var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-text);
  line-height: 1.65;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  counter-increment: tabcard;
}
.hp-tabs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11,20,55,0.09);
}
/* Alternate border colors */
.hp-tabs-card:nth-child(3n+2) { border-left-color: var(--teal); }
.hp-tabs-card:nth-child(3n+3) { border-left-color: var(--emerald); }

/* Why Australia card variant — gold accent */
.hp-tabs-card.card-aus { border-left-color: #c9943a; }
.hp-tabs-card.card-aus:nth-child(3n+2) { border-left-color: var(--accent); }
.hp-tabs-card.card-aus:nth-child(3n+3) { border-left-color: var(--emerald); }

/* Number watermark */
.hp-tabs-card::before {
  content: counter(tabcard, decimal-leading-zero);
  position: absolute;
  top: -6px;
  right: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

/* Card title */
.hp-tabs-card-title {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}


/* ══════════════════════════════════════════════════════════
   8. FLIP CARDS — Resource Gallery + Stats
══════════════════════════════════════════════════════════ */

.hp-flip-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1fa 50%, #f4f6fb 100%) !important;
  padding: 80px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.hp-flip-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hp-flip-section::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.04);
  pointer-events: none;
}
.hp-flip-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Each card — fixed height so front & back match */
.hp-flip-card {
  perspective: 1000px !important;
  height: 320px !important;
}
.hp-flip-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1) !important;
  transform-style: preserve-3d !important;
}
.hp-flip-card:hover .hp-flip-inner {
  transform: rotateY(180deg) !important;
}

/* Shared face styles */
.hp-flip-front,
.hp-flip-back {
  position: absolute !important;
  inset: 0 !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* Front — image with caption overlay */
.hp-flip-front {
  background: var(--navy) !important;
}
.hp-flip-front img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 0.85 !important;
  transition: opacity 0.3s !important;
}
.hp-flip-card:hover .hp-flip-front img {
  opacity: 1 !important;
}
.hp-flip-caption {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(transparent, rgba(11,20,55,0.92)) !important;
  padding: 40px 20px 18px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  letter-spacing: 0.01em !important;
}

/* Back — stat card */
.hp-flip-back {
  background: linear-gradient(145deg, var(--navy) 0%, #162054 100%) !important;
  transform: rotateY(180deg) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  text-align: center !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.hp-flip-back .icon {
  font-size: 48px !important;
  color: #c9943a !important;
  line-height: 1 !important;
}
.hp-flip-number {
  font-family: 'Syne', sans-serif !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}
.hp-flip-label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.7) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}


/* ══════════════════════════════════════════════════════════
   9. MEET OUR TEAM
══════════════════════════════════════════════════════════ */

.hp-team-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #f8faff 50%, #f0f4ff 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-team-section::before {
  content: '';
  position: absolute;
  left: -120px;
  top: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.04);
  background: radial-gradient(circle, rgba(30,111,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hp-team-section::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Founder — featured rectangular card */
.hp-team-founder {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.hp-team-founder-img {
  width: 200px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #c9943a;
  box-shadow: 0 8px 32px rgba(201,148,58,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.hp-team-founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-team-founder-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(201,148,58,0.24);
}
.hp-team-founder .hp-team-name {
  font-size: 18px !important;
}
.hp-team-founder .hp-team-role {
  margin-bottom: 10px;
}

/* Shared styles */
.hp-team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid rgba(11,20,55,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.hp-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-team-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 4px !important;
  text-transform: none !important;
}
.hp-team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-text);
  display: block;
}
.hp-team-badge {
  display: inline-block;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c9943a;
  background: rgba(201,148,58,0.1);
  border: 1px solid rgba(201,148,58,0.2);
  padding: 4px 14px;
  border-radius: 20px;
}

/* Team grid */
.hp-team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hp-team-card {
  text-align: center;
  width: 180px;
}
.hp-team-card .hp-team-img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(11,20,55,0.14);
  border-color: rgba(201,148,58,0.3);
}
.hp-team-card .hp-team-name {
  font-size: 15px !important;
}


/* ══════════════════════════════════════════════════════════
   10. GOOGLE REVIEWS — Marquee Carousel
══════════════════════════════════════════════════════════ */

@keyframes hpReviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hp-reviews-section {
  background: linear-gradient(180deg, #f0f4ff 0%, #eaeffc 50%, #f0f4ff 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-reviews-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hp-reviews-section::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.04);
  pointer-events: none;
}

/* Google rating summary */
.hp-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.hp-reviews-g-logo {
  flex-shrink: 0;
}
.hp-reviews-score {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hp-reviews-stars {
  font-size: 20px;
  color: #F59E0B;
  letter-spacing: 2px;
  line-height: 1;
}
.hp-reviews-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: 0.04em;
}

/* Marquee wrapper */
.hp-reviews-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  margin-bottom: 44px;
}
.hp-reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: hpReviewScroll 45s linear infinite;
}
.hp-reviews-marquee:hover .hp-reviews-track {
  animation-play-state: paused;
}

/* Review card */
.hp-review-card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1.5px solid rgba(11,20,55,0.06);
  box-shadow: 0 4px 20px rgba(11,20,55,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(11,20,55,0.1);
}

/* Card header — avatar + name + stars */
.hp-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hp-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.hp-review-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hp-review-stars {
  font-size: 13px;
  color: #F59E0B;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 2px;
}

/* Card text */
.hp-review-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey-text);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Action buttons */
.hp-reviews-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.hp-reviews-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}
.hp-reviews-btn-outline {
  color: var(--navy) !important;
  border: 1.5px solid rgba(11,20,55,0.18);
  background: transparent;
}
.hp-reviews-btn-outline:hover {
  border-color: var(--navy);
  background: rgba(11,20,55,0.04);
}
.hp-reviews-btn-filled {
  color: #fff !important;
  background: var(--navy);
  border: 1.5px solid var(--navy);
}
.hp-reviews-btn-filled:hover {
  background: #162054;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,20,55,0.22);
}


/* ══════════════════════════════════════════════════════════
   11. FREQUENTLY ASKED QUESTIONS
══════════════════════════════════════════════════════════ */

.hp-faq-section {
  background: linear-gradient(180deg, #f0f4ff 0%, #f8faff 40%, #fff 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-faq-section::before {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1.5px solid rgba(30,111,255,0.04);
  background: radial-gradient(circle, rgba(30,111,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hp-faq-section::after {
  content: '';
  position: absolute;
  left: -80px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,58,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hp-faq-heading {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-align: center !important;
  margin: 0 0 44px !important;
  text-transform: none !important;
  line-height: 1.3 !important;
}
.hp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

/* Each FAQ item */
.hp-faq-item {
  border-bottom: 1px solid rgba(11,20,55,0.07);
  padding: 0 0 4px;
}
.hp-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--grey-text);
  margin-left: 16px;
  transition: transform 0.25s ease;
}
.hp-faq-item[open] summary::after {
  content: '−';
  color: #c9943a;
}
.hp-faq-item[open] summary {
  color: #c9943a;
}
.hp-faq-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-text);
  line-height: 1.7;
  padding: 0 0 16px;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   12. FOOTER
══════════════════════════════════════════════════════════ */

.main-footer {
  background-color: var(--navy) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.main-footer .widget-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin-bottom: 18px !important;
}
.main-footer .about-widget .text,
.main-footer .contact-info li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.65 !important;
}
.main-footer .contact-info li i {
  color: #c9943a !important;
  margin-right: 6px !important;
  font-size: 14px !important;
  width: 16px !important;
  text-align: center !important;
}
.main-footer .contact-info li a {
  color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.main-footer .contact-info li a:hover { color: var(--white) !important; }
.main-footer .user-links li a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.6) !important;
  transition: color .2s !important;
  display: block !important;
  padding: 4px 0 !important;
}
.main-footer .user-links li a:hover { color: var(--white) !important; }
.main-footer .footer-bottom {
  background-color: var(--navy-dark) !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
.main-footer .footer-bottom .copyright-text,
.main-footer .footer-bottom .copyright-text a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.45) !important;
}
.main-footer .social-icon-two li a {
  color: rgba(255,255,255,.5) !important;
  transition: color .2s !important;
  font-size: 16px !important;
}
.main-footer .social-icon-two li a:hover { color: var(--white) !important; }
.main-footer .upper-box {
  background: transparent !important;
  border-bottom: none !important;
}
.main-footer .upper-box .title {
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
}


/* ══════════════════════════════════════════════════════════
   13. WHATSAPP BUTTON
══════════════════════════════════════════════════════════ */

.whtfxicon {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--white) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.45) !important;
  animation: hpPulse 2s ease-in-out infinite !important;
  text-decoration: none !important;
}
.whtfxicon:hover {
  animation: none !important;
  transform: scale(1.1) !important;
}


/* ══════════════════════════════════════════════════════════
   14. PAGE TITLE BANNER — Matches Contact-Us Style
══════════════════════════════════════════════════════════ */

.page-title {
  background-color: #0b1437 !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 72px 0 80px !important;
}
.page-title::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,148,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201,148,58,0.05) 0%, transparent 55%) !important;
  opacity: 1 !important;
  display: block !important;
}
.page-title::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  pointer-events: none !important;
  display: block !important;
  opacity: 1 !important;
}
.page-title .auto-container {
  position: relative;
  z-index: 2;
}
.page-title .title-outer {
  position: relative;
}
/* Gold label — matches Contact Us .cp-hero-label */
.page-title-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #c9943a !important;
  margin-bottom: 20px !important;
}
.page-title-label::before {
  content: '' !important;
  display: block !important;
  width: 28px !important;
  height: 1px !important;
  background: #c9943a !important;
}
/* Decorative arc */
.page-title .title-outer::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,148,58,0.12);
  pointer-events: none;
}
.page-title .title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(48px, 6.5vw, 82px) !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin: 0 0 22px !important;
}
.page-title .title em {
  font-style: italic;
  color: #e8b96a;
}
.page-title .page-breadcrumb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
}
.page-title .page-breadcrumb li {
  color: rgba(255,255,255,0.45) !important;
}
.page-title .page-breadcrumb li a {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
.page-title .page-breadcrumb li a:hover {
  color: #e8b96a !important;
}
/* Breadcrumb separator */
.page-title .page-breadcrumb li + li::before {
  color: rgba(255,255,255,0.25) !important;
}


/* ══════════════════════════════════════════════════════════
   15. TOP UNIVERSITIES — About Us page
══════════════════════════════════════════════════════════ */

.countries-section-two {
  background: #fff !important;
  padding: 80px 0 !important;
}
.countries-section-two .bg-image {
  display: none !important;
}
.countries-section-two .sec-title h2,
.countries-section-two .sec-title.light h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(48px, 6.5vw, 82px) !important;
  font-weight: 300 !important;
  color: #c9943a !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}
.country-block-two .flag {
  border: 2px solid #111 !important;
  background: #fff !important;
  box-shadow: none !important;
}
.country-block-two .inner-box {
  box-shadow: none !important;
}
.country-block-two .flag img {
  object-fit: contain !important;
}
.country-block-two .info {
  background: transparent !important;
}
.country-block-two .title a {
  color: var(--map-primary-trial, #0b1437) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}


/* ══════════════════════════════════════════════════════════
   SECTION DECORATIVE CURVES
══════════════════════════════════════════════════════════ */

.hp-section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hp-section-decor svg {
  position: absolute;
  width: 110%;
  height: 100%;
  left: -5%;
  top: 0;
}

/* Content above decorative layers */
.hp-stats-section > .auto-container,
.home-trial .about-section-three > .auto-container,
.hp-team-section > .auto-container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .hp-svc-grid { grid-template-columns: repeat(3, 1fr); }

  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hp-tabs-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 991px) {
  .hp-hero-inner { flex-direction: column; gap: 40px; }
  .hp-hero-text { max-width: 100%; text-align: center; }
  .hp-hero-form-card { flex: 0 0 auto; width: 100%; max-width: 440px; }
  .hp-hero::before, .hp-hero::after { display: none; }
  .hp-flip-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .hp-hero { padding: 48px 0 56px; }
  .hp-hero-form-card { max-width: 100%; }
  .hp-hero-text h1 { font-size: 32px !important; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat-number { font-size: 32px; }
  .hp-stats-heading { font-size: 22px !important; }

  .hp-svc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }

  .hp-tabs-grid-3 { grid-template-columns: 1fr !important; }
  .hp-faq-grid { grid-template-columns: 1fr !important; }
  .hp-flip-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .hp-flip-card {
    height: 260px !important;
  }
  .hp-flip-number {
    font-size: 44px !important;
  }
  .home-trial .faqs-section .form-column .inner-column {
    padding: 28px 20px !important;
  }
  .home-trial .about-section-three { padding: 56px 0 !important; }
  .hp-tabs-section { padding: 48px 0 56px; }
  .hp-tab-btn { font-size: 13px; padding: 11px 16px; }
}
