  .footer {
    position: relative;
    background: linear-gradient(135deg, #000000, #2f2e2e);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  }

  .footer-title {
    color: rgb(186, 8, 8);
    margin-bottom: 20px;
    font-weight: 600;
    /* border-left: 4px solid #ffc107; */
    padding-left: 8px;
  }

  .footer-links li {
    margin: 15px 10px;
  }

  .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: rgb(186, 8, 8);
    padding-left: 5px;
  }
  
  .contact-text a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact-text {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .contact-text a:hover {
    color: rgb(186, 8, 8);
    padding-left: 5px;
  }

  .contact-text:hover {
    cursor: pointer;
    color: rgb(186, 8, 8);
    padding-left: 5px;
  }

  .social-links {
    margin: 15px 10px;
  }

  .social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    color: #ddd;
    transition: transform 0.3s, color 0.3s;
  }

  .social-links a:hover {
    color: rgb(186, 8, 8);
    transform: scale(1.2);
  }

  .footer p {
    color: #bbb;
    margin: 15px 10px;
  }

  #scrollTopBtn {
    z-index: 9999;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease-in-out;
  }

  #scrollTopBtn:hover {
    background-color: #000;
    transform: scale(1.1);
  }
  
  #scrollTopBtn:hover i {
    color: white;
  }