* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  background-color: #4b1c59;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #d7b5f8;
}

/* Hero */
.hero {
  background: #7a287d; /* simple purple background */
  color: white;


}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #d7b5f8;
  color: #4b1c59;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #fff;
}

/* Section Styles */
section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  color: #4b1c59;
  margin-bottom: 20px;
}

/* About */
.about p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Order Form */
.order form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
  gap: 15px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #4b1c59;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #7a2a9b;
}

/* Contact */
.contact a {
  color: #4b1c59;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #4b1c59;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}



