* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: white;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 135px;
  padding: 0 6%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #0057d9;
  box-shadow: 0 0 12px rgba(0, 87, 217, 0.4);

  position: relative;     /* 👈 important */
  overflow: hidden;       /* 👈 keeps shine clean */
}



.site-logo {
  height: 112px;
  width: auto;
  object-fit: contain;
  animation: logoGlow 8s ease-in-out infinite;
}

.logo-area {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* .logo-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(30, 115, 255, 0.35) 58%,
    transparent 75%
  );
  transform: skewX(-18deg);
  animation: metalShine 7s ease-in-out infinite;
  pointer-events: none;
} */

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.05) 35%,
    rgba(255,255,255,0.45) 50%,
    rgba(30,115,255,0.35) 58%,
    transparent 75%
  );

  transform: skewX(-18deg);
  animation: headerShine 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerShine {
  0% {
    left: -140%;
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  55% {
    left: 140%;
    opacity: 0.9;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
}

nav a:hover {
  color: #1e73ff;
  text-shadow: 0 0 10px rgba(30, 115, 255, 0.8);
}

@keyframes logoGlow {
  /* 0% {
    filter: drop-shadow(0 0 6px rgba(0, 87, 217, 0.3));
  } */

  0% {
    filter: drop-shadow(0 0 10px rgba(0, 87, 217, 0.6));
  }

  30%,
  80% {   /* 👈 holds strong glow longer */
    filter: drop-shadow(0 0 22px rgba(0, 87, 217, 0.95));
  }

  90% {
    filter: drop-shadow(0 0 10px rgba(0, 87, 217, 0.6));
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(0, 87, 217, 0.3));
  }
}

.hero {
  min-height: 80vh;
  padding: 70px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.95)),
    radial-gradient(circle at right, rgba(0, 87, 217, .28), transparent 35%);
}

.small-title {
  color: #1e73ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  margin: 10px 0 20px;
}

h2 {
  font-size: clamp(34px, 5vw, 52px);
  text-align: center;
  margin-bottom: 35px;
}

.hero-text p {
  color: #d6d6d6;
  font-size: 18px;
  line-height: 1.7;
}

.hero-image {
  border: none;
  padding: 0px;
  background: none;
  box-shadow: none;
}

.hero-image img {
  width: 100%;
  max-width: 700px;   /* 👈 controls width */
  height: auto;  /* 👈 controls height */
  object-fit: contain;
  margin: auto;
  display: block;
 
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #cfd4dc, #ffffff, #8e949c);
  color: #050505;
  font-weight: 900;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #1e73ff;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #1e73ff;
  color: white;
}

.section {
  padding: 80px 6%;
  max-width: 1300px;
  margin: auto;
}

.dark {
  background: #111;
  max-width: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.card {
  background: linear-gradient(#202020, #121212);
  border: 1px solid #333;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,.35);

  display: flex;
  flex-direction: column;
  text-align: center;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: contain;
  border-radius: 18px;
  margin-bottom: 22px;
  background: #111;      /* 👈 fills empty space nicely */
}

.card h3 {
  color: #1e73ff;
  font-size: 26px;
  margin: 10px 0 12px;
}

.card p,
.card li {
  color: #d6d6d6;
  line-height: 1.7;
}

.card ul {
  padding-left: 0;
  list-style-position: inside;
  margin-top: 15px;
}

.card p {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid #333;
}

.center-text {
  text-align: center;
  color: #ccc;
}

.order-form {
  max-width: 650px;
  margin: 30px auto 0;
  background: #181818;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #333;
}

.order-form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1e73ff;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #444;
  background: #0d0d0d;
  color: white;
  font-size: 16px;
}

.contact {
  text-align: center;
}

.contact a {
  color: #1e73ff;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 25px;
  background: black;
  color: #aaa;
}

/* Mobile friendly */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .site-logo {
   height: 68px;
  }
  nav {
    display: none;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: auto;
  }

  .header {
    min-height: 80px;
    justify-content: center;
  }
 

  h1 {
    font-size: 48px;
  }
}