/* Inner page hero banner */
.page-hero {
  background: linear-gradient(135deg, #030e2c 0%, #1e0876 100%);
  padding: 56px 0 48px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 14px;
}

.page-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: #fff;
}

.page-breadcrumb .active {
  color: #fff;
}

.navbar .nav-link.active {
  color: #1e0876 !important;
  font-weight: 700;
}

.page-main > section:first-of-type {
  padding-top: 50px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 36px;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}

/* Contact page – office locations */
.contact-offices-section {
  background: #f5f5f5;
}

.contact-offices-section .section-title {
  margin-bottom: 40px;
}

.contact-offices-section .section-title h5 {
  color: #1e0876;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-offices-section .section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0b1b5e;
  margin-bottom: 12px;
}

.contact-offices-section .title-line {
  width: 90px;
  height: 4px;
  background: #1e0876;
  border-radius: 30px;
}

.office-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 8, 118, 0.1);
}

.office-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0eef8;
}

.office-card-header i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #1e0876;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.office-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1b5e;
  margin: 0;
  line-height: 1.35;
}

.office-card address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
  color: #5f6475;
  margin: 0;
}

.contact-direct-box {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-direct-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-direct-item > i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #1e0876;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-direct-item span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1e0876;
  margin-bottom: 6px;
}

.contact-direct-item a {
  font-size: 15px;
  font-weight: 600;
  color: #0b1b5e;
  text-decoration: none;
  line-height: 1.7;
}

.contact-direct-item a:hover {
  color: #1e0876;
}

@media (max-width: 768px) {
  .contact-offices-section .section-title h2 {
    font-size: 28px;
  }
}

/* Contact page – form section */
.contact-form-section {
  background: #fff;
}

.contact-form-heading {
  margin-bottom: 40px;
}

.contact-form-heading h5 {
  color: #1e0876;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-form-heading h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0b1b5e;
  margin-bottom: 12px;
}

.contact-form-heading .title-line {
  width: 90px;
  height: 4px;
  background: #1e0876;
  border-radius: 30px;
}

.contact-form-intro {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 15px;
  color: #5f6475;
  line-height: 1.7;
}

.contact-form-card {
  background: #f9f9fc;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0b1b5e;
  margin-bottom: 8px;
}

.contact-label span {
  color: #1e0876;
}

.contact-field {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.contact-field:focus {
  border-color: #1e0876;
  box-shadow: 0 0 0 0.2rem rgba(30, 8, 118, 0.12);
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit-btn {
  background: #1e0876;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: #15065a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 8, 118, 0.25);
}

.contact-sidebar {
  background: linear-gradient(160deg, #030e2c 0%, #1e0876 100%);
  color: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(30, 8, 118, 0.2);
}

.contact-sidebar h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.contact-sidebar-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.contact-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.contact-sidebar-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-sidebar-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-sidebar-list li > i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-sidebar-list strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-sidebar-list a,
.contact-sidebar-list span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
}

.contact-sidebar-list a:hover {
  color: #d4c4ff;
}

@media (max-width: 991px) {
  .contact-sidebar {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .contact-form-heading h2 {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 22px 18px;
  }

  .contact-sidebar {
    padding: 24px 20px;
  }
}

/* Careers page */
.careers-section {
  background: #f5f5f5;
}

.careers-form-box h2,
.careers-jobs-box h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0b1b5e;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1e0876;
}

.careers-input {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.careers-input:focus {
  border-color: #1e0876;
  box-shadow: 0 0 0 0.2rem rgba(30, 8, 118, 0.15);
}

.careers-file-label {
  display: flex;
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}

.careers-file-text {
  flex: 1;
  padding: 12px 14px;
  font-size: 14px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.careers-file-input {
  display: none;
}

.careers-browse-btn {
  background: #1e0876;
  color: #fff;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.careers-submit-btn {
  background: #e8e8e8;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.careers-submit-btn:hover {
  background: #1e0876;
  color: #fff;
  border-color: #1e0876;
}

.careers-email-note {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
}

.careers-or {
  color: #d4a017;
  font-weight: 700;
}

.careers-email-note a {
  color: #0b1b5e;
  font-weight: 600;
  text-decoration: none;
}

.careers-email-note a:hover {
  color: #1e0876;
}

.careers-accordion .accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.careers-accordion .accordion-button {
  background: #ececec;
  color: #0b1b5e;
  font-weight: 800;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
  padding: 14px 18px;
}

.careers-accordion .accordion-button:not(.collapsed) {
  background: #ececec;
  color: #0b1b5e;
}

.careers-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: #1e0876;
}

.careers-accordion .accordion-body {
  padding: 18px;
  background: #fff;
}

.job-qualification {
  font-size: 14px;
  color: #333;
  margin-bottom: 14px;
}

.job-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.job-skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.job-skills-list li {
  padding: 12px 14px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.job-skills-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .careers-form-box h2,
  .careers-jobs-box h2 {
    font-size: 22px;
  }
}

/* Clients page */
.clients-page .clients-page-title h2 {
  font-size: 42px;
}

.clients-intro {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5f6475;
}

.clients-page .clients-page-track {
  width: calc(280px * 22);
  animation: clientsPageScroll 30s linear infinite;
}

@keyframes clientsPageScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 11));
  }
}

.clients-grid-section {
  background: #fff;
}

.clients-grid-section .section-title h5 {
  color: #1e0876;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clients-grid-section .section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0b1b5e;
}

.clients-grid-section .title-line {
  width: 90px;
  height: 4px;
  background: #1e0876;
  border-radius: 30px;
}

.client-grid-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.client-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(30, 8, 118, 0.12);
}

.client-grid-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .clients-page .clients-page-title h2 {
    font-size: 28px;
  }

  .client-grid-card {
    height: 130px;
    padding: 16px;
  }
}
