
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
}

header {
  text-align: center;
  background-color: #111;
  padding-bottom: 10px;
}

.banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.logo {
  width: 120px;
  margin: 10px auto;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background-color: #222;
  padding: 10px 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff9900;
}

.section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.home {
  text-align: center;
  background: #f8f9fa;
}

.home h1 {
  font-size: 2.5rem;
  color: #333;
}

.home p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #666;
}

.gallery h2,
.about h2,
.services h2,
.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.services ul {
  list-style: disc inside;
  padding: 0 20px;
  color: #444;
}

.contact p,
.contact a {
  margin-bottom: 10px;
  display: block;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

input,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background-color: #ff9900;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

button:hover {
  background-color: #e88c00;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
}

.whatsapp-float img {
  width: 100%;
}
