@font-face {
  font-family: 'Vazir';
  src: url('./Vazir.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.lang-link {
  background: #8BAE66;
  color: white;
  text-decoration: none;
  padding: 3px 8px;
  border-radius:20px ;
  font-size: 12px;

}
.lang-link:hover{
  background: #628141;
}

.btn-custom {
  display: inline-block;
  padding: 0.75rem 1.5rem;   /* اندازه دلخواه دکمه */
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;            /* رنگ متن پیش‌فرض */
  background-color: #8BAE66; /* رنگ پس‌زمینه پیش‌فرض */
  border: 2px solid #8BAE66; /* حاشیه دکمه */
  border-radius: 0.5rem;     /* گوشه‌های گرد */
  text-decoration: none;
  transition: all 0.3s ease; /* انیمیشن نرم هنگام hover */
}

.btn-custom:hover {
  background-color: #628141; /* رنگ پس‌زمینه هنگام hover */
          /* رنگ متن هنگام hover */
  border-color: #628141;     /* رنگ حاشیه هنگام hover */
  transform: translateY(-2px); /* افکت کوچک بالا رفتن */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* سایه هنگام hover */
}


body {
  font-family: 'Vazir', sans-serif;
  scroll-behavior: smooth;
  background-color: #0e0e11;
  color: #eaeaf0;
}
.text-important{
  color: #628141;
  font-weight:bold ;
}
/* NAVBAR */
.navbar {
  background-color: rgba(14, 14, 17, 0.85) !important;
  backdrop-filter: blur(10px);
}

.navbar .nav-link,
.navbar-brand {
  color: #eaeaf0 !important;
}

.navbar .nav-link:hover {
  color: #a78bfa !important;
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #1B211A, #628141);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 6px 14px;
}

/* HERO – Animated Gradient */
.hero {
  position: relative;
  color: #ffffff;
  /* background: linear-gradient(-45deg, #6366f1, #8b5cf6, #ec4899, #22d3ee); */
  background-image: url('./hero.avif');
  background-attachment: fixed;  
  background-position: center center;  
  background-size: 400% 400%;
  background-repeat: no-repeat; 
  background-size: cover;    
  animation: gradientMove 50s linear infinite;
}

.hero-content{
  padding: 160px 0 140px;

}

.overlay{
  opacity: .5;
  top: 0;
  left: 0;
}

@keyframes gradientMove {
  0% {
    background-position: 50% 0% ;
  }

  50% {
    background-position:  50% 100%;
  }

  100% {
    background-position:  50% 0%;
  }
}

.section-padding {
  padding: 90px 0;
  background-color: #0e0e11;
}

h1,
h2,
h3,
h4,
h5 {
  color: #ffffff;
}

.text-muted {
  color: #d6dfcd !important;
}

/* Glass Cards – Dark Elegant */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.4s;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: #8BAE66;
}

.card {
  background-color: transparent;
}

/* TOOLS */
.tool-icon {
  font-size: 42px;
  color: #8BAE66;
}

/* CONTACT */
.contact-icon i {
  font-size: 36px;
  color: #22d3ee;
  transition: 0.3s;
}

.contact-icon:hover i {
  transform: scale(1.3) rotate(5deg);
  color: #ec4899;
}

footer {
  background-color: #0a0a0d;
  color: #9b9bb3;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(14, 14, 17, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.navbar .logo {
  font-weight: bold;
  font-size: 1.6rem;
  color: #eaeaf0;
}


.nav-links li a {
  text-decoration: none;
  color: #eaeaf0;
  font-weight: 500;
  transition: 0.3s;
  padding: 6px 12px;
  border-radius: 999px;
}
.nav-links li a:hover {
  color: #a78bfa;
}
.nav-links li a.active {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #ffffff;
}

nav {
  background-color: rgba(14,14,17,0.85);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

/* Links desktop */
nav ul li a {
  color: #eaeaf0;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* Social icons */
.social-icons a {
  color: #eaeaf0;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #22d3ee;
  transform: scale(1.2) rotate(5deg);
}

/* Hamburger */
#hamburger {
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

#hamburger div {
  width: 100%;
  height: 3px;
  background-color: #eaeaf0;
  transition: 0.3s;
}

/* Mobile menu */
#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background-color: rgba(14,14,17,0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

/* Mobile menu active */
#mobileMenu.active {
  transform: translateX(0);
}

/* Mobile menu links */
#mobileMenu li a {
  color: #eaeaf0;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  transition: 0.3s;
}

#mobileMenu li a:hover {
  color: #fff;
  background: linear-gradient(135deg, #628141, #1B211A);
}

/* Mobile social icons spacing */
#mobileMenu .social-icons {
  margin-top: 1rem;
}


.team-box{
  display: block;
font-size: 20px;

  color: #EBD5AB!important;
  font-weight: bold;
  padding: 5px 10px;
  width: fit-content;
  margin:  10px auto;
  z-index: 1000;
}