@import url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.css');

html, body, button, a, input, textarea {
  font-family: 'Vazir', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0;
}


:root{
  --bg:#0b0b0f;
  --bg2:#121218;
  --card:#1a1b22;
  --muted:#9aa0aa;
  --primary:#00d8ff;
  --accent:#00ffa6;
  --warn:#ffcc00;
  --border:#23242c;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
}
*{box-sizing:border-box}
body{
  margin:0; font-family:"Vazir",system-ui,-apple-system,Segoe UI,Roboto;
  background:linear-gradient(180deg,var(--bg),#0e0f14 60%,var(--bg));
  color:#fff; line-height:1.75;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* ==== Header: minimal scoped styles ==== */
/* فونت - حذف کن اگر سایتت فونت داره */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;600;700&display=swap');

#site-header, #site-header * { box-sizing: border-box; font-family: "Vazirmatn", sans-serif; }

/* پایه */
#site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1400;
  background: rgba(10,10,12,0.45);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .22s ease, box-shadow .22s ease;
}

/* وقتی اسکرول شد میتونی کلاس scrolled اضافه کنی (JS قرار داده) */
#site-header.scrolled { background: rgba(10,10,12,0.92); box-shadow: 0 6px 20px rgba(0,0,0,0.45); }

/* کانتینر (مقدار max-width را با مقدار کانتینر سایتت جایگزین کن) */
#site-header .sh-inner {
  max-width: 1200px;     /* <-- این رو تغییر بده تا با عرض سایتت یکی شه */
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

/* لوگو */
.sh-logo img { height: 36px; display:block; object-fit:contain; }

/* ناوبری دسکتاپ (مینیمال) */
.sh-nav { display:flex; gap:20px; align-items:center; }
.sh-nav a {
  color:#fff; text-decoration:none; font-weight:600; font-size:0.95rem;
  opacity:0.9; padding:6px 4px; border-radius:6px;
  transition: color .16s ease, transform .12s ease, background .12s ease;
}
.sh-nav a:hover { color:#00c2ff; background: rgba(255,255,255,0.02); transform: translateY(-2px); }

/* دکمه‌ها: شفاف و اصلی */
.sh-actions { display:flex; gap:10px; align-items:center; }
.sh-btn { padding:7px 14px; border-radius:10px; font-weight:700; text-decoration:none; font-size:0.92rem; display:inline-flex; align-items:center; justify-content:center; transition: all .18s ease; }
.sh-ghost { background:transparent; border:1px solid rgba(255,255,255,0.16); color:#fff; }
.sh-ghost:hover { background: rgba(255,255,255,0.05); }
.sh-primary { background: linear-gradient(180deg,#00c3ff,#008fb0); color:#021018; border:none; box-shadow: 0 6px 18px rgba(0,195,255,0.12); }
.sh-primary:hover { transform: translateY(-2px); box-shadow:0 10px 24px rgba(0,195,255,0.16); }

/* همبرگر نازک */
.sh-toggle { display:none; background:none; border:none; padding:6px; gap:5px; cursor:pointer; }
.sh-toggle span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition: transform .22s ease, opacity .18s ease; }
.sh-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.sh-toggle.active span:nth-child(2) { opacity:0; transform: translateX(-6px); }
.sh-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }

/* موبایل: sidebar (پنهان پیش‌فرض) */
.sh-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;    /* راست برای RTL */
  width: 50vw;
  max-width: 420px;
  background: rgba(16,16,18,0.98);
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.2,.9,.28,1), opacity .2s ease;
  z-index: 1420;
  display:flex; flex-direction:column; padding:18px; gap:14px;
  pointer-events: none; opacity:0;
}
.sh-mobile.active { transform: translateX(0); pointer-events: auto; opacity:1; }

/* سربرگ موبایل داخل سایدبار */
.sh-mobile .mobile-top { display:flex; align-items:center; justify-content:space-between; }
.sh-close { background:none; border:none; color:#fff; font-size:28px; cursor:pointer; }

/* لینک‌ها و دکمه‌ها در موبایل */
.mobile-nav { display:flex; flex-direction:column; gap:12px; margin-top:6px; }
.mobile-nav a { color:#fff; text-decoration:none; font-weight:700; padding:10px 8px; border-radius:8px; transition: background .14s ease; }
.mobile-nav a:hover { background: rgba(255,255,255,0.03); color:#00c2ff; transform: translateX(6px); }

.mobile-actions { margin-top:auto; display:flex; flex-direction:column; gap:10px; }
.wide { width:100%; text-align:center; }

/* اوورلی */
.sh-overlay {
  position: fixed; inset:0; background: rgba(0,0,0,0.36);
  opacity:0; pointer-events:none; transition: opacity .22s ease;
  z-index: 1410;
}
.sh-overlay.active { opacity:1; pointer-events:auto; }

/* واکنش‌پذیری: موبایل */
@media (max-width: 980px) {
  .sh-nav, .sh-actions { display:none; }
  .sh-toggle { display:flex; flex-direction:column; }
}
/* ============================= */
/* 📱 استایل نهایی سایدبار موبایل */
/* ============================= */

#sh-mobile, .sh-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 72%;
  max-width: 360px;
  height: auto; /* فقط به اندازه محتوا */
  min-height: 100vh; /* اطمینان از پوشش کامل در صورت نیاز */
  background: #0f0f11;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 22px 30px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.2, .9, .3, 1);
  z-index: 1203;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
}

#sh-mobile.active {
  transform: translateX(0);
  pointer-events: all;
}

/* ============================= */
/* 🔹 لینک‌های ناوبری موبایل */
/* ============================= */

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s ease;
}

.mobile-nav a:hover {
  color: #00a8e8;
}

/* ============================= */
/* 🔸 دکمه‌های ورود و ثبت‌نام */
/* ============================= */

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.mobile-actions .sh-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-actions .sh-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-actions .sh-ghost:hover {
  border-color: #00a8e8;
  color: #00a8e8;
}

.mobile-actions .sh-primary {
  background: #00a8e8;
  color: #0f0f11;
  border: none;
}

.mobile-actions .sh-primary:hover {
  background: #00bfff;
}

/* ============================= */
/* 🔘 بک‌دراپ هنگام باز شدن منو */
/* ============================= */

#sh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1200;
}

