/* =============================================
   HR BLUEDAY JS — GLOBAL DESIGN SYSTEM
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --blue-dark: #0a1628;
  --blue-mid: #1a3a6b;
  --blue-brand: #1e56c8;
  --blue-light: #4a8af4;
  --blue-sky: #e8f0fe;
  --accent: #f7b731;
  --accent-dk: #e0a020;
  --white: #ffffff;
  --off-white: #f8faff;
  --g100: #f1f5f9;
  --g200: #e2e8f0;
  --g400: #94a3b8;
  --g600: #475569;
  --g800: #1e293b;
  --success: #10b981;
  --danger: #ef4444;
  --sh-sm: 0 2px 8px rgba(10, 22, 40, .08);
  --sh-md: 0 8px 32px rgba(10, 22, 40, .14);
  --sh-lg: 0 20px 60px rgba(10, 22, 40, .18);
  --r: 14px;
  --rsm: 8px;
  --rxl: 24px;
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --ads: 300px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--off-white);
  color: var(--g800);
  line-height: 1.6;
  overflow-x: hidden
}

/* ── LAYOUT ── */
.page-wrap {
  display: flex;
  min-height: 100vh;
  max-width: 1500px;
  margin: 0 auto
}

.main-col {
  flex: 1;
  min-width: 0
}

.ads-col {
  width: var(--ads);
  min-width: var(--ads);
  background: var(--white);
  border-left: 1px solid var(--g200);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.ads-label {
  font-size: .68rem;
  color: var(--g400);
  text-align: center;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.ads-slot {
  background: var(--g100);
  border: 2px dashed var(--g200);
  border-radius: var(--rsm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g400);
  font-size: .75rem;
  font-family: var(--fb);
  text-align: center;
  padding: 10px;
}

.ads-250 {
  height: 250px
}

.ads-600 {
  height: 350px
}

.ads-120 {
  height: 120px
}

/* ── NAVBAR ── */
.navbar {
  background: var(--blue-dark);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nb-logo {
  width: 38px;
  height: 38px;
  background: var(--blue-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  color: #fff;
  font-size: 15px;
  letter-spacing: -1px;
}

.nb-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.1
}

.nb-sub {
  display: block;
  font-size: .62rem;
  color: var(--blue-light);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--fb)
}

.nb-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none
}

.nb-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
}

.nb-links a:hover,
.nb-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .1)
}

.nb-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.user-pill {
  background: var(--accent);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nb-uname {
  color: rgba(255, 255, 255, .8);
  font-size: .85rem
}

.btn-logout {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: 6px 13px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .82rem;
  font-family: var(--fb);
  transition: all .2s;
}

.btn-logout:hover {
  background: rgba(255, 255, 255, .2)
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 86, 200, .3)
}

.btn-primary:hover {
  background: #1647b0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 86, 200, .4)
}

.btn-accent {
  background: var(--accent);
  color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(247, 183, 49, .3)
}

.btn-accent:hover {
  background: var(--accent-dk);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue-brand);
  color: var(--blue-brand)
}

.btn-outline:hover {
  background: var(--blue-brand);
  color: #fff
}

.btn-white {
  background: #fff;
  color: var(--blue-brand);
  font-weight: 700
}

.btn-white:hover {
  background: var(--blue-sky)
}

.btn-danger {
  background: var(--danger);
  color: #fff
}

.btn-success {
  background: var(--success);
  color: #fff
}

.btn-sm {
  padding: 7px 15px;
  font-size: .8rem;
  border-radius: 8px
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 12px
}

.btn-full {
  width: 100%
}

