    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f8f7f2;
      color: #111;
      overflow-x: hidden;
          /* background-image: url("/assets/images/bg-texture.png"); */
    
        }

    header {
      display: flex;
      justify-content: space-between;
      padding: 28px 60px;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      /* font-weight: 300; */
      letter-spacing: 1px;
    }

    .logo img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: block;
    }

    nav {
      display: flex;
    }

    nav a {
      margin-left: 32px;
      text-decoration: none;
      color: #111;
      font-size: 13px;
      letter-spacing: 1px;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .burger span {
      width: 24px;
      height: 1px;
      background: #111;
      display: block;
    }

     .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100%;
      background: #fff;
      display: flex;
      flex-direction: column;
      padding: 80px 30px;
      transition: right 0.4s ease;
      z-index: 999;
       border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
    }
.lang-switch {
  margin-left: 20px;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 1px;
}
    .mobile-nav a {
      margin-bottom: 20px;
      text-decoration: none;
      color: #111;
      font-size: 16px;
     
    }

    .mobile-nav.active {
      right: 0;
    }

    .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
    z-index: 998;

}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}

.hero {
    position: relative; /* anchor for the absolute image */
    overflow: hidden;
}

.section-bg-image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: -40px;  /* overlap into header — adjust to taste */
    margin-bottom: -80px; /* overlap into hero — adjust to taste */
}

.section#services {
    height: 90vh;
    background-image: url(/assets/images/bgshapes.png);
    background-size:100%;
    background-repeat: no-repeat;
}


/* make sure hero content sits above the image */
.hero > *:not(.section-bg-image) {
    position: relative;
    z-index: 1;
}
    .hero {
      text-align: center;
      padding: 140px 20px 80px;
      animation: fadeIn 1.2s ease;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .hero p {
      color: #666;
      max-width: 520px;
      margin: 0 auto 30px;
      font-size: 16px;
    }

    .btn {
      padding: 14px 28px;
      border: 1px solid #111;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: #111;
      color: #fff;
    }

    .section {
      padding: 100px 60px;
      text-align: center;
    }

    .section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      margin-bottom: 10px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .card {
      padding: 30px;
      border: 1px solid #eaeaea;
      border-radius: 20px;
      background: #fff;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(40px);
    }

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

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    footer {
      text-align: center;
      padding: 50px 20px;
      font-size: 13px;
      color: #888;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px);} 
      to { opacity: 1; transform: translateY(0);} 
    }

     @media (max-width: 768px) {
      nav {
        display: none;
      }

      .burger {
        display: flex;
      }

      header {
        padding: 20px 30px;
      }

      .section {
        padding: 80px 30px;
      }
    }
