.aidq-wrapper {
    font-family: 'Hind Siliguri', sans-serif;
}
.aidq-loader {
    border: 3px solid #f3f3f3; 
    border-top: 3px solid #6366f1; 
    border-radius: 50%;
    width: 20px; 
    height: 20px; 
    animation: aidq-spin 1s linear infinite; 
    display: inline-block;
}
@keyframes aidq-spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}
.aidq-hidden { 
    display: none !important; 
}
.aidq-wrapper {
    font-family: 'Hind Siliguri', sans-serif;
}
.aidq-loader {
    border: 3px solid #f3f3f3; 
    border-top: 3px solid #6366f1; 
    border-radius: 50%;
    width: 20px; 
    height: 20px; 
    animation: aidq-spin 1s linear infinite; 
    display: inline-block;
}
@keyframes aidq-spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}
.aidq-hidden { 
    display: none !important; 
}

/* =========================================
   CUSTOM RADIO BUTTON ANIMATIONS
========================================= */
.aidq-radio-input:checked + .aidq-radio-card {
    background-color: #ffffff;
    border-color: #ec4899; /* Vibrant Pink Border */
    box-shadow: 0 10px 15px -3px rgba(244, 114, 182, 0.25), 0 4px 6px -2px rgba(244, 114, 182, 0.1);
}

.aidq-radio-input:checked + .aidq-radio-card .aidq-radio-circle {
    border-color: #ec4899; /* Pink Circle Outline */
}

/* The Pop-in Dot effect */
.aidq-radio-input:checked + .aidq-radio-card .aidq-radio-dot {
    opacity: 1;
    transform: scale(1);
}

/* Slightly shift and color the text when selected */
.aidq-radio-input:checked + .aidq-radio-card .aidq-radio-text {
    color: #db2777; /* Deep Pink Text */
    transform: translateX(6px);
}