.twbb-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.twbb-nav-menu > li {
    position: relative;
    display: inline-block;
}

.twbb-nav-menu a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #000;
}

.twbb-nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.twbb-nav-menu .dropdown-menu li {
    display: block;
}

.twbb-nav-menu .dropdown-menu a {
    padding: 10px 15px;
    color: #000;
}

.twbb-nav-menu > li:hover .dropdown-menu {
    display: block;
}

.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)}
#logo {
    display: inline-block;
    height: 60px;
    width: auto; /* correct proportions to specified height */
}

@media (max-width: 768px) {
  #logo {
    display: block;
    margin: 0 auto; /* Center the logo */
  }
}

.underline-text {
    text-decoration: none;
  }

#logo_footer{
    display: inline-block;
    margin: 5px; /* margin: 20px was off */
    float: left;
    height: 30px;
    width: auto; /* correct proportions to specified height */
    border-radius: 0%; /* makes it a circle */
}
.footer {
    text-align: left;
    padding: 0px;
    font-size: 0.9em;
    color: #e3e0e0;
    }

.footer a{
    text-align: left;
    padding: 0px;
    font-size: 0.9em;
    color: #e3e0e0;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.animate-charcter
{
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #a2bd09 0%,
    #099a9d 29%,
    #1b7ad8 67%,
    #dcc40a 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 100% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 70px;
  line-height: 1.3; /* Adjust line height to prevent text clipping */
  margin-top: 20px; /* Adds spacing above */
  margin-bottom: 20px; /* Adds spacing below */
}

@media (max-width: 768px) {
  .animate-charcter {
      font-size: 30px; /* Reduce font size for better fit on smaller screens */
  }
}

@media (max-width: 768px) {
  .animate-charcter2 {
      font-size: 30px; /* Reduce font size for better fit on smaller screens */
  }
}




@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


#floating-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary-color);
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  animation: animateGlow 1.25s linear infinite;
  box-shadow: 0px 2px 20px rgba(6, 162, 176, 0.958);
}

/* margin: 20px was off #floating-button .enq-ttip {
  position: absolute;
  font-size: 11px;
  color: #fff;
  background: #168aef;
  padding: 5px 10px;
  top: 30%;
  right: 125%;
  white-space: nowrap;
  letter-spacing: 1px;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
}

#floating-button .enq-ttip:before {
  content: "";
  position: absolute;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #168aef;
}*/

.plus {
  color: white;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 55px;
  font-size: 38px;
  font-family: "Roboto";
  font-weight: 300;
  border-radius: 50%;
  transition: all 0.3s;
}

#container-floating {
  position: fixed;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

#container-floating:hover {
  height: 400px;
  width: 90px;
  padding: 30px;
}

#container-floating:hover .plus {
  animation: plus-in 0.15s linear;
  animation-fill-mode: forwards;
}

.edit {
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  padding: 0;
  opacity: 0;
  margin: auto;
  line-height: 65px;
  transform: rotateZ(-70deg);
  transition: all 0.3s;
  animation: edit-out 0.3s;
}

#container-floating:hover .edit {
  animation: edit-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

@keyframes edit-in {
  from {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes edit-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
}
@keyframes plus-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(180deg);
  }
}
@keyframes plus-out {
  from {
    opacity: 0;
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
.nds {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: fixed;
  z-index: 300;
  transform: scale(0);
  cursor: pointer;
  background: rgba(26, 49, 58, 0.773);
  display: flex;
  justify-content: center;
  align-items: center;
  outline-offset: -4px;
}
.nds a {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #f6faf2 !important;
}
.nds button {
  background: transparent !important;
  color: #fff;
  box-shadow: none;
  border: none;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.nd1 {
  right: 35px;
  bottom: 98px;
  animation-delay: 0.2s;
  animation: bounce-out-nds 0.3s linear;
  animation-fill-mode: forwards;
}

.nd2 {
  right: 35px;
  bottom: 155px;
  animation-delay: 0.15s;
  animation: bounce-out-nds 0.15s linear;
  animation-fill-mode: forwards;
}

.nd3 {
  right: 35px;
  bottom: 230px;
  animation-delay: 0.1s;
  animation: bounce-out-nds 0.1s linear;
  animation-fill-mode: forwards;
}

@keyframes bounce-nds {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce-out-nds {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

#container-floating:hover .nds {
  animation: bounce-nds 0.1s linear;
  animation-fill-mode: forwards;
}

#container-floating:hover .nd1 {
  animation-delay: 0.08s;
}

#container-floating:hover .nd2 {
  animation-delay: 0.15s;
}

#container-floating:hover .nd3 {
  animation-delay: 0.2s;
}

.letter {
  font-size: 23px;
  font-family: "Roboto";
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 40px;
}

.reminder {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
}

.pulseanimation {
  animation: pulse-cust 2s infinite;
  border-radius: 50%;
}

.pulseanimation:hover {
  animation: none;
}

@keyframes pulse-cust {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(14, 157, 224, 0.766);
    border-radius: 50%;
  }

  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(27, 141, 202, 0);
    border-radius: 50%;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(29, 93, 161, 0);
    border-radius: 50%;
  }
}

@keyframes glowing {
  0% { box-shadow: 0 0 -10px #dd0659; }
  40% { box-shadow: 0 0 20px #db0880; }
  60% { box-shadow: 0 0 20px #db187d; }
  100% { box-shadow: 0 0 -10px #da9de9; }
}

.button-glow {
  animation: glowing 3000ms infinite;
}

.animateGlow {
  background: hsl(0, 0%, 100%);
  
  position: relative;
 
  box-shadow: 0 0 0 1px rgba(0,0,0,.01);

  &::after {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    right: 0;
    border-radius: 50%;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(1.5) translateZ(0);
    filter: blur(15px);
    background: linear-gradient(
      to left,
      #e20a2b,
      #ea2480,
      #03ae94,
      #e93c07,
      #dab212,
      #0699f4,
      #c42da8,
      #15b1f4,
      #46db07
    );
 
    animation: animateGlow 4.25s linear infinite;
  }
}

.animateGlow:hover {
  animation: none;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  40% {
    background-position: 100% 20%;
  }
  100% {
    background-position: 200% 50%;
  }
}



.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55)); /* Gradient background */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px; /* Rounded corners for the overlay */
}

.hover-container:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 15px;
    text-align: justify;
    margin:7px;
}



/* Keyframes to create infinite scrolling effect */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.collapsible {
    width: 200px;
    text-align: center;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
}

.collapsible a {
    color:#ddd;
}

.collapsible-button {
    width: 200px;
    text-align: center;
    height: 50px;
    padding: 10px;
    background-color: #185ed6;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
}

.collapsible-a:hover {
    background-color: #ddd;
    transition: max-height 0.2s ease-in;
}

.collapsible-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.collapsible-content img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.collapsible-content p {
    margin: 0;
}