/* General resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header and Navigation */
header {
  background-color: #333;
  padding: 10px 0;
}

header nav ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  color: #ddd;
}

/* Hero Section */
.hero-section {
  text-align: center;
  position: relative;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-top: 20px;
}

.hero-section p {
  font-size: 1.2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-image .overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

/* Image Grid Section */
.image-container {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.image-container img {
  width: 30%;
  height: auto;
  cursor: pointer;
}

/* Full Width Image Section */
#full-width-images img {
  width: 100%;
  margin: 10px 0;
}

.full-image {
	width: 100%;
	margin: 10px 0;
}

/* Service Buttons */
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
}

.service-buttons button {
  margin: 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.service-buttons button:hover {
  background-color: #45a049;
}

/* Testimonials */
.testimonial-carousel {
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot:hover {
  background-color: #717171;
}

.testimonial h3 {
  font-size: 1.5rem;
  margin-top: 10px;
}

.testimonial p {
  font-size: 1.2rem;
  color: #777;
}

/* Contact Us Section */
form {
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
}

form button {
  padding: 10px