body {
  margin: 0;
  font-family: "Vazir", sans-serif;
  background-color: #fff;
  color: #333;
  padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #27ae60;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav a.active {
  text-decoration: underline;
}

.hero {
  background-color: #eafaf1;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.card {
  width: 250px;
  text-align: center;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: #27ae60;
}

.workshops {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.workshops h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.workshop-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.workshop-item h4 {
  margin-bottom: 0.5rem;
  color: #27ae60;
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #27ae60;
  color: #fff;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}
.page-content {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
}

.definitions {
  background-color: #f0f9f4;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.definition-list {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.definition-list li {
  margin-bottom: 0.5rem;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #27ae60;
  margin-bottom: 0.5rem;
}
.contact-form {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: bold;
  text-align: right;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form button {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #219150;
}

.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}



.logo {
  height: 100px; 
  max-height: 100px;
  object-fit: contain;
  margin-top: -20px; 
  margin-bottom: -20px;
}

.footer-logo {
  height: 100px;
  max-height: 100px;
  object-fit: contain;
  margin-top: -10px;
  margin-bottom: -10px;
}


