/*
Theme Name: Sai Appliance Service
Author: You
Description: Custom theme for Sai Appliance Service
Version: 1.0
*/

/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* Header */
header {
  background: #2a4d69;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
header nav ul li a {
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.hero a {
  display: inline-block;
  padding: 12px 24px;
  background: #2a4d69;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  margin-bottom: 40px;
}
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.services .service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  text-align: left;
}

/* Contact */
#contact {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
#contact form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact input,
#contact textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
#contact button {
  padding: 12px;
  background: #2a4d69;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #2a4d69;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
