/*
Theme Name: Bharmal Technologies Theme
Theme URI: https://bharmaltechnologies.com
Author: Bharmal Technologies
Description: Custom theme for Bharmal Technologies brands (The Bid Daily & Website Worldwide)
Version: 1.0
License: GPL v2 or later
Text Domain: bharmal-technologies
*/
:root {
  --tbd-yellow: #ffdb58;
  --tbd-blue: #154360;
  --www-blue: #4164b6;
  --www-yellow: #ffd451;
  --accent: var(--tbd-yellow);
  /* Default accent color */
}
.wpcf7 form p {
  margin-bottom: 1rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  /* Tailwind gray-300 */
}

.wpcf7 input[type="submit"] {
  background-color: var(--www-blue);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--www-yellow);
  color: black;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #333;
}

/* Custom cursor styles */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

.cursor-hover {
  width: 40px;
  height: 40px;
  background-color: var(--www-blue);
}