/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #222, #111);
  color: white;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar a {
  color: #fff;
  margin: 0 15px;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar a:hover {
  color: #ff4081;
}

/* Logo Styling */
.logo {
  font-family: 'Arial', sans-serif;
  font-size: 22px;
  color: #ff4081;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #ff4081, #ff9800);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 70px;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.header p {
  font-size: 1rem;
}

/* Tools Section */
.tools-section {
  padding: 50px 0;
}

.tools-card {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: white;
}

.tools-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(255, 64, 129, 0.4);
}

.icon-wrapper {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ff4081;
}

.tools-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tools-card p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #777;
}

footer a {
  color: #fff;
  font-size: 18px;
  margin: 0 10px;
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: #ff4081;
}
