/* Reset default margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply default font styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Styling for the header section */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between; /* Positions logo and buttons at the ends */
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  vertical-align: middle;
}

.logo h1 {
  display: inline-block;
  vertical-align: middle;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center; /* Aligns the links vertically center */
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* Styling for the hero section */
.hero {
  background-image: url('hero-background.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #FF5733;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #FF874B;
}

/* Styling for the about section */
.about {
  background-color: #f5f5f5;
  padding: 5rem 0;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Styling for the services section */
.services {
  padding: 5rem 0;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

/* Styling for the contact section */
.contact {
  background-color: #f5f5f5;
  padding: 5rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form .btn {
  background-color: #FF5733;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form .btn:hover {
  background-color: #FF874B;
}

/* Styling for the footer section */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

footer p {
  font-size: 1rem;
}

hero-text{
	color: #fff;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }

  .nav-links li {
    margin-left: 0;
    margin-bottom: 10px;
  }
}