.site-footer {
    background: #101010;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 70px 0 42px;
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: start;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 34px;
  }
  
  .footer-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #222;
  }
  
  .footer-brand h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
  }
  
  .footer-description {
    max-width: 520px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.45);
    font-size: 16px;
    line-height: 1.25;
  }
  
  .footer-copy {
    margin: 0;
    color: rgba(255,255,255,0.38);
    font-size: 13px;
  }
  
  .footer-left{
    margin-bottom: 64px;
  }

  .footer-right {
    justify-self: end;
    text-align: right;
  }
  
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 58px;
  }
  
  .footer-socials a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: color 0.3s ease;
  }

  .footer-socials a:hover {
    color: #00e0a4;
    text-shadow: 0px 0px 8px #35b18f;
  }
  
  .footer-reach {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.45);
    font-size: 16px;
    font-weight: 600;
  }
  
  .footer-email {
    color: #00e0a4;
    font-size: 18px;
    font-weight: 700;
  }

  .footer-email:hover{
    text-shadow: 0px 0px 8px #35b18f;
  }

  .skill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .skill-tag {
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 400;
    cursor:initial!important;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    padding: 6px 16px;
    transition: all 0.3s ease;
  }
  
   .skill-tag:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  @media (max-width: 768px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .footer-right {
      justify-self: start;
      text-align: left;
    }
  
    .footer-socials {
      /* justify-content: flex-start; */
      margin-bottom: 36px;
    }
  
    .footer-description {
      margin-bottom: 42px;
    }
  }