.gl-nav-bg {
  background: rgba(255, 255, 255, 0.8);
  /* backdrop-filter: blur(8px); */
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
}

.section-codeprolk {
  background-color: #1c1c1e;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #f0f0f5;
  /* Light gray text */
}

.section-title {
  color: #00d4ff;
  /* Cyan/Aqua heading color */
  font-size: 2.5rem;
  font-weight: 700;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #f0f0f5;
  /* Light gray text */
  text-align: center;
}

.section-hexabins p {
  margin-bottom: 0;
}

.section-hexabins h2 {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-hexabins {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-text {
    font-size: 1rem;
  }
}

.tech-logo {
  width: 140px;
  height: auto;
  margin: 10px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.b-img-card {
  position: relative;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 12px;
}

.b-img-card .card-body {
  position: absolute;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.365);
  width: 100%;
  padding: 25px;
  text-align: center;
}

.b-img-card .card-title {
  margin: 0;
  font-size: 1.5rem;
  color: #ffff;
}

.b-img-card .content {
  position: absolute;
  bottom: 10%;
}

/* page loading */
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s 0.2s ease-in-out;
  transition: all 0.4s 0.2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

[data-bs-theme="dark"] .page-loading {
  background-color: #0b0f19;
}

.page-loading.active {
  opacity: 1;
  visibility: visible;
}

.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}

.page-loading.active>.page-loading-inner {
  opacity: 1;
}

.page-loading-inner>span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #9397ad;
}

[data-bs-theme="dark"] .page-loading-inner>span {
  color: #fff;
  opacity: 0.6;
}

.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  vertical-align: text-bottom;
  border: 0.15em solid #b4b7c9;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner 0.75s linear infinite;
  animation: spinner 0.75s linear infinite;
}

[data-bs-theme="dark"] .page-spinner {
  border-color: rgba(255, 255, 255, 0.4);
  border-right-color: transparent;
}

@-webkit-keyframes spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Spin animation */
@-webkit-keyframes hero-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes hero-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hero-animation-spin {
  -webkit-animation: hero-spin 35s linear infinite;
  animation: hero-spin 35s linear infinite;
}

/* Fade animation */
@-webkit-keyframes hero-fade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes hero-fade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.hero-animation-fade {
  -webkit-animation: hero-fade 4s ease-in infinite;
  animation: hero-fade 4s ease-in infinite;
}

.hero-animation-delay-1,
.hero-animation-delay-2,
.hero-animation-delay-3 {
  opacity: 0;
}

.hero-animation-delay-1 {
  animation-delay: 0.75s;
}

.hero-animation-delay-2 {
  animation-delay: 1.5s;
}

.hero-animation-delay-3 {
  animation-delay: 2s;
}