@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --navy-dark: #071D49;
  --royal-blue: #0D47B5;
  --bright-blue: #1358D8;
  --saffron: #F47C00;
  --saffron-light: #FFF3E6;
  --green-accent: #149447;
  --green-light: #E8F7EE;
  --purple-accent: #7C3AED;
  --purple-light: #F3E8FF;
  --white: #FFFFFF;
  --bg-soft-blue: #F5FAFF;
  --border-light: #DDE8F5;
  --text-primary: #071D49;
  --text-secondary: #536079;
  --text-light: #7E8B9B;

  /* Theme mappings */
  --primary: #0D47B5;
  --primary-dark: #071D49;
  --secondary: #071D49;
  --accent: #F47C00;
  --success: #149447;
  --info: #1358D8;
  --bg-light: #F5FAFF;
  --bg-dark: #071D49;
  --text-dark: #071D49;
  --border: #DDE8F5;
  --shadow-sm: 0 4px 15px rgba(7, 29, 73, 0.05);
  --shadow-md: 0 8px 30px rgba(7, 29, 73, 0.08);
  --shadow-lg: 0 18px 45px rgba(7, 29, 73, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

[data-theme="dark"] {
  --navy-dark: #0B132B;
  --royal-blue: #3A86FF;
  --bright-blue: #4EA8DE;
  --saffron: #FF9F1C;
  --green-accent: #2EC4B6;
  --white: #1C2541;
  --bg-soft-blue: #0B132B;
  --border-light: #2A365C;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --bg-light: #0B132B;
  --text-dark: #F1F5F9;
  --border: #2A365C;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.5);
  --bs-body-bg: #0B132B;
  --bs-body-color: #F1F5F9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-soft-blue);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.2s ease;
}
.top-bar a:hover {
  color: var(--saffron);
}

.header-container {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(7, 29, 73, 0.04);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.header-container a,
.navbar a,
.navbar-nav a {
  text-decoration: none !important;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--royal-blue), var(--navy-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(13, 71, 181, 0.25);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}
.brand-name span.highlight {
  color: var(--saffron);
}
.brand-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  margin-top: 1px;
}

/* NAVBAR LINKS - CLEAN & UNDERLINE FREE */
.nav-link-custom {
  font-weight: 600;
  font-size: 15px;
  color: #475569 !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link-custom:hover {
  color: var(--royal-blue) !important;
  background-color: #F1F5F9 !important;
  text-decoration: none !important;
}

.nav-link-custom.active {
  color: var(--royal-blue) !important;
  background-color: #E0EDFF !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.nav-link-custom::after,
.nav-link-custom.active::after {
  display: none !important;
  content: none !important;
}

.btn-header-bell {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft-blue);
  border: 1px solid var(--border-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
}
.btn-header-bell:hover {
  background: #EAF3FF;
  transform: translateY(-1px);
}
.btn-header-bell .notification-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  border: 2px solid #fff;
}

.btn-header-login {
  background: #ffffff;
  border: 1.5px solid #C4D9F8;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(13, 71, 181, 0.05);
}
.btn-header-login:hover {
  background: #F0F6FF;
  border-color: var(--royal-blue);
  color: var(--navy-dark);
  box-shadow: 0 4px 12px rgba(13, 71, 181, 0.12);
  transform: translateY(-1px);
}

/* ==========================================================================
   BREAKING NEWS / TICKER
   ========================================================================== */
.breaking-news {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  box-shadow: inset 0 -1px 0 var(--border-light);
}
.breaking-label {
  background: linear-gradient(135deg, var(--royal-blue), var(--bright-blue));
  color: #fff;
  padding: 5px 14px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}
.breaking-text {
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  display: inline-block;
}
.breaking-text a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}
.breaking-text a:hover {
  color: var(--royal-blue);
}

/* ==========================================================================
   HERO SECTION (JOBALERT INDIA STYLE)
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F9FF 60%, #EDF6FF 100%);
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 88, 216, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF3FF;
  border: 1px solid #D2E4FF;
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 24px;
}
.trust-badge-pill i {
  font-size: 15px;
  color: var(--royal-blue);
}

.hero-heading {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-dark);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-heading .text-welcome {
  color: var(--navy-dark);
  display: block;
}
.hero-heading .text-jobalert {
  color: var(--royal-blue);
}
.hero-heading .text-india {
  color: var(--saffron);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 400;
}

/* HERO TRUST FEATURE ROW */
.hero-trust-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(221, 232, 245, 0.8);
  border-bottom: 1px solid rgba(221, 232, 245, 0.8);
  max-width: 650px;
}
.trust-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.trust-feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}
.trust-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #EBF3FF;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 8px;
}
.trust-feature-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.3;
}

