/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 28 2026 | 07:25:02 */
#ufw_2{
	    right: 15px!important;
	bottom: 70px !important;}
#ufw_3{
	    right: 15px!important;
	bottom: 115px !important;}
/* ================================
   EMI CALCULATOR – BLUE BG MATCH
   ================================ */

/* Wrapper */
.dc-emi-wrapper {
  display: flex;
  gap: 28px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b1d4a, #1e40af);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

/* Cards */
.dc-emi-left,
.dc-emi-right {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Card outline glow */
.dc-emi-left::before,
.dc-emi-right::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  border: 1px solid rgba(99,102,241,0.35);
  pointer-events: none;
}

/* Heading */
.dc-emi-left h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.dc-emi-left h3 span {
  color: #2563eb;
  font-weight: 700;
}

/* Labels */
.dc-emi-left label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #0f172a;
}

/* Inputs */
.dc-emi-left input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #c7d2fe;
  margin-bottom: 6px;
  outline: none;
}

.dc-emi-left input[type="number"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

/* Sliders */
.dc-emi-left input[type="range"] {
  width: 100%;
  margin: 10px 0 22px;
  appearance: none;
  height: 6px;
  background: #e0e7ff;
  border-radius: 6px;
}

/* Slider thumb */
.dc-emi-left input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

.dc-emi-left input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  cursor: pointer;
}

/* Tenure toggle */
.tenure-toggle {
  display: inline-flex;
  background: #eef2ff;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.tenure-toggle button {
  border: none;
  background: transparent;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  color: #1e293b;
}

.tenure-toggle button.active {
  background: #22c55e;
  color: #ffffff;
}

/* Chart */
.dc-emi-right canvas {
  max-width: 240px;
  margin: 0 auto 24px;
  display: block;
}

/* Results */
.emi-results p {
  font-size: 16px;
  margin: 10px 0;
  color: #0f172a;
}

.emi-results strong {
  font-weight: 700;
}

/* WhatsApp button */
.whatsapp-btn {
  display: block;
  width: 90%;
  text-align: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  margin-top: 24px;
  box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

.whatsapp-btn:hover {
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .dc-emi-wrapper {
    flex-direction: column;
    padding: 20px;
  }
}
.dc-footer-address {
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}

.dc-footer-address div {
  margin-bottom: 6px;
}

.dc-footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.dc-footer-link:hover {
  color: #f97316;
}

