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

body {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  color: #212529;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 2rem;
  color: #ff4d00;
}
nav a {
  color: #212529;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ff4d00;
}

/* Sections */
.section {
  padding: 60px 0;
  text-align: center;
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ff4d00;
}

/* About */
.about p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  color: #343a40;
}

/* Services */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card h3 {
  color: #ff4d00;
  margin-bottom: 10px;
}

/* Contact Form */
form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f1f1f1;
  color: #212529;
}
form button {
  background: #ff4d00;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #e64500;
}

/* Footer */
footer {
  background: #ffffff;
  color: #6c757d;
  text-align: center;
  padding: 25px 0;
  font-size: 0.95rem;
  border-top: 1px solid #dee2e6;
}
footer a {
  color: #ff4d00;
  text-decoration: underline;
}
footer p {
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  nav {
    display: flex;
    flex-direction: column;
  }
}
