/********** Template CSS **********/
:root {
  --primary: #f76d70;
  --secondary: #fdbe33;
  --light: #f4f6f8;
  --dark: #7a1316;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;  /* optional but helps */
}


.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  bottom: -1px;
  left: 50%;
  background: var(--primary);
  transition: 0.5s;
}

.btn.btn-primary::after {
  background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
  width: 50%;
  left: 25%;
}

.btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #9a3338;
  border-color: #9a3338;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 19, 22, 0.3);
  color: #ffffff !important;
}

.btn-primary:focus {
  color: #ffffff !important;
}

.btn-primary:active {
  color: #ffffff !important;
}

/* Quote section button styling */
.col-lg-4.mb-5.mb-lg-0 .btn-primary {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
}

.col-lg-4.mb-5.mb-lg-0 .btn-primary:hover {
  color: #ffffff !important;
}

/* Appointment form button */
.bg-light.text-center.p-3 .btn-primary {
  color: #ffffff !important;
  font-size: 16px;
}

.bg-light.text-center.p-3 .btn-primary:hover {
  color: #ffffff !important;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
  font-size: 20px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-lg-square i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff !important;
}

.btn-lg-square.btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-lg-square.btn-primary i {
  color: #ffffff !important;
}

.btn-lg-square.btn-primary:hover {
  background-color: #9a3338;
  border-color: #9a3338;
  color: #ffffff !important;
}

.btn-lg-square.btn-primary:hover i {
  color: #ffffff !important;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  border-radius: 0;
  z-index: 99;
}

.back-to-top.btn-lg-square {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.btn-lg-square i {
  color: #ffffff !important;
}

.bg-dark-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}

.bg-light-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 15, 40, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 18px;
    font-weight: 600 !important;
  }

  .carousel-caption p {
    font-size: 12px !important;
  }

  .carousel-caption div {
    padding: 10px !important;
    max-width: 100% !important;
  }

  .carousel-caption .btn {
    padding: 8px 16px !important;
    font-size: 12px;
  }

  .carousel-caption i {
    display: none !important;
  }

  #header-carousel {
    min-height: 300px;
  }

  .carousel-caption {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(4, 15, 40, 0.7), rgba(4, 15, 40, 0.7)),
    url(../img/carousel-1.webp) center center no-repeat;
  background-size: cover;
}

.service-item .service-icon {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.service-item .service-icon i {
  transition: 0.2s;
}

.service-item:hover .service-icon i {
  font-size: 60px;
}

.portfolio-item {
  margin-bottom: 60px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  padding: 0 30px;
  right: 30px;
  left: 30px;
  bottom: -60px;
  background: #1a1a1a !important;
  color: #ffffff !important;
  border-top: 4px solid var(--dark);
  z-index: 3;
}

.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  font-size: 120px;
  line-height: 0;
  transition: 0.1s;
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  transition: 0.5s;
  z-index: 1;
  background: rgba(4, 15, 40, 0.7);
}

.portfolio-box::before {
  left: 0;
}

.portfolio-box::after {
  right: 0;
}

.portfolio-item:hover .portfolio-box::before {
  left: 0;
  width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
  right: 0;
  width: 50%;
}

@media (min-width: 992px) {
  .testimonial,
  .contact-form {
    margin-left: -90px;
  }
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--primary);
  }
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--primary);
  transform: skew(40deg);
}

/* ========== FULL WIDTH NAVBAR STYLING ========== */

.navbar-dark {
  background-color: var(--dark) !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

.navbar {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  background-color: var(--dark) !important;
}

.sticky-top {
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 0 !important;
  background-color: var(--dark) !important;
}

.navbar-expand-lg {
  width: 100%;
  background-color: var(--dark) !important;
}

.navbar-brand {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-nav {
  width: 100%;
}

.navbar-nav .nav-link {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 15px;
  }
}

/* Ensure container-fluid navbar takes full width */
.container-fluid.sticky-top {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: var(--dark) !important;
}

/* ========== FUTURISTIC PRODUCT CARDS ========== */
.futuristic-card {
  background: #222222 !important;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.futuristic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
  z-index: 1;
  border-radius: 14px;
}

.futuristic-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.futuristic-card:hover::before {
  left: 100%;
}

.futuristic-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(247, 109, 112, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  border-radius: 14px 14px 0 0;
}

.futuristic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.95) contrast(1.1);
}

