* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#appfz {
  width: 350px;
  height: 70px;
  display: grid;
  place-items: center;
}

#appfz ul {
  position: relative;
  width: 350px;
  height: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.08), 0 100px 80px rgba(0, 0, 0, 0.03);
  overflow: hidden;
    border: 2px solid #00ffff;

}

#appfz ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  color: #101010;
  z-index: 1; /* Lowered from 10 to 1 to let focus-el be behind text */
  position: relative;
  cursor: pointer;
  height: 100%;
}

#appfz ul .focus-el {
  position: absolute;
  top: 0;
  left: calc(100% / 3); /* Position it over the middle button */
  width: calc(100% / 3);
  height: 100%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.015), 0 100px 80px rgba(0, 0, 0, 0.03);
  z-index: 0; /* Keep it behind the text */
  transition: left 0.3s ease;
}

.clickable {
  transition: all 0.1s ease;
  user-select: none;
}

.clickable:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.05);
}

.clickable:hover {
  background-color: rgba(0, 0.1, 0.2, 0.25);
}

/* THIS IS PART OF THE FZFXFC CODE IN COUNTERSTRAFE.HTML 
#appfz ul li {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#appfz ul li.pressed {
  transform: scale(0.94);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

#appfz ul .focus-el {
  transition: left 0.3s ease;
} */






.glassy-button {
  position: relative;
  padding: 0.9em 2.5em;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.05); /* light glass layer */
  border: 2px solid rgba(125, 249, 255, 0.5); /* cyan border */
  border-radius: 2em;
  backdrop-filter: blur(16px); /* background blur */
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  box-shadow:
    0 0 10px rgba(125, 249, 255, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Shimmer effect on hover */
.glassy-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
    rgba(125, 249, 255, 0.1),
    rgba(255, 255, 255, 0.25),
    rgba(125, 249, 255, 0.1));
  transform: skewX(-20deg);
  z-index: 0;
  transition: 0.5s;
}

.glassy-button:hover::before {
  left: 0;
}

.glassy-button:hover {
  color: #7df9ff;
  box-shadow:
    0 0 20px rgba(125, 249, 255, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

















.buttonfr {
  --primary: #00ffff;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  background-color: #151515;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px #151515, 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}

.buttonfr:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}

.buttonfr:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}

.buttonfr::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: transparent;
  z-index: 0;
  transition: all 0.4s ease;
}

.buttonfr:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}

.buttonfr::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: #151515;
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

.statefr p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.statefr .iconfr {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statefr .iconfr svg {
  overflow: visible;
}

/* Outline */
.outlinefr {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}

.outlinefr::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    white 80%,
    transparent 100%
  );
  animation: spinfr 2s linear infinite;
  animation-play-state: paused;
}

