.elementor-380 .elementor-element.elementor-element-82f7b36{--display:flex;}.elementor-380 .elementor-element.elementor-element-1f715cf{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================================
   IAS EMPLOYEE PORTAL â€” Custom CSS
   Paste into: WordPress > Appearance > Customize > Additional CSS
   ============================================================ */

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

:root {
  --blue: #2176AE;
  --blue-dark: #1558a0;
  --blue-light: #e8f1fa;
  --green: #2a7a3b;
  --green-light: #e8f4ea;
  --green-mid: #3a9a50;
  --gray-bg: #f4f6f8;
  --gray-border: #dde3ea;
  --gray-text: #5a6476;
  --text: #1e2a3a;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --radius: 10px;
  --radius-lg: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--gray-bg);
  color: var(--text);
  min-height: 100vh;
}

/* â”€â”€ HEADER â”€â”€ */
header {
  background: var(--white);
  border-bottom: 2px solid var(--gray-border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.logo-wrap img {
  height: 90px;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  background: white;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-text);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* â”€â”€ HERO BANNER â”€â”€ */
.hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin-bottom: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21,88,160,0.82) 0%, rgba(21,88,160,0.45) 50%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.hero-text h1 {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

/* â”€â”€ MAIN LAYOUT â”€â”€ */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

/* â”€â”€ SECTION LABELS â”€â”€ */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

/* â”€â”€ CARD BASE â”€â”€ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* â”€â”€ QUICK LINKS â”€â”€ */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.quick-link {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px 14px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quick-link:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(33,118,174,0.15);
  transform: translateY(-2px);
}

.ql-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ql-blue  { background: var(--blue-light); color: var(--blue); }
.ql-green { background: var(--green-light); color: var(--green); }
.ql-amber { background: #fef3e2; color: #9a6200; }
.ql-rose  { background: #fdeef0; color: #a03050; }

.quick-link span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* â”€â”€ HR FORMS LIST â”€â”€ */
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-border);
  text-decoration: none;
  color: var(--text);
  transition: background 0.14s;
  cursor: pointer;
}

.form-row:last-child { border-bottom: none; }
.form-row:hover { background: var(--gray-bg); }

.form-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.form-row-text p { margin: 0; }
.form-row-title { font-size: 14px; font-weight: 500; color: var(--text); }
.form-row-sub   { font-size: 12px; color: var(--gray-text); margin-top: 1px !important; }

.chevron { font-size: 16px; color: #aab4c4; }

/* â”€â”€ RIGHT COLUMN â”€â”€ */
.right-col { display: flex; flex-direction: column; gap: 24px; }

/* â”€â”€ POLICY DOCS â”€â”€ */
.doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  text-decoration: none;
  color: var(--text);
  transition: background 0.14s;
  cursor: pointer;
}
.doc-row:last-child { border-bottom: none; }
.doc-row:hover { background: var(--gray-bg); }

.doc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.doc-name {
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  color: var(--text);
}

.doc-dl {
  font-size: 14px;
  color: #aab4c4;
}

/* â”€â”€ NEWSLETTER â”€â”€ */
.newsletter-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  color: white;
}

.newsletter-card h3 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.newsletter-card p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-issues { display: flex; flex-direction: column; gap: 8px; }

.newsletter-issue {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.newsletter-issue:hover { background: rgba(255,255,255,0.22); }

.ni-title { font-size: 13px; font-weight: 500; color: white; }
.ni-date  { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.ni-icon  { font-size: 15px; color: rgba(255,255,255,0.7); }

/* â”€â”€ WELCOME BAR â”€â”€ */
.welcome-bar {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.welcome-bar h2 {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
}

.welcome-bar p {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 2px;
}

.pto-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: #aab4c4;
  border-top: 1px solid var(--gray-border);
}

footer span { color: var(--blue); font-weight: 500; }

/* â”€â”€ MODAL LIGHTBOX â”€â”€ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 14px;
  padding: 24px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  background: none;
  border: none;
}
.modal-box img { max-width: 100%; display: block; }/* End custom CSS */