
:root {
  --bg: #001f19;
  --bg-2: #00382c;
  --panel: rgba(4, 58, 45, .58);
  --green: #2c8b59;
  --green-bright: #72c67d;
  --red: #e42b34;
  --white: #fff;
  --muted: rgba(255,255,255,.68);
  --gold: #b7aa62;
  --line: rgba(117,198,125,.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 32%, rgba(13,98,72,.65), transparent 34%),
    linear-gradient(135deg, var(--bg), #002b22 55%, #001d18);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background: repeating-radial-gradient(ellipse at center, transparent 0 45px, #7bc784 46px 47px, transparent 48px 95px);
  z-index: -10;
}

body[dir="rtl"] { font-family: Arial, Tahoma, sans-serif; }

.site-header {
  width: min(1400px, 94%);
  height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  position: relative;
  z-index: 5;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  /* border-radius: 50%; */
  mix-blend-mode: screen;
  opacity: .95;
}

.nav {
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: 38px 0 34px;
  position: relative;
  font-size: 15px;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green-bright);
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(125,196,126,.55);
  border-radius: 24px;
  padding: 3px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
}

.lang-switch button.active {
  background: #28794d;
  color: white;
}

.network {
  width: min(1360px, 94%);
  margin: auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 540px 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  padding: 35px 0;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.side-left { align-items: flex-end; }
.side-right { align-items: flex-start; }

.mission-card {
  width: 280px;
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-bright);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.mission-card.red { border-color: rgba(228,43,52,.75); }

.mission-card h2 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 270px;
}

.card-icon {
position: absolute;
  top: 46%;
  width: 70px;
  margin-top: -29px;
  border: 2px solid var(--green-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  height: 70px;
  background-color: #023428;
  padding: 16px;
  fill: aliceblue;
}

.side-left .mission-card { padding-left: 50px; }
.side-left .card-icon { left: -33px; }

.side-right .mission-card { padding-right: 50px; }
.side-right .card-icon { right: -35px; }




.hero-core {
  width: 540px;
  height: 540px;
  border: 1px solid rgba(190,175,92,.75);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgb(8, 83, 62), rgb(0, 27, 22));
  box-shadow: 0 0 0 15px rgba(255,255,255,.015), 0 25px 100px rgba(0,0,0,.3);
}

.hero-rings {
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(190,175,92,.55);
  border-radius: 50%;
}

.hero-map {
  position: absolute;
  width: 365px;
  height: 250px;
  border: 1px solid rgba(190,175,92,.7);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-8deg);
  opacity: .3;
}

.hero-map::after {
  content: "";
  position: absolute;
  inset: 25px;
  background: repeating-radial-gradient(ellipse, transparent 0 8px, rgba(255,255,255,.3) 9px 10px, transparent 11px 18px);
}

.falcon-mark {
  position: absolute;
  right: 62px;
  top: 47px;
  width: 280px;
  height: 250px;
}

.falcon-head {
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 25px;
  top: 0;
}

.falcon-wing {
  position: absolute;
  width: 190px;
  height: 115px;
  right: 5px;
  bottom: 8px;
  border-top: 20px solid var(--green);
  border-right: 20px solid var(--red);
  border-radius: 60%;
  transform: rotate(-25deg);
}

.hero-copy {
width: 343px;
  text-align: center;
  margin-top: 93px;
  position: relative;
  z-index: 2;
  background-color: #02020242;
  padding: 34px;
  border-radius: 177px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.hero-copy strong { color: var(--green-bright); }

.hero-copy i {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 20px auto;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  width: min(1360px, 94%);
  margin: 20px auto 60px;
  padding: 38px;
  border: 1px solid rgba(138,190,128,.45);
  border-radius: 24px;
  background: rgb(2, 50, 39);
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 20px;
}

.contact-intro {
  padding: 25px 40px;
  border-right: 1px solid rgba(255,255,255,.16);
}

body[dir="rtl"] .contact-intro {
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.16);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--green-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.contact-intro h2 { margin: 0 0 8px; font-size: 34px; }
.contact-intro h3 { margin: 0 0 25px; color: var(--green-bright); }
.contact-intro p { max-width: 350px; color: var(--muted); line-height: 1.8; }

#contactForm {
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(138,190,128,.35);
  background: rgba(0,0,0,.12);
  color: white;
  border-radius: 8px;
  padding: 15px;
  font: inherit;
  outline: 0;
}

