.design-section {
  padding: 120px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.design-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.text-block {
  flex: 1 1 50%;
  max-width: 550px;
}

.text-block h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 40px;
  /* line-height: 60px; */
}

.text-block .highlight {
  color: #779363;
}

.text-block p {
  font-size: 16px;
  color: #444;
  line-height: 2;
  margin-top: 20px;
  text-align: justify;
}

.image-block {
  flex: 1 1 40%;
  text-align: right;
}

.image-block img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

@media screen and (max-width: 768px) {
  .design-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .text-block, .image-block {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .text-block h2 {
    font-size: 30px;
  }
}
.design-services {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.design-services h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 10px;
}

.design-services .subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #779363;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .design-services h2 {
        font-size: 30px;
    }
}

.why-choose-us {
  background-color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-choose-us .subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card .icon {
  font-size: 40px;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #779363;
}

/* .icon.blue { background-color: #2563eb; }
.icon.green { background-color: #10b981; }
.icon.purple { background-color: #8b5cf6; }
.icon.orange { background-color: #f97316; } */

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 30px;
    }
}

.testimonials {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.testimonials h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonials .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 30px;
    }
}

.cta-section {
  /* background: linear-gradient(to right, #2563eb, #7c3aed); */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 30px;
    }
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
  border: 2px solid transparent; 
}

.btn.secondary {
  background-color: #779363;
  color: #fff;
  border: 2px solid transparent; 
}

.btn.secondary:hover {
  background-color: #9fc883;
}



@media (min-width: 500px) {
  .divider {
    display: inline;
  }
}

/* about page css */

.pillars-alternate-layout {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

.pillars-title {
  text-align: center;
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.pillar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.pillar-row.reverse {
  flex-direction: row-reverse;
}

.pillar-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.pillar-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}

.pillar-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.pillar-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.pillar-image img {
  max-width: 70%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .pillar-row,
  .pillar-row.reverse {
    flex-direction: column;
  }
  .pillar-image,
  .pillar-text {
    padding: 10px;
  }
  .pillars-title {
    font-size: 35px;
  }
}

.cta-clean {
  padding: 20px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.cta-clean h2 {
  font-size: 55px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.cta-clean p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 80px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #f5f5f5;
  color: #111;
  border: 2px solid transparent;
}

.primary-btn:hover {
  background-color: #779363;
}

.secondary-btn {
  background-color: #fff;
  color: #779363;
  border: 2px solid #779363;
}

.secondary-btn:hover {
  background-color: #779363;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-clean h2 {
    font-size: 30px;
  }
}