/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 0;
  border-bottom: #1b1b1b 3px solid;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-left: 20px;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

header nav ul li a:hover {
  color: #eaeaea;
  border-bottom-color: #eaeaea;
}

.showcase {
  background: url(https://img0.baidu.com/it/u=3904114639,1160779321&fm=253&fmt=auto&app=138&f=JPEG?w=499&h=208) no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.showcase-content {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.showcase h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.showcase p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

.showcase .btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 1.2em;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.showcase .btn:hover {
  background-color: #555;
}

.info {
  padding: 50px 0;
  background: #f4f4f4;
  text-align: center;
  animation: fadeInLeft 1s ease;
}

.info h2 {
  margin-bottom: 20px;
}

.services {
  padding: 50px 0;
  background: #fff;
  text-align: center;
  animation: fadeInRight 1s ease;
}

.services h2 {
  margin-bottom: 20px;
}

.service {
  display: inline-block;
  width: calc(100% / 3);
  padding: 20px;
  box-sizing: border-box;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
}

.service i {
  display: block;
  font-size: 4em;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.service p {
  font-size: 1.1em;
  text-align: justify;
}

.contact {
  background: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.contact h2 {
  margin-bottom: 20px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