@keyframes spinfr {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.buttonfr:hover .outline {
  opacity: 1;
}

.buttonfr:hover .outline::before {
  animation-play-state: running;
}

/* Letters */
.statefr p span {
  display: block;
  opacity: 0;
  animation: slideDownfr 0.8s ease forwards calc(var(--i) * 0.03s);
}

.buttonfr:hover p span {
  opacity: 1;
  animation: wavefr 0.5s ease forwards calc(var(--i) * 0.02s);
}

.buttonfr:focus p span {
  opacity: 1;
  animation: disapearfr 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wavefr {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes slideDownfr {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes disapearfr {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}

/* Plane */
.statefr--default .iconfr svg {
  animation: landfr 0.6s ease forwards;
}

.buttonfr:hover .statefr--default .iconfr {
  transform: rotate(45deg) scale(1.25);
}

.buttonfr:focus .statefr--default svg {
  animation: takeOfffr 0.8s linear forwards;
}

.buttonfr:focus .statefr--default .iconfr {
  transform: rotate(0) scale(1.25);
}

@keyframes takeOfffr {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }
  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}

@keyframes landfr {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Contrail */
.statefr--default .iconfr:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}

.buttonfr:focus .statefr--default .iconfr:before {
  animation: contrailfr 0.8s linear forwards;
}

@keyframes contrailfr {
  0% {
    width: 0;
    opacity: 1;
  }
  8% {
    width: 15px;
  }
  60% {
    opacity: 0.7;
    width: 80px;
  }
  100% {
    opacity: 0;
    width: 160px;
  }
}

/* States */
.statefr {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.statefr--default span:nth-child(4) {
  margin-right: 0px;
}

.statefr--sent {
  display: none;
}

.statefr--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.buttonfr:focus .statefr--default {
  position: absolute;
}

.buttonfr:focus .statefr--sent {
  display: none !important;
}

.buttonfr:focus .statefr--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}

.buttonfr:focus .statefr--sent .iconfr svg {
  opacity: 0;
  animation: appearfr 1.2s ease forwards 0.8s;
}

@keyframes appearfr {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }
  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.button-link {
  display: inline-block;
  text-decoration: none;
}
.buttonfr.clicked {
  transform: scale(0.97);
  opacity: 0.95;
}








.cssbutton-io-button {
  background: #7df9ff;
  color: #232323;
  font-family: inherit;
  /* 0.55em top/right/bottom, 4.5em left to clear icon + extra room */
  padding: 0.55em 0.55em 0.55em 4.5em;
  font-size: 22px;
  font-weight: 600;
  border-radius: 1.2em;
  border: 1.5px solid #000;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 2.4em;
  cursor: pointer;
  overflow: hidden;
}

.cssbutton-io-button .icons {
  position: absolute;
  top: 50%;
  left: 0.25em;                 /* still close to left edge */
  transform: translateY(-50%);
  background: #fff;
  height: 1.97em;
  width: 2.1em;
  border-radius: 1em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  transition: width 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cssbutton-io-button .icons svg {
  width: 1.1em;
  color: #7b52b9;
}

/* Hover: stretch almost full-width, leaving just 0.3em on each side */
.cssbutton-io-button:hover .icons {
  width: calc(100% - 0.55em);
}

/* Active (click): scale the box up */
.cssbutton-io-button:active .icons {
  transform: translateY(-50%) scale(0.95);
}





.btn1 {
  color: #7df9ff;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fefefe;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.btn1:hover {
  color: black;
}

.btn1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background: linear-gradient(120deg, #ffffff, #00ffff);
  z-index: -1;
  transition: all 1s ease;
}

.btn1:hover::before {
  width: 160%;
}


button {
  position: relative;
  width: 11em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
}

#clip {
  --color: #2761c3;
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 5px double var(--color);
  box-shadow: inset 0px 0px 15px #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: 35%;
  width: 11%;
  height: 30%;
}

#leftArrow {
  left: -13.5%;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

#rightArrow {
  -webkit-clip-path: polygon(100% 49%, 0 0, 0 100%);
  left: 102%;
}

button:hover #rightArrow {
  background-color: #27c39f;
  left: -15%;
  animation: 0.6s ease-in-out both infinite alternate rightArrow8;
}

button:hover #leftArrow {
  background-color: #27c39f;
  left: 103%;
  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: -3.0em;
}

#leftBottom {
  top: 2.10em;
  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);
  }
}


