body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}
nav {
  background: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
nav .logo {
  height: 30px;
  margin-right: 15px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.welcome {
  width: 100%;
  height: 100vh;
  background: url('welcome.jpg') center/cover no-repeat; background-size: 120%; animation: zoomOut 4s forwards;
  
}

  to { background-size: 100%; }
}
.hero-header {
  width: 100%;
  height: 100vh;
  
}
.section-content {
  max-width: 800px;
  margin: 40px auto;
  line-height: 1.6;
  padding: 0 20px;
}
footer .disclaimer {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 40px;
  text-align: center;
}
.services-page {
  background: #000 url('logo.png') center/150px no-repeat fixed;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}
.card {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(255,255,255,0.1);
}
.contact-form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
.contact-form button {
  padding: 10px 20px;
  background: #2980b9;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
@keyframes zoomOut {
  from { background-size: 120%; }
  to { background-size: 60%; }
}

.home-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 40px 20px;
}
.home-text {
  flex: 1 1 400px;
  color: #fff;
  padding: 20px;
}
.home-image {
  flex: 1 1 400px;
  text-align: center;
}
.home-image img {
  max-width: 100%;
  border-radius: 8px;
}

body {
  font-size: 18px;
  font-family: 'Arial', sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
