
 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #c58bb4;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

nav a:hover {
  color: #c58bb4;
}

/* Hero */
.hero {
  background-image: url("images/kinglash-bg01.png");
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(233, 11, 148);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background: #4f02dd;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #a76594;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 80px 10%;
  background: #dda0da;
  text-align: center;
}

.feature {
  width: 30%;
}

.feature h3 {
  margin-bottom: 15px;
  color: #c58bb4;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f108bf;
  margin-top: 50px;
}

/* Page Sections */
.page-section {
  padding: 80px 10%;
  text-align: center;
}

.page-section h2 {
  margin-bottom: 20px;
  color: #f307ac;
}

/* Services Grid */
.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* Contact Form */
form {
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

button {
  padding: 12px;
  background: #190491;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

button:hover {
  background: #a76594;
}

/* Responsive */
@media(max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 40px;
  }

  .feature {
    width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }
}