    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
      font-family: "Montserrat", system-ui, Arial, Segoe UI, sans-serif;
      background: #0f172a;
      color: #fcfcfc;
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block;
    }

    header {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 40;
      background: linear-gradient(180deg, rgba(254, 255, 255, 0.6), rgba(15, 23, 42, 0.2));
      backdrop-filter: blur(6px);
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 600;
      color: white
    }

    .logo {
      width: 46px;
      height: 46px;
      border-radius: 8px;
      background: linear-gradient(135deg, #06474F, #0A2A3B);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-family: "Playfair Display"
    }

    nav ul {
      display: flex;
      gap: 18px;
      list-style: none
    }

    nav a {
      padding: 8px 12px;
      border-radius: 8px;
      transition: all .25s
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.04)
    }

    .cta {
      background: linear-gradient(135deg, #06474F, #0A2A3B);
      color: rgb(255, 255, 255);
      padding: 10px 14px;
      border-radius: 10px;
      font-weight: 700
    }

    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      overflow: hidden;
      display: flex;
      align-items: center
    }

    .parallax-layer {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      will-change: transform;
      z-index: 10;
      background-image: url();
    }

    .video-bg {
      object-fit: cover;
      width: 100%;
      height: 100%;
      filter: brightness(.55) saturate(1.05)
    }

    .hero-content {
      position: relative;
      z-index: 20;
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 24px;
      display: flex;
      gap: 48px;
      align-items: center
    }

    .hero-left {
      flex: 1
    }

    .hero-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .eyebrow {
      display: inline-block;
      background: rgba(255, 255, 255, 0.06);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 600;
      margin-bottom: 18px
    }

    h1 {
      font-family: "Playfair Display";
      font-size: clamp(34px, 6vw, 64px);
      line-height: 1.02;
      color: #c6acac;
      margin-bottom: 18px;
      letter-spacing: -1px
    }

    .word {
      color: rgb(232, 212, 212);
    }

    p.lead {
      color: rgba(215, 180, 180, 0.88);
      font-size: 18px;
      margin-bottom: 26px
    }

    .animated-title {
      display: inline-block;
      overflow: hidden;
      padding: 28px;
    }

    .animated-title .word {
      display: inline-block;
      transform-origin: center;
      transition: transform .9s cubic-bezier(.2, .9, .2, 1)
    }

    .zoom-in {
      transform: scale(1.06)
    }

    .zoom-out {
      transform: scale(.94)
    }

    /* Buttons */
    .buttons {
      display: flex;
      gap: 12px
    }

    .btn {
      padding: 12px 18px;
      border-radius: 10px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.12);
      color: #a99090;
    }

    .btn:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #e6d4d4
    }

    section.services {
      padding: 80px 20px;
      background: linear-gradient(180deg, #f8fafc00, #f1f5f9)
    }

    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .card {
      background: rgb(255, 255, 255);
      border-radius: 14px;
      padding: 22px;
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06)
    }

    .card h3 {
      margin-bottom: 8px;
      color: #212e4a;
      font-size: 20px;
      font-weight: 700;
    }

    .card p {
      color: #475569
    }

    /* Portfolio */
    .portfolio {
      padding: 60px 20px
    }

    .portfolio-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px
    }

    .portfolio-item img {
      transition: transform .8s ease;
      height: 300px;
      width: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 12px;
      will-change: transform;
      box-shadow: 0 6px 20px rgba(2, 6, 23, 0.1);
    }

    .portfolio-item:hover img {
      transform: scale(1.12)
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.55));
      display: flex;
      align-items: flex-end;
      padding: 18px;
      color: white
    }

    /* Testimonials */
    .testimonials {
      padding: 60px 20px;
      background: linear-gradient(180deg, #0f172a05, #fff)
    }

    .testimonials .wrap {
      max-width: 900px;
      margin: 0 auto
    }

    .quote {
      background: white;
      border-radius: 12px;
      padding: 18px;
      box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06)
    }

    /* Contact/footer */
    footer {
      padding: 36px 20px;
      background: #071022;
      color: rgba(255, 255, 255, 0.85)
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap
    }

    @media (max-width:900px) {
      .services-grid {
        grid-template-columns: repeat(1, 1fr)
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 120px
      }

      header {
        position: fixed
      }
    }

    @media (max-width:520px) {
      .portfolio-grid {
        grid-template-columns: repeat(1, 1fr)
      }

      .hero {
        min-height: 640px
      }

      nav ul {
        display: none
      }
    }

    .shape {
      position: absolute;
      border-radius: 999px;
      filter: blur(30px);
      opacity: .28;
      pointer-events: none
    }

    .shape.s1 {
      width: 380px;
      height: 380px;
      background: linear-gradient(135deg, #ffd166, #fca311);
      left: -8%;
      top: 10%
    }

    .shape.s2 {
      width: 260px;
      height: 260px;
      background: linear-gradient(135deg, #8ec5ff, #3b82f6);
      right: -6%;
      bottom: 10%
    }

    .muted {
      color: #64748b
    }



    .sendbtn {
      padding: 12px;
      border-radius: 10px;
      background: #0f172a;
      color: #fff;
      font-weight: 700;
      cursor: pointer;
    }

    .sendbtn:hover {
      background: #123772;
    }