:root {
  --body-bg-color: #e3e4e4;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #26363f;
  --link-color: #64a2c9;
  --header-bg-color: #26363f;
  --font-family: "Times New Roman", Times, serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(38, 54, 63, 0.12); /* subtle slate border */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled .nav-item a {
  color: #42697e !important;
}

.navbar.scrolled .nav-item a:hover {
  color: #64a2c9 !important;
}

.hero-section {
  padding: 161px 0 66px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 117px 0 35px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color, #141414) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, #ffffff 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.navbar-nav {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      rgba(186, 197, 218, 0),
      rgba(186, 197, 218, 0.56),
      rgba(186, 197, 218, 0)
    )
    1;
}
.navbar-nav .nav-item {
  font-weight: 700;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.heading {
  text-align: center;
  margin: 15px 0;
}

.heading h2 {
  font-weight: 700;
  color: #26363f;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.heading h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #64a2c9; /* accent */
  display: block;
  margin: 12px auto 0 auto;
  border-radius: 3px;
}

.heading p {
  color: #4a5a62;
  margin: 0 auto;
}
.title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #26363f;
  position: relative;
  margin-bottom: 16px;
}

.title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #64a2c9; /* accent blue */
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}
.sub-title {
  font-weight: 600;
  color: #26363f;
}

.properties {
  list-style: none;
  padding: 0;
}

.properties li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 7px;
  line-height: 1.65;
}

.properties li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #64a2c9; /* accent color */
  border-radius: 50%;
}
.rounded {
  border-radius: 21px !important;
} /* SECTION WRAPPER (optional but recommended) */
.section-block {
  padding: 0 5px;
}

/* H4 TITLES */
.section-block h4 {
  font-weight: 700;
  color: #26363f;
  margin: 21px 0 14px;
  position: relative;
  padding-left: 26px;
}

.section-block h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #64a2c9;
  border-radius: 3px;
}

/* PARAGRAPHS */
.section-block p {
  color: #4a5a62;
  line-height: 1.72;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* ORDERED LIST */
.section-block ol {
  counter-reset: clean-counter;
  padding-left: 0;
  margin: 22px 0;
}

.section-block ol li {
  list-style: none;
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  color: #4a5a62;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* CUSTOM NUMBER STYLE */
.section-block ol li::before {
  counter-increment: clean-counter;
  content: counter(clean-counter);

  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;

  background: #64a2c9; /* Accent color */
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;

  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ⬛ SUPER MODERN CARD / BOX */
.box {
  background-color: transparent !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(38, 54, 63, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 30px 21px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
}
/* Hover effect — subtle lift + stronger highlight */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
  border-color: rgba(100, 162, 201, 0.35);
}

/* 🔥 MODERN TITLE */
.box h4 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #26363f;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

/* Animated underline accent bar */
.box h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #64a2c9, #4f8db5, #64a2c9);
  border-radius: 2px;
}

.box:hover h4::after {
  width: 95px;
}

/* ✨ PARAGRAPH TEXT */
.box p {
  color: #4a5a62;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ⭐ MODERN LIST */
.box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}

.box ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  line-height: 1.7;
  color: #4a5a62;
  font-size: 1.06rem;
}
.box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #64a2c9;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(100, 162, 201, 0.6);
}
.sidebar {
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.quick-links {
  padding: 0;
  margin-bottom: 40px;
  width: 279px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(11px);
  border-bottom: 1px solid rgba(38, 54, 63, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background-color: transparent !important;
  padding: 11px;
  border-radius: 21px;
}

.quick-links img:hover {
  transform: scale(1.06);
  opacity: 1;
}

/* Modern strong title */
.quick-links h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #26363f;
  margin-bottom: 20px;
  position: relative;
}

/* Accent bar under title */
.quick-links h2::after {
  content: "";
  width: 42px;
  height: 3px;
  background: #64a2c9;
  display: block;
  margin-top: 8px;
  border-radius: 4px;
}

/* Remove default list */
.sidebar-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each list item */
.sidebar-page-list li {
  margin-bottom: 12px;
}

/* Link style */
.sidebar-page-list a {
  color: #26363f;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

/* Modern left hover bar */
.sidebar-page-list a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #64a2c9;
  transition: 0.3s ease;
  border-radius: 2px;
}

/* Hover effect */
.sidebar-page-list a:hover {
  color: #64a2c9;
  padding-left: 6px;
}

.sidebar-page-list a:hover::before {
  width: 20px;
}
/* Modern H5 Title */
.cust-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #26363f;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

/* Stylish accent block */
.cust-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #64a2c9;
  border-radius: 4px;
}

/* Paragraph List Items */
.cust-li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 4px;
}

/* Letter prefix styling (a., b.) */
.cust-li span {
  font-weight: 700;
  color: #64a2c9; /* accent color */
  margin-right: 6px;
  font-size: 1.12rem;
  letter-spacing: -0.2px;
  display: inline-block;
  transform: translateY(-1px);
}
.box-first,
.box-second {
  background-color: #e7e9ebde;
  padding: 17px 15px;
}
.box-second {
  background-color: #cad4d657;
}
@media (min-width: 767px) {
  .box-first {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .box-second {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .box-first {
    border-radius: 21px 21px 0 0;
  }
  .box-second {
    border-radius: 0 0 21px 21px;
  }
}
/* SECTION WRAPPER */
.cust-bg {
  padding: 30px 19px;
  margin-bottom: 50px;
  border-radius: 20px;

  background: linear-gradient(
    90deg,
    rgba(100, 162, 201, 0.1) 0%,
    rgba(100, 162, 201, 0.05) 35%,
    #ffffff 100%
  );
}

/* TITLE */
.cust-bg h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #26363f;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

/* Underline accent for title */
.cust-bg h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #64a2c9;
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

/* PARAGRAPHS */
.cust-bg p {
  color: #4a5a62;
  font-size: 1.07rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* LIST */
.cust-bg ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}

/* LIST ITEMS */
.cust-bg ul li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 34px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: #4a5a62;
}

/* Modern eco-friendly bullet (leaf-inspired shape) */
.cust-bg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #64a2c9;
  border-radius: 3px 10px 3px 10px; /* leaf shape */
  transform: rotate(-10deg);
  opacity: 0.9;
  box-shadow: 0 0 6px rgba(100, 162, 201, 0.4);
}

