@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@600&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header, nav, footer {
  font-family: 'Poppins', sans-serif;
}

/* Navigation */
nav {
  background: #333;
  display: flex;
  justify-content: center;
}
nav a {
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s;
}
nav a:hover {
  background: #c1440e;
}

/* Hero Section */
.hero {
  background: url('FB1fggFbW1pez97PQGLYt.jpeg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 2rem;
  text-align: center;
  color: white;
  border-radius: 8px;
}
.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  font-size: 1.2rem;
}
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #c1440e;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #a6360b;
}

/* Highlights (Trust Badges) */
.highlights {
  display: flex;
  justify-content: space-around;
  background: #f4f4f4;
  padding: 1rem;
  font-weight: bold;
  flex-wrap: wrap;
}
.highlight {
  flex: 1;
  text-align: center;
  margin: 0.5rem 0;
}

/* Containers */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* Services */
.services {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.service {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.service h3 {
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials blockquote {
  background: #fff;
  border-left: 4px solid #c1440e;
  margin: 1rem 0;
  padding: 1rem;
  font-style: italic;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Call-to-Action Band */
.cta-band {
  background: #c1440e;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
.cta-band p {
  font-size: 1.2rem;
  margin: 0;
}
.cta-band .cta-btn {
  margin-top: 1rem;
  display: inline-block;
}

/* Gallery (Portfolio Page) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
button {
  background: #c1440e;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
button:hover {
  background: #a6360b;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .services {
    flex-direction: column;
  }
  .highlights {
    flex-direction: column;
    text-align: center;
  }
}
