
  /* بخش  فوتر وب سایت */
  footer {
    background: #000;
    padding: 40px 20px;
    box-shadow: 0 -1px 25px #00e0ff;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    flex-direction: row-reverse;
  }
  
  .footer-col {
    flex: 1 1 280px;
    min-width: 250px;
    text-align: center;
  min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e0ff;
    margin-bottom: 10px;
  }
  
  .footer-logo h2 {
    font-size: 1.4rem;
    color: #00e0ff;
    text-shadow: 0 0 5px #00e0ff;
    margin: 0;
  }
  
  .social-icons {
    margin-top: 10px;
    text-align: center;
    padding-right: 0;
  }
  
  .social-icons a {
    margin: 0 8px;
    font-size: 1.6rem;
    color: #00e0ff;
    text-shadow: 0 0 5px #00e0ff;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
  }
  
  .address {
    line-height: 1.8;
    font-size: 1rem;
    color: #00c0e0;
  }
  
  .map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    color: #00aabb;
    font-size: 0.9rem;
    text-shadow: 0 0 3px #00aabb;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px; /* فاصله بین ستون‌ها در موبایل کمتر شده */
    }
  

    .footer-col {
      flex: 1 1 100%;
      min-width: auto;
      margin-bottom: 20px;

    }
  
    .footer-logo img {
      width: 70px;
      height: 70px;
    }
  
    .footer-logo h2 {
      font-size: 1.2rem;
    }
  
    .social-icons a {
      font-size: 1.4rem;
      margin: 0 6px;
    }
  
    .address {
      font-size: 0.95rem;
    }
  
    .map-container {
      max-width: 100%;
      height: auto;
    }
  }
  






  

  /* بخش دکمه بالابر */
  .scroll-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #00e5ff67;
    border-radius: 50%;
    box-shadow:
      0 0 6px #00e5ffb3,
      0 0 12px #00e5ffb3,
      0 0 18px #00e5ffb3;
    border: 2px solid #00e5ffb3;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.4s ease;
    opacity: 0;
    visibility: hidden;
  }
  .scroll-top.show {
    opacity: 1;
    visibility: visible;
  }
  .scroll-top:hover {
    transform: scale(1.1);
    box-shadow:
      0 0 12px #00e5ffb3,
      0 0 20px #00e5ffb3,
      0 0 30px #00e5ffb3;
  }

  /* مثلث سفید  وسط */
  .scroll-top::before {
    content: '';
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid white;
    position: relative;
    top: 2px;
    filter: drop-shadow(0 0 3px #00e5ff);
  }


  @media (max-width: 768px) {
    .scroll-top {
      width: 50px;
      height: 50px;
      bottom: 20px;
    }
    .scroll-top {
      left: 40px;
    }
  .scroll-top::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid white;
  }
 
}