* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background-color: #fff;
    direction: rtl;
    overflow-x: hidden;
  }

  .special-section {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fdfdfd, #eaeaea);
    overflow: hidden;
    padding: 60px 0;
  }

  .bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #aaa 0%, transparent 100%);
    animation: scrollLine 8s linear infinite;
    opacity: 0.4;
  }

  .line:nth-child(1) { left: 25%; animation-delay: 0s; }
  .line:nth-child(2) { left: 50%; animation-delay: 2s; }
  .line:nth-child(3) { left: 75%; animation-delay: 4s; }

  @keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
  }

  .container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
  }

  .item {
    display: flex;
    flex-direction: column;
    transform: translateY(100px);
    opacity: 0;
  }

  .glow-wrap {
    position: relative;
    margin-bottom: 24px;
  }

  .glow-wrap::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.25), transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 5s ease-in-out infinite;
  }

  @keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
  }

  .card {
    width: 400px;
    height: 550px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: white;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    text-align: center;
    max-width: 300px;
    transform: translateY(30px);
    opacity: 0;
  }

/*||||||||||||||||||||||||*/

.custom-footer {
    background-color: #00489b;
    color: #fff;
    padding: 30px 15px;
  }
  footer{
    max-width: 100%;
  }
  
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-box {
    flex: 1 1 30%; 
    margin: 10px;
    min-width: 250px;
    max-width: 1300px;
  }

  .footer-box h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-box p,
  .footer-box ul,
  .footer-box li {
    font-size: 0.95em;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #ffffff;
  }
  
  .footer-box ul {
    list-style: none;
  }
  
  .footer-box ul li {
    margin-bottom: 10px;
  }
  
  .footer-box ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-box ul li a:hover {
    color: #f1f1f1;
  }
  
  .footer-box .contact-links a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-box .contact-links a:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.85em;
  }
  
  .social-media {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .social-media a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .social-media a:hover {
    background-color: #0078ff;
  }
  .contact-info p a{
    color: #ffffff;
  }


  /* .header {
    display: none;
  }
  .container_jak_img_text {
    display: none;
  }
  .custom-footer {
    display: none;
  }
  .item_responsive {
    display: none;
  }
  .bg-lines {
    display: none;
  } */

