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

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  scroll-behavior: smooth;
}

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

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
}
nav a {
  margin: 0 15px;
  color: #fff;
  transition: color 0.3s;
}
nav a:hover {
  color: #00d8ff;
}

   /* Hero Section */
   .hero {
    height: 100vh;
    position: relative;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.1rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .hero button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    background: #00d8ff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .hero button:hover {
    background: #00b0d4;
  }
/* Shop Section */
.shop {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}
.shop h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.tool-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.tool-card:hover {
  transform: scale(1.05);
}
.tool-card h3 {
  margin: 10px 0;
}
.tool-card p {
  font-size: 0.9rem;
  color: #555;
}
.tool-card button {
  padding: 10px 15px;
  border: none;
  background: #00d8ff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.tool-card button:hover {
  background: #007fa3;
}

/* Cart Section */
.cart {
  padding: 50px 20px;
  background: #f4f4f4;
}
.cart h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.cart-items {
  border: 1px solid #ddd;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.cart-total {
  text-align: right;
  font-size: 1.5rem;
}
.cart-actions {
  margin-top: 20px;
  text-align: center;
}

.cart-actions input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
  width: 60%;
}

.cart-actions button {
  padding: 10px 15px;
  border: none;
  background: #00d8ff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cart-actions button:hover {
  background: #007fa3;
}
  /* Address Section */
  .address {
    padding: 50px 20px;
    background: #161b22;
    text-align: center;
    color: #888;
  }
  .address h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .address p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .email-icon {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: #00d8ff;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .email-icon i {
    margin-right: 10px;
    font-size: 1.5rem;
  }
  .email-icon:hover {
    color: #00b0d4;
  }


  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #0d1117;
    color: #888;
  }
  footer a {
    color: #00d8ff;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }