section.social-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 0;
    background: transparent;
  }

  .social-icons {
    display: flex;
    gap: 15px; /* Reduced spacing slightly */
  }

  .social-icons .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px; /* Smaller icons */
    transition: 0.3s ease;
  }

  .social-icons .icon:hover {
    transform: translateY(-4px) scale(1.1);
    background: #000;
    color: #fff;
  }