body {
  font-family: 'Poppins', sans-serif;
  background: #f5f6f8;
  margin: 0;
}



/* ================= HEADER ================= */
/*.header {*/
/*    height: 80px;*/
/*    background: var(--light-color);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding: 0 20px;*/
/*}*/

/*.header img {*/
/*    max-height: 70px;*/
/*}*/






.services {
  text-align: center;
  padding: 80px 40px;
}

.services h2 {
  font-size: 30px;
}

.sub {
  color: #666;
  margin-bottom: 40px;
}

/* SLIDER */
.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

/* PAGE */
.slide-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* CARD */
.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  text-align: left;
  height: 160px;
  display: flex;
  transform: translateY(-8px);
  border-color: #4b1d6b;
  flex-direction: column;
  justify-content: center;
}

.icon {
  background: #4b1d6b;
  color: white;
  width: 60px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* DOTS */
.dots {
  margin-top: 20px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #4b1d6b;
}


/* CARD HOVER EFFECT */
.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  text-align: left;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #4b1d6b;
  background-color: lightblue;
}

/* ICON HOVER */
/* .card:hover .icon {
  background: #6d28d9;
} */


/* des box text */
#content_write {
    margin-top: -15px;
    font-size: 14px;
    color: #666;    
}





/**************************************************************************/
/* SECTION */
.seo-section {
  text-align: center;
  padding: 80px 20px;
  color: white;

  background: linear-gradient(180deg, #4c1d95, #6d28d9);
}

/* HEADING */
.seo-section h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* AVATARS */
.avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid white;
}

/* CARDS */
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.card_seo {
  background: #f3f4f6;
  color: #333;
  width: 220px;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  transition: 0.3s;
}

/* HOVER */
.card_seo:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ICON */
.icon {
  font-size: 22px;
  margin-bottom: 10px;
}

/* BUTTON */
.cta-btn {
  margin-top: 40px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  background: #ddd6fe;
  color: #4c1d95;
  font-weight: 500;
  cursor: pointer;
}

.cta-btn:hover {
  background: white;
}



/****************************************************************************************************************************/

/* SECTION */
.why-section {
  text-align: center;
  padding: 80px 20px;
}

/* HEADING */
.why-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
  max-width: 700px;
  margin: auto;
  color: #555;
  margin-bottom: 60px;
}

/* FEATURES ROW */
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* FEATURE CARD */
.feature {
  width: 180px;
}

/* ICON */
.icon_rank {
  font-size: 60px;
  margin-bottom: 10px;
}

/* TITLE */
.feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* TEXT */
.feature p {
  font-size: 14px;
  color: #666;
}






/*****************************************************  happy client **************************************************************/
/* SECTION */
.best-section {
  text-align: center;
  padding: 80px 20px;
}

/* HEADING */
.best-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle_client {
  max-width: 750px;
  margin: auto;
  color: #555;
  margin-bottom: 50px;
}

/* CARDS */
.cards_client {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.card_client {
  width: 220px;
  background: #f3f4f6;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

/* HOVER */
.card_client:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.icon_client {
  font-size: 24px;
  margin-bottom: 10px;
}

/* BUTTON */
.btn-box_client {
  margin: 40px 0;
}

.cta_client {
  background: #4b1d6b;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.cta_client span {
  margin-left: 10px;
}

/* STATS */
.stats_client {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stats_client h3 {
  color: #a21caf;
  font-size: 32px;
  margin-bottom: 5px;
}

.stats_client p {
  color: #555;
}

/************************************************************ form section **********************************************************/

/* SECTION */
.form-section {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

/* TITLE */
.form-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

/* FORM */
.form {
  width: 100%;
}

/* ROW */
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

/* INPUT STYLE (underline like original) */
input, select, textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px;
  font-size: 14px;
  background: transparent;
  outline: none;
}

/* TEXTAREA */
textarea {
  margin-top: 20px;
  height: 80px;
  resize: none;
}

/* BUTTON */
button {
  margin-top: 40px;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  background: #4b1d6b;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #6d28d9;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

/* FAQ */
/* SECTION */
.faq-section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  text-align: center;
}

/* LAYOUT */
.faq-container {
  display: flex;
  gap: 40px;
}

.faq-column {
  flex: 1;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: purple;
}

/* ANSWER */
.faq-answer {
  display: none;
  margin-top: 10px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
}


/* WRAPPER */
.cta-wrapper {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* BOX */
.cta-box {
  max-width: 900px;
  width: 100%;
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  color: white;

  background: linear-gradient(135deg, #4c1d95, #7e22ce);

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* AVATARS */
.avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
}

/* HEADING */
.cta-box h2 {
  font-size: 32px;
  font-weight: 600;
}

.cta-box span {
  color: #fbcfe8;
}

/* TEXT */
.cta-box p {
  max-width: 600px;
  margin: 20px auto;
  color: #e9d5ff;
}

/* BUTTON */
.cta-box button {
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  background: #e9d5ff;
  color: #4c1d95;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.cta-box button:hover {
  background: white;
}