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

body {
  font-family: "Poppins", sans-serif;
 background: linear-gradient(135deg,#8B95FF, #1e90ff);
  
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;


 
header {
  text-align: center;
  margin: 60px 20px 30px;
}

header div{
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: transparent;
 /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  text-shadow:0px 4px 15px rgba(0,0,200,0.8);
  color:#fff;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
  font-weight:400;
}

/* ---------- Tool Grid ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
}

.tool-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tool-card .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.tool-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  margin: 50px 0px 0px;
  font-size: 0.5rem;
  opacity: 0.6;
  color:#fff;
  background:#000;
  width:100%;
  padding:40px 10px;
  
}


/* Responsive Fix */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.9rem;
  }

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

  .tool-card {
    padding: 20px;
  }
}