/* Documentation downloads section starts */
#documentation-downloads {
  min-height: calc(100vh - 79px);
  background-color: #f8f9fa;
}

#documentation-downloads h1 {
  color: #111827;
  font-weight: 700;
  margin-bottom: 12px;
}

.documentation-subtitle {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 0;
}

.document-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.document-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 8px;
  background-color: #7b1117;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0;
}

.document-card h3 {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.document-card p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
}

.document-download-btn {
  background-color: #7b1117;
  color: #ffffff;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 4px;
  border: 2px solid #7b1117;
}

.document-download-btn:hover {
  background-color: transparent;
  color: #7b1117;
  border-color: #7b1117;
}

@media (max-width: 576px) {
  #documentation-downloads {
    min-height: auto;
  }

  .document-card {
    padding: 28px 22px;
  }

  .document-card h3 {
    font-size: 1.2rem;
  }
}

/* Documentation downloads section ends */



/* WhatsApp floating button starts */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}

/* WhatsApp floating button ends */
