@font-face {
  font-family: 'Yekan'; /* نام فونت برای استفاده در پروژه */
  src: url('fonts/Yekan.eot'); /* مسیر فایل eot برای IE */
  src: url('fonts/Yekan.eot?#iefix') format('embedded-opentype'), /* برای IE */
       url('fonts/Yekan.woff2') format('woff2'), /* برای مرورگرهای جدید */
       url('fonts/Yekan.woff') format('woff'), /* برای مرورگرهای جدید */
       url('fonts/Yekan.ttf') format('truetype'); /* برای مرورگرهایی که TTF رو پشتیبانی می‌کنند */
}

@font-face {
  font-family: 'Yekan-Regular'; /* نام فونت برای استفاده در پروژه */
  src: url('fonts/yekan-regular.eot'); /* مسیر فایل eot برای IE */
  src: url('fonts/yekan-regular.eot?#iefix') format('embedded-opentype'),
       url('fonts/yekan-regular.woff2') format('woff2'),
       url('fonts/yekan-regular.woff') format('woff'),
       url('fonts/yekan-regular.ttf') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Yekan', sans-serif;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  width: 100%;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1; /* پشت همه‌ی المان‌ها */
}

.navbar {
  position: fixed;
  background-color: black;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px #111;
  direction: rtl;
  border-bottom: 1px solid white;
  top: 0;
  left: 0;
  right: 0;
  width: 97%;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  font-weight: bold;
  font-size: 26px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
   pointer-events: none;
}

.menu {
  display: flex;
  gap: 30px;
  background-color: #000000;
  padding: 10px 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.menu a i {
  font-size: 14px;
}

.menu a:hover {
  color: #FFD700;
}

.menu a.active {
  color: #FFD700;
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* آیکون همبرگری - فقط در موبایل */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  margin-left: 50px;
  margin-bottom: -10px;
}

/* منوی موبایل */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 240px;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  padding: 80px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2000;
  transition: left 0.4s ease;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
  border-radius: 0 20px 20px 0;
  
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
  background-color: #333;
}

.mobile-menu a.active {
  background-color: #FFD700;
  color: black;
}

/* زمانی که نمایش داده می‌شود */
.mobile-menu.show {
  left: 0;
}
  
  .close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close-btn:hover {
    color: #FFD700;
  }
  
  
  /* Media Query برای موبایل */
  @media (max-width: 775px) {
    .brand {
      font-size: 18px;
      margin-right: -50px;
    }
  
    .brand img {
      width: 36px;
      height: 36px;
      margin-right: 30px;
       pointer-events: none;
    }
  
    .menu {
      display: none;
    }
  
    .hamburger {
      display: block;
      margin-top: -10px;
    }
  }
  .about {
      color: #FFD700;
      text-align: center;
      padding: 50px;
      font-size: 24px;
      font-weight: bold;
    }
    
    .about-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    
    .about img {
      width: 58px;
      height: 58px;
      object-fit: contain;
       pointer-events: none;
    }

  /* استایل کلی صفحه */
/* استایل کلی صفحه */
.services-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  margin-top: -100px;
}

.service-card {
  background-color: #333;
  color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin: 10px;
  width: 500px;
  max-width: 90%;
}

.service-card h1 {
  color: #ffc107;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #30ff07;
  margin-bottom: 10px;
}

.service-card p {
  color: #41ff07;
  margin-bottom: 10px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 5px 0;
  border-bottom: 1px solid #575757;
}

/* استایل دکمه‌های شبکه‌های اجتماعی */
.social-buttons,
.social-buttons2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
  flex-wrap: nowrap; /* اینجا باعث میشه آیکون‌ها کنار هم باشند */
}

.social-btn {
  background-color: #FFD700; /* زرد پشت آیکون */
  border-radius: 50%; /* دایره‌ای شدن */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.15); /* بزرگتر شدن آیکون هنگام هاور */
}

.social-btn img {
  width: 50px; /* اندازه آیکون */
  height: 50px; /* اندازه آیکون */
   pointer-events: none;
}