/* HERO CTA BUTTONS */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--royal-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(13, 71, 181, 0.25);
  transition: all 0.25s ease;
  border: none;
}
.btn-hero-primary:hover {
  background: #0B3CA2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 71, 181, 0.35);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #C4D9F8;
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  background: #F0F6FF;
  border-color: var(--royal-blue);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* HERO RIGHT VISUAL */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-main-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  filter: drop-shadow(0 15px 35px rgba(7, 29, 73, 0.12));
}

/* FLOATING QUICK ACCESS CARD */
.quick-access-floating-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(7, 29, 73, 0.08);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  margin-top: 36px;
  position: relative;
  z-index: 10;
}
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.quick-access-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}
.quick-access-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}
.quick-access-item:hover {
  background: #F4F8FE;
  transform: translateY(-2px);
}
.qa-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.quick-access-item:hover .qa-icon {
  transform: scale(1.08);
}
.qa-icon-jobs { background: #EBF3FF; color: var(--royal-blue); }
.qa-icon-results { background: var(--green-light); color: var(--green-accent); }
.qa-icon-admit { background: var(--saffron-light); color: var(--saffron); }
.qa-icon-key { background: var(--purple-light); color: var(--purple-accent); }

.qa-text-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}
.quick-access-item:hover .qa-text-title {
  color: var(--royal-blue);
}
.qa-text-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ==========================================================================
   STATISTICS BAR
   ========================================================================== */
.stats-banner-section {
  background: linear-gradient(90deg, #0750BE 0%, #123EA8 100%);
  border-radius: 24px 24px 0 0;
  padding: 32px 0;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(7, 80, 190, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 0 16px;
}
.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* ==========================================================================
   HOMEPAGE SECTION TITLES & CARDS
   ========================================================================== */
.main-content-area {
  padding: 40px 0 60px;
}

.section-title-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
  position: relative;
}
.section-title-modern::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--royal-blue);
}
.title-text-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EBF3FF;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.title-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}
.link-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--royal-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.link-view-all:hover {
  color: var(--navy-dark);
  transform: translateX(3px);
}

