:root {
  --color-primary: #0e7a72;
  --color-secondary: #3db6a1;
  --color-dark: #01323a;
  --color-accent: #aee8df;
  --color-bg: #f5f7f8;
  --color-text: #112127;
  --header-bg: #fff;
  --header-text: #112127;
  --header-shadow: 0 8px 24px rgba(1, 50, 58, 0.08);
  --header-toggler-border: rgba(255, 255, 255, 0.4);
  --header-toggler-icon-filter: invert(1);
  --header-toggler-border-scrolled: rgba(17, 33, 39, 0.25);
  --header-toggler-icon-filter-scrolled: none;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Roboto,
    'Helvetica Neue', Arial;
  background: var(--color-bg);
  color: var(--color-text);
  cursor: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1200px;
}
.logo {
  height: 34px;
}
.rounded-4 {
  border-radius: 1rem;
}
.shadow-soft {
  box-shadow: 0 8px 24px rgba(1, 50, 58, 0.08);
}
.bg-soft {
  background: #fff;
}
.section-padding {
  padding: 80px 0;
}
.section-padding-top {
  padding-top: 120px;
}
.section-title {
  font-weight: 800;
  color: var(--color-dark);
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(1, 50, 58, 0.12);
}
.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Auth buttons styling (login/register) */
.auth-actions .btn-primary {
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  border: none;
  color: #fff;
  box-shadow: 0 12px 26px rgba(14, 122, 114, 0.22);
}
.auth-actions .btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 16px 34px rgba(14, 122, 114, 0.28);
}
.auth-actions .btn-outline-primary {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(61, 182, 161, 0.12);
}
.auth-actions .btn-outline-primary:hover {
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  color: #fff;
  border-color: transparent;
}

.btn-donate {
  background: linear-gradient(45deg, var(--color-dark), var(--color-primary));
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(1, 50, 58, 0.3);
}

.btn-donate:hover {
  background: linear-gradient(
    45deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 122, 114, 0.4);
  transform: translateY(-2px);
}

.main-header .navbar {
  background: transparent;
}
.main-header.scrolled .navbar {
  background: transparent;
  box-shadow: none;
}
.navbar .nav-link {
  color: #fff;
}
.main-header.scrolled .nav-link {
  color: #000;
}
.navbar .nav-link.active {
  color: inherit;
}
.navbar .nav-link {
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.2s ease,
    background-color 0.2s ease;
}
.navbar .nav-link {
  position: relative;
  border-radius: 999px;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: translateX(-50%) scaleX(0.6);
  transition: width 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  transform: translateY(-1px);
}
.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  width: 60%;
  opacity: 0.6;
  transform: translateX(-50%) scaleX(1);
}
.main-header .navbar .nav-link:hover {
  opacity: 0.9;
}
.navbar-toggler {
  border-color: var(--header-toggler-border);
}
.navbar-toggler-icon {
  filter: var(--header-toggler-icon-filter);
}
.main-header.scrolled .navbar-toggler {
  border-color: var(--header-toggler-border-scrolled);
}
.main-header.scrolled .navbar-toggler-icon {
  filter: var(--header-toggler-icon-filter-scrolled);
}
.header-shadow {
  height: 1px;
}
.btn-theme {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
}
.main-header .btn-theme {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.main-header.scrolled .btn-theme {
  color: var(--header-text);
  border: 1px solid var(--header-text);
}
.main-header .btn-theme:hover {
  opacity: 0.85;
}

.hero {
  position: relative;
}
.hero .hero-swiper {
  height: 98vh;
}
.hero .swiper-wrapper {
  height: 100%;
}
.hero .swiper-slide {
  height: 100%;
}
.hero .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 50, 58, 0.65),
    rgba(1, 50, 58, 0.35)
  );
  z-index: 1;
}
.hero .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
}
.hero .swiper-slide {
  overflow: hidden;
}
.hero .swiper-slide video.hero-video,
.hero .swiper-slide img.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .swiper-slide img.hero-image {
  display: block;
}
.hero .swiper-slide img.hero-image {
  transition: transform 8s ease;
  will-change: transform;
}
.hero .swiper-slide-active img.hero-image {
  transform: scale(1.06);
}
.btn-cta {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.btn-cta:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}
.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.hero .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  opacity: 1;
}
/* Hide default bullets; we use a circular progress indicator */
.hero .swiper-pagination {
  display: none;
}
/* Improve fade stacking for Swiper fade effect */
.hero .swiper.swiper-fade .swiper-slide {
  pointer-events: none;
}
.hero .swiper.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

