.elementor-219 .elementor-element.elementor-element-ce3e407{--display:flex;}.elementor-219 .elementor-element.elementor-element-62fabb5{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-c6a4213 */.calculator-section {
  text-align: center;
  padding: 50px 20px;
}

p {
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 10px;
}

/* Calculator Cards */
.calculator-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* This ensures 3 columns in each row */
  gap: 20px;
  justify-items: center;
}

.calculator-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}

.calculator-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease; /* Optional: smooth transition for background color */
}

.calculator-card:hover h4 {
  color: #bde800; /* Change color of h4 when hovering over the card */
}

.calculator-card:hover {
  background-color: #f0f0f0; /* Optional: change background color of the entire card */
}

.calculator-card h4 {
  color: #060606;
  font-weight: bold;
  transition: color 0.3s ease; /* Smooth transition for color change */
}

.calculator-card p {
  font-size: 16px;
  color: #7F8C8D;
  margin-top: 10px;
}

.view-all-link {
  text-decoration: none;
  font-size: 16px;
  color: #2980B9;
  font-weight: bold;
  display: block; /* Change to block for centering */
  text-align: center; /* Center the text inside */
  margin-top: 10px;
}


.calculator-card i {
  font-size: 20px;
  color: white; /* White icon color */
  background-color: #bde800; /* Set background color */
  padding: 15px; /* Add padding to make the background visible around the icon */
  border-radius: 50%; /* Make the background circular */
    margin-bottom: 20px;
    
}

.calculator-card a:hover {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Keeps the original color on hover */
}


/* Media Query for responsiveness */
@media (max-width: 1024px) {
  .calculator-list {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
  }
}

@media (max-width: 768px) {
  .calculator-list {
    grid-template-columns: 1fr; /* 1 item per row on smaller screens */
  }
}

/* Heading with icon */
.section-heading {
  display: flex; /* Align icon and text horizontally */
  align-items: center; /* Vertically align the icon and text */
  font-size: 24px; /* Set the font size */
  font-weight: bold; /* Make the text bold */
  color: #060606; /* Set text color */
    margin-bottom: 20px; /* Add space below the heading */

}

.section-heading i {
  font-size: 30px; /* Set the size of the icon */
  color: #fff; /* Set the icon color to white */
  background-color: #bde800; /* Set the background color to green */
  padding: 12px; /* Add padding to make the background larger */
  border-radius: 50%; /* Make the background circular */
  margin-right: 10px; /* Add space between the icon and the text */
  
}/* End custom CSS */