
.navbar {
  background: #1a1a1b;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* transition: all 0.3s ease; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.navbar-scrolled [data-navbar="sticky"] {
  position: fixed;
  top: 0;
  transform: translate(0, 0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  max-width: 100%;
  gap: 2rem;
}

.navbar-brand {
  display: inline-block;
  text-decoration: none;
}

/* Logo Visibility Control */
/* Dark navbar: show white logo, hide dark logo */
.navbar-dark .logo-dark {
  display: none !important;
}

.navbar-dark .logo-light {
  display: inline-block !important;
}

/* Light navbar: show dark logo, hide white logo */
.navbar-light .logo-dark {
  display: inline-block !important;
}

.navbar-light .logo-light {
  display: none !important;
}

.navbar-stick-dark.navbar-light .logo-dark,
.navbar-stick-dark.navbar-light.scrolled .logo-dark,
.navbar-stick-dark.navbar-light.is-stuck .logo-dark {
  display: none !important;
}

.navbar-stick-dark.navbar-light .logo-light,
.navbar-stick-dark.navbar-light.scrolled .logo-light,
.navbar-stick-dark.navbar-light.is-stuck .logo-light {
  display: inline-block !important;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.75rem;
  padding: 0.5rem 0.75rem;
  /* transition: color 0.2s ease, border-bottom 0.2s ease; */
  border-bottom: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  /* color: #a5b4fc !important; */
  border-bottom: 2px solid #fff;
}

/* ==========================
   HAMBURGER BUTTON
   ========================== */

.navbar-toggler {
  display: none;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  color: #fff;
  overflow: hidden;
  order: 3;
  margin-left: auto;
}

.navbar-toggler-icon {
  font-size: 1.75rem;
  line-height: 0.6;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
}
  
/* ==========================
   MEGA MENU - DESKTOP
   ========================== */

.megamenu {
  position: relative;
}

/* Add padding to prevent gap between link and dropdown */
.megamenu::after {
  /* content: ''; */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
  display: none;
}

.megamenu:hover::after {
  display: block;
}

.megamenu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 500px;
  max-width: 90vw;
  padding: 0;
  margin-top: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, margin-top 0.2s ease;
  pointer-events: none;
}

.megamenu .dropdown-menu.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
  pointer-events: all;
}

/* Ensure dropdown stays visible when hovering over it */
.megamenu:hover .dropdown-menu.show,
.megamenu .dropdown-menu.show:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mega Columns */
.mega-menu-content {
  display: flex;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;

}
.mega-col {
  /* padding: 1rem; */
  margin-left: 3rem;
  padding-bottom: 1.5rem;
}
.mega-col.left{
  width: 50%;
}
/* Left Column */
.mega-col.left h6 {
  font-weight: 700;
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #111;
  justify-content: center;
  /* padding: 0.10rem 0.10rem; */
}

.mega-col.left .dropdown-item {
  display: block;
  color: #111;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

/* Right Column - Promo */
.mega-col.right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  padding: 1.5rem;
}



.mega-col.right h6 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 1rem;
}

.mega-col.right p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Background colors */
.mega-col.right.beige {
  background: linear-gradient(135deg, #faf2eb 0%, #f5e6d3 100%);
}

.mega-col.right.green {
  background: linear-gradient(135deg, #eaf7e8 0%, #d4f1d0 100%);
}

/* Ghost Button */
.btn-ghost {

  color: #4f46e5;
  border: 1px solid #4f46e5;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 200;
  text-align: center;
  /* display: inline-block;
  min-width: 280px; */
  width: 90%;
}

.btn-ghost:hover {
  background-color: #4f46e5;
  color: #fff;
}

.highlight {
  color: #4f46e5;
  font-weight: 700;
}

/* ==========================
   DESKTOP BUTTONS
   ========================== */

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  min-width: 280px;
  justify-content: flex-end;
}

/* Desktop button styling */
.navbar-buttons .btn {
  font-size: 14px;
padding: 4px 14px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: none !important;
  letter-spacing: 0;

}

/* Start Free Trial button (blue/purple gradient) */
.navbar-buttons .btn-success {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  border: none;
  color: #fff;
  letter-spacing: 0;
}

/* Login button (dark gray) */
.navbar-buttons .btn-outline-primary {
  background: #3a3a3a;
  border: none;
  color: #fff;
}


.mobile-buttons {
  display: none;
}

/* Desktop navbar - always visible */
@media (min-width: 992px) {
  .navbar .container-fluid {
    justify-content: center;
    gap: 1rem;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    position: static !important;
    width: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-right: 0;
  }

  #navbarMain {
    background: transparent !important;
  }
}

