
:root {
  --accent: #87CEEB;
  --background: #f9f9f9;
  --border: #e0e0e0;
  --cool-gray: #e9edf2;
  --dusty-rose: #e7d7d5;
  --light-sage: #dcebe4;
  --light-text: #555555;
  --primary-dark: #0D3E6F;
  --primary: #0F4C81;
  --radius: 8px;
  --shadow: rgba(15, 76, 129, 0.12);
  --soft-sand: #fdf8f4;
  --text: #222222;
  --white: #ffffff;
  --footer: #CFE3F0;
}

/* === Reset === */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

body.loading {
  overflow: hidden;
}

body:not(.home) .page-section {
  padding-top: 120px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  max-width: 400px;
  height: auto;
}

.loading-bar {
  width: 200px;
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background-color: #007aff;
  animation: loadingAnim 2.5s ease-out forwards;
}

@keyframes loadingAnim {
  0% { width: 0%; }
  30% { width: 35%; }
  60% { width: 60%; }
  85% { width: 85%; }
  100% { width: 100%; }
}

/* === Layout === */
.container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
}

.section {
  padding: 80px 20px;
}

.section-alt {
  background-color: #f4f8fb;
}

.section-border {
  border-top: 1px solid var(--border);
}

.values-grid,
.vision-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.vision-section {
  padding: 80px 20px;
  background-color: #ffffff;
  border-top: 1px solid var(--border);
}

.vision-section-alt {
  background-color: var(--cool-gray);
  padding: 80px 20px;
  border-top: 1px solid var(--border);
}

/* === Animations === */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}

@keyframes kenburnsZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}

/* === Components === */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 24px;
  padding: 24px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* === Buttons === */
.btn {
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 14px 32px;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.btn:hover {
  opacity: 0.95;
  transform: scale(1.03);
}

.btn-primary {
  background-color: var(--primary);
  box-shadow: 0 2px 8px var(--shadow);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  opacity: 0.9;
}

.custom-button {
  background-color: #B5324F;
  border-radius: 3px;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.3s;
  color: white;
}

.custom-button:hover {
  opacity: 0.95;
  transform: scale(1.03);
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e0e0e0;
}

/* === Header === */
.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  padding: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
}

.header-container.light-bg {
  background-color: rgba(255, 255, 255, 0.96);
}

.header-container.light-bg .logo-img {
  filter: none !important;
}

.header-container.light-bg .nav-link,
.header-container.light-bg .phone-link,
.header-container.light-bg .social-link,
.header-container.light-bg {
  filter: none;
}

.header-container.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container.scrolled .logo-img {
  filter: none !important;
}

.header-container.transparent {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}

.header-container.transparent .nav-link {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1));
  color: white;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-bottom: 1px solid var(--border);
}

.header-spacer {
  flex: 0 1.5 300px;
}

.header-contact-column {
  flex: 0 1 auto;
}

.header-contact-wrapper {
  flex: 0 1 270px;
  min-width: 180px;
  width: auto;
}

/* === Logo === */
.logo-container {
  justify-content: flex-start !important;
  align-items: flex-start;
  padding-left: 5%;
  max-width: 50%;
  display: flex;
  flex: 1;
}

.logo-img {
  height: 100px;
  object-fit: contain;
  min-width: 240px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 1));
  transition: filter 0.3s ease;
}

.logo-link {
  align-items: center;
  display: flex;
}

/* === Navigation === */
.nav-wrapper {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 8px 0;
  gap: 50px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
}

.nav-link {
  white-space: nowrap;
  flex: 1;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.divider-line {
  background: #ccc;
  height: 20px;
  width: 1px;
}

.phone-link {
  align-items: center;
  display: flex;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  min-height: 44px;
}

.social-link {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--accent);
}

/* === Dropdown base === */
.nav-item.dropdown {
  position: relative;
  flex: 1;
  text-align: center;
}

/* === Dropdown menu === */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* center under trigger */
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;

  /* ✨ Liquid Glass Aesthetic ✨ */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
  z-index: 2000; /* above header glass */
  transition: all 0.3s ease;
}

/* === Show on hover (desktop) === */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* === Dropdown items === */
.dropdown-item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: background 0.3s ease, color 0.3s ease;
}

/* === Hover effect === */
.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: saturate(200%) blur(20px);
}