/* ── HERO ── */
/* .hero{
  background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue-mid) 60%,#1e3a8a 100%);
  padding:80px 44px 70px;position:relative;overflow:hidden;
} */
.hero {
  position: relative;
  padding: 80px 44px 70px;
  overflow: hidden;
  background-image: linear-gradient(135deg, #0a16288a 0%, #1a3a6ba1 60%, #1e3a8aad 100%), url(https://hrbluedayjs.in/assets/hr.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-blend-mode: multiply;
  /* try multiply, soft-light, etc */
}

/* .hero::before{content:'';position:absolute;top:-60px;right:-60px;width:400px;height:400px;background:radial-gradient(circle,rgba(74,138,244,.2) 0%,transparent 70%);pointer-events:none} */
/* .hero::after{content:'';position:absolute;bottom:-80px;left:100px;width:300px;height:300px;background:radial-gradient(circle,rgba(247,183,49,.12) 0%,transparent 70%);pointer-events:none} */
.hero-tag {
  display: inline-block;
  background: rgba(247, 183, 49, .2);
  border: 1px solid rgba(247, 183, 49, .4);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px
}

.hero h1 span {
  color: var(--accent)
}

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.7
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* ── SECTION ── */
.sec {
  padding: 68px 44px
}

.sec-alt {
  background: var(--blue-sky)
}

.sec-dark {
  background: var(--blue-dark);
  color: #fff
}

.sec-head {
  margin-bottom: 38px
}

.sec-label {
  display: inline-block;
  color: var(--blue-brand);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.sec-head h2 {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark)
}

.sec-dark .sec-head h2 {
  color: #fff
}

.sec-head p {
  color: var(--g600);
  margin-top: 10px;
  font-size: .95rem;
  max-width: 560px
}

.sec-dark .sec-head p {
  color: rgba(255, 255, 255, .6)
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 26px;
  border: 1px solid var(--g200);
  transition: all .25s
}

.card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px
}

.svc-card {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 22px;
  border: 1px solid var(--g200);
  transition: all .25s;
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-brand), var(--blue-light))
}

.svc-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px)
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px
}

.svc-card h3 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 7px
}

.svc-card p {
  font-size: .86rem;
  color: var(--g600);
  line-height: 1.6
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
  align-items: start
}

.pc {
  background: #fff;
  border-radius: var(--rxl);
  padding: 30px 26px;
  border: 2px solid var(--g200);
  position: relative;
  transition: all .25s
}

.pc.featured {
  border-color: var(--blue-brand);
  box-shadow: 0 12px 40px rgba(30, 86, 200, .18);
  transform: scale(1.03)
}

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap
}

.pc h3 {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--blue-dark)
}

.price-row {
  margin: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 3px
}

.p-cur {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-brand)
}

.p-amt {
  font-family: var(--fd);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1
}

.p-per {
  font-size: .82rem;
  color: var(--g400)
}

.pc-feats {
  list-style: none;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.4
}

.pc-feats li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* ── FORMS ── */
.form-wrap {
  background: #fff;
  border-radius: var(--rxl);
  padding: 38px;
  box-shadow: var(--sh-md);
  max-width: 700px;
  margin: 0 auto
}

.form-title {
  font-family: var(--fd);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 5px
}

.form-sub {
  color: var(--g600);
  margin-bottom: 26px;
  font-size: .92rem
}

.fg {
  margin-bottom: 17px
}

.fg label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--g800);
  margin-bottom: 5px
}

.fg .req {
  color: var(--danger);
  margin-left: 3px
}

.fc {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--g200);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: .92rem;
  color: var(--g800);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.fc:focus {
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px rgba(30, 86, 200, .1);
  background: #fff
}

.fc.err {
  border-color: var(--danger)
}

.ferr {
  color: var(--danger);
  font-size: .78rem;
  margin-top: 3px;
  display: none
}

.fc.err+.ferr {
  display: block
}

.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

select.fc {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px
}

/* ── JOB CARDS ── */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.jcard {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--g200);
  overflow: hidden;
  transition: box-shadow .25s
}

.jcard:hover {
  box-shadow: var(--sh-md)
}

.jcard-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 14px;
  user-select: none
}

.jmeta {
  flex: 1
}

