.iconbg
{
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.page-header-title::before
{
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.page-header-title::after
{
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.page-header-title
{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

a {
  color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  text-decoration: none !important;
}

.height480
{
  height:480px;
}

.accent {
    color:var(--accent-color);
    font-weight:bold;
}

.img-cover {
  background-image: url('bg.jpg'); /* Replace with your image URL */
  background-size: cover;                 /* Makes the image cover the entire element */
  background-position: center;            /* Centers the image */
  background-repeat: no-repeat;           /* Prevents repeating */
  width: 100%;                            /* Optional: makes the element take full width */
  height: 100%;                           /* Optional: makes the element take full height */
}

.img-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  pointer-events: none; /* Allows clicks to pass through */
}

.southafrica
{
  position: absolute;
  top: 10px;
}

.hero .hero-card-custom{
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: var(--surface-color);
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  overflow: hidden;
  text-align:center;
}

.hero-about {
  padding-top: 100px;
  min-height: 30vh;
  display: grid;
  align-items: center;
  position: relative;
  padding-bottom: 60px;
}

.img-cover-about {
  background-image: url('../img/bg/aboutbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.img-cover-home {
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}