/* features page css start */
/* .features_Wrapper {
  padding-top: 9rem;
} */

.features_Wrapper .card {
  padding: 6rem 2rem;
}

.features_Wrapper ul li {
  list-style-type: disc;
}

.card {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  height: 400px;
}

.card_content {
  width: 80%;
}

.card_content .banner_title {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
}

.card_content .banner_para {
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  color: var(--white);
}

.feature_button {
  display: inline-flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
  padding: 0.75rem 2rem;
  background-color: rgba(255, 125, 51, 1);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  gap: 0.5rem; /* Add spacing between text and arrow */
}

.feature_button::after {
  content: "→";
  position: static; /* Remove absolute positioning */
  transition: transform 0.15s ease-in-out;
}

.feature_button:hover::after {
  transform: translateX(5px);
}

.features_paragraph {
  color: #475569;
  font-size: 1rem;
}
.features_radio {
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
}

.content_title {
  font-weight: bold;
}

.content_subtitle {
  color: #ff7d33;
  font-weight: 600;
}

.full_width_line {
  border: 0;
  border-top: 1px solid #0000006c;
  width: 100%;
  margin: 2rem 0;
}

.features-tools {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  margin-top: 1rem;
}

.custom-circle {
  border: 1px solid #ff7d33;
  padding: 0.5rem;
  border-radius: 50%;
}

.hover-container {
  display: inline-block;
  text-align: center;
}

.hover-container img {
  transition: transform 0.3s ease-in-out;
}

.hover-container:hover img {
  transform: translateY(-0.5rem);
}

.tools_section {
  border-top: 1px solid #f1f5f9;
  padding: 2rem 0;
}

.tools_titles {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}

.icons_para {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

/* features page css end */

/* Grid Container */

.container.feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default to 2 columns */
  text-transform: uppercase; /* Make text uppercase */
  font-weight: bold; /* Make text bold */
  text-align: center; /* Center text */
  margin-top: 2rem;
  gap: 2rem;
}

/* Grid Items */
.container.feature a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 250px; /* Fixed width */
  height: 250px; /* Fixed height */
  margin: auto; /* Center align if content doesn't fill space */
}
