 /* ===== Popup Overlay ===== */
  #kuthi-popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
  }

  /* ===== Popup Box ===== */
  .kuthi-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    width: 92%;
    max-width: 420px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: kuthi-slideIn 0.35s ease;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }

  @keyframes kuthi-slideIn {
    from { transform: translateY(-25px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  /* ===== Open Button ===== */
  #kuthi-open-btn {
    background: linear-gradient(135deg, #0078d7, #0094ff);
    color: #fff;
    padding: 12px 26px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }

  #kuthi-open-btn:hover {
    background: linear-gradient(135deg, #006cc3, #0084e8);
    transform: translateY(-2px);
  }

  /* ===== Close Button ===== */
  .kuthi-close-btn {
    position: absolute;
    top: 10px; right: 15px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
  }
  .kuthi-close-btn:hover { color: #000; }

  /* ===== Form ===== */
  .kuthi-form h2 {
    text-align: center;
    color: #222;
    margin-bottom: 18px;
    font-size: 20px;
  }

  .kuthi-form label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .kuthi-form input,
  .kuthi-form select {
    width: 100%;
    padding: 11px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .kuthi-form input:focus,
  .kuthi-form select:focus {
    border-color: #0078d7;
    box-shadow: 0 0 4px rgba(0,120,215,0.3);
    outline: none;
  }

  /* ===== Submit Button ===== */
  .kuthi-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0078d7, #0094ff);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
  }

  .kuthi-submit-btn:hover {
    background: linear-gradient(135deg, #006cc3, #0084e8);
    transform: translateY(-1px);
  }

  @media (max-width: 480px) {
    .kuthi-modal-box {
      padding: 22px 18px;
      width: 92%;
    }
    .kuthi-form h2 { font-size: 18px; }
  }


  .kuthi-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.kuthi-success-box {
  background: white;
  border-radius: 15px;
  padding: 25px 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: scaleIn 0.3s ease;
}

.kuthi-success-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; } 
  to { transform: scale(1); opacity: 1; }
}








.kuthi-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.kuthi-loader {
  text-align: center;
}

.kuthi-spinner {
  border: 4px solid #e0e0e0;
  border-top: 4px solid #009688;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: kuthi-spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes kuthi-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.kuthi-success-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  border-left: 5px solid #009688;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px 25px;
  border-radius: 12px;
  animation: fadeInUp 0.4s ease;
  z-index: 10000;
}

.kuthi-success-box {
  text-align: left;
}

.kuthi-success-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}











/* 🌸 Kuthi Language Selector */
#kuthi-lang {
  width: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  cursor: pointer;
}

/* Hover and focus effects */
#kuthi-lang:hover {
  border-color: #7a42f4;
  box-shadow: 0 0 4px rgba(122, 66, 244, 0.4);
}

#kuthi-lang:focus {
  border-color: #5a1fe0;
  box-shadow: 0 0 6px rgba(90, 31, 224, 0.4);
}

/* Optional: Add a subtle arrow icon */
#kuthi-lang {
  background-image: linear-gradient(45deg, transparent 50%, #555 50%),
    linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Label alignment */
.kuthi-label {
  font-weight: 500;
  margin-top: 10px;
  display: block;
  color: #333;
}