#sh-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================= */
/* 🔳 آیکون منو همبرگری */
/* ============================= */

.sh-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.sh-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* حالت فعال منو (تبدیل به X) */
.sh-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.sh-toggle.active span:nth-child(2) {
  opacity: 0;
}
.sh-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
/* ============================= */
/* 💻 نمایش / پنهان‌سازی آیکون منو و سایدبار */
/* ============================= */

/* در دسکتاپ مخفی باشن */
.sh-toggle,
#sh-mobile,
#sh-overlay {
  display: none;
}

/* در موبایل یا تبلت فعال میشن */
@media (max-width: 992px) {
  .sh-toggle {
    display: flex;
  }

  #sh-mobile {
    display: flex;
  }

  #sh-overlay {
    display: block;
  }

  /* پنهان کردن منوی اصلی دسکتاپ */
  .sh-nav,
  .sh-actions {
    display: none !important;
  }
}

.sh-logo img {
  height: 80px; /* اندازه واقعی برای حفظ ارتفاع هدر */
  transform: scale(1.8); /* بزرگ‌تر دیده شدن */
  transform-origin: center center; /* مرکز بزرگ بشه */
}



/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: #0e0f14;
  border-radius: 0 0 32px 32px;
}

.hero-bg {
  height: 100vh;
  min-height: 420px;
  background: url('./images/Highway.jpg') center/cover no-repeat;
  filter: saturate(115%) contrast(110%) brightness(75%);
  transform: scale(1.05);
  transition: transform 10s ease-in-out;
}

.hero:hover .hero-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(14, 15, 20, 0.95));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero .highlight {
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 20px);
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #00a9d4;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-bg {
    height: 70vh;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* دکمه‌ها در موبایل هم کنار هم بمونن */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Services */
.section-title{font-size:1.6rem; display:flex; align-items:center; gap:10px; margin-bottom:22px}
.section-title .dot{width:10px; height:10px; border-radius:50%; background:var(--primary); box-shadow:0 0 18px var(--primary)}
.services{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px;
}
.service{
  background:linear-gradient(180deg,#161821,#12131b);
  border:1px solid var(--border); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow);
  transition:transform .2s ease, border-color .2s ease;
}
.service:hover{transform:translateY(-6px); border-color:rgba(0,216,255,.35)}
.service .icon{font-size:34px; margin-bottom:8px}
.service h3{margin:6px 0 8px; font-size:1.1rem}
.service p{color:var(--muted); margin:0; font-size:.92rem}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* دو ستون */
  gap: 24px 30px; /* فاصله بین ردیف‌ها و ستون‌ها */
  justify-content: center;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* اگه باکس‌هات زیادتر از ۶ تا بودن، خودش ادامه میده ردیف بعدی رو */
