/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}

.logo img {
  width: 120px;
  border-radius: 20px; /* This rounds the corners */
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

nav ul li a:hover {
  color: #ff9800;
}

/* Hero Section */
.hero {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  background-image: url('../images/backgroud.webp'); /* Replace with actual background */
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #ff9800;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.cta-button:hover {
  background-color: #e67e00;
}

/* Services Section */
.services {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
}

.service-box {
  background-color: #f4f4f4;
  border: 1px solid #e0e0e0;
  padding: 20px;
  width: 30%;
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  color: #666;
}

/* About Us Section */
.about {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}
/* Contact Page Styles */
.contact-page {
  text-align: center;
  padding: 50px 20px;
}

.contact-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-page p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info p {
  font-size: 20px;
}

.contact-info a {
  color: #ff9800;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #ff9800;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.cta-button:hover {
  background-color: #e67e00;
}
/* About Page Styles */
.about-page {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f4f4;
  color: #333;
}

.about-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-page p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Services Page Styles */
.services-page {
  padding: 50px 20px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.services-page h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.service-box {
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

.service-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}
.error-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}