
 



    /* Footer Styling */
    .footer {
      background-color: #000000 !important;
      padding: 2rem 0;
      text-align: center;
      color: white;
    }

    .footer h5 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .footer p.small {
      font-size: 0.875rem;
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }

    .footer .social-icons {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }

    .footer .social-icons a {
      font-size: 1.5rem;
      transition: color 0.3s ease;
      margin: 0 10px;
      color: white;
    }

    .footer .social-icons a:hover {
      color: #0d6efd;
    }

    /* Center logo */
    .footer .logo {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .footer .logo-text {
      font-size: 2rem;
      font-weight: 700;
      color: white;
    }

    /* Back to Top Button */
    #btn-back-to-top {
      background: linear-gradient(145deg, #020202ff, #424242ff);
      border: 2px solid #c4c4c4ff;
      display: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(252, 252, 252, 0.3);
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      color: white;
    }