body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #222;
}

header {
  /* background-color: #57a0f3; */
  background-color: rgb(26, 24, 24);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  align-items: center;
  align-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 5rem 2rem;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1581093588401-8450f6b7f91b') center/cover no-repeat;
  color: rgb(25, 27, 27);
  animation: fadeIn 2s ease-in;
  transition: all ease-in-out 1s;
}
#home{
  margin-top: 30px;
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
}

section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
  background-color: white;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all ease-in-out 1s;
}
#faq{
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
  margin-top: 50px;
  transition: all ease-in-out 1s;
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
#testimonials{
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
  margin-top: 50px;
transition: all ease-in-out 1s;}
  #about{
    box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
    margin-top: 50px;
    transition: all ease-in-out 1s;}
#services{
      box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
      margin-top: 50px;
      transition: all ease-in-out 1s;}
form button {
  background-color: #1b5e20;
  color: white;
  padding: 0.8rem;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #2a2b2c;
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
/* gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

#appointment form {
  display: block;
  justify-content: center;
  text-align: center;
  gap: .75rem;
  max-width: 600px;
  padding-left: 80px;
}
#appointment{
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
  margin-top: 50px;
  transition: all ease-in-out 1s;
}
#appointment:hover{
  scale: 1.04;
  text-align: center;
  justify-content:center ;
}
#appointment h2{
  text-align: center;
}
#appointment label {
  display: grid;
  flex-direction: column;
  font-weight: 600;
  
}
#appointment input,
#appointment textarea,
#appointment button {
  padding: .5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#appointment button {
  margin-top: 30px;
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}
#contact{
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
  margin-top: 50px;
  transition: all ease-in-out 1s;}
#gallery{
  box-shadow: 2px 3px 21px 3px rgb(129, 129, 129);
  margin-top: 50px;
  transition: all ease-in-out 1s;}
