/* Footer */
.top-footer {
    background-color: #111111; /* Dark background color */
    color: #fff; /* White text color */
    padding: 1rem 2rem; /* Padding for the footer */
    display: flex;
    flex-direction: column;
    bottom: 0;
    margin-top: 30px; /* Adjust the value as needed for spacing */
    border-top: 2px solid #267ee28c; 
    border-bottom: 2px solid #267ee2;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-top: 1rem;
}

  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Default alignment for larger screens */
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .logo-ct {
    max-width: 5rem; /* Adjust size as needed */
    border-radius: 1.5rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Default alignment for larger screens */
    margin: 1rem 0; /* Add vertical spacing */
    margin-left: auto; /* Pushes the element to the right */
  }
  
  .TOS-PP {
    display: flex;
    flex-direction: row;
    gap: 1rem; /* Space between Privacy Policy and Terms of Service */
    margin-bottom: 1rem; /* Add space below TOS-PP */
  }
  
  .footer-link {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: #267ee2; /* Change color on hover */
  }
  
  .social-media {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* Default alignment for larger screens */
    gap: 1rem; /* Space between icons */
    margin-bottom: 1rem; /* Add space below social media icons */
  }
  
  .social-icon {
    color: #fff; /* Icon color */
    font-size: 1.5rem; /* Icon size */
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icon:hover {
    transform: scale(1.2); /* Scale up icon on hover */
    color: #267ee2; /* Change color on hover */
  }
  
  /* Footer Bottom */
  .footer-bottom {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center items horizontally on mobile */
      text-align: center; /* Center text */
    }
  
    .logo-ct {
      max-width: 120px;
      margin-bottom: 1rem; /* Add space below the logo */
    }
  
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center links horizontally on mobile */
      gap: 0.5rem; /* Adjust spacing between links */
      justify-content: center;
      margin-left: 0;
      margin-bottom: 1rem; /* Add space below the links */
    }
  
    .social-media {
      display: flex;
      flex-direction: row;
      justify-content: center; /* Center social media icons horizontally on mobile */
      gap: 0.5rem; /* Adjust spacing between icons */
    }
  }