/* Reset + base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0;
  color: #333;
}

/* Header */
header {
  background-color: #0d6efd;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  nav {
    display: flex;
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
  }
}
.hero{
  background: linear-gradient(to right, #0d6efd,#6610f2);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero .btn {
  background: white;
  color:#0d6efd;
  padding: 12px 24px;
  font-weight: bold;
  border-radius:  8px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content:center ;
  gap: 30px;
  padding: 60px 20px;
  background: #f8f9fa;
}
.feature {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  background-color: #0d6efd; /* Optional: add background */
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #084298;
}
