row justify-content-center {
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
}
.calctitle {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.slider-container {
  margin-bottom: 20px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: #3a4a6b;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1abc9c;
  cursor: pointer;
  border: 2px solid #fff;
  transition: background 0.3s;
}

.result {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.8;
}

.graph {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: conic-gradient(#1abc9c 0% 50%, #f39c12 50% 100%);
}
.graphicsdescription {
  text-align: center;
  font-size: 15px;
  margin-top: 15px;
  display: flex;
  justify-content: center; /* centers the items horizontally */
  gap: 15px; /* space between Principal and Interest */
  align-items: center; /* vertically align if needed */
}

.graphicsdescription span {
  font-weight: 600;
}

.principal-label {
  color: #1abc9c;
}

.interest-label {
  color: #f39c12;
}
.result, .slider-label, .graphicsdescription {
    font-family: 'Roboto', 'Noto Sans', 'Arial', sans-serif !important;
}

/*********** AREA CALC START *********/
.arility-container {
  max-width: 400px;
  margin: 40px auto;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

.arility-heading {
  text-align: center;
  margin-bottom: 5px;
  color: #333;
}

.arility-subtext {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.arility-group {
  margin-bottom: 15px;
}

.arility-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.arility-input:focus {
  border-color: #007bff;
}

.arility-btn {
  width: 100%;
  background: #007bff;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.arility-btn:hover {
  background: #0056b3;
}

.arility-result {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

/*********** AREA CALC END  *********/
/***** Property Value Calculator START ****/
/* ---------- ARPC CSS ---------- */
.arpc-container {
  max-width: 500px;
  margin: 40px auto;
  background: linear-gradient(135deg, #e0f7ff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 30px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}

.arpc-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0077ff;
  text-align: center;
  margin-bottom: 5px;
}

.arpc-subtext {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.arpc-group {
  margin-bottom: 18px;
}

.arpc-label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

.arpc-input, .arpc-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #0077ff;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.arpc-input:focus, .arpc-select:focus {
  outline: none;
  border-color: #005fcc;
  box-shadow: 0 0 5px rgba(0,119,255,0.3);
}

.arpc-toggle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #f0f8ff;
  border-radius: 12px;
  overflow: hidden;
}

.arpc-toggle button {
  flex: 1;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0077ff;
  background: transparent;
  transition: all 0.3s;
}

.arpc-toggle button.active {
  background: #0077ff;
  color: #fff;
}

.arpc-btn {
  width: 100%;
  background: #0077ff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.arpc-btn:hover {
  background: #005fcc;
}

.arpc-result {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  color: #222;
  background: #d0f0ff;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/**** Property Value Calculator END *******/
/**** RENT  Value Calculator START *******/

.rvc-container {
  max-width: 480px;
  margin: 50px auto;
  background: linear-gradient(145deg, #ffffff, #f2f8ff);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-family: "Poppins", sans-serif;
}

.rvc-heading {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #0077ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rvc-subtext {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.rvc-group {
  margin-bottom: 18px;
}

.rvc-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.rvc-input, .rvc-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.rvc-input:focus, .rvc-select:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 8px rgba(0,119,255,0.2);
}

.rvc-btn {
  width: 100%;
  background: linear-gradient(90deg, #0077ff, #00d4ff);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.rvc-btn:hover {
  background: linear-gradient(90deg, #005fcc, #00a4cc);
}

.rvc-result {
  margin-top: 25px;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #222;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e0f7ff, #d0f0ff);
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/**** RENT  Value Calculator END *******/

























