body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    background: #fff;
    color: #4a0056;
    line-height: 1.8;
  }
  
  .web-design-section {
    padding: 60px 40px;
  }
  
  .section-header {
    background: #f1c40f;
    text-align: center;
    padding: 15px 0;
  }
  
  .section-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
  }
  
  .web-design-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .web-design-text {
    flex: 1 1 55%;
    padding: 20px;
    font-size: 22px;
    color: #520D4D;
    font-weight: 600 !important;
    line-height: 26px !important;
    margin-top: -50px;

  }
  
  .web-design-text p {
    margin-bottom: 20px;
  }
  
  .web-design-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .web-design-image img {
    max-width: 100%;
    height: auto;
  }
  
  .web-design-footer {
    margin-top: 50px;
    text-align: center;
  }
  
  .web-design-footer h3 {
    font-size: 22px;
    font-weight: bold;
  }


  /* 🔹 Portfolio Section */
.portfolio {
    background: #fff;
    color: #4b0049;
    text-align: center;
    padding: 80px 5%;
  }
  
  .portfolio-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
  }
  
  .portfolio-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4b0049;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .portfolio-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
  }
  
  .portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .portfolio-item p {
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #4b0049;
  }
  
  /* Button */
  .portfolio-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4b0049;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .portfolio-btn:hover {
    background: #ffcc00;
    color: #4b0049;
  }




  /* القسم الجديد */
.website-types {
    margin-top: 60px;
  }
  
  .types-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #4a0056;
    padding: 30px 20px;
    color: #f1c40f;
    text-align: center;
  }
  
  .type-box {
    flex: 1;
  }
  
  .type-box i {
    font-size: 50px;
    margin-bottom: 15px;
  }
  
  .type-box h3 {
    font-size: 20px;
    margin: 0;
    color: #f1c40f;
  }
  
  .types-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 20px;
  }
  
  .types-text {
    flex: 1 1 55%;
    font-size: 23px;
    color: #4a0056;
    padding: 20px;
  }
  
  .types-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .types-image img {
    max-width: 100%;
    height: auto;
  }
  
  