/* ===== BRIGHT FOLIO - MAIN STYLESHEET ===== */
:root {
  --orange: #FF8A00;
  --orange-dark: #e07800;
  --orange-light: #fff4e6;
  --text: #1a1a2e;
  --text-muted: #5a6478;
  --border: #e8e8f0;
  --bg: #ffffff;
  --bg-alt: #f8f5f0;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: 780px; }

/* ===== HEADER - DIGIPERFORM STYLE ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

/* Logo bar */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { height: 44px; width: auto; }
.brand-sub { display: none; }

/* Helpline bar — hidden */
.helpline-bar {
  display: none !important;
}
.helpline-bar svg { flex-shrink: 0; }
.helpline-bar strong { color: var(--text); }
.helpline-bar .hl-arrow {
  margin-left: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Desktop nav — hidden on mobile */
.nav {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
@media(min-width:1024px){
  .nav { display: flex; }
  .menu-btn { display: none !important; }
}

.nav > a,
.nav > .has-sub > a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav > a:hover,
.nav > .has-sub > a:hover { color: var(--orange); }
.nav > a.active,
.nav > .has-sub > a.active { color: var(--orange); }

/* Desktop dropdown */
.has-sub { position: relative; }
.has-sub > a::after {
  content: ' ▾';
  font-size: 11px;
  opacity: 0.7;
}
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 230px;
  padding: 8px 0;
  z-index: 600;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { display: block; }
.sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.sub-menu a:hover { background: var(--orange-light); color: var(--orange); }

.header-cta { margin-left: 12px; flex-shrink: 0; }

/* ===== HAMBURGER ===== */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background 0.2s;
}
.menu-btn:hover { background: #f5f5f5; }
.menu-btn span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, width 0.25s;
  transform-origin: center;
}

/* ===== MOBILE FULL-SCREEN MENU (Digiperform style) ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 490;
  pointer-events: none;
}
.mobile-nav.active { pointer-events: all; }

/* Backdrop */
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s;
}
.mobile-nav.active .mobile-nav-backdrop { background: rgba(0,0,0,0.45); }

/* Panel slides in from right */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
}
.mobile-nav.active .mobile-nav-panel { transform: translateX(0); }

/* Panel header: logo + close */
.mnp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.mnp-head .brand img { height: 40px; }
.mnp-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--text);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mnp-close:hover { background: #f5f5f5; }

/* Nav links */
.mnp-links {
  flex: 1;
  padding: 8px 0 24px;
}

/* Regular link */
.mnp-link {
  display: block;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.15s, background 0.15s;
}
.mnp-link:hover, .mnp-link.active { color: var(--orange); background: var(--orange-light); }

/* Accordion item */
.mnp-acc { border-bottom: 1px solid #f5f5f5; }
.mnp-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s, background 0.15s;
}
.mnp-acc-toggle:hover { color: var(--orange); background: var(--orange-light); }
.mnp-acc-toggle.open { color: var(--orange); }
.mnp-acc-chevron {
  font-size: 15px;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.mnp-acc-toggle.open .mnp-acc-chevron { transform: rotate(180deg); color: var(--orange); }

/* Accordion body */
.mnp-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1);
  background: #fafafa;
}
.mnp-acc-body.open { max-height: 800px; }
.mnp-acc-body a {
  display: block;
  padding: 12px 24px 12px 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s, background 0.15s;
}
.mnp-acc-body a:last-child { border-bottom: none; }
.mnp-acc-body a:hover { color: var(--orange); background: var(--orange-light); }

/* Helpline at bottom of panel */
.mnp-helpline {
  padding: 18px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  background: #fafafa;
  text-decoration: none;
  flex-shrink: 0;
}
.mnp-helpline svg { flex-shrink: 0; }
.mnp-helpline strong { font-size: 15px; color: var(--text); }
.mnp-helpline .hl-arrow { margin-left: auto; font-size: 13px; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn.primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn.primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,138,0,0.35);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn.ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
/* Ghost button on dark hero background */
.hero .btn.ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.hero .btn.ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ===== EYEBROW / LABELS ===== */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.eyebrow.light { background: rgba(255,255,255,0.25); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section.alt-bg { background: var(--bg-alt); }
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); max-width: 640px; }
.section-head.center p { margin: 0 auto; }

