body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: #f9fafb;
  color: #1f2937;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.header-inner img{
  width: 7%;
} 



.accent {
  color: #EDC967;
}
.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1f2937;
}
.quote-button {
  background: #EDC967;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
}
.hero {
  background: url('Banner.jpg')
   center/cover no-repeat;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6rem 1rem;
  text-align: center;
}
.hero-content h2 {
  color: white;
  font-size: 2.5rem;
}
.hero-content p {
  color: #e5e7eb;
  max-width: 600px;
  margin: 1rem auto;
}
.get-started {
  background: #EDC967;
  color: black;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
}
.section {
  padding: 1rem 1rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.grid {
  display: grid;
  gap: 2rem;
  padding: 0;
}
.grid.icons {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}
.card {
  background: white;
  padding: 1rem;
  height: 180px;
  width: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}
.card h4 {
  font-size: 1.2rem;     /* 20px */
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.75rem;
}

.card p {
  font-size: 1rem;         /* 16px */
  font-weight: 400;
  line-height: 1.6;
}

.light-bg {
  background: #f3f4f6;
}
.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-container {
  max-width: 600px;
}
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: block;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
.contact-form button {
  background: #EDC967;
  color: black;
  padding: 0.75rem;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
}
.footer {
  background: #1f2937;
  color: #e5e7eb;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}


@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#form-success{
  color: green;
  font-size:20px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header-inner img{
  width: 15%;
  margin-left: 10px;
    } 
    .nav a {
  margin-left: 1.5rem;
  font-size: 13px;
  text-decoration: none;
  color: #1f2937;
  }
  .quote-button {
 
  padding:5px;
  margin-right: 7px;
  font-size: 10px;
}
}