body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

/* HERO BACKGROUND */
.hero-bg {
  height: 85vh;
  background-image: url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: rgba(2, 6, 23, 0.75);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  color: #38bdf8;
}

.hero-overlay p {
  font-size: 1.2rem;
  opacity: 0.85;
}

/* TOOL GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 50px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #020617;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 1.1rem;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(56,189,248,0.6);
}

/* FOUNDER SECTION */
.founder-section {
  padding: 70px 20px;
  background: #020617;
}

.founder-section h2 {
  text-align: center;
  color: #38bdf8;
  margin-bottom: 40px;
}

.founder-card {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  background: #0f172a;
  padding: 30px;
  border-radius: 20px;
}

.founder-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8;
}

.founder-info h3 {
  margin-top: 0;
}

.founder-info p {
  opacity: 0.85;
  line-height: 1.6;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #38bdf8;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #22c55e;
}

footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
}
