.back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #4361ee;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        font-size: 1.25rem;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #3a0ca3;
        transform: translateY(-3px);
    }
    
    
    
    /* Container with 1800px max-width */
    .container-fluid {
      max-width: 1800px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Main Footer Layout */
    .ushasoft-footer {
      background-color: #0f172a;
      color: #e2e8f0;
      padding: 3rem 0 1.5rem;
      font-family: 'Inter', sans-serif;
    }

    /* Footer Columns Layout - Equal width for 5 columns */
    .footer-columns-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding-bottom: 2rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    }

    /* Equal width columns */
    .footer-columns-container > div {
      flex: 1;
      min-width: 200px;
    }

    /* Brand Column Styles */
    .footer-brand-col .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.25rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      margin-bottom: 1rem;
    }
    
    
.footer-logo {
  display: inline-flex; /* or 'flex' depending on your layout needs */
  align-items: center;
  justify-content: flex-start; /* Ensures left alignment */
  gap: 1px; /* Space between logo and text */
  text-decoration: none;
  width: 40%; /* Takes full container width */
  text-align: left; /* Additional text alignment */
}
.brand-name {
    font-size: 1.7rem;  
}  
/* If you need the parent container to enforce left alignment */
.footer-brand-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns child elements to the left */
}




    .footer-brand-col .footer-tagline {
      color: #94a3b8;
      font-size: 0.875rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
       text-align: justify;
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
    }

    .social-links a {
      color: #94a3b8;
      transition: color 0.2s ease;
    }

    .social-links a:hover {
      color: #3b82f6;
    }

    /* Links Columns Styles */
    .footer-links-col h3 {
      font-size: 1rem;
      font-weight: 600;
      color: white;
      margin-bottom: 1rem;
    }

    .footer-links-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.05rem;
    }

    .footer-links-col li {
      position: relative;
      padding-left: 0;
      transition: all 0.3s ease;
    }

    .footer-links-col a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      display: inline-block;
      padding: 0.15rem 0;
    }

    .footer-links-col a:hover {
      color: #3b82f6;
      transform: translateX(5px);
    }

    /* Arrow icon on hover */
    .footer-links-col a:hover::after {
      content: "→";
      margin-left: 8px;
      color: #3b82f6;
      display: inline-block;
    }

    /* Newsletter Column Styles */
    .footer-newsletter-col h3 {
      font-size: 1rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.75rem;
    }

    .footer-newsletter-col p {
      color: #94a3b8;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .newsletter-form {
      position: relative;
    }

    .newsletter-form input {
      width: 100%;
      padding: 0.5rem;
      border-radius: 4px;
      border: 1px solid #334155;
      background-color: #1e293b;
      color: white;
      font-size: 0.875rem;
    }

    .newsletter-form button {
      position: absolute;
      right: 0.25rem;
      top: 0.25rem;
      bottom: 0.25rem;
      width: 28px;
      background-color: #3b82f6;
      color: white;
      border: none;
      border-radius: 3px;
      cursor: pointer;
    }

    /* Footer Bottom */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      color: #94a3b8;
      font-size: 0.75rem;
    }

    .legal-links {
      display: flex;
      gap: 1.5rem;
    }

    .legal-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.75rem;
      transition: color 0.2s ease;
    }

    .legal-links a:hover {
      color: #3b82f6;
    }

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
      .footer-columns-container {
        justify-content: space-between;
      }
      
      .footer-columns-container > div {
        flex: 0 0 calc(33.333% - 1rem);
      }
    }

    @media (max-width: 768px) {
      .footer-columns-container {
        flex-direction: column;
        gap: 2rem;
      }
      
      .footer-columns-container > div {
        width: 100%;
        flex: 1 1 100%;
      }
      
      .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
      }
      
      .legal-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .footer-columns-container > div {
        flex: 0 0 100%;
      }
    }
    
    




.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem; /* Default for mobile */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: white;
  background-color: #333;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Platform-specific hover colors */
.social-links a[href*="facebook.com"]:hover { background-color: #1877f2; }
.social-links a[href*="twitter.com"]:hover,
.social-links a[href*="x.com"]:hover { background-color: #1da1f2; }
.social-links a[href*="instagram.com"]:hover { background-color: #e1306c; }
.social-links a[href*="whatsapp.com"]:hover { background-color: #25d366; }
.social-links a[href*="linkedin.com"]:hover { background-color: #0077b5; }
.social-links a[href*="youtube.com"]:hover { background-color: #ff0000; }
.social-links a[href*="github.com"]:hover { background-color: #333; }

@media (min-width: 768px) {
  .social-links {
    margin-top: 2rem; /* Smaller margin on larger screens */
  }
  
  /* Optional: Larger icons on desktop */
  .social-links a {
    width: 2rem;
    height: 2rem;
  }
}