h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(22px, 3.5vw, 34px); }
h3 { font-size: 18px; font-weight: 700; }
p { color: var(--text-muted); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: var(--white);
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media(min-width:800px){ .hero-grid { grid-template-columns: 1fr 380px; } }
.hero h1 { color: var(--white); }
.hero p { color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.hero-extra { font-size: 15px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 24px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ===== GRIDS ===== */
.grid { display: grid; gap: 20px; }
.courses-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.project-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.module-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.location-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

/* ===== CARDS ===== */
.course-card, .blog-card, .location-card, .module-card, .project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.course-card:hover, .blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.course-card h3, .module-card h3, .project-card h3 { margin-bottom: 8px; font-size: 17px; }
.course-card p, .module-card p, .project-card p, .blog-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.course-card a, .blog-card a { font-size: 14px; font-weight: 600; color: var(--orange); }
.blog-card span { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 8px; }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.location-card { background: var(--bg-alt); border: none; }
.location-card h3 { color: var(--orange); margin-bottom: 10px; }

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s, background 0.2s;
}
.mini-card:hover { border-color: var(--orange); background: var(--orange-light); }
.mini-card strong { font-size: 14px; color: var(--text); }
.mini-card span { font-size: 12px; color: var(--orange); font-weight: 600; }

/* ===== FORM CARD ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 8px; font-size: 20px; }
.form-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.hero .form-card { background: var(--white); }

.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
}
.lead-form input:focus { outline: none; border-color: var(--orange); }
.lead-form input::placeholder { color: #aaa; }
.lead-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; }

/* ===== SPLIT GRID ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media(min-width:800px){ .split-grid { grid-template-columns: 1fr 1fr; } }

.info-panel p { margin-bottom: 14px; }
.info-panel .eyebrow { margin-bottom: 10px; }

/* ===== PACKAGES TABLE ===== */
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.compare-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.compare-table tbody th {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  background: var(--orange-light);
}
.compare-table td { color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; gap: 16px; }
@media(min-width:640px){ .testimonials { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }
.quote {
  background: var(--bg-alt);
  border-left: 3px solid var(--orange);
  padding: 20px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  font-style: italic;
  color: var(--text);
}

/* ===== BULLET LIST ===== */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.bullet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section { padding: 64px 0; background: var(--bg-alt); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body { padding: 0 22px 18px; font-size: 15px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { color: var(--white) !important; }
.footer-brand img { filter: brightness(10); }
.site-footer p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 12px; }
.site-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 14px; font-weight: 700; }
.site-footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: #25D366;
  color: var(--white) !important;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: var(--white) !important; }

/* ===== INTRO SECTION ===== */
.intro-section p { max-width: 680px; margin-bottom: 16px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span::before { content: ' / '; margin: 0 4px; }

/* ===== CENTERS CARDS ===== */
.center-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.center-card:hover { box-shadow: var(--shadow-md); }
.center-card h3 { color: var(--orange); margin-bottom: 10px; font-size: 20px; }
.center-card p { font-size: 14px; color: var(--text-muted); }
.center-card a.btn { margin-top: 16px; font-size: 14px; padding: 10px 20px; }
.centers-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ===== RESPONSIVE ===== */
@media(max-width:640px){
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wa-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ===== CHANGES: Mobile header - hide Enquire Now button on mobile ===== */
@media(max-width:1023px){
  .header-cta { display: none !important; }
}

/* ===== REVIEWS SLIDER ===== */
.reviews-section { padding: 64px 0; background: var(--bg); overflow: hidden; }
.reviews-track-wrap { overflow: hidden; position: relative; margin: 0 -20px; }
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.reviews-track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.reviews-track {
  display: flex;
  gap: 20px;
  padding: 16px 20px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 300px;
  min-width: 300px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--text); }
.review-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-badge { display: inline-block; font-size: 11px; font-weight: 600; color: var(--orange); background: var(--orange-light); border-radius: 20px; padding: 2px 8px; margin-top: 6px; }

/* ===== LOCATION CTA SECTION ===== */
.location-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #e07800 100%);
  padding: 48px 0;
  text-align: center;
  color: var(--white);
}
.location-cta h2 { color: var(--white); margin-bottom: 10px; }
.location-cta p { color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.location-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn.white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 13px 28px;
}
.btn.white-outline:hover { background: var(--white); color: var(--orange); }
.btn.white-solid {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn.white-solid:hover { background: rgba(255,255,255,0.9); }

/* ===== COURSE ICON CARDS ===== */
.course-card .course-icon { font-size: 32px; margin-bottom: 12px; }

/* ===== STAT CARDS UPDATED ===== */
.stat { cursor: default; }

@media(max-width:640px){
  .location-cta-btns { flex-direction: column; align-items: center; }
  .location-cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .reviews-track { animation-duration: 30s; }
}
