nav a::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #02ff0f;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease-in-out;
      }

      nav a:hover {
        color: #12c749; /* Lighter yellow color on hover */
      }

      nav a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
      }

      .box {
        position: relative;
        width: 262px;
        height: 262px;
        background: #f3f4f6; /* Light grey background */
        border-radius: 50%;
        overflow: hidden;
      }

      .box:before {
        content: "";
        position: absolute;
        inset: -10px 110px;
        background: linear-gradient(
          315deg,
          #08e638,
          #184d2e
        ); /* Orange to Yellow gradient */
        transition: 0.5s;
        animation: animate 6s linear infinite;
      }

      .box:hover::before {
        inset: -20px 0px;
      }

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

      .box::after {
        content: "";
        position: absolute;
        inset: 6px;
        background: #f3f4f6; /* Light grey background */
        border-radius: 50%;
        z-index: 1;
      }

      .box:hover .content img {
        opacity: 2;
      }

      .content {
        position: absolute;
        inset: 9px;
        border: 4px solid black;
        z-index: 3;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .content img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
        pointer-events: none;
        z-index: 3;
      }

      footer {
        padding: 1rem 2rem 1rem 2rem;
        background-color: #f3f4f6; /* Light grey background */        
        text-align: center;
      }

      footer a {
        text-decoration: none;
        display: inline-block;
        transition: transform 0.3s ease-in-out;
      }

      footer a:hover {
        transform: scaleY(-1) scaleY(-1);
      }