/* Circular progress ring overlay */
.hero .hero-progress {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-progress svg {
  transform: rotate(-90deg);
}
.hero .hero-progress .bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 4;
}
.hero .hero-progress .fg {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
}
.hero .hero-progress.animate .fg {
  animation: heroProgress 5s linear forwards;
}
@keyframes heroProgress {
  to {
    stroke-dashoffset: 0;
  }
}

#about .img-fluid {
  object-fit: cover;
}

.app-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(1, 50, 58, 0.16);
  border-color: var(--color-accent);
}
.app-title {
  font-weight: 700;
  color: var(--color-dark);
}
.app-desc {
  color: #4b5b62;
}
.app-link {
  color: var(--color-primary);
}
.app-icon img {
  height: 52px;
}

/* Component Cards */
.component-card {
  perspective: 1000px;
  height: 480px; /* Increased height to fit content */
  background: transparent;
  border: none;
  box-shadow: none;
}
.component-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.component-card:hover .component-flip,
.component-card.flipped .component-flip {
  transform: rotateY(180deg);
}
.component-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.component-face.front {
  display: flex;
  flex-direction: column;
}
.component-image {
  height: 220px;
  overflow: hidden;
}
.component-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.component-card:hover .component-image img {
  transform: scale(1.1);
}
.component-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.component-title {
  font-weight: 700;
  color: #112127;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.component-desc {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.component-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  align-self: center;
  transition: color 0.3s ease;
}
.component-link:hover {
  color: var(--color-dark);
}
.component-link::after {
  content: '←';
  margin-right: 6px;
  transition: transform 0.3s ease;
}
.component-link:hover::after {
  transform: translateX(-4px);
}

/* Back Face Styling */
.component-face.back {
  background: #112127;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.component-back-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.component-face.back .component-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 15px;
}
.component-face.back .component-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}
.component-face.back ul {
  margin: 20px 0;
  padding: 0;
}
.component-face.back li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.component-face.back li strong {
  font-size: 1.2rem;
  color: #fff;
}
.component-link-back {
  margin-top: auto;
  min-width: 120px;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.component-link-back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* Flip animation for component cards */

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(1, 50, 58, 0.16);
}
.news-card.large .news-title {
  font-size: 1.25rem;
}
.news-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.news-card.large .news-image img {
  height: 240px;
}
.news-content {
  padding: 16px;
}
.news-meta {
  font-size: 0.85rem;
  color: #6c7a80;
}
.news-title {
  color: var(--color-dark);
  font-weight: 700;
}
.news-link {
  color: var(--color-primary);
}

.document-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(1, 50, 58, 0.16);
}
.document-card .doc-icon img {
  height: 42px;
  filter: grayscale(1);
}
.document-card .doc-title {
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 10px;
}
.document-card .doc-meta {
  color: #6c7a80;
}
.document-card .doc-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.document-card .btn-view {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
}
.document-card .btn-download {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  padding: 8px 16px;
}
.document-card .btn-download:hover {
  background: var(--color-primary);
  color: #fff;
}

