* {
  font-family: "Roboto Mono", monospace;
}

#container {
  display: none;
}

/* Loading Circle */
.loading-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: black; /* Set background to black */
  border-radius: 50%;
  text-align: center;
  line-height: 111px;
  font-family: sans-serif;
  font-size: 15px;
  color: rgb(90, 155, 228);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px #fff000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000; /* Ensure it stays on top */
  opacity: 1; /* Initially visible */
  transition: opacity 1s ease-out; /* Smooth fade out */
}

/* Loading animation */
.loading-bar:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 5px solid rgb(90, 155, 228);
  border-right: 5px solid rgb(90, 155, 228);
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loading Screen Container */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out;
}

#enterBtn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  justify-content: center; /* Center horizontally */
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out;
  overflow: hidden;
}

#enter-button {
  position: absolute; /* Changed to absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the button */
  background: black; /* Set background to black */
  border-radius: 50%;
  line-height: 110px; /* Adjusted to match the height */
  font-family: sans-serif;
  font-size: 15px;
  color: rgb(90, 155, 228);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px #fff000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000; /* Ensure it stays on top */
  opacity: 1; /* Initially visible */
  transition: opacity 1s ease-out; /* Smooth fade out */
}

#enter-button:hover {
  color: white;
  cursor: pointer;
}

#chat-bubble {
  position: fixed;
  bottom: -5px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* SVG sizing and hover effects */
#chat-bubble svg {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Glowing effect on hover */
#chat-bubble:hover svg {
  filter: drop-shadow(0 0 8px #00f0ff) brightness(1.2);
  transform: scale(1.08);
}

/* Float animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Chat window container */
#chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 450px;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  z-index: 10000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: white;
}

.chatCover {
  position: fixed;
  bottom: 91px;
  right: 22px;
  width: 349px;
  height: 41px;
  display: none;
  z-index: 100002;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.chatCover p {
  display: flex;
  justify-content: center;
  font-size: 9px;
}

#chat-window iframe {
  transform-origin: top left;
  width: 111%; /* adjust so iframe fills container when scaled */
  height: 111%; /* adjust proportionally */
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

label {
  font-weight: bold;
  color: #333;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #4476b0;
  box-shadow: 0 0 5px rgba(68, 118, 176, 0.5);
}

/* Div acting as submit button */
.submit-btn {
  margin-top: 10px;
  background-color: #4476b0;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #336199;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; 
  border-radius: 6px;
}


.form-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001; /* higher than modal */
  padding: 15px 25px 15px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  min-width: 250px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative; /* so close button positions inside */
}

.form-message.show {
  position: absolute;
  display: block;
  opacity: 1;
}

.form-message.error {
  position: absolute;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.form-message.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.close-message {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: inherit; /* match message text color */
  user-select: none;
}
.close-message:hover {
  color: #00000088;
}

html,
body {
  touch-action: manipulation;
}

#footer {
  display: none;
}

footer {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 7px;
  color: white;
  margin: 0;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer ul li {
  display: inline;
}

footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 7px;
}

footer ul li a:hover {
  text-decoration: underline;
}

#footerDiv {
  margin-top: 5px;
  margin-bottom: 0px;
  font-size: 7px;
  color: white;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

/* Modal Content */
.modal-content {
  background: rgba(234, 234, 234, 0.9); /* Slight transparency */
  width: 50%;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 16px;
}

/* Close Button */
.close {
  color: black;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: red;
}

.donate-btn {
  background-color: #4476b0;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.donate-btn:hover {
  background-color: #365f91;
}

#socialWheel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

#socialWheel.active {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  opacity: 1;
}

#socialWheel.inactive {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

#socialWheel.active .icon {
  opacity: 1;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: calc(var(--i) * 0.07s);
}

#socialWheel.inactive .icon {
  opacity: 0;
  transform: rotate(calc(var(--i) * 40deg)) translate(0px)
    rotate(calc(var(--i) * -40deg));
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: calc((5 - var(--i)) * 0.07s); /* Reverse Order */
}

.icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: rotate(calc(var(--i) * 40deg)) translate(100px)
    rotate(calc(var(--i) * -40deg));
  opacity: 0;
}

.icon:hover {
  transform: rotate(calc(var(--i) * 40deg)) translate(110px)
    rotate(calc(var(--i) * -40deg)) !important;
  background: #4476b0;
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out !important;
}

.icon img {
  width: 60%;
  height: 60%;
  transition: transform 0.2s ease-in-out;
}

