:root {
  --black: #111111;
  --orange: #32ddff;
  --indigo: #4b3f72;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}
/* Footer */

footer {
  background-color: var(--black);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--orange);
}

.footer-links h3 {
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  background-color: var(--indigo);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}
.footerContact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--orange);
}
.footerContact p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}