.service {
  background: linear-gradient(180deg,#161821,#12131b);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

/* برای موبایل: یه ستون بشه */
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.service {
  text-align: center; /* همه محتوا وسط */
}

.service .icon {
  font-size: 34px;
  margin-bottom: 8px;
  display: inline-block;
}

.service h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.service p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: .92rem;
}

/* دکمه وسط‌چین */
.service .btn,
.service a {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center; /* اضافه شده */
 gap: 10px;
  margin-bottom: 22px;
  text-align: center; /* برای اطمینان */
}
.services {
  margin-top: 80px; /* فاصله از بالا */
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 6px;
  box-shadow: 0 0 12px var(--primary);
}

.section-subtitle {
  color: var(--muted);
  margin-top: 10px;
  font-size: 1rem;
}

/* Team */

/* FAQ */
/* ==== FAQ Section ==== */
.faq-section {
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 2.3rem;
  color: #00e5ff;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 14px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.05);
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.35);
  transform: translateY(-3px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

.faq-toggle {
  font-size: 1.8rem;
  color: #00e5ff;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  opacity: 1;
  margin-top: 12px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.9rem;
  }
  .faq-item {
    padding: 18px;
  }
  .faq-question h3 {
    font-size: 0.95rem;
  }
}

/* Footer */
footer{background:#07070b; border-top:1px solid var(--border)}
.footer-top{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:18px; padding:32px 20px}
.fbox{background:#0f1116; border:1px solid var(--border); border-radius:16px; padding:16px}
.fbox h4{margin:0 0 12px; color:var(--primary)}
.f-links a{display:block; padding:6px 0; color:#d7dbe3}
.f-meta{display:flex; align-items:center; gap:12px}
.brand{
  width:170px; height:200px; background:#0b0d12; border:1px dashed #2a2c36; border-radius:12px; display:grid; place-items:center; color:#8b92a1
}
.footer-bottom{border-top:1px solid var(--border); padding:16px 20px; text-align:center; color:var(--muted)}
.newsletter{display:flex; gap:10px}
.newsletter input{flex:1; background:#0b0d12; color:#fff; border:1px solid #23242c; border-radius:10px; padding:10px}

@media (max-width:720px){
  nav{display:none}
  .hero .bg,.hero .overlay{height:320px}
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a.whatsapp {
  background: #25d366;
}

.social-links a.telegram {
  background: #0088cc;
}

.social-links a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
/* ستون لینک‌ها */
.footer-links {
  flex: 1;
  min-width: 150px;
  margin: 10px;
}

.footer-links h3 {
  color: #00e6e6;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00e6e6;
}

/* ستون لوگوها */
.footer-logos {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logos img {
  max-width: 120px;
  border-radius: 8px;
  background: #111;
  padding: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
/* === کانتینر اصلی فوتر === */
.footer-container {
  display: flex;
  justify-content: space-between; /* ستون‌ها در عرض صفحه پخش میشن */
  flex-wrap: wrap;               /* اگه جا نشه، ستون‌ها میرن خط بعد */
  padding: 20px;
  background-color: #111;        /* بک‌گراند تیره فوتر */
  color: #fff;
}
/* === بخش شبکه‌های اجتماعی === */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex: 1;
}

.footer-socials a img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.footer-socials a img:hover {
  transform: scale(1.1);
}
.team-section {
  padding: 80px 20px;
  background: #0e0f14;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
}
/* ==== TEAM SECTION ==== */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background: none !important; /* حذف کامل بک گراند */
  background-color: transparent !important; /* شفاف‌سازی قطعی */
}

.team-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
}

/* ===== TEAM MEMBERS ===== */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: rgba(20, 22, 30, 0.55); /* نیمه شفاف تا با بک ترکیب بشه */
  border-radius: 16px;
  border: 1px solid rgba(0, 216, 255, 0.25);
  padding: 20px;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  border-color: #00d8ff;
}

.team-member img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px; /* دیگه دایره نیست، مستطیل خوشگل */
  border: 2px solid #00d8ff;
  margin-bottom: 12px;
}

.team-member h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #fff;
}

.team-member p {
  font-size: 0.85rem;
  color: #a9b3c1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .team-container {
    gap: 16px;
  }
  .team-member {
    width: 45%;
    padding: 16px;
  }
  .team-member img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .team-member {
    width: 90%;
  }
}


.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--primary, #00c3ff);
  color: #00c3ff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #00c3ff;
  color: #0b0d12;
}
/* ==== TEAM SECTION ==== */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background: #0b0d12;
}

.team-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
}

/* ===== فیلترها ===== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #00c3ff;
  color: #00c3ff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #00c3ff;
  color: #0b0d12;
}

/* ===== کارت اعضا ===== */
.team-member-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.team-member {
  background: linear-gradient(180deg, #161821, #12131b);
  border: 1px solid #2b2e3a;
  border-radius: 14px;
  width: 240px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 195, 255, 0.3);
}