/* Scroll-based button visibility */
/* Buttons that appear on scroll */
.btn-scroll-show {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  position: absolute;
  right: 0;
  white-space: nowrap;
  text-transform: none !important;
}

.btn-scroll-show.visible {
  opacity: 1;
  visibility: visible;
  position: relative;
  text-transform: none !important;
}


.btn-scroll-hide {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.btn-scroll-hide.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
}

/* ==========================
   MEDIUM DESKTOP (1024px - 1199px)
   ========================== */

@media (max-width: 1300px) and (min-width: 1200px) {
  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-collapse {
    margin-right: 1rem;
  }

  .navbar-buttons {
    gap: 0.75rem;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: space-between;
    gap: 1rem;
  }

  .navbar-collapse {
    margin-right: 2rem !important;
    flex: 1;
    justify-content: center;
  }

  .navbar-buttons {
    min-width: auto;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .navbar-nav {
    gap: 0;
    justify-content: center;
  }

  .navbar .nav-link {
    padding: 0.5rem 0.5rem !important;
    margin: 0 0.375rem !important;
    font-size: 14px;
  }

  .navbar-buttons .btn {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: none !important;
    transition: all 0.3s ease;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* Start Free Trial button (blue/purple gradient) */
  .navbar-buttons .btn-success {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    border: none;
    color: #fff;
  }

  /* Login button (dark gray) */
  .navbar-buttons .btn-outline-primary {
    background: #3a3a3a;
    border: none;
    color: #fff;
  }

  .navbar-brand {
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .navbar-brand img {
    height: 28px;
  }

  /* Dropdown toggle arrow */
  .dropdown-toggle::after {
    margin-left: 0.25rem;
  }
}
  
/* ==========================
   RESPONSIVE - MOBILE & TABLET
   ========================== */

@media (max-width: 991px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden !important;
  }
  
  /* Show hamburger button */
  .navbar-toggler {
    display: inline-block;
  }

  .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .navbar-toggler:active {
    transform: scale(0.95);
  }

  /* Hide desktop buttons, show mobile buttons */
  .navbar-buttons {
    display: none !important;
  }

  .mobile-buttons {
    display: flex !important;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.75rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
  }

  .mobile-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.25rem;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: none;
    text-transform: none !important;
    letter-spacing: 0;
  }

  .mobile-buttons .btn:active {
    transform: scale(0.98);
  }

  .mobile-btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%) !important;
    color: #fff !important;
    border: none !important;
    text-transform: none !important;
  }

  /* .mobile-btn-primary:hover {
    background: linear-gradient(135deg, #4a4ab5 0%, #6b21d6 100%) !important;
    box-shadow: 0 6px 20px rgba(91, 91, 214, 0.5);
  } */

  .mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    text-transform: none !important;
  }

  .mobile-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    /* border-color: rgba(255, 255, 255, 0.3) !important; */
  }

  .mobile-buttons .btn-success {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  }
  /* On mobile, show all buttons always */
  .mobile-buttons .btn-scroll-show,
  .mobile-buttons .btn-scroll-hide {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative !important;
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
  }

  /* Navbar collapse */
  .navbar {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
  }

  .navbar-collapse {
    display: none !important;
    width: 100%;
    background: rgba(13, 13, 13, 0.98) !important;
    background-color: rgba(13, 13, 13, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 20px 20px;
    margin-top: 1rem;
    padding: 0.5rem 0 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  }

  /* Custom scrollbar for webkit browsers */
  .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 0;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  .navbar-collapse.show {
    display: block !important;
    background: #1a1a1b !important;
    background-color: #1a1a1b !important;
    animation: slideDownFade 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Force gray background on all states */
  #navbarMain {
    background: #1a1a1b !important;
    background-color: #1a1a1b !important;
  }

  .navbar .container-fluid {
    position: relative;
    overflow: visible;
  }

  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-20px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Nav items vertical */
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-item:hover {
    background-color: transparent;
  }

  .nav-link {
    color: #fff !important;
    margin: 0 !important;
    padding: 1.125rem 1.5rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none !important;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus,
  .nav-link.active {
    border-bottom: 2px solid #fff !important;
    background-color: transparent !important;
  }

  .nav-link::after {
    /* content: ""; */
    display: none;
    margin-left: auto;
  }

  .megamenu .nav-link::after {
    /* content: "›"; */
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    /* transition: transform 0.25s ease; */
    color: rgba(255, 255, 255, 0.6);
  }

  .megamenu .nav-link[aria-expanded="true"]::after {
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 0.9);
  }

  /* Mobile mega menu */
  .megamenu .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: calc(100% - 2rem);
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin: 0.5rem 1rem;
    border: none;
    background: #fff !important;
    /* animation: slideDownSubmenu 0.3s ease; */
    overflow: hidden;
    max-width: calc(100% - 2rem);
  }

  .mega-menu-content {
    background: #fff !important;
    flex-direction: column;
  }

  @keyframes slideDownSubmenu {
    from {
      opacity: 0;
      max-height: 0;
      margin-top: 0;
    }
    to {
      opacity: 1;
      max-height: 800px;
      margin-top: 0.25rem;
    }
  }

  .mega-col {
    padding: 1.5rem;
    background: #fff !important;
    margin-left: 0rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .mega-col.left {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    background: #fff !important;
    width: 100%;
    flex: 1;
  }

  .mega-col.left h6 {
    color: #111 !important;
    font-size: 1rem;
    font-weight: 700;
    opacity: 1;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }

  .mega-col.left .dropdown-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    color: #111 !important;
    font-size: 0.95rem;
    /* transition: all 0.2s ease; */
    background: transparent;
  }

  .mega-col.right {
    text-align: left;
    border-radius: 0;
    padding: 1.5rem;
    background: #fff !important;
  }

  .mega-col.right.beige {
    background: linear-gradient(135deg, #faf2eb 0%, #f5e6d3 100%) !important;
  }

  .mega-col.right.green {
    background: linear-gradient(135deg, #eaf7e8 0%, #d4f1d0 100%) !important;
  }

  .mega-col.right h6 {
    color: #111 !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .mega-col.right h6 .highlight {
    color: #4f46e5 !important;
    font-weight: 700;
  }

  .mega-col.right p {
    color: #333 !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .mega-col.right .btn-ghost {
    align-self: flex-start;
    margin-top: 0.5rem;
    background: #fff !important;
    border: 1px solid #4f46e5 !important;
    border-radius: 50px !important;
    color: #4f46e5 !important;
    font-weight: 200;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }

  .mega-col.right .btn-ghost:hover {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: #fff !important;
  }
}

/* ==========================
   MEDIUM MOBILE (425px - 576px) - SHOW RIGHT COLUMN
   ========================== */

@media (min-width: 426px) and (max-width: 991px) {
  .mega-menu-content {
    flex-direction: column;
  }

  .mega-col.left {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mega-col.right {
    display: block !important;
  }
}

/* ==========================
   EXTRA SMALL MOBILE (< 425px) - BLACK DROPDOWN, HIDE RIGHT COLUMN
   ========================== */

@media (max-width: 425px) {
  .megamenu .dropdown-menu {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: rgba(80, 76, 76, 0.3) !important;
    box-shadow: none;
  }

  .mega-menu-content {
    background: transparent !important;
  }
  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus,
  .nav-link.active{
    background-color: transparent !important;
    border-bottom: none !important;
  }

  .mega-col {
    padding: 0;
    background: transparent !important;
  }

  .mega-col.left {
    border-bottom: none;
    padding: 0;
    background: transparent !important;
  }

  .mega-col.left h6 {
    color: #fff !important;
    display: none;
  }

  .mega-col.left .dropdown-item {
    padding: 0.875rem 1.5rem;
    padding-left: 3rem;
    margin-bottom: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mega-col.left .dropdown-item:last-child {
    border-bottom: none;
  }


  /* Hide right promotional column on very small screens */
  .mega-col.right {
    display: none !important;
  }
}

/* ==========================
   TABLET SPECIFIC
   ========================== */

@media (min-width: 768px) and (max-width: 991px) {
  .mega-menu-content {
    flex-direction: row !important;
    overflow-x: hidden;
  }
  .navbar-brand {
    margin-left: 1rem;
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus,
  .nav-link.active{
    background-color: transparent !important;
    border-bottom: none !important;
  }

  .mega-col.left {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .mega-col.right {
    display: block !important;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
    border-radius: 0;
    padding: 1.5rem;
    background: #fff !important;
  }
  
  .megamenu .dropdown-menu {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* ==========================
   SMALL MOBILE
   ========================== */

@media (max-width: 576px) {
  .navbar {
    padding: 0.625rem 0.875rem;
  }

  .navbar-brand {
    margin-left: 1rem;
  }

  .navbar-brand img {
    height: 26px !important;
  }

  .navbar-toggler {
    padding: 0.375rem 0.625rem;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    border-radius: 0 0 16px 16px;
  }

  .nav-link {
    padding: 1rem 1.25rem !important;
    font-size: 15px;
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus,
  .nav-link.active {
    /* border-bottom: 2px solid #fff !important; */
    background-color: transparent !important;
  }

  .megamenu .dropdown-menu {
    margin: 0.5rem 0.75rem;
  }

  .mega-col {
    padding: 1.25rem;
  }

  .mega-col.left {
    padding: 1.25rem;
  }

  .mega-col.left h6 {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
  }

  .mega-col.left .dropdown-item {
    padding: 0.65rem 0.875rem;
    font-size: 14px;
  }

  .mega-col.right {
    padding: 1.25rem;
  }

  .mega-col.right h6 {
    font-size: 0.95rem;
  }

  .mega-col.right p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .btn-ghost {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }

  .mobile-buttons {
    padding: 1.5rem 1.25rem;
    gap: 0.75rem;
  }

  .mobile-buttons .btn {
    padding: 0.875rem 1rem;
    font-size: 15px;
    text-transform: none !important;
  }

  .mobile-btn-primary {
    font-size: 15px !important;
    text-transform: none !important;
  }

  .mobile-btn-secondary {
    font-size: 15px !important;
    text-transform: none !important;
  }
}

/* ==========================
   NAVBAR STICKY STATES
   ========================== */

.navbar-stick-dark,
.navbar-stick-dark.is-stuck,
.navbar-stick-dark.navbar-dark {
  background-color: #1a1a1b !important;
  color: #fff !important;
}

.navbar-stick-dark .nav-link,
.navbar-stick-dark.is-stuck .nav-link {
  color: #fff !important;
}

 /* .navbar-stick-dark .nav-link:hover { 
   color: #a5b4fc !important;
}  */

.navbar.is-stuck {
  background-color: #1a1a1b !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ==========================
   ACCESSIBILITY
   ========================== */

/* Focus styles commented out - can be enabled if needed
.nav-link:focus,
.navbar-brand:focus,
.btn:focus,
.navbar-toggler:focus {
  outline: 2px solid #a5b4fc;
  outline-offset: 2px;
}
*/

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media (prefers-contrast: high) {
  .navbar {
    border-bottom: 2px solid #fff;
  }

  .nav-link,
  .btn {
    font-weight: 600;
  }
}
