html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Raleway, sans-serif;
  background: white;
  color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.content-wrapper {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.bg-nav {
  background-color: #1e1e1e;
}

.mt--2 {
  margin-top: -0.5rem !important;
}

.hr-dotted {
  border-top: 1px dotted;
  opacity: .25;
  border-color: #3a3a3a;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.4s;
}

.navbar-light .navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #ea5021;
  transition: width 0.4s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.navbar-light .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.feature-icon-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  color: #fff;
  border-radius: 100%;
  background-color: #1e1e1e;
}

.btn-social-media {
  color: #3a3a3a;
  background-color: #ffffff;
  border-color: #3a3a3a;
  width: 2rem;
  height: 2rem;
  padding: 1.2rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.btn-social-media:hover {
  color: #fff;
  background-color: #ea5021;
  border-color: #ea5021;
}

/* Footer */
.footer {
  background-color: #1e1e1e;
}

.footer .copyright a {
  color: #ee5050;
  text-decoration: none;
}

.footer .copyright a:hover {
  color: #eb2d2d;
}

.footer .link a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer .link a:hover {
  color: #ea5021;
}

.row.equal-height .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #2a2a2a;
  color: #ea5021;
  box-shadow: 0 4px 8px rgba(234, 80, 33, 0.5), 0 6px 20px rgba(234, 80, 33, 0.5);
}

.row.equal-height .card-body {
  flex: 1;
}

h1, h3, h4, p, li, a {
  color: #ffffff;
}

.navbar-toggler-icon {
  filter: invert(100%);
}

/* ... rest of your existing styles ... */
