
/*───────────── FOOTOR SECTION ───────────── */
/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
.main-footer {
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-top {
  background-color: #008cff;
  padding: 20px;
  text-align: center;
  color: white;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  text-decoration: none;
}

.footer-bottom {
  background-color: #000;
  /* black background */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.footer-bottom .dev-name {
  color: #5eff13;
  /* green */
  font-weight: bold;
  text-decoration: none;
}

.policy {
  text-decoration: none;
  color: rgb(63, 63, 63);
}

.policy :hover {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transform: scale(1.2);
  /* Optional: adds a zoom on hover */
}

/*───────────── FOOTOR SECTION END ───────────── */