

body {
    margin: 0;
    font-family: iranSans, sans-serif;
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Banner */
.page-banner {
    background-image: url(https://www.armandidehpardaz.ir/wp-content/uploads/2023/11/page-title-1.png);
    background-size: cover;          /* کل فضا رو پر می‌کنه */
    background-position: center;     /* وسط چین تصویر */
    background-repeat: no-repeat;    /* تکرار نشه */
    color: #fff;
    padding: 50px 0;
    text-align: right;
}

.page-banner h1 {
    margin: 0 0 10px;
    font-size: 26px;
}

.page-banner p {
    margin: 0;
    color: #bbb;
    font-size: 14px;
}

/* Intro */
.intro {
    text-align: center;
    padding: 30px 0;
}

.intro p {
    line-height: 1.9;
    color: #666;
}

/* Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.card {
    background: #e9e9e9;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.card h3 {
    margin-top: 0;
}
.card {
  transition: 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 0 5px #0b5bd3;
}


.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}

/* CTA */
.cta {
    background: #0b4dbb;
    color: white;
    text-align: center;
    padding: 35px 0;
    margin: 40px 0;
}

/* Why */
.why h2 {
    text-align: center;
}

.why ul {
    line-height: 2.2;
}

/* Details */
.details {
    margin: 40px auto;
}

.detail {
    padding: 20px 0;
    border-top: 2px dashed #ccc;
}

.detail:first-child {
    border-top: none;
}



.promo-section {
  background: #0b4dbb; 
    text-align: center;
    padding: 20px 0;
    margin-bottom: 35px;

 
}

.promo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ستون محتوا */
.promo-content {
  flex: 1;
  color: #fff;
  text-align: center;
}

.promo-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.promo-content p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.promo-logo {
  margin-top: 20px;
}

.promo-logo img {
  height:60px;
}

/* ستون تصویر */
.promo-image {
  flex-shrink: 0; /* جلوگیری از کوچک شدن */
}

.promo-image img {
  width: 600px;   /* سایز ثابت تصویر */
  height: auto;
  display: block;

}
@media (max-width: 768px) {

  .promo-container {
    flex-direction: column;   /* ستونی شدن */
    text-align: center;       /* وسط شدن متن */
    gap: 25px;
  }

  .promo-content {
    order: 2;   /* متن بیاد پایین */
  }

  .promo-image {
    order: 1;   /* عکس بیاد بالا */
  }

  .promo-image img {
    width: 100%;
    max-width: 420px;   /* بیشتر از سایز اصلی نشه */
    height: auto;       /* نسبت تصویر حفظ شود */
  }

  .promo-logo {
    display: flex;
    justify-content: center;
  }

}
