* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  img {
    width: 100%;
    display: block;
  }

  .container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
  }

  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
  }

  .logo-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .nav-links {
    display: flex;
    gap: 30px;
  }

  .nav-links a {
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffffff;
  }

  .hero {
    height: calc(100vh - 70px);
    margin-top: 100px;
    position: relative;
    background: url('images/workshop-main.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.25)
    );
    }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

  .hero-tag {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 150px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .hero h1 {
    font-size: 86px;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #d1d5db;
  }

  .hero p {
    font-size: 20px;
    max-width: 700px;
    color: #d1d5db;
    margin-bottom: 40px;
  }

  .hero-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #22c55e;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
  }

  .hero-btn:hover {
    transform: translateY(-2px);
    background: #4ade80;
  }

  .section {
    padding: 120px 0;
  }

  .section-title {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .about-text p {
    color: #d1d5db;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
  }

  .about-image img {
    border-radius: 24px;
    height: 600px;
    object-fit: cover;
  }

  .services {
    background: #0d0d0d;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
  }

  .service-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
  }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34,197,94,0.5);
  }

  .service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-card p {
    color: #d1d5db;
    line-height: 1.7;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .gallery-item {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
  }

  .gallery-item img {
    height: 320px;
    object-fit: cover;
    transition: 0.5s;
  }

  .gallery-item:hover img {
    transform: scale(1.08);
  }

  .contact {
    background: #0d0d0d;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-box {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 50px;
  }

  .contact-box h3 {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .contact-item {
    margin-bottom: 20px;
    font-size: 18px;
    color: #d1d5db;
  }

  .contact-item strong {
    color: #ffffff;
  }

  footer {
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #9ca3af;
    background: #050505;
  }

  @media (max-width: 1100px) {
    .hero h1 {
      font-size: 64px;
    }

    .about-grid,
    .contact-wrapper {
      grid-template-columns: 1fr;
    }

    .service-grid,
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

    .hero h1 {
      font-size: 48px;
    }

    .section-title {
      font-size: 42px;
    }

    .hero p,
    .about-text p {
      font-size: 16px;
    }

    .service-grid,
    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .about-image img {
      height: 400px;
    }

    .contact-box {
      padding: 35px;
    }
  }