     body {
      margin: 0;
      font-family: 'Vazirmatn', sans-serif;
      direction: rtl;
      background-color: #f9f9f9;
    }
  

  a {
    text-decoration: none; /* حذف خط زیرین */
  }

  a:hover {
    color: #f87c56; /* رنگ هنگام هاور */
  }


    header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 10px 10px;
      background: linear-gradient(to left, #3c3fb6, #6366f1);
      color: white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
a.logo-header{
margin-right: 30px;}


    .sait-logo {
      max-width: 200px;
      height: auto;
    }

    header h1 {
      margin: 0 0 10px;
      font-size: 24px;
    }

    header p {
      margin: 0;
      font-size: 16px;
      opacity: 0.9;
    }

    .header-text {
      flex: 1;
      padding: 0 20px;
      min-width: 250px;
    }

    .phone-holder {
      display: flex;
      align-items: center;
      background: white;
      color: #086e8c;
      padding: 10px 15px;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .phone-holder:hover {
      background: #eef2ff;
    }

    .phone-holder i {
      font-size: 24px;
      margin-right: 10px;
    }

    .number {
      font-weight: bold;
      font-size: 16px;
    }

    .desc {
      font-size: 12px;
      color: #6b7280;
    }


 main{
          margin-top:55px;
      }


   
    .container {
      max-width: 1100px;
      margin: auto;
     
      padding: 40px 20px;
    }
 
       .section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 26px;
      color: #333;
    }
  
    .feature {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .feature:hover {
      transform: translateY(-5px);
    }
    .feature h3 {
      color: #086e8c;
    }
    .features, .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .card img {
      width: 100%;
      border-radius: 8px;
    }
    .cta {
      text-align: center;
      margin: 40px 0;
    }
    .cta a {
      background: #242756;
      color: #f7f6f7;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 18px;
    }
    .cta a:hover{
     background:#fcc5b4; 
     color:#086e8c;
    }
    
    .pricing {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      text-align: center;
    }
    .pricing .card {
      border: 2px solid #086e8c;
    }
    .pricing .price {
      font-size: 24px;
      color: #086e8c;
      margin: 10px 0;
    }
    form {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    form label {
      display: block;
      margin-top: 15px;
    }
    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }
    form button {
      margin-top: 20px;
      background: #086e8c;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }
    footer {
      background: #333;
      color: white;
      padding: 20px;
      text-align: center;
    }
    
    
    
    
    
    /* respansiv */
    @media (max-width: 768px) {
        
      header {
        flex-direction: column;
        text-align: center;
      }

      .header-text {
        padding: 15px 0;
      }

      .phone-holder {
        margin-top: 15px;
      }
      main{
          margin-top:210px;
      }
    }