/* Header */
.header {
  position: relative;
  height: 100vh;
  background: url('/bgimage2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.header-content {
  z-index: 1;
}

.header h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.header p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.scroll-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.scroll-btn:hover {
  background: #fff;
  color: #cdcdcd;
}

/* Sections */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

/* Parallax Effect */
.about,
.services,
.contact {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
  color: #cdcdcd;
}

/* Service Cards */
.service-card {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  text-decoration: none;
  color: #fff;
  background: #333;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #cdcdcd;
}
