/*───────────── TOP BAR SECTION ───────────── */
/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
.top-bar {
  background: #000000;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.social-icon a i {
  font-size: 19px;
  /* Increase as needed: 24px, 28px, etc. */
  margin: 0 8px;
  transition: transform 0.2s ease;
}

.social-icon a i:hover {
  transform: scale(1.2);
  /* Optional: adds a zoom on hover */
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/*───────────── TOP BAR SECTION END ───────────── */