
.seo-process-section {
  padding: 0px 20px;
  background: #000;

}

.seo-process-container {
  max-width: 1200px;
  margin: auto;
}

.seo-process-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.seo-process-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #fff;
  line-height: 1.6;
}

.seo-process-layout {
  display: flex;
  gap: 30px;
}

/* Tabs */
.seo-process-tabs {
  width: 300px;
  background: #f5f7f9;
  border-radius: 20px;
  padding: 25px;
}

.seo-tab-btn {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 8px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.seo-tab-btn:hover {
  background: #e8ecef;
}

.seo-tab-btn.active {
  background: #1163fb;
  color: #ffffff;
  font-weight: 600;
}

/* Content */
.seo-process-content-wrapper {
  flex: 1;
  background: #1163fb;
  color: #ffffff;
  border-radius: 25px;
  padding: 50px;
}

.seo-tab-content {
  display: none;
}

.seo-tab-content.active {
  display: block;
}

.seo-tab-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.seo-tab-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
}

.seo-process-btn {
  display: inline-block;
  background: #ffb703;
  color: #000;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .seo-process-layout {
    flex-direction: column;
  }

  .seo-process-tabs {
    width: 83%;
  }
}

@media (max-width: 576px) {
  .seo-process-content-wrapper {
    padding: 30px;
  }

  .seo-tab-content h3 {
    font-size: 22px;
  }
}