.icon:hover img {
  transform: scale(1.1);
}

.icon.center {
  transform: none;
  width: 60px;
  height: 60px;
  background: #fff;
  transition: transform 0.2s ease-in-out;
}

.icon.center:active {
  transform: scale(0.9);
}

button {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 8%;
  left: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button2 {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 25%;
  left: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button3 {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 63%;
  left: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button4 {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 80%;
  left: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button5 {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 44%;
  left: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button6 {
  position: absolute;
  width: 17em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
  top: 95%;
  left: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#clip {
  --color: rgb(60, 122, 228);
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 5px double var(--color);
  box-shadow: inset 0px 0px 60px #195480;
  -webkit-clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
}

.arrow {
  position: absolute;
  transition: 0.2s;
  background-color: #2761c3;
  top: 40% !important;
  width: 16%;
  height: 39%;
}

#leftArrow {
  left: -19.5%;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

#rightArrow {
  -webkit-clip-path: polygon(100% 49%, 0 0, 0 100%);
  left: 103.5%;
}

button:hover #rightArrow {
  background-color: #27c39f;
  left: -18%;
  animation: 0.6s ease-in-out both infinite alternate rightArrow8;
}

button:hover #leftArrow {
  background-color: #27c39f;
  left: 102%;
  animation: 0.6s ease-in-out both infinite alternate leftArrow8;
}

.corner {
  position: absolute;
  width: 4em;
  height: 4em;
  background-color: #2761c3;
  box-shadow: inset 1px 1px 8px #2781c3;
  transform: scale(1) rotate(45deg);
  transition: 0.2s;
}

#rightTop {
  top: -1.98em;
  left: 91%;
}

#leftTop {
  top: -1.96em;
  left: -3em;
}

#leftBottom {
  top: 2.1em;
  left: -2.15em;
}

#rightBottom {
  top: 45%;
  left: 88%;
}

button:hover #leftTop {
  animation: 0.1s ease-in-out 0.05s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

button:hover #rightTop {
  animation: 0.1s ease-in-out 0.15s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

button:hover #rightBottom {
  animation: 0.1s ease-in-out 0.25s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

button:hover #leftBottom {
  animation: 0.1s ease-in-out 0.35s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

button:hover .corner {
  transform: scale(1.25) rotate(45deg);
}

button:hover #clip {
  animation: 0.2s ease-in-out 0.55s both greenLight8;
  --color: #27c39f;
}

@keyframes changeColor8 {
  from {
    background-color: #2781c3;
  }

  to {
    background-color: #27c39f;
  }
}

@keyframes lightEffect8 {
  from {
    box-shadow: 1px 1px 5px #27c39f;
  }

  to {
    box-shadow: 0 0 2px #27c39f;
  }
}

@keyframes greenLight8 {
  from {
  }

  to {
    box-shadow: inset 0px 0px 32px #27c39f;
  }
}

@keyframes leftArrow8 {
  from {
    transform: translate(0px);
  }

  to {
    transform: translateX(10px);
  }
}

@keyframes rightArrow8 {
  from {
    transform: translate(0px);
  }

  to {
    transform: translateX(-10px);
  }
}

@keyframes floatButton1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatButton2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatButton3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatButton4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatButton5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

button {
  animation: floatButton1 3s ease-in-out infinite;
}

.button2 {
  animation: floatButton2 2.5s ease-in-out infinite;
}

.button3 {
  animation: floatButton3 3.5s ease-in-out infinite;
}

.button4 {
  animation: floatButton4 3s ease-in-out infinite;
}

.button5 {
  animation: floatButton5 4s ease-in-out infinite;
}

.checkbox-wrapper-35 {
  position: absolute;
  top: 15px;
  left: 15px;
}

.checkbox-wrapper-35 .switch {
  display: none;
}

