

/* Hero */

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.hero .text {
  flex: 1;
}
.hero .text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.hero .text p {
  font-size: 1rem;
  line-height: 1.6;
}
.hero .image {
  flex: 1;
  text-align: center;
}
.hero .image img {
  width: 100%;
  /* max-width: 200%; */
  border-radius: 8px;
}
.about-text {
  flex: 1 1 50%;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f7f7f7;
}
.about-text p {
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 15px;
  line-height: 1.6;
}
/* What We Do */
.what-we-do {
  /* background-color: #f0f2f5; */
  padding: 60px 0;
}
.what-we-do h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-card {
  background: #ffffff3b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.service-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}
.service-card p {
  color: #ffffff;
  line-height: 1.6;
}
/* Work Approach */
.work-approach {
  /* background-color: #ffffff; */
  padding: 60px 0;
}
.work-approach h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}
.step {
  background: #f9fafb1c;
  padding: 20px;
  border-left: 4px solid #fd0edd;
  border-radius: 8px;
}
.step h3 {
  margin-bottom: 10px;
}
/* workprocess */
.process-section {
  padding: 60px 20px;
  /* background: #f9f9f9; */
  font-family: 'Segoe UI', sans-serif;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.process-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.process-card {
  background: #fff;
  padding: 25px;
  border-left: 5px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.process-card h3 {
  margin-top: 0;
  color: #1e40af;
}

.process-card p {
  font-weight: bold;
  margin-bottom: 10px;
}

.process-card ul {
  margin: 0;
  padding-left: 20px;
  color: #555;
}

@media (min-width: 768px) {
  .process-container {
    grid-template-columns: 1fr 1fr;
  }
}



@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero .image, .hero .text {
    flex: unset;
  }
}