/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

.portfolio-container {
  padding: 20px;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7f00; /* Orange */
  margin-bottom: 30px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tool-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: scale(1.05);
}

.tool-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.tool-description {
  color: #666;
  margin-bottom: 20px;
}

.view-btn {
  background-color: #ff7f00;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #e56e00;
}

.footer {
  background-color: #333;
  color: white;
  padding: 20px;
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.footer p {
  margin: 0;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}
