/***** footer section css *****/
:root {
  --dark: #1e2022;
  --gray: #52616b;
  --light-blue: #c9d6df;
  --off-white: #f0f5f9;
  --logo-blue: #00c5f7;
  --logo-gray: #3a4560;
  --title-color: #053d78;
}

.footer {
  background-color: var(--dark);
  color: var(--off-white);
  padding: 40px 20px;
}

.footer h3 {
  color: var(--light-blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--off-white);
  font-size: 0.9rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer p:hover,
.footer a:hover {
  color: var(--light-blue);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.2rem;
  color: var(--off-white);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
  transform: translateY(-5px);
  color: var(--light-blue);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray);
  border-top: 1px solid var(--gray);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .social-icons a {
    margin: 10px 5px;
  }

  .footer .footer-section {
    margin-top: 20px;
  }
}
/***** End footer section css *****/