.team-member img {
  width: 100%;
  height: 260px;
  object-fit: contain; /* عکس کامل دیده میشه */
  border-radius: 10px;
  background: #000;
  margin-bottom: 12px;
  border: 1px solid #00c3ff;
}

.team-member h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

/* مخفی برای فیلتر */
.team-member.hide {
  display: none;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
  .team-member {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .team-member-container {
    gap: 16px;
  }

  .team-member {
    width: 46%;
    padding: 14px;
  }

  .team-member img {
    height: 200px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .team-member {
    width: 100%;
    padding: 12px;
  }

  .team-member img {
    height: 220px;
  }
}


.glowy-btn {
  font-size: 0.85rem;
  color: #fff;
  padding: 7px 18px;
  border: 2px solid #66d9ff;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #728d96, 0 0 10px #728d96;
}

.glowy-btn:hover {
  background: #66d9ff;
  color: #0f0f0f;
  box-shadow: 0 0 8px #66d9ff, 0 0 15px #66d9ff;
  text-shadow: none;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* متن بالا، دکمه پایین */
  height: 100%;
}

.service h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
}

.service p {
  flex-grow: 1; /* متن فضا بگیره */
}

.service button {
  margin-top: auto;
  align-self: flex-start; /* یا center یا flex-end بسته به سلیقه */
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* 📦 پلن‌ها */
.services-section {
  margin-top: 200px; /* فاصله از هیرو */
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 6px;
  box-shadow: 0 0 12px var(--primary);
}

.section-subtitle {
  color: var(--muted);
  margin-top: 10px;
  font-size: 1rem;
}
/* =========================
   پلن‌ها – مرکزچین و اندازه ثابت بدون بک‌گراند
========================= */
.plans-section .plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ستون‌های منعطف */
    gap: 20px;
    max-width: 1000px; /* محدود کردن کل کانتینر */
    margin: 0 auto; /* مرکزچین کردن کل کانتینر */
    justify-items: center; /* کارت‌ها وسط ستون‌ها قرار بگیرند */
    box-sizing: border-box;
}

.plans-section .plan-card {
    background: none; /* حذف بک‌گراند */
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    min-height: 280px; /* ارتفاع کارت مثل قبل */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%; /* کارت پر کند ستون خود را */
    max-width: 320px; /* محدود کردن پهنای کارت */
}

.plans-section .plan-card:hover {
    transform: translateY(-5px);
    border-color: #00c8ff;
}

.plans-section .plan-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.plans-section .plan-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.plans-section .plan-card ul {
    padding: 0;
    margin: 12px 0;
}

.plans-section .plan-card ul li {
    list-style: none;
    font-size: 0.8rem;
    margin: 5px 0;
}

.plans-section .option {
    background: none; /* بدون بک‌گراند */
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.plans-section .row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.plans-section .new-price {
    font-size: 1rem;
    font-weight: bold;
    color: #ff4d4d;
}

.plans-section .old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-left: 5px;
}

.plans-section .order-btn {
    margin-top: 12px;
    width: 100%;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #007bff;
    transition: background 0.2s;
}

.plans-section .order-btn:hover {
    background: #0095ff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a;
  padding: 10px 20px;
}

.logo img {
  height: 100px;  /* اندازه مناسب */
  width: auto;
  filter: drop-shadow(0px 0px 6px rgba(0, 200, 255, 0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 12px rgba(0, 200, 255, 1));
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c8ff;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}









#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* بره پشت محتوای اصلی */
  background: #000000; /* رنگ پس‌زمینه مشکی (اختیاری) */
}

/* 📱 ریسپانسیو فوتر برای موبایل */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;   /* ستون‌ها زیر هم بیان */
    align-items: center;      /* همه وسط‌چین شن */
    text-align: center;
    gap: 25px;                /* فاصله بین بخش‌ها */
  }

  .footer-logos {
    flex-direction: row;      /* لوگوها افقی بشن */
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-logos img {
    max-width: 80px;          /* کوچیک‌تر بشن */
    padding: 5px;
  }

  .footer-links {
    margin: 0;
  }

  .footer-links ul li {
    margin: 6px 0;
  }

  .contact-box {
    font-size: 14px;
    line-height: 1.8;
  }

  .social-links {
    flex-direction: column;   /* دکمه‌ها زیر هم */
    width: 100%;
    max-width: 260px;         /* حداکثر عرض */
    margin: 0 auto;
  }

  .social-links a {
    width: 100%;              /* هر دکمه تمام عرض بگیره */
    justify-content: center;
  }
}
