/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 50vh;
  background: url('images/tools-equipment-hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.5rem;
}

/* Equipment Tabs Section */
.equipment-tabs {
  padding: 40px 20px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.tab-btn {
  background: white;
  border: 2px solid black;
  color: black;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: #2ec4b6;
  color: white;
}

/* Equipment Content */
.equipment-content {
  max-width: 1200px;
  margin: 0 auto;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.tab-content.active {
  display: block;
}
.tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-content li {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tab-content li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.tab-content li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}
.tab-content li span {
  font-size: 1.1rem;
  font-weight: bold;
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .tab-content li {
    flex-direction: column;
    align-items: flex-start;
  }
  .tab-content li img {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