.button-container {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.button-3d {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  border-width: 0;
  padding: 0 8px;
  min-width: 4em;
  min-height: 4em;
  box-sizing: border-box;
  background: transparent;
  font: inherit;
  cursor: pointer;
  margin: 10px;
  border-radius: 20px;
}

.button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 8px 16px;
  transform: translateY(0);
  color: #fff;
  background-image: linear-gradient(145deg, #6a11cb, #2575fc);
  text-shadow: 0 -1px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: transform 0.3s, border-radius 0.3s, background 10s;
}

.button-3d:active .button-top {
  border-radius: 10px 10px 8px 8px / 8px;
  transform: translateY(2px);
  background-image: linear-gradient(145deg, #2575fc, #6a11cb);
}

.button-bottom {
  position: absolute;
  z-index: 1;
  bottom: 4px;
  left: 4px;
  border-radius: 20px;
  padding-top: 6px;
  width: calc(100% - 8px);
  height: calc(100% - 10px);
  background-image: linear-gradient(145deg, #2575fc, #6a11cb);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
  transition: border-radius 0.2s, padding-top 0.2s;
}

.button-base {
  position: absolute;
  z-index: 0;
  top: 4px;
  left: 0;
  border-radius: 20px;
  width: 100%;
  height: calc(100% - 4px);
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 2px 2px rgba(0, 0, 0, 0.25);
  transition: border-radius 0.2s, padding-top 0.2s;
}

.button-3d:active .button-bottom {
  border-radius: 10px 10px 8px 8px / 8px;
  padding-top: 0;
}

.button-3d:active .button-base {
  border-radius: 10px 10px 8px 8px / 8px;
}





/* From Uiverse.io by m1her */ 
.radio-input {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: black;
  padding: 4px;
  border-radius: 10px;
  z-index: 1;
}

.radio-input input {
  display: none;
}

.radio-input .label {
  width: 130px;
  min-width: 130px;
  height: 60px;
  background: linear-gradient(to bottom, #333333, rgb(36, 35, 35));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  transition: all 0.1s linear;
  border-top: 1px solid #4e4d4d;
  background-color: #333333;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 17px 5px 1px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  white-space: nowrap;
}

.label.stop-label {
  width: 170px;
  min-width: 170px;
}

.label:has(input[type="radio"]:checked) {
  box-shadow: 0px 17px 5px 1px rgba(0, 0, 0, 0);
  background: linear-gradient(to bottom, #1d1d1d, #1d1d1d);
  border-top: none;
}

.label:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.label:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 103%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    transparent 10%,
    transparent,
    transparent 90%
  );
  transition: all 0.1s linear;
  z-index: -1;
}

.label:has(input[type="radio"]:checked)::before {
  background: linear-gradient(
    to bottom,
    transparent 10%,
    #cae2fd63,
    transparent 90%
  );
}

.label .text {
  color: black;
  font-size: 15px;
  line-height: 12px;
  padding: 0px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.1s linear;
  text-shadow:
    -1px -1px 1px rgb(224, 224, 224, 0.1),
    0px 2px 3px rgb(0, 0, 0, 0.3);
}

.label input[type="radio"]:checked + .text {
  color: rgb(202, 226, 253);
  text-shadow: 0px 0px 12px #cae2fd;
}

@media (max-width: 600px) {
  .radio-input {
    flex-direction: column;
    gap: 4px;
    padding: 1px;
    width: 80vw;
    max-width: 80vw;
    border-radius: 6px;
  }
  .radio-input .label {
    width: 80vw;
    min-width: 0;
    max-width: 80vw;
    height: 54px;
    font-size: 15px;
    padding: 8px 6px;
    border-radius: 10px;
  }
  .label.stop-label {
    width: 80vw;
    min-width: 0;
  }
  .label .text {
    font-size: 13px;
    line-height: 18px;
    padding: 0;
  }
}

@media (max-width: 600px) {
  #aryan.ques1.ogtech {
    font-size: 2.5rem;
    padding: 8px 0;
    word-break: break-word;
    text-align: center;
    line-height: 1.3;
    max-width: 500vw;
    margin: 0 auto;
  }
}

.buttonfv {
  position: relative;
  width: 330px;
  height: 50px;
  border-radius: 30px;
  background-color: #7df9ff;
  border: 1px #FFB700 solid;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text1fv {
  font-size: 15px;
  font-weight: 600;
  margin-left: 22%;
  color: #101010;
  align-content: center;
}

.text2fv {
  position: absolute;
  top: 25%;
  left: -50px; 
  font-weight: 700;
  font-size: 14px;
  color: #fefefe;
  transition: transform 0.6s ease;
  align-content: center;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}
.buttonfv:hover .text2fv {
  transform: translate(200px, -50%);
}

.iconfv {
  position: absolute;
  top: 0;
  left: -330px; 
  width: 330px;
  height: 50px;
  transition: transform 0.5s ease;
}
.iconfv::before {
  content: '';
  position: absolute;
  left: 0;  
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
  z-index: -1;
}

.logofv {
  position: absolute;
  top: -2px;  
  left: 0;
  width: 44px; 
  height: 44px;
  z-index: 1;  
  transition: transform 0.5s ease;
}

.buttonfv:hover .iconfv {
  transform: translateX(330px);
}
.buttonfv:hover .logofv {
  transform: translateX(280px);
}
.buttonfv:hover .text2fv {
  transform: translateX(180px);
}

.buttonfv:active {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .buttonfv {
    width: 280px;
    min-width: 280px;
    height: 46px;
    border-radius: 23px;
    margin: 0 auto;
  }
  .text1fv {
    font-size: 15px;
    margin-left: 15%;
  }
  .text2fv {
    font-size: 13px;
    left: -30px;
  }
  .iconfv {
    width: 280px;
    height: 46px;
    left: -280px;
  }
  .iconfv::before {
    width: 100%;
    height: 100%;
    border-radius: 23px;
  }
  .logofv {
    width: 40px;
    height: 40px;
    top: -2px;
    left: 0;
  }
  .buttonfv:hover .iconfv {
    transform: translateX(280px);
  }
  .buttonfv:hover .logofv {
    transform: translateX(235px);
  }
  .buttonfv:hover .text2fv {
    transform: translateX(155px);
  }
}

@media (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-copyright {
    display: block;
    margin-top: 16px;
    text-align: center;
    width: 100%;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
  }
  #appfz, .footer, .footer-links, .footer-copyright, .buttonfv, .radio-input, .cssbuttons-io-button, .button-io {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

@media (max-width: 600px) {
  .ml-3.text-xl {
    font-size: 0.35rem !important;
    max-width: 80vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 18px !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .dummy-img-container {
    padding-left: 25px !important;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .dummy-img-container {
    padding-left: 8rem !important; /* pl-32 */
    display: block;
  }
}

@media (max-width: 768px) {
  .pl-32 {
    padding-left: 25px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
}
@media (min-width: 769px) {
  .pl-32 {
    padding-left: 8rem !important; /* Tailwind's pl-32 */
    display: block !important;
  }
}