.checkbox-wrapper-35 .switch + label {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #78768d;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 15px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-wrapper-35 .switch + label::before,
.checkbox-wrapper-35 .switch + label::after {
  content: "";
  display: block;
}

.checkbox-wrapper-35 .switch + label::before {
  background-color: #2761c3;
  border-radius: 500px;
  height: 15px;
  margin-right: 8px;
  -webkit-transition: background-color 0.125s ease-out;
  transition: background-color 0.125s ease-out;
  width: 25px;
}

.checkbox-wrapper-35 .switch + label::after {
  background-color: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 1px 0 rgba(19, 0, 222, 0.05),
    0 2px 2px 0 rgba(37, 34, 71, 0.1), 0 3px 3px 0 rgba(37, 34, 71, 0.05);
  height: 13px;
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transition: -webkit-transform 0.125s ease-out;
  transition: -webkit-transform 0.125s ease-out;
  transition: transform 0.125s ease-out;
  transition: transform 0.125s ease-out, -webkit-transform 0.125s ease-out;
  width: 13px;
}

.checkbox-wrapper-35 .switch + label .switch-x-text {
  display: block;
  margin-right: 0.3em;
}

.checkbox-wrapper-35 .switch + label .switch-x-toggletext {
  display: block;
  font-weight: bold;
  height: 15px;
  overflow: hidden;
  position: relative;
  width: 25px;
}

.checkbox-wrapper-35 .switch + label .switch-x-unchecked,
.checkbox-wrapper-35 .switch + label .switch-x-checked {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
  transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
  transition: transform 0.125s ease-out, opacity 0.125s ease-out;
  transition: transform 0.125s ease-out, opacity 0.125s ease-out,
    -webkit-transform 0.125s ease-out;
}

.checkbox-wrapper-35 .switch + label .switch-x-unchecked {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.checkbox-wrapper-35 .switch + label .switch-x-checked {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.checkbox-wrapper-35 .switch + label .switch-x-hiddenlabel {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-35 .switch:checked + label::before {
  background-color: rgb(59, 43, 0);
}

.checkbox-wrapper-35 .switch:checked + label::after {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.checkbox-wrapper-35 .switch:checked + label .switch-x-unchecked {
  opacity: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.checkbox-wrapper-35 .switch:checked + label .switch-x-checked {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.testimonial-container {
  max-width: 600px;
  background: white;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
}

.testimonial-profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4476b0;
}

.testimonial-name {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.testimonial-text {
  font-size: 1em;
  color: #666;
  font-style: italic;
}

@media screen and (min-width: 550px) {
  .hamburger {
    display: none;
  }
  .toggle-checkbox {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  #chat-bubble {
    top: 40px;
    left: -4px;
  }

  #chat-window,
  .chatCover {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hidden-menu {
    position: fixed;
    top: 0;
    right: -100vw; /* Starts hidden */
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    backdrop-filter: blur(3px);
    background: linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.66),
      rgba(9, 0, 71, 0.77),
      rgba(92, 0, 53, 0.3),
      rgba(0, 56, 92, 0.53)
    );
    background-size: 400% 400%;
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  /* When menu is active */
  .toggle-checkbox:checked ~ .hidden-menu {
    transform: translateX(-100vw);
    animation: smoothGradient 10s infinite ease-in-out;
  }

  /* Ultra-Smooth Gradient Animation */
  @keyframes smoothGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  /* Hide checkbox */
  .toggle-checkbox {
    display: none;
  }

  /* Hamburger Menu */
  .hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 24px;
    cursor: pointer;
    z-index: 9;
  }

  .hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Animation when menu is toggled */
  .toggle-checkbox:checked + .hamburger .bar:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  .toggle-checkbox:checked + .hamburger .bar:nth-child(2) {
    opacity: 0;
  }

  .toggle-checkbox:checked + .hamburger .bar:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  button {
    width: 15em;
    height: 4em;
    font-size: 10px;
    top: 12%;
    left: 30%;
  }

  .button2 {
    width: 15em;
    height: 4em;
    font-size: 10px;
    top: 27%;
    left: 30%;
  }

  .button3 {
    width: 15em;
    height: 4em;
    font-size: 10px;
    top: 57%;
    left: 30%;
  }

  .button4 {
    width: 15em;
    height: 4em;
    font-size: 10px;
    top: 72%;
    left: 30%;
  }

  .button5 {
    width: 15em;
    height: 4em;
    font-size: 10px;
    top: 42%;
    left: 30%;
  }

  #footerDiv {
    font-size: 6px;
  }

  .modal-content {
    background: rgba(234, 234, 234, 0.9); /* Slight transparency */
    width: 80%;
    font-size: 12px;
  }

  #leftArrow {
    left: -21%;
  }

  #rightArrow {
    left: 105.5%;
  }

  .testimonial-container {
    max-width: 350px;
    padding: 10px;
  }

  .testimonial-profile {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 1em;
  }

  .testimonial-text {
    font-size: 0.85em;
  }

  footer {
    z-index: 1;
  }
}
