/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  background-color: solid white;
  color: Blue;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline;
  margin-left: 20px;
}

.nav-links a {
  color: Blue;
  text-decoration: none;
  font-weight: bold;
}

.btn-quote {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Logo Styling */
.logo img {
  max-height: 120px; /* Adjust height as needed */
  width: auto;      /* Maintain aspect ratio */
  display: block;
}

/* Hero Section with Background Image */
.hero {
  background: url('assets/img/home.jpg') no-repeat center center/cover;
  height: 500px; /* Adjust the height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: blue;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Services Section */
.services {
  padding: 40px;
  text-align: center;
}

.service-items {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.service-item {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 30%;
}

/* About Section */
.about {
  background-color: #ddd;
  padding: 40px;
  text-align: center;
}
.about p {
  margin-bottom: 15px; /* Adjust the value as needed */
}

/* Testimonials Section */
.testimonials {
  padding: 40px;
  background-color: #2b6777;
  color: white;
}

.testimonial-items {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.testimonial-item {
  width: 45%;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 40px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #1b4d55;
  color: white;
  text-align: center;
  padding: 10px;
}
/* Quote Form Section */
.quote-section {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.quote-section h1 {
  margin-bottom: 20px;
}

.quote-form {
  display: flex;
  flex-direction: column;
}

.quote-form label {
  text-align: left;
  margin-top: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.btn-submit {
  margin-top: 20px;
  padding: 10px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #469d88;
}
/* Header Logo and Home Link for quote*/
.navbar {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: white;
  color: blue;
  justify-content: space-between;
}

.logo img {
  max-height: 80px; /* Adjust as needed */
  width: auto;
}

.home-link {
  color: blue;
  text-decoration: none;
  font-weight: bold;
  margin-left: auto; /* Pushes the link to the far right */
}

.home-link:hover {
  text-decoration: underline;
}