/* MODERNIZED JOB CARD */
.job-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #B8D5FF;
  transform: translateY(-2px);
}
.job-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.job-title:hover {
  color: var(--royal-blue);
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-meta i {
  color: var(--royal-blue);
}
.job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

/* LIST ITEM COMPONENT (FOR RESULTS / ADMIT CARDS) */
.list-item-modern {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(7, 29, 73, 0.03);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.list-item-modern:hover {
  border-color: #C4D9F8;
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.list-item-modern a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.list-item-modern a:hover {
  color: var(--royal-blue);
}

/* SIDEBAR WIDGETS */
.sidebar-widget-modern {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  overflow: hidden;
}
.widget-header {
  background: #F4F8FE;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
}
.widget-header i {
  color: var(--royal-blue);
}
.widget-body {
  padding: 18px 20px;
}

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.category-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(7, 29, 73, 0.03);
}
.category-item:hover {
  background: var(--royal-blue);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(13, 71, 181, 0.2);
  border-color: var(--royal-blue);
}
.category-item:hover i {
  color: #ffffff !important;
}
.category-item i {
  font-size: 24px;
  transition: color 0.2s ease;
}
.category-item span {
  font-size: 13px;
  font-weight: 600;
}

/* QUICK LINKS BADGES */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-links a {
  background: #F0F6FF;
  border: 1px solid #D2E4FF;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--royal-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}
.quick-links a:hover {
  background: var(--royal-blue);
  color: #ffffff;
  border-color: var(--royal-blue);
}

/* SUBSCRIBE BOX */
.subscribe-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0D47B5 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.subscribe-box h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 8px;
}
.subscribe-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 24px;
}

/* FOOTER */
.main-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
}
.main-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-footer a:hover {
  color: var(--saffron);
}
.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer ul li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-bottom {
  background: #041232;
  color: rgba(255, 255, 255, 0.6);
  padding: 18px 0;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* DARK TOGGLE */
.dark-toggle {
  background: var(--bg-soft-blue);
  border: 1px solid var(--border-light);
  color: var(--royal-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}
.dark-toggle:hover {
  background: #EAF3FF;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 48px;
  }
  .quick-access-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .quick-access-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-heading {
    font-size: 42px;
  }
  .hero-trust-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-feature-item:not(:last-child)::after {
    display: none;
  }
  .hero-visual-wrapper {
    margin-top: 36px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-box:not(:last-child)::after {
    display: none;
  }
  .nav-link-custom {
    padding: 12px 16px !important;
  }
  .nav-link-custom.active::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 36px;
  }
  .hero-description {
    font-size: 16px;
  }
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}


/* ==========================================================================
   PREMIUM DETAIL PAGE STYLING (JOBS, RESULTS, ADMIT CARDS)
   ========================================================================== */
.breadcrumb-custom {
  background: #EBF3FF;
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid #D8E6FF;
}
.breadcrumb-custom a {
  color: var(--royal-blue);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-custom a:hover {
  color: var(--navy-dark);
}
.breadcrumb-custom .active {
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-header {
  background: linear-gradient(135deg, #071D49 0%, #0D47B5 100%);
  border-radius: 20px;
  padding: 32px 36px;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 12px 35px rgba(7, 29, 73, 0.12);
  position: relative;
  overflow: hidden;
}
.detail-header::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.detail-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  color: #ffffff;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.detail-meta span {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.detail-meta span i {
  color: var(--saffron);
}

.content-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(7, 29, 73, 0.05);
  margin-bottom: 30px;
}

.links-section {
  background: linear-gradient(135deg, #F5FAFF 0%, #EBF4FF 100%);
  border: 1px solid #D2E4FF !important;
  border-radius: 16px;
  padding: 24px !important;
  margin-bottom: 28px !important;
}
.links-section h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 16px;
}

/* ENHANCED TABLES INSIDE CONTENT BOX & DESCRIPTION */
.content-box table,
.description table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin: 24px 0 !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 18px rgba(7, 29, 73, 0.05) !important;
  background-color: #ffffff !important;
}

.content-box table th,
.description table th,
.content-box table thead td,
.description table thead td {
  background: linear-gradient(90deg, #071D49 0%, #0D47B5 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 14px 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
}
.content-box table th a,
.description table th a {
  color: #FFD166 !important;
  font-weight: 700 !important;
}

.content-box table td,
.description table td {
  padding: 13px 18px !important;
  font-size: 14px !important;
  color: #071D49 !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #E2E8F0 !important;
  border-right: 1px solid #E2E8F0 !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}
.content-box table tr:last-child td,
.description table tr:last-child td {
  border-bottom: none !important;
}
.content-box table td:last-child,
.description table td:last-child {
  border-right: none !important;
}
.content-box table tr:nth-child(even) td,
.description table tr:nth-child(even) td {
  background-color: #F8FAFC !important;
}
.content-box table tr:hover td,
.description table tr:hover td {
  background-color: #F0F6FF !important;
}

/* Styled Click Here CTA Buttons inside Tables - High Contrast White Text */
.content-box table td a,
.description table td a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 20px !important;
  background: linear-gradient(135deg, #149447 0%, #0D9488 100%) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(20, 148, 71, 0.3) !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.3px !important;
}

.content-box table td a *,
.description table td a *,
.content-box table td a span,
.description table td a span,
.content-box table td a b,
.description table td a b {
  color: #ffffff !important;
  text-decoration: none !important;
}

.content-box table td a:hover,
.description table td a:hover {
  background: linear-gradient(135deg, #0D47B5 0%, #1358D8 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(13, 71, 181, 0.4) !important;
}

.content-box table td a:hover *,
.description table td a:hover * {
  color: #ffffff !important;
}

/* Modern Result Card Listing Hover Styles */
.result-card-modern:hover {
  border-color: #B8D5FF !important;
  box-shadow: 0 10px 30px rgba(7, 29, 73, 0.1) !important;
  transform: translateY(-2px);
}
.hover-royal:hover {
  color: var(--royal-blue) !important;
}

/* DESCRIPTION HEADINGS & PARAGRAPHS */
.description h1, .description h2, .description h3, .description h4, .description h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy-dark);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--royal-blue);
  line-height: 1.3;
}
.description h2 { font-size: 20px; border-left-color: var(--royal-blue); }
.description h3 { font-size: 18px; border-left-color: var(--saffron); }
.description h4 { font-size: 16px; border-left-color: var(--green-accent); }

.description ul, .description ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.description li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #2D3748;
}
.description p {
  line-height: 1.7;
  color: #2D3748;
  margin-bottom: 16px;
  font-size: 14.5px;
}