/* === Force display for .show class (mobile toggle support) === */
.dropdown-menu.show {
  display: block;
}
/* === Hero Slider === */
.hero-slider {
  height: 100vh;
  margin-top: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.slides {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.slide {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
  transform-origin: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide.kenburns {
  animation: kenburnsZoom 10s ease-in-out forwards;
}

/* === Hero Text === */
.hero-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  max-width: 90vw;
  width: 90%;
  padding: 0 1rem;
  box-sizing: border-box;
  color: white;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
}

.hero-text.loaded {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}

.hero-text h1 {
  animation-delay: 0.3s;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 5s ease-out 0.5s forwards;
}

.hero-text p {
  color: white !important;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 5s ease-out 1s forwards;
}

/* === Vignette Overlays === */
.vignette-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.vignette-overlay.overlay-hero {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0.1) 100%);
}

.overlay-1,
.overlay-2,
.overlay-3 {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 100%);
}

.overlay-4,
.overlay-5,
.overlay-6 {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
}

/* === Frosted Glass === */
.frosted-glass {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  will-change: backdrop-filter, background-color;
}

/* === Logo Carousel === */
.logo-carousel {
  padding: 40px 0;
  background-color: white;
  overflow: hidden;
}

.swiper-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.logo-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.logo-carousel img {
  height: 100px;
  width: auto;
  max-width: 100%;
  filter: colour(100%);
  opacity: 0.8;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-carousel img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-carousel .swiper-slide:hover img {
  transform: scale(1.1);
  z-index: 2;
}

.logo-carousel .swiper-slide a {
  cursor: pointer;
}

/* === Promo Tiles === */
.promo-tiles {
  --tile-w: 300px;
  --tile-h: 360px;
  --tile-gap: 24px;
  --left-pad: 8.8%;
  position: relative;
  margin: 0;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--soft-sand);
}

.promo-wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.promo-tile-grid {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10%;
  padding-left: var(--left-pad);
  padding-right: 0;
  overflow-x: hidden;
}

.promo-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: var(--tile-w);
  height: var(--tile-h);
  padding: 80px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,.2),
    inset -4px -4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  background-blend-mode: overlay;
}

.promo-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

.animated-tile {
  opacity: 0;
  animation: slideFadeIn 1.2s ease-out forwards;
}

.promo-tile:nth-child(1) { animation-delay: .5s; }
.promo-tile:nth-child(2) { animation-delay: .9s; }
.promo-tile:nth-child(3) { animation-delay: 1.3s; }
.promo-tile:nth-child(4) { animation-delay: 1.7s; }
.promo-tile:nth-child(5) { animation-delay: 2.1s; }