.locations h2 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.locations h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #64a2c9;
  display: block;
  border-radius: 3px;
  margin-top: 10px;
}

/* ------------------------------ */
/* PARAGRAPHS */
/* ------------------------------ */
.locations p {
  font-size: 1.07rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 900px;
}

/* ------------------------------ */
/* CUSTOM ORDERED LIST */
/* ------------------------------ */
.locations ol {
  counter-reset: loc-counter;
  list-style: none;
  padding: 0;
  margin: 30px 0 30px 0;
  max-width: 900px;
}

.locations ol li {
  counter-increment: loc-counter;
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
  line-height: 1.72;
  font-size: 1.06rem;
}

/* Number badge */
.locations ol li::before {
  content: counter(loc-counter);
  position: absolute;
  left: 0;
  top: 2px;

  width: 25px;
  height: 25px;

  background: linear-gradient(135deg, #64a2c9 0%, #76b4d4 100%);
  color: #fff;

  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 12px rgba(100, 162, 201, 0.3);
}
.step {
  font-size: 1.6rem;
  font-weight: 700;
  color: #26363f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Step badge */
.step span {
  background: #64a2c9;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(100, 162, 201, 0.3);
}
.site-footer {
  background-color: #e3e4e4;
  border-top: 6px solid #64a2c9;
  color: #26363f;
  font-family: "Inter", Arial, sans-serif;
}

.footer-logo {
  max-width: 100%;
  height: auto;
}

.footer-text {
  color: #455962;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #26363f;
}

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  color: #26363f;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #64a2c9;
}

/* Newsletter button styled with brand color */
.btn-newsletter {
  background-color: #64a2c9;
  border: 1px solid #64a2c9;
  color: #ffffff;
  font-weight: 500;
}

.btn-newsletter:hover {
  background-color: #4d8ab0;
  border-color: #4d8ab0;
}

.footer-bottom {
  border-top: 1px solid #d6e0e6;
  background-color: #eef3f7;
}

.footer-bottom p {
  color: #4f6067;
  font-size: 0.9rem;
}
/* Overall section */
.contact-section {
  font-family: "Inter", Arial, sans-serif;
}

/* Card container */
.contact-container {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #e3edf3;
}

/* Left side */
.contact-info {
  background: linear-gradient(135deg, #64a2c9 0%, #26363f 85%);
  color: #ffffff;
  padding: 2.5rem 2rem;
  flex: 0 0 40%;
  position: relative;
}

.contact-header {
  margin-bottom: 1.25rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.icon-badge i {
  font-size: 1.6rem;
}

.contact-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Email line */
.email-link {
  margin: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.email-link i {
  font-size: 1.2rem;
}

/* Right side (form) */
.contact-form {
  padding: 2.5rem 2rem;
  flex: 1;
  background-color: #f7fafc;
}

.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #26363f;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #d2dde6;
  font-size: 0.95rem;
}

.contact-form .form-control:focus {
  border-color: #64a2c9;
  box-shadow: 0 0 0 0.15rem rgba(100, 162, 201, 0.25);
}

/* Button using Bootstrap's .btn-primary but with your brand color */
.contact-submit {
  background-color: #64a2c9;
  border-color: #64a2c9;
  font-weight: 500;
  padding: 0.65rem 1rem;
}

.contact-submit:hover:enabled {
  background-color: #4d8ab0;
  border-color: #4d8ab0;
}

/* Keep disabled state obvious */
.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .contact-info {
    flex: 0 0 auto;
  }

  .email-link {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 1.4rem;
  }

  .contact-container {
    border-radius: 14px;
  }
}
/* Section background */
.not-found-section {
  background: radial-gradient(
    circle at top,
    #e4f0f8 0,
    #f8fbff 45%,
    #ffffff 100%
  );
}

/* Card */
.not-found-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1ecf3;
}

/* Big circle icon */
.not-found-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #64a2c9, #26363f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(38, 54, 63, 0.35);
}

.not-found-icon-wrapper i {
  font-size: 2.3rem;
}

/* 404 code text */
.not-found-code {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #64a2c9;
}

/* Titles & text */
.not-found-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #26363f;
}

.not-found-card p {
  color: #4e6069;
}

/* Buttons: brand color for primary */
.not-found-card .btn-primary {
  background-color: #64a2c9;
  border-color: #64a2c9;
  font-weight: 500;
}

.not-found-card .btn-primary:hover {
  background-color: #4d8ab0;
  border-color: #4d8ab0;
}

/* Stars */
.not-found-stars i {
  color: #64a2c9;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .not-found-card {
    border-radius: 14px;
    padding: 2.25rem 1.75rem;
  }

  .not-found-card h2 {
    font-size: 1.5rem;
  }
}
