/* ------------------------------------------------------------------
   Shreeji Consultant — custom styles
   (loaded after the Tailwind CDN build)
------------------------------------------------------------------- */

/* Custom scrollbar for a premium feel */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #1d4ed8; }

/* Page fade-in animation */
@keyframes shreejiFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.shreeji-page { animation: shreejiFadeIn 0.4s ease-in-out; }

/* Job modal animation */
.modal-active { display: flex !important; animation: shreejiFadeModalIn 0.3s ease-out forwards; }
@keyframes shreejiFadeModalIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
body.modal-open { overflow: hidden; }

/* Floating WhatsApp widget */




/* WordPress admin bar offset for the sticky nav (logged-in admins only) */
.admin-bar nav.sticky { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar nav.sticky { top: 46px; }
}

/* FAQ accordion marker reset (Tailwind preflight keeps this clean,
   this just guarantees no double carets in any browser) */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