.futuristic-card:hover .futuristic-card-image img {
  transform: scale(1.12) rotate(2deg);
  filter: brightness(1.05) contrast(1.2) saturate(1.2);
}

.futuristic-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 212, 255, 0.08) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 14px 14px 0 0;
}

.futuristic-card:hover .futuristic-card-image::after {
  opacity: 1;
}

.futuristic-card-content {
  padding: 24px;
  position: relative;
  z-index: 2;
  background: #222222 !important;
  border-radius: 0 0 14px 14px;
}

.futuristic-card-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.futuristic-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #00d4ff);
  transition: width 0.4s ease;
}

.futuristic-card:hover .futuristic-card-title::after {
  width: 100%;
}

.futuristic-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.futuristic-card-list li {
  font-size: 12px;
  color: #d0d0d0 !important;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.futuristic-card-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--dark) !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.futuristic-card:hover .futuristic-card-list li {
  color: #333333;
  padding-left: 24px;
}

.futuristic-card:hover .futuristic-card-list li::before {
  color: #00d4ff;
  transform: scaleX(1.3);
}

.futuristic-badge {
  display: inline-block;
  background: var(--dark) !important;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* Section heading with futuristic style */
.futuristic-section-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 2px;
}

.futuristic-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #00d4ff, transparent);
  border-radius: 2px;
}

.futuristic-section-title i {
  margin-right: 12px;
  color: var(--dark) !important;
}

/* Contact Form Background */
.contact-form {
  background-color: #222222 !important;
  border-top: 4px solid var(--dark);
  border-radius: 8px;
}

.contact-form .form-control {
  background-color: #1a1a1a !important;
  border: 1px solid #444444 !important;
  color: #ffffff !important;
}

.contact-form .form-control::placeholder {
  color: #888888 !important;
}

.contact-form .form-control:focus {
  background-color: #1a1a1a !important;
  border-color: var(--dark) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(122, 19, 22, 0.25);
}

.contact-form textarea.form-control {
  background-color: #1a1a1a !important;
  border: 1px solid #444444 !important;
  color: #ffffff !important;
}

.contact-form textarea.form-control::placeholder {
  color: #888888 !important;
}

/* ========== CAROUSEL STYLING ========== */
.container-fluid.p-0 {
  overflow: hidden;
}

#header-carousel {
  min-height: 500px;
  width: 100%;
  background: #000;
}

#header-carousel .carousel-inner {
  height: 500px;
  width: 100%;
}

#header-carousel .carousel-item {
  height: 500px;
  position: relative;
  width: 100%;
}

#header-carousel .carousel-item img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1200px) {
  #header-carousel,
  #header-carousel .carousel-inner,
  #header-carousel .carousel-item {
    min-height: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  #header-carousel,
  #header-carousel .carousel-inner,
  #header-carousel .carousel-item {
    min-height: 300px;
    height: 300px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
  }
}

@media (max-width: 576px) {
  #header-carousel,
  #header-carousel .carousel-inner,
  #header-carousel .carousel-item {
    min-height: 220px;
    height: 220px;
  }

  #header-carousel .carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .carousel-caption {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 15px !important;
    background: rgba(4, 15, 40, 0.8) !important;
  }

  .carousel-caption div {
    max-width: 90% !important;
    padding: 0 !important;
  }

  .carousel-caption h1 {
    font-size: 16px !important;
  }

  .carousel-caption p {
    font-size: 11px !important;
  }

  .carousel-caption .btn {
    padding: 6px 12px !important;
    font-size: 11px;
  }
}

/* ========== SECTION STYLING WITH BLACK & MAROON BALANCE ========== */