/* ریسپانسیو برای صفحات با عرض کمتر از 610px */
@media (max-width: 610px) {
  .service-card {
    width: 90%;
    padding: 20px;
  }

  .social-buttons,
  .social-buttons2 {
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap; /* آیکون‌ها کنار هم بمانند */
  }

  .social-btn img {
    width: 36px; /* اندازه آیکون‌ها در موبایل */
    height: 36px;
  }
}


  




  @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

  .tekno-footer {
  background: linear-gradient(135deg, #ffd000, #ffae00);
  padding: 3rem 1rem;
  text-align: center;
  color: #1f1f1f;
  position: relative;
  direction: rtl;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.tekno-logo {
  font-size: 2.5rem;
  font-weight: 900;
  background:  rgb(48, 214, 255);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.tekno-logo span {
  color: #fff;
}

.tekno-tagline {
  font-size: 1.1rem;
  margin: 1rem 0;
  opacity: 0.8;
}

.tekno-button {
  padding: 0.75rem 2rem;
  background: #000;
  color: #ffd000;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.tekno-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.tekno-copy {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
  
  /* ریسپانسیو برای گوشی */
  @media screen and (max-width: 768px) {
    .custom-footer {
      padding: 1.5rem 1rem; /* کاهش پدینگ در موبایل برای جلوگیری از اسکرول */
      font-size: 0.9rem; /* تغییر اندازه فونت برای موبایل */
    }
  
    .footer-note {
      font-size: 0.85rem; /* تغییر اندازه فونت برای موبایل */
    }
  
    .footer-button {
      padding: 0.5rem 1rem; /* کاهش اندازه دکمه در موبایل */
      font-size: 0.9rem; /* تغییر اندازه فونت دکمه در موبایل */
    }
  
    .footer-copy {
      font-size: 0.8rem; /* تغییر اندازه فونت در موبایل */
    }
  }
  
  @media (max-width: 768px) {
    .servise {
      flex-direction: column;
      padding: 20px;
    }
  
    .servise img {
      margin-bottom: 10px;
    }
  }

  .footer {
    background-color: #000000;
    color: white;
    padding: 50px 20px;
    direction: rtl;
  }

  @media screen and (max-width: 615px) {
   .logo-text img{
    margin-top: -132px;
   }
  }
@media screen and (max-width: 575px) {
   .logo-text img{
    margin-top: -132px;
   }
  }
  @media screen and (max-width: 513px) {
   .logo-text img{
    margin-top: -157px;
   }
  }
  @media screen and (max-width: 469px) {
   .logo-text img{
    margin-top: -65px;
   }
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    
  }
  
  .footer-section {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-section h2,
  .footer-section h3 {
    color: #FFD700;
    margin-bottom: 10px;
    display: inline-block;
  }
  
  .footer-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #FFD700;
    margin-top: 5px;
  }
  
  .brand .logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
     pointer-events: none;
  }
  
  .brand-logo {
    width: 50px;
    height: 50px;
    margin-top: -95px;
     pointer-events: none;
    
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-section ul li img {
    width: 24px;
    height: 24px;
  }
  
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    color: #FFD700;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .social-icons a img {
    background-color: #333;
    border-radius: 50%;
    padding: 8px;
    width: 36px;
    height: 36px;
    transition: background 0.3s;
     pointer-events: none;
  }
  
  .social-icons a:hover img {
    background-color: #FFD700;
  }
  
  .footer-section h2{
    font-size: 20px;
  }
  
  .footer-section p{
    font-size: 13px;
    color: #777777;
  }

  ::-webkit-scrollbar {
  width: 10px;         
  height: 10px;        
}

::-webkit-scrollbar-track {
  background: #f0f0f0; 
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #FFD700; 
  border-radius: 10px;
  border: 2px solid #f0f0f0; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #FFD700; 
}


* {
  scrollbar-width: thin;            
  scrollbar-color: #FFD700 #000000; 
}
  
  
  
    
  
    
  
  