.partners-strip {
  padding: 40px 0;
  background: #fff;
}
.partner-logo {
  height: 36px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s linear, opacity 0.2s linear, transform 0.2s ease;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.site-footer {
  background: var(--color-dark);
  padding: 60px 0 24px;
  margin-top: 40px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #d6dde0;
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Header variant for inner pages (light background) */
.header-inner .navbar {
  /* No special background needed if body is light, but ensure text is dark */
}
.header-inner .nav-link {
  color: #112127 !important; /* Force dark text */
}
.header-inner .nav-link:hover {
  color: var(--color-primary) !important;
}
.header-inner .navbar-brand .logo.brand-default {
  display: none; /* Hide white logo */
}
.header-inner .navbar-brand .logo.brand-floating {
  display: block; /* Show dark logo */
}
.header-inner .navbar-toggler {
  border-color: rgba(17, 33, 39, 0.3);
}
.header-inner .navbar-toggler-icon {
  filter: none; /* Dark icon */
}
.header-inner .btn-theme {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.header-inner .btn-theme:hover {
  background: var(--color-dark);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 24px;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-dark);
  transition: color 0.2s ease;
}
.icon:hover {
  color: var(--color-secondary);
}
.site-footer .icon {
  color: #fff;
}
.site-footer .icon:hover {
  color: var(--color-accent);
}
.share-row .icon {
  color: var(--color-dark);
}

.page-hero {
  padding-top: 120px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #fff 0%, #eef2f3 100%);
}
.page-hero-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
}
.page-title {
  color: var(--color-dark);
  font-weight: 800;
}

.article-wrap {
  padding-top: 120px;
}
.breadcrumb {
  --bs-breadcrumb-divider: '/';
}
.article-meta {
  color: #6c7a80;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(62, 182, 161, 0.25);
  border: 2px solid var(--color-secondary);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 10000;
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.custom-cursor.active {
  width: 28px;
  height: 28px;
  background: rgba(14, 122, 114, 0.25);
  border-color: var(--color-primary);
}

@media (max-width: 991px) {
  .hero .hero-swiper {
    height: 86vh;
  }
  .navbar .nav-link {
    color: var(--color-text);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --header-bg: var(--color-dark);
    --header-text: #fff;
    --header-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    --header-toggler-border-scrolled: rgba(255, 255, 255, 0.5);
    --header-toggler-icon-filter-scrolled: invert(1);
  }
}

[data-theme='dark'] {
  --header-bg: var(--color-dark);
  --header-text: #fff;
  --header-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --header-toggler-border-scrolled: rgba(255, 255, 255, 0.5);
  --header-toggler-icon-filter-scrolled: invert(1);
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
}
.form-control {
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
}
.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(61, 182, 161, 0.15);
}
.form-label {
  font-weight: 600;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.stats-grid .stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(1, 50, 58, 0.08);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
}
.stat-label {
  color: #6c7a80;
}

/* Partner Grid Styles */
.partner-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-item img {
  max-height: 100px;
  width: auto;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2);
}

/* Award Item Styles */
.award-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.award-item img {
  max-height: 90px;
  width: auto;
  filter: grayscale(
    0%
  ); /* Awards usually look better in color or slight desaturation */
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.award-item:hover img {
  transform: scale(1.08);
}

.list-group-item {
  border-radius: 12px;
  margin-bottom: 10px;
}
.list-group-item-action:hover {
  background: #f0f5f6;
}

.form-select {
  border-radius: 12px;
}
/* Smooth morph: move transitions to the inner navbar to avoid width:auto jumps */
.main-header {
  z-index: 1100;
}
/* Base (full-width top bar) */
.main-header .navbar {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px clamp(24px, 6vw, 64px);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: max-width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-radius 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    backdrop-filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.18s ease;
}
/* Floating (centered pill, liquid glass) */
.main-header.floating .navbar {
  max-width: min(960px, 96vw);
  margin: 12px auto 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 18, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Subtle compress tap when entering floating */
.main-header.floating.compress .navbar {
  transform: scale(0.97);
}
/* Center content inside the pill */
.main-header.floating .navbar .container {
  padding: 0 14px;
  justify-content: center;
  gap: 12px;
}
.main-header.floating .navbar-brand {
  display: flex;
  align-items: center;
}
.main-header.floating .navbar-collapse {
  justify-content: center;
}
.main-header.floating .nav-link {
  color: #000;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
}
.main-header.floating .nav-link:hover,
.main-header.floating .nav-link:focus {
  background: rgba(0, 0, 0, 0.08);
}
.main-header.floating .navbar .navbar-nav.ms-auto {
  margin-left: 0 !important;
}
.main-header.scrolled:not(.floating) .nav-link {
  color: #000;
}
.main-header.scrolled:not(.floating) .nav-link:hover {
  color: #000;
}
.main-header.floating .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.35);
}
.main-header.floating .navbar-toggler-icon {
  filter: none;
}
.main-header.floating .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.main-header.floating .auth-actions {
  display: flex !important;
  margin-left: 0 !important;
  margin-right: 15px; /* Separate from nav */
}
/* Hide other auth buttons in floating mode to save space, keeping only donate */
.main-header.floating .auth-actions button {
  display: none !important;
}
.main-header.floating .btn-donate {
  padding: 0.25rem 1rem !important;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}
.brand-floating {
  display: none;
}
.main-header.floating .brand-floating {
  display: block;
}
.main-header.floating .brand-default {
  display: none;
}
.main-header.floating .logo {
  height: 30px;
}
.main-header .navbar-brand .logo {
  transition: transform 0.25s ease;
  transform: scale(1.38);
  transform-origin: center;
}
.main-header.floating .navbar-brand .logo {
  transform: scale(1.22);
}

@keyframes navColorShift {
  0% {
    opacity: 0.5;
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-header.color-anim .nav-link {
  animation: navColorShift 0.45s ease;
}
.main-header.color-anim .navbar-brand .logo {
  animation: navColorShift 0.45s ease;
}
