
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px;
}
.logo img {
  width: 220px;
  height: auto;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #b8860b;
}
.hero {
  background: url('https://ucarecdn.com/269b90ab-84c5-4f84-9d3b-1f1cfeac4351/-/format/auto/-/preview/800x600/') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 2s ease-in;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.btn {
  padding: 10px 20px;
  background-color: #b8860b;
  color: #fff;
  border: none;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #e64a19;
}
.services, .about, .contact {
  padding: 60px 20px;
  text-align: center;
  animation: fadeUp 1.5s ease-in-out;
}
.services h2, .about h2, .contact h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}
.services ul {
  list-style: none;
  padding: 0;
  position: relative;
  height: 140px;
  overflow: hidden;
}

.services li {
  font-size: 1.1em;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease, transform 1s ease;
}

.services li.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.services li.exit-left {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 0;
}

.chat-popup {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 300px;
  background-color: #333;
  border: 1px solid #ccc;
  padding: 20px;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
}
.chat-popup input, .chat-popup textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #888;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  background-color: #f4f4f4;
}
.chat-popup button {
  width: 100%;
  padding: 12px;
  background-color: #b8860b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  border-radius: 5px;
}
.chat-btn {
  background-color: #b8860b;
  color: white;
  padding: 12px;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  border-radius: 5px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}