* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
}
a{
  text-decoration: inherit;
  color: inherit;
}
ul{
  list-style: none;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  padding: 20px;
}

.logo h2{
  font-size: 1.8rem;
  font-weight: bold;
}

nav{
  display: flex;
  justify-content: space-between; 
  /* width: 50%; */
}
.nav-links{
  display: flex;
  gap: 20px;
  

}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.nav-links li a:hover{
  color: #00bcd4;
}

.hero {
  height: 100vh;
  background: url('./Image/home2.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1; 
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    
}

.hero-content p {
    font-size: 1.2rem;
    
}

.btn {
    background: #00bcd4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    
}
.tools-section {
  background: #f7f7f7;
  padding: 60px 5%;
  text-align: center;
  color: #111;
}

.tools-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #222;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
}

.tool-item {
  text-decoration: none;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.tool-item:hover {
  transform: scale(1.05);
}

.tool-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: 0.3s;
}

.tool-item span {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.hamburger{
  color: aliceblue;
  display: none;
}
@media (max-width: 768px){
  .hamburger {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .nav-links{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: -300px;
    padding: 20px;
    background-color: #00bcd4;
    border-radius: 5px;
  }
  .nav-links li a:hover{
    color: gold;
  }
  .nav-links.show{
    display: flex;
    right: 0;
  }
  .hero{
    height: auto;
    padding: 20px;
    flex-direction: column;
    padding-top: 100px;
  }
  .hero-content h1{
    font-size: 2rem;
  }
  .hero-content p{
    font-size: 1rem;
  }
}