/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #0077b6;
  color: #fff;
}

.btn-primary:hover {
  background-color: #005d8a;
}

.btn-secondary {
  background-color: #f2f2f2;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e6e6e6;
}
/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #B68F85;
}

.navbar-logo {
  font-weight: bold;
}

.navbar-menu {
  list-style: none;
}

.navbar-menu li {
  display: inline-block;
  margin-left: 1rem;
}

.navbar-menu li a {
  color: #333;
  text-decoration: none;
}

/* Banner styles */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background-color: #B68F85;
}

.banner-text {
  text-align: center;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.banner-text p {
  font-size: 1.5rem;
  color: #777;
}
.banner {
  position: relative;
}

.spline-viewer-wrapper {
  position: relative;
  z-index: -1;
}

.spline-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.spline-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.spline-text p {
  font-size: 1.2rem;
}

.content {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
}
element.style {
    display: none !important;
}
#logo {
    display: none;
    position: absolute;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    width: 0;
    height: 36px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, #16181c12 0%, #121316 100%);
    box-shadow: inset 0px -2px 0px -1px #060709, inset 0px 1px 0px rgba(255, 255, 255, 0.04);
    /* display: none; */
}