body {
font-family: Arial, sans-serif;
margin: 0;
background: #f4f4f4;
}

.header {
position: relative;
background: #000;
color: #fff;
padding: 20px;
text-align: center;
}

.logo {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
width: 140px;
}

nav {
background: #2e7d32;
text-align: center;
padding: 10px;
}

nav a {
color: white;
margin: 0 10px;
text-decoration: none;
font-weight: bold;
}

section {
padding: 20px;
}


.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 10px;
}

.gallery img {
width: 100%;
border-radius: 8px;
}

.contact-buttons {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-top: 20px;
}

.btn {
padding: 12px 18px;
text-decoration: none;
color: white;
font-weight: bold;
border-radius: 8px;
}

.call-btn { background: #d32f2f; }
.whatsapp-btn { background: #25D366; }
.email-btn { background: #1976d2; }

.pricing-note {
background: #fff;
padding: 20px;
margin: 20px;
border-left: 6px solid #2e7d32;
border-radius: 8px;
text-align: center;
}

footer {
background: #000;
color: #fff;
text-align: center;
padding: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

.logo {
position: static;
transform: none;
display: block;
margin: 0 auto 10px;
width: 100px;
}

.header {
text-align: center;
}

nav a {
display: inline-block;
margin: 5px;
}

.gallery {
grid-template-columns: 1fr;
}

}

.services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.services-text {
  flex: 1;
  min-width: 280px;
}

.services-video {
  flex: 1;
  min-width: 280px;
}

.services-video video {
  width: 50%;
  border-radius: 10px;
}

.reviews-container {
  max-width: 600px;
  margin: auto;
}

.stars span {
  font-size: 25px;
  cursor: pointer;
  color: gray;
}

.stars span.active {
  color: gold;
}

.services-container {
  padding: 50px 20px;
  background: #ffffff; /* white background */
  color: #fffff;
}

.services-title {
  text-align: center;
  margin-bottom: 30px;
  color: #00c853; /* green accent */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  align-items: center;
  background: #1c1c1c;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.service-card img {
  width: 130px;
  height: 200px;
  object-fit: cover;
}

.service-text {
  padding: 15px;
}

.service-text h3 {
  margin: 0;
  color: #00e676;
}

.service-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}

.review {
  border-bottom: 1px solid #ccc;
  margin-top: 10px;
}
