* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.5;
  }
  
  
  

  /* Featured Project */
  .featured-project {
    padding: 4rem 6%;
  }
  
  .featured-project h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .featured-project > p {
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
  }
  
  .view-project-btn {
    display: block;
    margin: 0 auto 2rem;
    padding: 0.5rem 1.5rem;
    background-color: #CD2945;
    border: 1px solid #d1d5db;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
   
  }
  
  .view-project-btn:hover {
    background-color: #CD2945;
  }
  
  .project-image {
    width: 100%;
    height: 375px;
    margin-bottom: 4rem;
    border-radius: 0.375rem;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .completed-tag {
    display: inline-block;
    color: #dc2626;
    border-bottom: 1px solid #dc2626;
    padding: 0 1rem 0.25rem;
    margin-bottom: 1rem;
  }
  
  /* Timeline and Project Cards */
  .timeline-container {
    position: relative;
    margin-top: 5rem;
  }
  
  .timeline-curve {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5rem;
    transform: translateY(-50%);
    z-index: 0;
  }
  
  .timeline-curve svg {
    width: 100%;
    height: 100%;
  }
  
  .project-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  
  .project-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .project-card h3 {
    font-weight: 500;
    text-align: center;
  }
  
  .project-card .subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .project-detail {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
  }
  
  .square-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.25rem;
  }
  
  .location-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
  }
  
  .pagination-arrow {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
  }
  
  .pagination-dots {
    display: flex;
    margin: 0 0.5rem;
  }
  
  .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    margin: 0 0.25rem;
  }
  
  .dot.active {
    background-color: #dc2626;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .project-cards-row {
      grid-template-columns: 1fr;
    }
    
    .timeline-curve {
      display: none;
    }
    
    
    .featured-project h2 {
      font-size: 1.25rem;
    }
  }