/* Portfolio Section */
.portfolio {
    /* padding: 4rem 1rem; */
    /* background: #fff; */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  
  .section-header p {
    font-size: 1.1rem;
    color: #666;
  }
  
  .portfolio-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
  }
  
  .portfolio-card {
    width: 346px;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
  }
  
  .portfolio-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  
  .portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .card-content {
    padding: 1rem 1.25rem;
  }
  
  .card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }

  .portfolio .cta-container {
    width: 100%;
  }
  
  .portfolio .cta-buttons {
    margin-top: 48px;
  }
  