html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: 'Vazir', sans-serif;
  background-color: #34749e;
}

.header {
  background-color: #34749e;
  color: white;
  padding: 20px 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.title {
  font-size: 24px;
  margin: 0;
}

.menu {
  background-color: #0b2681;
  padding: 10px;
  text-align: center;
}

.menu a {
  text-decoration: none;
}

.menu button {
  background-color: #ffffff;
  border: none;
  margin: 5px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.menu button:hover {
  background-color: #4d4d4d;
  color: white;
}

.about-box,
.about2-box,
.portfolio-box,
.team-box,
.contact-box {
  background-color: #ffffff;
  margin: 15px 10px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.about-box h2,
.about2-box h2,
.portfolio-box h2,
.team-box h2,
.contact-box h2 {
  text-align: center;
  margin-bottom: 15px;
}

.projects {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.project {
  width: 100%;
  max-width: 250px;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project img {
  width: 80%;
  border-radius: 10px;
}

.project p {
  font-size: 15px;
  font-weight: bold;
  margin: 8px 0 4px;
}

.project small {
  color: #555;
  font-size: 13px;
}

/* ---- استایل بخش تماس با ما ---- */
.contact-box {
  text-align: center;
}

.contact-info {
  display: inline-block;
  text-align: right;
  line-height: 2;
}

.contact-info p {
  margin: 5px 0;
  color: #333;
}

.contact-info strong {
  color: #0b2681;
}

.footer {
  background-color: #0b2681;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

/* ---- ریسپانسیو ---- */
@media (min-width: 768px) {
  .project {
    width: 45%;
  }

  .contact-box {
    text-align: center;
  }

  .contact-info {
    display: inline-block;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .project {
    width: 30%;
  }
}