<section class="atin-hero">
  <div class="atin-bg"></div>

  <div class="atin-light-strip"></div>

  <div class="atin-logo" data-tilt data-tilt-max="10">
      <img src="https://via.placeholder.com/180x180?text=LOGO+3D" alt="Atin Part Logo">
  </div>

  <div class="atin-text">
      <h1>GENIUS TO BE GENUINE</h1>
      <p>تأمین قطعات یدکی اصلی و خدمات حرفه‌ای</p>
  </div>
</section>

<style>
  .atin-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #0a0d14, #111827);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .atin-bg {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(255,0,0,0.15), transparent),
                url('https://i.imgur.com/8pQeFJZ.png');
    background-size: cover;
    opacity: 0.25;
    filter: blur(4px);
  }

  .atin-light-strip {
    position: absolute;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #ed1c24, #701014);
    box-shadow: 0 0 25px #ed1c24;
  }

  .atin-logo img {
    width: 180px;
    filter: drop-shadow(0 0 20px rgba(255,0,0,0.4));
  }

  .atin-text {
    margin-top: 35px;
    text-align: center;
    color: white;
  }

  .atin-text h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .atin-text p {
    font-size: 18px;
    opacity: 0.7;
  }
</style>

<script src="https://cdn.jsdelivr.net/npm/vanilla-tilt@1.7.2/dist/vanilla-tilt.min.js"></script>