.jco {
  font-size: .77rem;
  color: var(--blue-brand);
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.jrole {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 5px
}

.jtags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.tag {
  font-size: .72rem;
  padding: 2px 9px;
  border-radius: 20px;
  font-weight: 500
}

.tb {
  background: var(--blue-sky);
  color: var(--blue-brand)
}

.tg {
  background: #d1fae5;
  color: #065f46
}

.ty {
  background: #fef3c7;
  color: #92400e
}

.tgr {
  background: var(--g100);
  color: var(--g600)
}

.jsal {
  text-align: right;
  white-space: nowrap
}

.jsal-l {
  font-size: .72rem;
  color: var(--g400)
}

.jsal-v {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--success)
}

.jtoggle {
  font-size: 1rem;
  color: var(--g400);
  transition: transform .3s;
  flex-shrink: 0
}

.jcard.open .jtoggle {
  transform: rotate(180deg)
}

.jbody {
  display: none;
  padding: 0 22px 22px;
  border-top: 1px solid var(--g100);
  animation: sdown .3s ease
}

.jcard.open .jbody {
  display: block
}

@keyframes sdown {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.jbody h4 {
  font-family: var(--fd);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 14px 0 7px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.jbody ul {
  padding-left: 17px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.jbody ul li,
.jbody p {
  font-size: .88rem;
  color: var(--g600);
  line-height: 1.55
}

.japply {
  margin-top: 18px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  align-items: center
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.sitem {
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.sitem:last-child {
  border-right: none
}

.snum {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 5px
}

.slbl {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5)
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

/* new about */
.about-vis {
  background-image: linear-gradient(180deg, #0a162800 0%, #1a3a6b70 60%, #1e3a8a 100%), url(https://hrbluedayjs.in/assets/hr.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: var(--rxl);
  padding: 38px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

/* end */


/* mobile responsive index section solve css */
@media(max-width:500px){
    .user-plan{
        display:block !important;
    }
    .contact-grid{
        display:block !important;
    }
    .pricing-plan{
        display:block !important;
    }
}
/* end */


/* .about-vis{background:linear-gradient(145deg,var(--blue-mid),var(--blue-dark));border-radius:var(--rxl);padding:38px;color:#fff;position:relative;overflow:hidden;min-height:340px;display:flex;flex-direction:column;justify-content:flex-end} */
/* .about-vis::before{content:'';position:absolute;top:-40px;right:-40px;width:180px;height:180px;background:radial-gradient(circle,rgba(74,138,244,.3) 0%,transparent 70%)} */
.av-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 72px;
  opacity: .35
}

.about-vis h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px
}

.about-vis p {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem
}

.chk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px
}

.chk-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .93rem;
  color: var(--g600)
}

.chk-ic {
  width: 21px;
  height: 21px;
  background: var(--blue-sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue-brand);
  flex-shrink: 0;
  margin-top: 1px
}

/* ── CONTACT ── */
.contact-grid {
  /* display: grid; */
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 38px
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  /* new */
  background: #ffffff70;
  padding: 10px;
  outline: 2px dotted #1e57c863;
  border-radius: 10px;
  margin: 5px 0;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-sky);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0
}

.ci h4 {
  font-weight: 600;
  color: var(--blue-dark);
  font-size: .88rem;
  margin-bottom: 2px
}

.ci p {
  font-size: .85rem;
  color: var(--g600)
}

/* ── ADMIN DASH ── */
.dash-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 68px)
}

.dash-side {
  background: var(--blue-dark);
  padding: 22px 14px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  list-style: none;
  margin-top: 8px
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s
}

.dash-nav a:hover,
.dash-nav a.active {
  background: rgba(255, 255, 255, .1);
  color: #fff
}

.dash-main {
  padding: 30px;
  background: var(--g100)
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 26px
}

.sc {
  background: #fff;
  border-radius: var(--r);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--sh-sm)
}

.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.ib {
  background: var(--blue-sky)
}

.ig {
  background: #d1fae5
}

.iy {
  background: #fef3c7
}

.ip {
  background: #ede9fe
}

.sc-val {
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 2px
}