/* === News Section === */
.section-news {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.news-article {
  background: transparent;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  padding: 20px;
}

/* === Footer === */
.footer {
  background-color: var(--footer);
  color: var(--text);
  padding: 40px 10px;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 0 1 auto;
  min-width: 200px;
  text-align: left;
  word-break: break-word;
}

.footer-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* === Utilities === */
.full-width { width: 100%; }
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

.screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hide-on-mobile { display: block; }
.show-on-mobile { display: none; }

/* =========================
   MEDIA QUERIES
   ========================= */

/* Base: hide hamburger by default (desktop and larger) */
.mobile-menu-toggle { 
  display: none; 
}

/* (Optional hard guard) Ensure it's hidden at ≥768px */
@media (min-width: 768px) {
  .mobile-menu-toggle { display: none !important; }
  /* ensure desktop nav shows normally */
  .nav-wrapper { display: flex !important; } /* if your desktop nav uses flex */
}

/* Large tablets and small desktops (≤1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-top-row { padding: 8px 24px; }
  .header-container { padding: 16px; }

  .logo-container {
    max-width: 40%;
    padding-left: 2%;
  }
  .logo-img {
    height: 80px;
    min-width: 200px;
  }

  .nav-wrapper { gap: 30px; }
  .nav-links { gap: 16px; }

  .hero-slider,
  .slide-wrapper,
  .slides,
  .slide { height: 85vh; }

  .hero-text {
    top: 65%;
    max-width: 85%;
  }

  .promo-tiles {
    --tile-w: 280px;
    --tile-h: 340px;
    padding: 80px 0;
  }
  .promo-tile-grid {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
  }
}

/* ========= Mobile Header Layout (<=767.98px) ========= */
@media (max-width: 767.98px) {
  /* Header layout: logo + hamburger only */
  .header-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .logo-container {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    padding-left: 0;
    justify-content: center;
  }
  .logo-container .logo-img {
    max-height: 44px;
    height: auto;
    width: auto;
  }

  /* Hide non-essentials */
  .header-spacer,
  .header-contact-column {
    display: none !important;
  }

  /* Hamburger button */
  .mobile-menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto 0;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    color: inherit;
    cursor: pointer;
  }

  /* Hide nav by default; show when toggled */
  .nav-wrapper {
    display: none !important;
    width: 100%;
  }
  .nav-wrapper.is-open {
    display: block !important;
    width: 100%;
    padding: 8px 0 12px;
    position: relative;
    z-index: 3000;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .nav-link {
    display: block;
    padding: 10px 14px;
    width: 100%;
    text-align: center;
  }

  /* Dropdown behavior */
  .nav-item.dropdown { position: relative; }
  .nav-item.dropdown:hover > .dropdown-menu { display: none !important; }

  .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 6px 0;
    box-shadow: none;
    background: var(--surface, #fff);
    border: 1px solid var(--border, rgba(0,0,0,0.1));
    border-radius: 8px;
    width: 92%;
    max-width: 520px;
    z-index: 2000;
  }
  .dropdown-menu.show { display: block; }
  .dropdown-item { display: block; padding: 10px 14px; }

  /* Hero & layout adjustments */
  .hero-slider,
  .slide-wrapper,
  .slides,
  .slide { height: 75vh; }

  .hero-text {
    top: 60%;
    max-width: 90%;
  }
  .hero-text h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: 1.2;
  }
  .hero-text p {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .values-grid,
  .vision-grid { gap: 24px; }
  .card { padding: 20px; }

  .promo-tiles {
    --tile-w: calc(50% - 20px);
    --tile-h: 320px;
    padding: 60px 0;
  }
}

/* Mobile phones (≤640px) */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }

  .header-container { padding: 10px; }
  .header-top-row { padding: 10px; }

  .logo-container .logo-img {
    height: clamp(40px, 10vh, 70px);
    width: auto;
  }

  /* General buttons on mobile: full-width */
  .btn,
  .button-primary,
  .custom-button,
  .cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }

  /* HERO buttons: stack + center + 5px gap, each 50vw */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* space between stacked buttons */
  }
  .hero-buttons .btn,
  .hero-buttons .button-primary,
  .hero-buttons .custom-button,
  .hero-buttons .cta-button {
    width: 50vw;            /* override general 100% for hero only */
    box-sizing: border-box; /* safe sizing */
  }

  .hero-slider,
  .slide-wrapper,
  .slides,
  .slide { height: 70vh; }

  .hero-text {
    top: 58%;
    max-width: 92%;
    padding: 0 12px;
  }
  .hero-text h1 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    margin-bottom: 0.75rem;
  }
  .hero-text p {
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.4;
  }

  .values-grid,
  .vision-grid {
    gap: 20px;
    flex-direction: column;
  }
  .card {
    padding: 18px;
    margin-bottom: 16px;
  }

  .promo-tiles {
    --tile-w: 100%;
    --tile-h: 300px;
    padding: 48px 0;
  }
  .promo-tile {
    padding: 32px;
    min-height: 280px;
  }
  .promo-tile-grid {
    justify-content: center;
    gap: 20px;
  }

  .section { padding: 60px 16px; }
  .section-news { padding: 48px 16px; }

  .logo-carousel img { height: 80px; }
  .footer { padding: 32px 16px; }

  .hide-on-mobile { display: none !important; }
  .show-on-mobile { display: block !important; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .container { padding: 0 12px; }

  .logo-img {
    height: 50px;
    min-width: 120px;
  }

  .hero-slider,
  .slide-wrapper,
  .slides,
  .slide { height: 65vh; }

  .hero-text {
    top: 55%;
    padding: 0 8px;
  }
  .hero-text h1 {
    font-size: clamp(1.3rem, 7vw, 1.6rem);
  }
  .hero-text p {
    font-size: clamp(0.85rem, 4.5vw, 0.95rem);
  }

  .promo-tiles {
    --tile-h: 280px;
    padding: 40px 0;
  }
  .promo-tile {
    padding: 24px;
    min-height: 260px;
  }

  .section { padding: 48px 12px; }
  .logo-carousel img { height: 70px; }

  .btn,
  .button-primary,
  .custom-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .slide.kenburns,
  .hero-text h1,
  .hero-text p { animation: none !important; }
}