/* ------------------ Hero Section ------------------ */
.repairing-hero {
  background: linear-gradient(to right, #a8edea, #fed6e3);
  text-align: center;
  padding: 6rem 2rem;
  color: #014d34;
}

.repairing-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.repairing-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------ Service Grid ------------------ */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.repair-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.repair-card:hover {
  transform: translateY(-6px);
}

.repair-card .icon {
  font-size: 2.5rem;
  color: #009b63;
  margin-bottom: 1rem;
}

/* ------------------ Call To Action ------------------ */
.cta {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #e6fff3;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #014d34;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #009b63;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #007a50;
}

/* ------------------ PDF Download Section ------------------ */
.pdf-downloads h2 {
  font-size: 2.5rem;          /* Large readable size */
  font-weight: 700;           /* Bold */
  color: #1a1a1a;             /* Dark gray/black */
  text-align: center;         /* Center align */
  margin-bottom: 2rem;        /* Space below */
  position: relative;
}

.pdf-downloads h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #00aaff;  /* Accent color */
  margin: 0.75rem auto 0;     /* Spacing around line */
  border-radius: 2px;
}

.pdf-scroll-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 2rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #009b63 #f0f0f0;
}

.pdf-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.pdf-scroll-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.pdf-scroll-container::-webkit-scrollbar-thumb {
  background-color: #009b63;
  border-radius: 10px;
}

.pdf-box {
  flex: 0 0 auto;
  width: 230px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.pdf-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.pdf-box h4 {
  font-size: 1rem;
  margin: 0.8rem 0 0.4rem;
  color: #014d34;
  padding: 0 0.5rem;
}

.pdf-box p {
  font-size: 0.9rem;
  color: #555;
  padding: 0 0.8rem 1rem;
  line-height: 1.3;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 500px) {
  .pdf-box {
    width: 180px;
  }

  .pdf-box img {
    height: 120px;
  }

  .pdf-box h4 {
    font-size: 0.95rem;
  }

  .pdf-box p {
    font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  .pdf-scroll-container {
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
}
