/* style.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.btn-secondary {
  background-color: #e91c1c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}


.hero-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.3;
}

.highlight {
  color: #e91c1c;
}

.btn-primary {
  background-color: #e91c1c;
  color: white;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.services-strip {
  background-color: #1e1e1e;
  padding: 40px 0;
  color: #fff;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
}

.service-box {
  flex: 1 1 200px;
  margin: 10px 20px;
}

.service-box img {
  margin-bottom: 10px;
}
.solution-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.solution-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.solution-card {
  width: 300px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}
.cta-estimate {
  background: #fcb900;
  padding: 40px 20px;
  text-align: center;
}

.estimate-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.estimate-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.estimate-form input {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  width: 200px;
}

.estimate-form button {
  background-color: #222;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.profit-section {
  background-color: #fff;
  padding: 60px 0;
}

.profit-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.profit-text {
  max-width: 50%;
}

.profit-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.profit-text ul {
  list-style-type: square;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.profit-img img {
  max-width: 100%;
  border-radius: 8px;
}
.testimonial-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-card {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.client-info {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.pricing-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pricing-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 1.25rem;
  font-weight: bold;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card li {
  padding: 5px 0;
}

.pricing-card button {
  background-color: #e91c1c;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

.pricing-card.featured {
  border: 2px solid #e91c1c;
}