.sc-lbl {
  font-size: .78rem;
  color: var(--g400)
}

.dtable {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-top: 20px
}

.dt-head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--g100);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.dt-head h3 {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--blue-dark)
}

table {
  width: 100%;
  border-collapse: collapse
}

thead th {
  background: var(--g100);
  padding: 11px 18px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left
}

tbody td {
  padding: 12px 18px;
  font-size: .88rem;
  color: var(--g600);
  border-bottom: 1px solid var(--g100)
}

tbody tr:hover {
  background: var(--off-white)
}

tbody tr:last-child td {
  border-bottom: none
}

/* ── PROFILE ── */
.prof-hero {
  background-image: linear-gradient(180deg, #0a162800 0%, #1a3a6b70 60%, #1e3a8a 100%), url(https://hrbluedayjs.in/assets/hr.jpg);
  background-size: cover;
  background-position: center;
  padding: 48px 44px;
  color: #fff
}

.prof-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
  border: 3px solid rgba(255, 255, 255, .25)
}

.prof-name {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 3px
}

/* ── MODALS ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, .72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fi .3s ease
}

.overlay.hidden {
  display: none
}

@keyframes fi {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal {
  background: #fff;
  border-radius: var(--rxl);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  animation: mi .35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative
}

@keyframes mi {
  from {
    opacity: 0;
    transform: scale(.9) translateY(20px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.m-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g100);
  border: none;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g600);
  transition: all .2s;
  z-index: 10
}

.m-close:hover {
  background: var(--g200);
  color: var(--blue-dark)
}

.m-head {
  padding: 30px 30px 22px;
  border-bottom: 1px solid var(--g100)
}

.m-head h2 {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 3px
}

.m-head p {
  font-size: .88rem;
  color: var(--g600)
}

.m-body {
  padding: 22px 30px 30px
}

.popup-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.popc {
  border: 2px solid var(--g200);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: all .25s
}

.popc:hover {
  border-color: var(--blue-brand)
}

.popc .picon {
  font-size: 34px;
  display: block;
  margin-bottom: 10px
}

.popc h3 {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 7px;
  font-size: 1rem
}

.popc p {
  font-size: .82rem;
  color: var(--g600);
  margin-bottom: 14px;
  line-height: 1.5
}

.float-btn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 1500;
  background: var(--blue-brand);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 18px;
  display: none;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30, 86, 200, .45);
  transition: all .25s;
  animation: fp 3s ease-in-out infinite;
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.04)
}

.float-btn{
    /* position: fixed; */
    /* right: 20px; */
    /* bottom: 20px; */
    /* z-index: 999; */
    transition: all 2.5s ease-in-out;
}

/* Move from bottom to top */
.float-btn.move-top{
    top: 20px;
    bottom: auto;
}

/* Shake animation */
.float-btn.shake{
    animation: shakeBtn 0.6s infinite;
}

@keyframes shakeBtn{
    0%{ transform: translateX(0); }
    25%{ transform: translateX(-5px); }
    50%{ transform: translateX(5px); }
    75%{ transform: translateX(-5px); }
    100%{ transform: translateX(0); }
}

@keyframes fp {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(30, 86, 200, .45)
  }

  50% {
    box-shadow: 0 8px 30px rgba(30, 86, 200, .7)
  }
}

.ty-modal {
  text-align: center;
  padding: 46px 36px
}

