style.css
/* style.css for Studio Narsimha */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #333);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
}

section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.about p,
.contact p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.services ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.services li {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 15px;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  font-size: 0.9em;
  color: #888;
}