#mandaar-ticker-wrapper {
max-width: 100%;
font-family: Arial, sans-serif;
}
#mandaar-ticker-title {
background: linear-gradient(90deg, #0b3d91, #b30000);
color: #fff;
padding: 12px;
font-weight: bold;
text-align: center;
border-radius: 8px 8px 0 0;
}
#mandaar-ticker-box {
background: #000;
color: #fff;
padding: 15px;
text-align: center;
font-size: 16px;
font-weight: bold;
border: 2px solid #0b3d91;
border-top: none;
min-height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.mandaar-flash {
animation: mandaarGlow 1.5s infinite;
}
@keyframes mandaarGlow {
0% { text-shadow: 0 0 5px #fff; }
50% { text-shadow: 0 0 15px #ff0000; }
100% { text-shadow: 0 0 5px #fff; }
}
#mandaar-controls {
text-align: center;
margin-top: 10px;
}
.mandaar-btn {
background: #0b3d91;
color: #fff;
border: none;
padding: 8px 15px;
margin: 5px;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
}
.mandaar-btn:hover {
background: #b30000;
}
(function(){
var tips = [
“Never sign blank documents.”,
“Always register property documents.”,
“Possession and ownership are different.”,
“Send notice within 30 days for cheque bounce.”,
“Police must follow due process before arrest.”,
“Fundamental rights protect personal liberty.”,
“Read documents carefully before signing.”,
“Written agreements prevent disputes.”,
“Registered rent agreement is safer.”,
“FIR registration is your legal right.”,
“False FIR can be quashed in court.”,
“Salary cannot be withheld unlawfully.”,
“Labour laws protect employee rights.”,
“Banks must follow legal recovery process.”,
“GST compliance is mandatory.”,
“Company disputes go before NCLT.”,
“Environmental matters go before NGT.”,
“Writ petitions challenge govt actions.”,
“Constitution guarantees legal protection.”,
“Illegal construction can be challenged.”,
“Always file complaints in writing.”,
“Maintain proof of all transactions.”,
“Oral agreements are risky.”,
“Draft a Will to avoid disputes.”,
“Executor ensures Will execution.”,
“Verify property title before purchase.”,
“Partnership without agreement is risky.”,
“File documents on time in court.”,
“Contempt of court is punishable.”,
“Bail is a legal right.”,
“Legal strategy is crucial.”,
“Power of Attorney misuse is common.”,
“Respond to municipal notices promptly.”,
“Avoid cash deals in property.”,
“Maintain proper financial records.”,
“Civil and criminal cases can run together.”,
“Never ignore legal notices.”,
“Fraud is punishable under law.”,
“Contracts must be clear and precise.”,
“Avoid hasty legal decisions.”,
“Do proper due diligence.”,
“Read loan terms carefully.”,
“Arbitration helps resolve disputes faster.”,
“Pay correct court fees and stamp duty.”,
“Compliance avoids penalties.”,
“Choose your lawyer wisely.”,
“Timely action strengthens your case.”,
“Legal notice is often first step.”,
“Documentation is key in litigation.”,
“Know your rights to protect yourself.”
];
var index = 0;
var interval = 2000; // ✅ 2 seconds
var ticker;
function showTip() {
var displayText = (index + 1) + “. ” + tips[index];
document.getElementById(“mandaar-ticker-box”).innerText = displayText;
index = (index + 1) % tips.length;
}
function start() {
ticker = setInterval(showTip, interval);
}
window.mandaarPause = function() {
clearInterval(ticker);
}
window.mandaarPlay = function() {
clearInterval(ticker);
start();
}
window.mandaarSlow = function() {
clearInterval(ticker);
interval = 5000; // slow = 5 sec
start();
}
showTip();
start();
})();
.ticker-container {
width: 100%;
overflow: hidden;
background: #0b3d91;
padding: 10px 0;
border-radius: 8px;
}
.ticker {
display: inline-block;
white-space: nowrap;
animation: scrollLeft 25s linear infinite;
}
.ticker a {
display: inline-block;
margin: 0 20px;
color: #ffffff;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
}
.ticker a:hover {
text-shadow: 0 0 8px #fff;
transform: scale(1.05);
}
/* Animation */
@keyframes scrollLeft {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
/* Pause on hover */
.ticker-container:hover .ticker {
animation-play-state: paused;
}
⚖️ Know Your Rights – 50 Legal Tips
Loading…




