  :root {
        --bg-main: #f4f1ea;
        --text-dark: #0e0e0e;
        --text-muted: #6a6862;
        --accent-dark: #2f2c27;
      }

      body {
        font-family: "Inter", sans-serif;
        color: var(--text);
        padding-top: 100px;
        margin-top: 50px;
      }

      

      /* Eğer Bootstrap yoksa container */
      .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
      }

      .page-header {
        text-align: center;
        margin-bottom: 50px;
        animation: fadeUp 0.8s ease;
      }

      .page-header h1 {
        font-family: "Inconsolata", monospace;
        font-optical-sizing: auto;
        font-weight: 5px;
        font-style: normal;
        font-variation-settings: "wdth" 50;
      }

      .page-header p {
        color: #6a6862;
        line-height: 1.8;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      @media (max-width: 768px) {
        .page-header {
          margin-bottom: 60px;
        }

        .page-header h1 {
          letter-spacing: -1px;
        }

        .page-header p {
          font-size: 16px;
        }
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(25px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .project-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 50px;
      }

      .filter-btn {
        border: none;
        background: white;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        cursor: pointer;
      }

      .filter-btn.active {
        background: var(--accent-dark);
        color: white;
      }

      /* GRID */
      .project-card {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        overflow: hidden;
        transition: 0.4s ease;
        height: 100%;
      }

      .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
      }

      .project-img {
        height: 220px;
        overflow: hidden;
      }

      .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
      }

      .project-card:hover img {
        transform: scale(1.1);
      }

      .project-content {
        padding: 20px;
      }

      .project-content span {
        color: #6a6862;
        line-height: 1.8;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .project-content h4 {
        margin-top: 10px;
        font-size: 20px;
      }

      .project-content p {
        color: #6a6862;
        line-height: 1.8;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* ANIMATION */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: 0.8s ease;
      }

      .reveal.show {
        opacity: 1;
        transform: translateY(0);
      }

     
      /* ===== PROCESS ANIMATION ===== */
      .reveal {
        opacity: 0;
        transform: translateY(60px);
        transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      .reveal.show {
        opacity: 1;
        transform: translateY(0);
      }

      /* STEP IMAGE + TEXT stagger */
      .process-step .step-img,
      .process-step .step-content {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
      }

      .process-step.show .step-img {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
      }

      .process-step.show .step-content {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.25s;
      }

      
      /* -----sürec */

      .process-section {
        padding: 100px 0;
        margin-top: 90px;
        background: rgba(244, 241, 234, 0.75) !important;
      }

      .process-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .process-header h2 {
        font-family: "Inconsolata", monospace;
        font-optical-sizing: auto;
        font-weight: 5px;
        font-style: normal;
        font-variation-settings: "wdth" 50;
      }

      .process-header p {
        max-width: 700px;
        margin: 15px auto 0;
        color: #6a6862;
        line-height: 1.7;
      }

      /* TIMELINE */
      .timeline {
        position: relative;
        max-width: 900px;
        margin: auto;
      }

      .timeline::before {
        content: "";
        position: absolute;
        left: 25px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #ddd;
      }

      .timeline-item {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
        position: relative;
      }

      .timeline-item .icon {
        width: 50px;
        height: 50px;
        background: #fff;
        border: 2px solid #2f2c27;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        z-index: 2;
      }

      .timeline-item .content {
        background: rgba(255, 255, 255, 0.7);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        transition: 0.3s;
      }

      .timeline-item .content:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .timeline-item h3 {
        margin-bottom: 8px;
        font-size: 20px;
      }

      .timeline-item p {
        margin: 0;
        color: #6a6862;
        line-height: 1.6;
      }


      /* ----- */
  .cta-section{
    padding:120px 20px;
    background: #f4f1ea;
}

.cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:70px 50px;
    border-radius:30px;
    background:#2f2c27;
    color:#fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-box span{
    opacity:.8;
    letter-spacing:2px;
    font-size:14px;
    display:block;
}

.cta-box h2{
    font-size:42px;
    margin:20px 0;
    font-weight:700;
}

.cta-box p{
    max-width:650px;
    margin:0 auto;
    opacity:.8;
    line-height:1.8;
    font-size:16px;
}

.cta-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:white;
    color:#2f2c27;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.4);
    color:white;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
}

.btn-secondary:hover{
    background:white;
    color:#2f2c27;
}
