  .site-footer {
    background-color: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 3rem 0 0;
    margin-top: auto;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
 }
  
 .footer-section .logo{
  padding:0;
  width: 100%;
 }



 .logo svg{

  width:75px;
  height: 75px;

 }
  .footer-section {
    margin-bottom: 2rem;
  }
  
  .footer-contact a{
    color: var(--text-color);
    text-decoration: none;
  }

  .footer-contact a:hover{
    color: var(--text-color);
    text-decoration: underline;
  }
.footer-section i{
  line-height: 10px;
}
  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin:0;
  }
  
  .footer-text {
    line-height: 1.6;
    opacity: 0.9;
  }
  

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .social-link:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-3px);
 }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
 }
  
  .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
  }
  
  .footer-links a:hover {
    color: var(--text-color);
    opacity: 1;
    padding-left: 5px;
  }
  
  /* RTL adjustment for padding */
  [dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
  }
  
  .footer-contact i {
    margin-top: 5px;
    color: var(--text-color);
  }
  
  /* RTL adjustment for icon position */
  [dir="rtl"] .footer-contact li {
    gap: 0.8rem;
  }
  
  .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .copyright {
    margin: 0;
    opacity: 0.8;
    text-align: center;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  .logo, .footer-title, .footer-text, .footer-links a, .footer-contact li{
  padding:0;
  margin:0 auto;
  text-align: center;
  width: 100%;
  display: block;
 }

 .footer-contact li{
  margin: 15px 0;
 }
    .social-links {
      justify-content: center;
    }
  }
