@charset "utf-8";
/* CSS Document */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Change fade-up duration default */
[data-aos="fade-up"] {
    transition-duration: 1200ms !important;
}

/* Change easing */
[data-aos] {
    transition-timing-function: ease-out !important;
}


.top-background {
    position: fixed;   /* stays in place even on scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;     /* adjust height as needed */
    background: url('images/top-background.jpg') center/cover no-repeat;
    z-index: -1;       /* behind everything */
}


section {
  padding: 80px 20px;
  text-align: center;
}

.hero {
	position: relative;
  padding: 80px 20px;
  text-align: center;
  color: white;

  /* Background image */
  background: url('images/top-background.jpg') center top / cover no-repeat;
  background: #333;
  color: #fff;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  flex: 0 1 300px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.portfolio-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
}

.contact button {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

#formMessage {
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
    font-weight: bold;
}

#formMessage.success {
    background-color: #d4edda;
    border: 1px solid #4CAF50;
    color: #155724;
}

#formMessage.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

