body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  background: #f5f7fb;
}

/* هدر */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

/* لوگو */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
}

/* هیرو */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

/* دکمه */
.btn {
  padding: 10px 18px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.btn.outline {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}

/* پروژه‌ها */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px;
}

.card {
  background: white;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3, .card p {
  padding: 0 15px;
}

.card:hover {
  transform: translateY(-8px);
}

/* تعرفه */
.pricing {
  text-align: center;
  padding: 60px 20px;
}

.price-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price {
  background: white;
  width: 250px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.price .amount {
  font-size: 20px;
  font-weight: bold;
  color: #2563eb;
}

.price ul {
  list-style: none;
  padding: 0;
}

.price ul li {
  padding: 5px 0;
}

.price button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

/* پلن محبوب */
.popular {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

/* تماس */
.contact {
  text-align: center;
  padding: 50px 20px;
  background: #eef2ff;
}

/* فوتر */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #666;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}


.projects {
  padding: 60px 20px;
  background: #0f172a;
  color: white;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* گرید خفن */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* کارت */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  height: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* هاور زوم */
.project-card:hover img {
  transform: scale(1.1);
}

/* افکت روی عکس */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.overlay h3 {
  margin: 0;
  font-size: 16px;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

