* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
}

/* Navbar */
.navbar {
  background: #111;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
}

/* Main container */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Headings */
h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Paragraph spacing */
p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 30px;
}
.navbar a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Form styling (contact page ke liye) */
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #111;
  color: white;
  padding: 10px;
  border: none;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #333;
}
.container {
  transition: 0.3s;
}

.container:hover {
  transform: translateY(-5px);
}
