
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", 'Roboto', sans-serif;
}




.footer {
    background-color: #1a1f2e;
    color: #ffffff;
    padding-top: 3rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .company-info {
    max-width: 300px;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    width: 40px;
    height: 40px;
  }
  
  .company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
  }
  
  .company-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  

  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #ff6b00;
  }
  
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  .footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff6b00;
  }
  
 
  .contact-info {
    list-style: none;
    padding: 0;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .contact-icon {
    color: #ff6b00;
    font-size: 1.2rem;
  }
  
  .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #ff6b00;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
  }
  
  .footer-bottom .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .copyright {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0,5rem;
  }
   
  #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    background-color: #e65a00; 
}

   

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
  
    .footer-bottom .footer-container {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .company-info {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding-top: 2rem;
    }
  
    .footer-title {
      font-size: 1.1rem;
    }
  
    .social-links {
      justify-content: center;
    }
  }