.ty-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 22px;
  animation: bi .6s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes bi {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.ty-modal h2 {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px
}

.ty-modal p {
  color: var(--g600);
  margin-bottom: 26px;
  font-size: .97rem;
  line-height: 1.6
}

.qr-body {
  text-align: center;
  padding: 28px 28px 32px
}

.qr-box {
  width: 200px;
  height: 250px;
  background: var(--g100);
  border: 3px solid var(--g200);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 58px
}

.qr-body h3 {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px
}

.qr-body p {
  font-size: .86rem;
  color: var(--g600);
  line-height: 1.6
}

/* ── ALERTS ── */
.alert {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: .88rem;
  margin-bottom: 14px;
  display: none;
  align-items: center;
  gap: 7px
}

.a-s {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0
}

.a-d {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5
}

.a-i {
  background: var(--blue-sky);
  color: var(--blue-mid);
  border: 1px solid #bfdbfe
}

/* ── FOOTER ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, .58);
  padding: 48px 44px 26px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 38px
}

.fb-brand p {
  font-size: .86rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 270px
}

.fc-col h4 {
  font-family: var(--fd);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
  letter-spacing: .04em
}

.fc-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.fc-col ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, .48);
  font-size: .86rem;
  transition: color .2s
}

.fc-col ul a:hover {
  color: #fff
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bot p {
  font-size: .8rem
}

.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-sky);
  color: var(--blue-brand);
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600
}

/* ── AUTH ── */
.auth-page {
  min-height: 100vh;
  /* background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue-mid) 100%); */
  background-image: linear-gradient(135deg, #0a16288a 0%, #1a3a6ba1 60%, #1e3a8aad 100%), url(https://hrbluedayjs.in/assets/hr.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden
}

.auth-d1 {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 86, 200, .25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none
}

.auth-d2 {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(247, 183, 49, .1) 0%, transparent 70%);
  bottom: -80px;
  left: 50px;
  border-radius: 50%;
  pointer-events: none
}

.auth-card {
  background: #fff;
  border-radius: 22px;
  padding: 42px 38px;
  width: 100%;
  max-width: 468px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  position: relative
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px
}

.auth-li {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  color: #fff;
  font-size: 17px
}

.auth-lt {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-dark)
}

@media(max-width:500px){
    .auth-lt{
        font-size:0.85rem;
    }
}

.auth-ls {
  display: block;
  font-size: .67rem;
  color: var(--g400);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase
}

.auth-tabs {
  display: flex;
  background: var(--g100);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 26px
}

.atab {
  flex: 1;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .88rem;
  color: var(--g400);
  cursor: pointer;
  transition: all .2s
}

.atab.active {
  background: #fff;
  color: var(--blue-brand);
  box-shadow: var(--sh-sm)
}

.aform {
  display: none
}

.aform.active {
  display: block
}

.ut-sel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 18px
}

.ut-opt {
  border: 2px solid var(--g200);
  border-radius: 11px;
  padding: 15px 11px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  position: relative
}

.ut-opt:hover {
  border-color: var(--blue-light)
}

.ut-opt.sel {
  border-color: var(--blue-brand);
  background: var(--blue-sky)
}

.ut-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.ut-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 7px
}

.ut-lbl {
  font-weight: 600;
  font-size: .88rem;
  color: var(--blue-dark);
  display: block
}

.ut-desc {
  font-size: .72rem;
  color: var(--g400);
  margin-top: 2px;
  display: block
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .ads-col {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .dash-wrap {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {

  .sec,
  .hero {
    padding: 44px 18px
  }

  .f2 {
    grid-template-columns: 1fr
  }

  .popup-2col {
    grid-template-columns: 1fr
  }

  .nb-links {
    display: none
  }

  .nav-toggle {
    display: flex
  }

  .nb-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 14px 18px 18px;
    gap: 3px;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .pc.featured {
    transform: none
  }

  .form-wrap {
    padding: 26px 18px
  }

  .dash-side {
    position: static;
    height: auto
  }

  .dash-main {
    padding: 18px 14px
  }

  .sc-grid {
    grid-template-columns: 1fr 1fr
  }

  .prof-hero {
    padding: 34px 18px
  }

  .footer {
    padding: 36px 18px 20px
  }

  .auth-card {
    padding: 30px 22px
  }

  .float-btn span {
    display: none
  }

  .float-btn {
    padding: 13px;
    border-radius: 50%
  }
}

@media(max-width:480px) {
  .navbar {
    padding: 0 14px
  }

  .sc-grid {
    grid-template-columns: 1fr
  }
}