/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
.top-bar {
  background: #004d40;
  color: #fff;
  padding: 0.5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn {
  background: #ffcc00;
  color: #000;
  padding: 0.4em 0.8em;
  text-decoration: none;
  border-radius: 4px;
}
.hero {
  background: #e0f2f1;
  text-align: center;
  padding: 2em 1em;
}
.hero h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* Sections */
section {
  padding: 2em 1em;
  max-width: 1000px;
  margin: auto;
}
.intro p {
  margin-top: 0.5em;
}

/* Services */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.service-card {
  background: #fff;
  padding: 1em;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  box-white: 0 0 5px rgba(0,0,0,0.1);
}
.service-card h3 {
  margin-bottom: 0.5em;
}
.service-card ul {
  list-style: disc;
  margin-left: 1em;
}

/* FAQ */
.faq details {
  margin-bottom: 1em;
}/* Section 5: Testimonials */
.testimonials {
  background-color: #6a040f; /* rich crimson background */
  color: #f5ebe0;
  padding: 4em 1em;
  text-align: center;
}
.section-title {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #ffba08;
}
.section-title i {
  color: #e85d04;
  margin-right: 0.5em;
}
.subheading {
  font-size: 1.1em;
  margin-bottom: 2em;
  color: #faa307;
}
.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.testimonial-card {
  background-color: #370617;
  border: 2px solid #d00000;
  border-radius: 8px;
  padding: 1.5em;
  flex: 1 1 300px;
  color: #f5ebe0;
}
.quote {
  font-style: italic;
  margin-bottom: 1em;
}
.client {
  font-weight: 600;
  color: #faa307;
}
.cta-btn {
  background-color: #d00000;
  color: #fff;
  padding: 0.8em 1.5em;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.cta-btn:hover {
  background-color: #dc2f02;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    
    gap: 1.5em;
  }
}

/* Contact */
.contact form {
  display: flex;
  flex-direction:
  gap: 1em;
}
.contact input,
.contact textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact button {
  background: #004d40;
  color: #fff;
  padding: 0.8em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1em;
}

/* Header */
.site-header {
  background-color: #004d40;
  color: #fff;
  padding: 1em 0;
}
.header-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1em;
}
.logo img {
  height: 50px;
}
.logo h1 {
  font-size: 1.5em;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1em;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.contact-info {
  text-align: right;
}
.contact-info p {
  font-size: 0.9em;
}
.contact-info i {
  margin-right: 0.5em;
}

/* Hero Section */
.hero {
  background-image: url('https://i.ibb.co/d0KbrRKz/yes.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: #fff;
  padding: 2em;
}
.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.cta-btn {
  background-color: #ffcc00;
  color: #000;
  padding: 0.8em 1.5em;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
}
