/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
  background: #f7f7f7;
  color: #0b0f19;
}
.walink:hover  {
  color: #128C7E; /* Darker green on hover */
  transform: scale(1.1);
}
/* ================= HEADER ================= */
header {
  background: #0b0f19;
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sitefix-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: flex;
}

.sitefix-logo span {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.6s ease forwards;
}

.sitefix-logo .site {
  color: #fff;
  animation-delay: 0.05s;
}

.sitefix-logo .fix {
  color: #ff3b8d;
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: #cfd6e1;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.6px;
}

nav a:hover {
  color: #00d084;
}

/* ================= HERO ================= */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(11,15,25,0.95) 0%,
      rgba(11,15,25,0.85) 35%,
      rgba(11,15,25,0.4) 60%,
      rgba(11,15,25,0.0) 100%
    ),
    url("../img/banner.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero-content {
  max-width: 560px;
  padding-left: 120px;
}

.main-heading {
  font-size: 44px;
  font-weight: 800;
  color: #eee;
  margin-bottom: 18px;
}

.error-text-slider {
  height: 32px;
  overflow: hidden;
  margin-bottom: 28px;
}

.error-slide {
  display: none;
  font-size: 22px;
  font-weight: 600;
  color: #ff4dff;
}

.error-slide.active {
  display: block;
  animation: slideFade 0.6s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #00d084;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.btn:hover {
  background: #00b070;
}

/* ================= STATS ================= */
.stats {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  padding: 50px 40px;
  text-align: center;
}

.stat-box h2 {
  font-size: 36px;
  color: #00d084;
}

.stat-box p {
  font-size: 14px;
}

/* ================= PROBLEMS ================= */
.problems {
  padding: 70px 40px;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.problem-card {
  background: #00d084;
  padding: 24px 22px;
  border-radius: 14px;
  color: #0b0f19;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

/* Card Title */
.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* UL reset + clean start */
.problem-card ul {
  list-style: disc;
  padding-left: 18px;     /* aligns bullets nicely */
  margin: 0;              /* remove default browser gap */
}

/* LI spacing & alignment */
.problem-card ul li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 4px;      /* text spacing from bullet */
}

/* Remove last gap */
.problem-card ul li:last-child {
  margin-bottom: 0;
}


/* ================= HOW IT WORKS ================= */
.how-it-works {
  background: #f7f7f7;
  padding: 80px 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.step span {
  font-size: 22px;
  font-weight: 800;
  color: #00d084;
}

/* ================= FIX LIST ================= */
.fix-list {
  background: #fff;
  padding: 80px 60px;
}

.fix-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 14px;
}

.fix-grid li {
  background: #f3fdf8;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}

/* ================= WHY US ================= */
.why-sitefix {
  padding: 80px 60px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 16px;
}

.why-grid div {
  background: #f7f7f7;
  padding: 16px;
  border-radius: 8px;
}

/* ================= FOOTER ================= */
footer {
  background: #0b0f19;
  color: #aaa;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-right {
  display: flex;
  gap: 20px;
}

.mailink {
  color: #aaa;
  text-decoration: none;
}

.mailink:hover {
  color: #fff;
}

.walink {
  color: #25D366;
  border: 1px solid #25D366;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
}

/* ================= FOOTER LEGAL ================= */
.footer-main__legal ul {
  list-style: none;
  display: flex;
  gap: 26px;
}

.footer-main__legal a {
  color: #9aa3b2;
  font-size: 13px;
  text-decoration: none;
}

.footer-main__legal a:hover {
  color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

 .hero {
    min-height: auto;
    padding: 120px 20px 60px;
    background:
      linear-gradient(
        rgba(11,15,25,0.92),
        rgba(11,15,25,0.92)
      ),
      url("../img/banner.png");
    background-position: center top;
    background-size: 100%;
    text-align: center;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .main-heading {
    font-size: 30px;
  }

  .error-slide {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
  }

  .footer-main__legal ul {
    flex-direction: column;
    gap: 12px;
  }
}
/* ================= TEAM ================= */
.team {
  background: #f7f7f7;
  padding: 80px 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.team-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #00d084;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #00d084;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .team {
    padding: 60px 20px;
  }
}
/* ================= SEO INTRO ================= */
.seo-intro {
  background: #ffffff;
  padding: 70px 20px;
  border-top: 1px solid #e6eaf0;
}

.seo-intro h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 28px;
  font-weight: 800;
  color: #0b0f19;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ================= SEO INTRO TEXT ENHANCEMENT ================= */
.seo-intro p {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #374151; /* softer than pure black */
  text-align: center;
  font-weight: 400;
}

/* Emphasize first paragraph slightly */
.seo-intro p:first-of-type {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
}

/* Add subtle spacing between paragraphs */
.seo-intro p + p {
  margin-top: 12px;
}

/* Optional: highlight key phrase (auto, no HTML change) */
.seo-intro p:first-of-type::before {
  content: "✔ ";
  color: #00d084;
  font-weight: 700;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .seo-intro p {
    font-size: 15.5px;
    line-height: 1.7;
    padding: 0 10px;
  }

  .seo-intro p:first-of-type {
    font-size: 16.5px;
  }
}


/* subtle divider */
.seo-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00d084;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .seo-intro h2 {
    font-size: 22px;
  }

  .seo-intro p {
    font-size: 15px;
  }
}
.stat-box h2 {
  position: relative;
}

/* + sign */
.stat-box:nth-child(1) h2::after,
.stat-box:nth-child(4) h2::after {
  content: "+";
  font-size: 36px;
}

/* % sign */
.stat-box:nth-child(3) h2::after {
  content: "%";
  font-size: 36px;
}

/* 24/7 text */
.stat-box:nth-child(2) h2::after {
  content: "/7";
  font-size: 36px;
}
/* ===== TEAM ONE-BY-ONE SLIDER ===== */

.team-auto-slider {
  display: flex;
  overflow: hidden;
}

.team-auto-slider .team-card {
  flex: 0 0 33.333%;
}

/* Mobile = 1 card */
@media (max-width: 768px) {
  .team-auto-slider .team-card {
    flex: 0 0 100%;
  }
}
