/* Hero Section */
.ng-hero-exact {
  background: url('../images/hero-bg.jpg') no-repeat center bottom;
  background-size: cover;
  padding: 80px 0 120px;
  position: relative;
  background-color: #0b1f3f; /* fallback */
}
.ng-hero-inner {
  position: relative;
  z-index: 2;
}
.ng-hero-grid-exact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.ng-hero-title-exact {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.ng-search-box-exact {
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: relative;
}
.ng-search-input-exact {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  outline: none;
  border-radius: 8px 0 0 8px;
}
.ng-search-btn-exact {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 0 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}
.ng-live-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 4px;
}
.ng-live-search-item {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}
.ng-live-search-item:last-child {
  border-bottom: none;
}
.ng-live-search-item:hover, .ng-live-search-item.active {
  background-color: #f8fafc;
  color: #0284c7;
}
.ng-live-search-item .icon {
  color: #94a3b8;
  font-size: 14px;
}
.ng-emp-find-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.ng-emp-find-title {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.ng-emp-find-desc {
  font-size: 13px;
  color: #475569;
  margin-bottom: 16px;
}

/* Tabs Overlay */
.ng-tabs-overlay {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}
.ng-tabs-grid-exact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ng-tab-card-exact {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.ng-tab-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}
.ng-tab-pills-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ng-tab-pill-btn {
  font-size: 13px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.ng-tab-pill-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Employers Grid */
.ng-employers-grid-exact {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.ng-employer-card-exact {
  background: #fff;
  border-radius: 8px;
  height: 80px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.ng-employer-card-exact:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-color: #cbd5e1;
}

/* Reads / Blog Grid */
.ng-reads-grid-exact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ng-read-card-exact {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.ng-read-card-img {
  height: 140px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.ng-read-card-body {
  padding: 16px;
}
.ng-read-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.ng-read-card-meta {
  font-size: 12px;
  color: #64748b;
}

/* Industries / Categories */
.ng-industries-grid-exact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ng-industry-card-exact {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  text-align: center;
}
.ng-industry-title-exact {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.ng-industry-count-exact {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}
.ng-industry-logos-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.ng-industry-mini-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Poll Box */
.ng-poll-box-exact {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.ng-poll-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.ng-poll-illustration {
  font-size: 48px;
}
.ng-poll-card {
  flex: 1;
}
.ng-poll-options label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #475569;
}

/* Boost Grid */
.ng-boost-grid-exact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ng-boost-card-exact {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ng-boost-icon-exact {
  font-size: 32px;
}
.ng-boost-title-exact {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.ng-boost-desc-exact {
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* App Promo */
.ng-app-promo-exact {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  margin: 40px 0;
}
.ng-app-promo-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.ng-app-promo-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 24px;
}
.ng-app-promo-qr-row {
  display: flex;
  gap: 24px;
  align-items: center;
}
.ng-app-promo-qr {
  width: 100px;
  height: 100px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #94a3b8;
}
.ng-app-badge-btn-exact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}
.ng-app-badge-text-exact {
  display: flex;
  flex-direction: column;
}
.ng-app-badge-text-exact .lbl {
  font-size: 10px;
}
.ng-app-badge-text-exact .val {
  font-size: 14px;
  font-weight: 700;
}

/* Responsive Overrides — Tablet */
@media(max-width: 991px) {
  .ng-hero-grid-exact {
    grid-template-columns: 1fr;
  }
  .ng-tabs-grid-exact, .ng-industries-grid-exact, .ng-boost-grid-exact {
    grid-template-columns: 1fr;
  }
  .ng-employers-grid-exact, .ng-reads-grid-exact {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng-poll-box-exact {
    flex-direction: column;
  }
}

/* Responsive Overrides — Mobile */
@media(max-width: 768px) {
  .ng-hero-exact {
    padding: 40px 0 80px;
  }
  .ng-hero-title-exact {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .ng-hero-grid-exact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ng-emp-find-card {
    padding: 16px;
  }
  .ng-search-box-exact {
    flex-direction: column;
    border-radius: 8px;
    overflow: visible;
    gap: 8px;
    background: transparent;
    box-shadow: none;
  }
  .ng-search-input-exact {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
  }
  .ng-search-btn-exact {
    border-radius: 8px;
    padding: 14px 20px;
    width: 100%;
  }
  .ng-employers-grid-exact {
    grid-template-columns: repeat(3, 1fr);
  }
  .ng-reads-grid-exact {
    grid-template-columns: 1fr;
  }
  .ng-app-promo-exact {
    padding: 24px 16px;
  }
  .ng-app-promo-qr-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ng-poll-box-exact {
    padding: 20px 16px;
    gap: 20px;
  }
  .ng-boost-grid-exact {
    grid-template-columns: 1fr;
  }
  .ng-industries-grid-exact {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng-tabs-overlay {
    margin-top: -30px;
  }
}

@media(max-width: 480px) {
  .ng-industries-grid-exact {
    grid-template-columns: 1fr;
  }
  .ng-employers-grid-exact {
    grid-template-columns: repeat(2, 1fr);
  }
}