.hypr-footer {
  margin-top: 0rem;
  padding: 2.5rem var(--padding-x);
  color: #ddd;
  font-size: 1.05rem; /* increased font size */
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.05); /* subtle transparent white for glass effect */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0rem 0rem 0 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;

  /* Remove justify-content: space-between, use margin trick for exact alignment */
  /* justify-content: space-between;  -- removed */
}

/* Left footer section styling */
.footer-section {
  min-width: 180px;
  font-size: 1.05rem; /* increase font size here too */

  margin-right: auto; /* Push this section fully to the left */
}

/* Right footer group styling */
.footer-right-group {
  display: flex;
  gap: 1rem;          /* space between items */
  flex-wrap: nowrap;  /* prevent wrapping */
  justify-content: flex-end;

  flex-grow: 0;       /* prevent growing and shifting */
  margin-left: auto;  /* Push this group fully to the right */
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;   /* bigger heading size */
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
  color: #aaa;
  font-size: 1.1rem; /* increase font size */
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem; /* increase font size */
}

.footer-section ul li a:hover {
  color: #fff;
}

/* Gradient text roles */
.role {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00ffff, #002b2b, #00ffff); /* looped gradient */
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

.role:hover {
  animation: gradientMove 1s linear infinite; /* faster & smoother */
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%; /* move fully across */
  }
}

.role2 {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #00ffff, #002b2b, #00ffff); /* looped gradient */
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

.role2:hover {
  animation: gradientMove 1s linear infinite; /* faster & smoother */
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  text-align: center;
  color: #888;
  font-size: 0.95rem; /* increased font size */
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start; /* Left align all content */
  align-items: center;
  width: 120px; /* adjust as needed */
  height: 80px;
  gap: 0.5rem; /* add gap between left-icons and right-icon */
}

/* Left container stacks icons vertically */
.left-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0rem;
}

/* Remove default list style inside left-icons */
.left-icons li {
  list-style: none;
}

/* Right icon container */
.right-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon styles */
.social-links li a i {
  font-size: 2.2rem;
  color: #aaa;
  transition: transform 0.2s ease, color 0.3s ease;
  display: block;
}

.social-links li a:hover i {
  color: #fff;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .hypr-footer {
    padding: 2rem 1.5rem;
    font-size: 1rem;
    border-radius: 0; /* no rounded corners */
    position: relative; /* let it flow naturally */
    bottom: auto; /* reset any fixed positioning */
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start; /* left align all sections */
  }

  .footer-section {
    min-width: auto;
    width: 100%;
    text-align: left; /* left align text */
    font-size: 1rem;
    margin-right: 0; /* reset margin */
  }

  .footer-right-group {
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start; /* align left */
    margin-left: 0;
    width: 100%;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }

  .footer-section ul li a {
    font-size: 1rem;
  }

  .role {
    font-size: 0.85rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: left;
  }
}