input:focus, textarea:focus { border-color: var(--green-bright); }
textarea { grid-column: 1 / -1; min-height: 105px; resize: vertical; }

.submit {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 8px;
  padding: 15px;
  color: white;
  background: linear-gradient(90deg, #287b4f, #42a657);
  font-weight: 700;
  cursor: pointer;
}

.footer {
  width: min(1360px, 94%);
  margin: auto;
  padding: 20px 0 35px;
  display: flex;
  justify-content: space-between;
  color: #779d8c;
  font-size: 12px;
}

@media (max-width: 1120px) {
  .network { grid-template-columns: 1fr; }
  .hero-core { order: -1; margin: auto; }
  .side-left, .side-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  .side-left .mission-card,
  .side-right .mission-card {
    padding: 24px;
    width: min(355px, 100%);
  }
  .card-icon, .connector { display: none; }
  .contact { grid-template-columns: 1fr; }
  .contact-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    padding-bottom: 30px;
  }
  body[dir="rtl"] .contact-intro {
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 720px) {
  .site-header { height: 80px; }
  .brand img { width: 64px; height: 64px; }

  .network { width: 92%; }
  .hero-core { width: 330px; height: 330px; }
  .hero-map { width: 240px; height: 160px; }
  .falcon-mark { transform: scale(.65); transform-origin: top right; right: 25px; top: 25px; }
  .hero-copy { width: 235px; margin-top: 85px; }
  .hero-copy h1 { font-size: 29px; }
  .contact { width: 92%; padding: 20px; }
  #contactForm { grid-template-columns: 1fr; padding: 10px 0; }
  textarea, .submit { grid-column: 1; }
}
.category{
  width: 100%;
  text-align: center;
  /* background-color: #0000007a; */
 background-color: #10492bcc;
  position: fixed;
  z-index: 1000000;
  font-size: 41px;
  line-height: 1.8;
  padding: 58px;
}

.path {
position: fixed;
  width: 56px;
  height: 34px;
  border-top: 1px solid #819e5e;
  border-right: 1px solid #72c67d;
  border-bottom: 1px solid #72c67d;
  border-radius: 0 20px 0px 50px;
  font-size: 1px;
}

/* نقطه‌های ابتدا و انتها */
.dot {
position: absolute;
  width: 9px;
  height: 9px;
  background: #72c67d;
  border-radius: 50%;
}

.dot-1 {
top: -5px;
  left: -3px;
}

.dot-2 {
right: -3px;
  bottom: -5px;
}

.s{ right: -55px;
  width: 57px;
  border-bottom: none;}

.ss{
  right: -110px;
  border-left: 1px solid #819e5e;
  border-radius: 0 50px 0px 20px;
  border-top: none;
  border-right: none;
  top: 36px;
}

.s2{ right: -55px;
  width: 57px;
  border-bottom: none;}

.ss2{
  right: -110px;
  border-left: 1px solid #819e5e;
  border-radius: 0 50px 0px 20px;
  border-top: none;
  border-right: none;
  top: 36px;
}

.red-line{
  border-top:none;
  border-right: 1px solid #ab2c30;
  border-bottom: 1px solid #ab2c30;
  border-radius: 20px 0 20px 0;

}.red-line2{
  border-bottom: none;
  border-left: 1px solid #ab2c30;
  border-top: 1px solid #ab2c30;
  border-radius: 20px 0 20px 0;

}


.red_b{
  background: #ab2c30;
}

.pathrit{
  left: -57px;
  border-right: none;
  border-left: 1px solid #6e8e55;
  border-radius: 20px 0px 20px 0;
}

.dot-3 {
top: -4px;
  left: 51px;

}

.dot-4 {
right: -3px;
  bottom: -5px;
}


.inputicondox{
  position: relative;

  top: 25px;
}

.inputicon{
  width: 22px;
 fill: #8a9d99;
  right: 10px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.sendbut{
  right: 37%;
}
.arlangstyle{
  right: 91%;
}
.noteboxn.arlangstyle{
   right: 95%;
}
.lineboxn.arlangstyle{
  border-right: none;
border-left: 1px solid rgba(255,255,255,.16);
}
@media (max-width: 760px) {
  .sendbut{
  right: 30%;
}
.noteboxn.arlangstyle{
   right: 91%;
}
}

