* {
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #e0f0ff;
  margin: 0;
  padding: 0;
}

/* Aurora blobs */
.aurora {
  position: absolute;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.top-left {
  top: -60vw;
  left: -50vw;
  background: radial-gradient(
    ellipse,
    rgba(0, 110, 120, 0.8),
    rgba(0, 110, 120, 0.8),
    transparent 80%
  );
}
.top-right {
  top: -50vw;
  right: -50vw;
  background: radial-gradient(
    ellipse,
    rgba(76, 175, 236, 0.9),
    rgba(76, 175, 236, 0.9),
    transparent 80%
  );
}
.bottom-left {
  bottom: -70vw;
  left: -50vw;
  background: radial-gradient(
    ellipse,
    rgba(0, 194, 212, 0.9),
    rgba(0, 194, 212, 0.9),
    transparent 80%
  );
}
.bottom-right {
  bottom: -80vw;
  right: -40vw;
  background: radial-gradient(
    ellipse,
    rgba(0, 35, 155, 0.9),
    rgba(0, 35, 155, 0.9),
    transparent 80%
  );
}

.background-lines {
  position: absolute;
  inset: 0;
  background: url("/assets/images/abstract-lines-bg-v2.png") center/cover
    no-repeat;
  opacity: 1;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #e0f0ff;
}

blockquote {
  padding: 10px 20px;
  border-left: 4px solid black;
}

.center-white {
  position: absolute;
  top: -70%;
  bottom: -40%;
  left: -70%;
  right: -40%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent 80%
  );
  filter: blur(90px);
  z-index: 2;
  border-radius: 50%;
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.c-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.c-logos a:hover {
  transform: scale(1.05);
}

.logo-main {
  max-width: 100%;
  height: auto;
  max-height: 7rem;
  max-width: 200px;
}

#cob-logo,
#bath-logo {
  max-height: 4rem;
}

.c-logos img {
  max-height: 5rem;
  object-fit: contain;
}

.c-logos #cob img,
.c-logos #bath img {
  max-height: 2.5rem;
}

.top-left-gradient {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent 80%
  );
  top: -40vw;
  left: -40vw;
}

.top-right-gradient {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent 80%
  );
  top: -40vw;
  right: -40vw;
}

@media (max-width: 768px) {
  .c-logos img {
    max-height: 7rem;
  }
  .c-logos #cob img,
  .c-logos #bath img {
    max-height: 3.5rem;
  }
  .logo-main {
    margin-bottom: 2rem;
  }
  .aurora {
    height: 150vh;
  }
  .background-lines {
    background: url("/assets/images/abstract-lines-bg-mobile-v6.png")
      center/cover no-repeat;
  }
  .center-white {
    left: -5%;
    right: -5%;
    background: radial-gradient(
      ellipse,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9),
      transparent 90%
    );
    filter: blur(60px);
  }
}

@media (min-width: 768px) {
  .h-md-100 {
    height: 100% !important;
  }
}