/* All main content sections - Black Background Theme */
.container-fluid.py-6.px-3 {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.container-fluid.py-6.px-3 h1,
.container-fluid.py-6.px-3 h4,
.container-fluid.py-6.px-3 h5,
.container-fluid.py-6.px-3 h6 {
  color: #ffffff !important;
}

.container-fluid.py-6.px-3 p,
.container-fluid.py-6.px-3 span {
  color: #d0d0d0 !important;
}

.container-fluid.py-6.px-3 .text-primary {
  color: var(--dark) !important;
}

.container-fluid.py-6.px-3 .text-body {
  color: #d0d0d0 !important;
}

.container-fluid.py-6.px-3 .text-uppercase {
  color: #ffffff !important;
}

.container-fluid.py-6.px-3 .fw-bold {
  color: #ffffff !important;
}

.container-fluid.py-6.px-3 .fa-check {
  color: var(--dark) !important;
}

/* Services Section - Black Background */
.container-fluid.bg-light.py-6.px-3 {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.container-fluid.bg-light.py-6.px-3 h1,
.container-fluid.bg-light.py-6.px-3 h4,
.container-fluid.bg-light.py-6.px-3 h5,
.container-fluid.bg-light.py-6.px-3 h6 {
  color: #ffffff !important;
}

.container-fluid.bg-light.py-6.px-3 p,
.container-fluid.bg-light.py-6.px-3 span {
  color: #d0d0d0 !important;
}

.container-fluid.bg-light.py-6.px-3 .text-primary {
  color: var(--dark) !important;
}

.container-fluid.bg-light.py-6.px-3 .display-5 {
  color: #ffffff !important;
}

.container-fluid.bg-light.py-6.px-3 .display-5 .text-primary {
  color: var(--dark) !important;
}

/* Service Cards - White cards on black background */
.service-item {
  background: #1a1a1a !important;
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #d0d0d0;
}

.service-item h4 {
  color: #ffffff !important;
}

.service-item p {
  color: #b0b0b0 !important;
}

.service-item:hover {
  background: #222222 !important;
  box-shadow: 0 10px 30px rgba(247, 109, 112, 0.2);
  transform: translateY(-5px);
}

/* Portfolio Section - Black Background */
.container-fluid.bg-light.py-6.px-3:last-of-type {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.container-fluid.bg-light.py-6.px-3:last-of-type h1,
.container-fluid.bg-light.py-6.px-3:last-of-type p {
  color: #ffffff !important;
}

.container-fluid.bg-light.py-6.px-3:last-of-type .text-primary {
  color: var (--dark) !important;
}

/* Heading Styles with Maroon Accent */
.display-5 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff !important;
}

.display-5 .text-primary {
  color: var(--dark) !important;
  position: relative;
  padding-bottom: 5px;
}

.display-5 .text-primary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dark), transparent);
  border-radius: 2px;
}

/* Text styling for dark sections */
.container-fluid.py-6.px-3 .text-white-50 {
  color: #b0b0b0 !important;
}

.container-fluid.py-6.px-3 a {
  color: var(--dark);
  transition: 0.3s;
}

.container-fluid.py-6.px-3 a:hover {
  color: #9a3338;
}

/* Form styling in appointment section */
.bg-light.text-center.p-3 {
  background-color: #1a1a1a !important;
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
  background-color: #222222 !important;
  border: 1px solid #444444 !important;
  color: #ffffff !important;
  transition: 0.3s;
}

.form-control::placeholder {
  color: #888888 !important;
}

.form-control:focus {
  background-color: #222222 !important;
  border-color: var(--dark) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(122, 19, 22, 0.25);
}

textarea.form-control {
  background-color: #222222 !important;
  border: 1px solid #444444 !important;
  color: #ffffff !important;
}

textarea.form-control::placeholder {
  color: #888888 !important;
}

/* Button styling */
.btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #9a3338;
  border-color: #9a3338;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 19, 22, 0.3);
  color: #ffffff !important;
}

.btn-primary:focus {
  color: #ffffff !important;
}

.btn-primary:active {
  color: #ffffff !important;
}

/* Quote section button - ensure white text */
.col-lg-4 .btn-primary,
.appointment .btn-primary {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
}

.col-lg-4 .btn-primary:hover,
.appointment .btn-primary:hover {
  color: #ffffff !important;
}

.bg-white {
  background-color: #1a1a1a !important;
}

/* Check marks styling */
.fa-check.text-primary {
  color: var(--dark) !important;
}

/* Text colors for appointment section */
.col-lg-4.mb-5.mb-lg-0 p {
  color: #d0d0d0 !important;
}

/* Position dark background for images */
.position-relative.bg-dark-radial.h-100 {
  background-color: #1a1a1a !important;
}

/* Responsive adjustments for sections */
@media (max-width: 768px) {
  .container-fluid.py-6.px-3 {
    padding: 45px 15px !important;
  }

  .display-5 {
    font-size: 28px !important;
  }
}

/* Ensure footer and header are NOT affected */
.footer {
  background-color: var(--dark) !important;
}

.navbar-dark {
  background-color: var(--dark) !important;
}
