/* New section styles */
#hpSmartSection {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.hp-smart-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.hp-smart-section .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for the icon */
.hp-smart-section .icon i {
  font-size: 4rem;
  color: #007bff;  /* Primary color */
}

/* Heading styles */
.hp-smart-section h3.fw-bold {
  font-weight: bold;
  font-size: 2rem;
  color: #333;
}

/* Button styles */
#installButton {
  background-color: #007bff;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s;
}

#installButton:hover {
  background-color: #0056b3;
}

/* Text styling */
.hp-smart-section .text-muted {
  color: #6c757d;
}

/* Image styling */
#hpSmartImage {
  width: 100%;
  border-radius: 0.5rem;
}

/* General styles for the section */
/* General styles for the section */
#support-solutions {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.support-section h3 {
  font-size: 1.75rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 20px;
}

.support-section p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

/* Grid layout for the support cards */
.support-row {
  display: flex;
  justify-content: center;
  gap: 30px; /* Add gap between the cards */
}

.support-card {
  background-color: white transparent;
  padding: 0;
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
  flex: 1; /* Ensure cards take equal width */
  max-width: 480px; /* Limit the card width */
}

.support-card:hover {
  transform: translateY(-10px);
}

.support-card img {
  max-width: 100%;
  border-radius: 8px;
}

.support-card h5 {
  font-size: 1.25rem;
  color: #343a40;
  margin-top: 15px;
}

.support-card p {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 10px;
}

.support-card .btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.support-card .btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-card {
    margin-bottom: 20px;
  }
}

/* Modal styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.custom-modal .modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 5px;
}

#statusText {
  color: #666;
  margin-bottom: 25px;
}

/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Progress bar container */
.progress-container {
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  height: 25px;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  line-height: 25px;
  transition: width 0.2s ease;
}

.progress-bar.error {
  background-color: red !important;
  background-image: none;
}
