:root {
  --bg-soft: #edf3fb;
  --text-main: #0f1f3a;
  --text-muted: #6e7786;
  --navy: #10224b;
  --navy-2: #162b58;
  --navy-3: #0d1938;
  --line: rgba(16, 34, 75, 0.08);
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(17, 32, 67, 0.08);
  --shadow-mid: 0 24px 48px rgba(17, 32, 67, 0.14);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: var(--bg-soft);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.shell-wide,
.shell-narrow {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.shell-wide {
  max-width: 90%;
}

.shell-narrow {
  max-width: 80%;
}

.section {
  padding: 36px 0;
}

.hero-section {
  position: relative;
  min-height: 705px;
  overflow: hidden;
}

.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  min-height: 705px;
}

.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 20%, rgba(5, 10, 25, 0.2) 100%),
    linear-gradient(180deg, rgba(9, 16, 34, 0.05) 0%, rgba(9, 16, 34, 0.2) 100%);
}

.site-navbar {
  position: relative;
  z-index: 2;
  padding: 22px 0 0;
}

.brand-logo img {
  width: 118px;
}

.brand-logo picture,
.footer-center picture {
  display: block;
}

.site-navbar .navbar-collapse {
  align-items: center;
}

.site-navbar .navbar-nav {
  gap: 22px;
}

.site-navbar .nav-link {
  padding: 0;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--navy);
}

.site-navbar .nav-link.active-page {
  color: var(--navy);
  font-weight: 700;
}

.nav-actions {
  margin-top: 0;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 33px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.action-pill:hover {
  transform: translateY(-1px);
}

.action-call {
  color: var(--text-main);
  border: 1px solid rgba(16, 34, 75, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.action-call i {
  color: var(--navy);
  font-size: 13px;
}

.action-login {
  color: var(--text-main);
  border: 1px solid rgba(16, 34, 75, 0.16);
  background: rgba(255, 255, 255, 0.68);
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: 88px;
  padding-bottom: 86px;
}

.hero-control {
  top: 50%;
  bottom: auto;
  width: 64px;
  height: 64px;
  opacity: 1;
  transform: translateY(-50%);
}

.hero-control-prev {
  left: 26px;
}

.hero-control-next {
  right: 26px;
}

.hero-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-control-icon i {
  font-size: 20px;
}

.hero-control:hover .hero-control-icon,
.hero-control:focus .hero-control-icon {
  transform: scale(1.05);
  background: var(--white);
}

.hero-copy {
  max-width: 980px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(28px, 4.2vw, 47px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.08;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.hero-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 17px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 700;
}

.cta-button i {
  font-size: 16px;
  color: var(--navy);
}

.about-wrap {
  padding-top: 54px;
}

.about-visual {
  position: relative;
  max-width: 612px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: 24px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.about-badge i {
  color: var(--navy);
  font-size: 15px;
}

.about-copy {
  max-width: 500px;
  margin-left: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
}

.about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 2.2vw, 38px);
  line-height: 1.1;
  font-weight: 800;
}

.about-copy p,
.service-content p,
.info-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.mini-button i {
  font-size: 14px;
}

.mini-button-dark {
  padding-inline: 18px 12px;
}

.feature-shell,
.reviews-shell {
  background: #11265a;
  border-radius: 14px;
  padding: 22px 24px 20px;
  box-shadow: var(--shadow-mid);
}

.band-title {
  margin: 0 0 18px;
  text-align: center;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.feature-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 264px;
}

.feature-tile img {
  width: 100%;
  height: 264px;
  object-fit: cover;
}

.feature-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.section-heading {
  margin: 0 0 26px;
  color: var(--text-main);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 800;
}

.service-grid {
  margin-top: 8px;
}

.service-card,
.info-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.service-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 225px);
  padding: 16px 16px 18px;
}

.service-content h3,
.info-content h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.service-content .mini-button,
.info-content .mini-button {
  margin-top: auto;
  align-self: flex-start;
}

.view-all-wrap {
  margin-top: 18px;
}

.enquiry-wrap {
  padding-top: 32px;
}

.enquiry-card {
  height: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #10224b;
  box-shadow: var(--shadow-mid);
}

.form-label {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.form-control,
.form-select {
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  color: var(--text-main);
  font-size: 14px;
}

.form-control::placeholder {
  color: #8792a6;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.form-select:invalid {
  color: #8792a6;
}

.large-field {
  min-height: 106px;
  resize: vertical;
}

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.upload-box i {
  font-size: 18px;
}

.upload-box p {
  margin: 6px 0 0;
  font-size: 13px;
}

.upload-box small {
  font-size: 12px;
}

.browse-link {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
}

.submit-button {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.enquiry-image {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}

.enquiry-image img {
  width: 100%;
  height: 100%;
  min-height: 422px;
  object-fit: cover;
}

.info-card img {
  width: 100%;
  height: 276px;
  object-fit: cover;
}

.info-content {
  padding: 16px 10px 8px;
}

.reviews-wrap {
  padding-top: 28px;
}

.review-slider {
  position: relative;
}

.review-slider .carousel-item {
  padding: 4px 0;
}

.review-row {
  display: grid;
  grid-template-columns: 58px 74px minmax(0, 1fr) 74px 58px;
  align-items: center;
  gap: 20px;
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.avatar.small {
  width: 58px;
  height: 58px;
}

.avatar.featured {
  width: 78px;
  height: 78px;
  border: 3px solid rgba(17, 38, 90, 0.12);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #f6f3eb;
}

.review-text {
  flex: 1;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-text p {
  margin: 0 0 8px;
}

.review-text strong {
  display: block;
  color: var(--text-main);
  font-size: 13px;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: #f3b84b;
  font-size: 13px;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.review-nav button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
}

.cta-shell {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(90deg, #10224b 0%, #10224b 55%, #19315f 100%);
  box-shadow: var(--shadow-mid);
}

.cta-copy {
  padding: 32px 24px;
  color: var(--white);
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 2.1vw, 34px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
}

.cta-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.7;
}

.cta-button-small {
  font-size: 13px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
}

.inner-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-hero .site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.inner-hero .site-navbar .nav-link:hover,
.inner-hero .site-navbar .nav-link:focus,
.inner-hero .site-navbar .nav-link.active-page {
  color: var(--white);
}

.inner-hero-about {
  background-image: url("assets/xref_250.jpeg");
}

.inner-hero-services {
  background-image: url("assets/xref_150.jpeg");
}

.inner-hero-contact {
  background-image: url("assets/xref_76.jpeg");
}

.inner-hero-areas {
  background-image: url("assets/xref_162.jpeg");
}

.inner-hero-hiring {
  background-image: url("assets/xref_180.jpeg");
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 20, 43, 0.48) 0%, rgba(9, 20, 43, 0.62) 100%),
    linear-gradient(90deg, rgba(9, 20, 43, 0.35) 0%, rgba(9, 20, 43, 0.1) 100%);
}

.inner-hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 315px;
  padding-top: 76px;
  padding-bottom: 52px;
}

.inner-hero-copy {
  max-width: 820px;
  color: var(--white);
}

.page-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
}

.inner-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.inner-hero-copy p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.content-panel,
.icon-card,
.contact-card,
.coverage-card {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-panel {
  padding: 22px;
}

.content-media {
  border-radius: 16px;
  overflow: hidden;
}

.content-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.tall-media img {
  min-height: 420px;
}

.content-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.15;
  font-weight: 800;
}

.content-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.65;
}

.check-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--navy);
  font-family: "bootstrap-icons";
  font-size: 15px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.92);
}

.join-team-wrap {
  padding-top: 22px;
}

.join-team-shell {
  display: block;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #10224b 0%, #15305f 56%, #1c3f7a 100%);
  color: var(--white);
  box-shadow: var(--shadow-mid);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join-team-shell:hover,
.join-team-shell:focus {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(17, 32, 67, 0.2);
}

.join-team-shell h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.join-team-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.7;
}

.join-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.join-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
}

.join-team-card {
  height: 100%;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.join-team-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-team-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-team-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.55;
}

.join-team-list i {
  margin-top: 2px;
  color: #8fd1ff;
}

.join-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.join-team-cta i {
  font-size: 15px;
}

.why-work-shell {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow-mid);
}

.why-work-copy {
  padding-right: 10px;
}

.why-work-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.12;
  font-weight: 800;
}

.why-work-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.why-work-tags {
  margin-top: 20px;
}

.why-work-panel {
  height: 100%;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #10224b 0%, #16315f 100%);
  color: var(--white);
}

.why-work-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-work-list li {
  color: rgba(255, 255, 255, 0.94);
}

.why-work-list i {
  color: #8fd1ff;
}

.vacancy-grid {
  margin-top: 8px;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--navy);
}

.vacancy-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.vacancy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf3fb;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.vacancy-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.vacancy-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vacancy-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.55;
}

.vacancy-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--navy);
  font-family: "bootstrap-icons";
  font-size: 15px;
}

.vacancy-card .mini-button {
  margin-top: auto;
}

.application-shell {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #10224b 0%, #132956 100%);
  color: var(--white);
  box-shadow: var(--shadow-mid);
}

.application-shell h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.12;
}

.application-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
}

.application-panel {
  height: 100%;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.application-panel .form-label {
  color: var(--text-main);
}

.upload-field {
  padding: 16px;
  border: 1px dashed rgba(16, 34, 75, 0.22);
  border-radius: 14px;
  background: #f6f8fc;
}

.helper-text {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.file-input {
  min-height: 44px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.icon-card,
.contact-card,
.coverage-card,
.process-card,
.stat-card {
  height: 100%;
}

.icon-card,
.contact-card,
.coverage-card {
  padding: 28px 22px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 24px;
}

.icon-card h3,
.contact-card h3,
.coverage-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}

.icon-card p,
.contact-card p,
.coverage-card p,
.process-card p,
.stat-card span,
.accordion-sky .accordion-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.stats-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 800;
}

.service-detail .service-content {
  height: auto;
  min-height: 185px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.accordion-sky .accordion-item {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-sky .accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-sky .accordion-button {
  padding: 16px 18px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  box-shadow: none;
}

.accordion-sky .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #f7f9fd;
}

.accordion-sky .accordion-body {
  background: #ffffff;
}

.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 32px 0 10px;
  background: #0f1f47;
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}

.footer-contact p,
.footer-bottom p,
.footer-nav a,
.powered-by span {
  font-size: 13px;
}

.footer-contact p {
  margin: 0 0 8px;
}

.footer-center {
  text-align: center;
}

.footer-center img {
  width: 96px;
  margin: 0 auto 10px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
}

.powered-by img {
  width: 78px;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card img {
    height: 210px;
  }

  .review-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
  }

  .review-row .avatar:nth-child(2),
  .review-row .avatar:nth-child(4) {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .shell-wide,
  .shell-narrow {
    max-width: calc(100% - 32px);
  }

  .section {
    padding: 32px 0;
  }

  .site-navbar {
    padding-top: 16px;
  }

  .site-navbar .navbar-collapse {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
  }

  .site-navbar .navbar-nav {
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
  }

  .action-pill {
    width: 100%;
  }

  .hero-section {
    min-height: 620px;
  }

  .hero-slider,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 620px;
  }

  .inner-hero {
    min-height: 360px;
  }

  .inner-hero-body {
    min-height: 270px;
    padding-top: 64px;
  }

  .hero-body {
    min-height: 500px;
    padding-top: 70px;
  }

  .about-copy {
    margin-left: 0;
    max-width: none;
  }

  .enquiry-image img {
    min-height: 320px;
  }

  .why-work-copy {
    padding-right: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social,
  .footer-bottom,
  .powered-by {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .join-team-shell,
  .why-work-shell,
  .application-shell,
  .application-panel {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-slider,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 700px;
  }

  .hero-control {
    width: 48px;
    height: 48px;
  }

  .hero-control-prev {
    left: 10px;
  }

  .hero-control-next {
    right: 10px;
  }

  .hero-control-icon {
    width: 44px;
    height: 44px;
  }

  .inner-hero-copy h1 {
    font-size: 34px;
  }

  .feature-shell,
  .reviews-shell,
  .cta-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-tile img {
    height: 236px;
  }

  .service-card img,
  .info-card img {
    height: 210px;
  }

  .content-panel,
  .icon-card,
  .contact-card,
  .coverage-card,
  .process-card,
  .stat-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .review-row {
    grid-template-columns: 1fr;
  }

  .review-row .avatar {
    display: none;
  }

  .review-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    gap: 10px 16px;
  }

  .join-team-shell {
    padding: 18px;
  }

  .join-team-card {
    margin-top: 6px;
  }

  .why-work-shell {
    padding: 18px;
  }

  .why-work-panel {
    padding: 18px;
  }

  .join-team-cta {
    width: 100%;
    justify-content: center;
  }

}

/* ——— Client profile panel ——— */
.inner-hero-client {
  background-image:
    linear-gradient(135deg, rgba(13, 25, 56, 0.92) 0%, rgba(16, 34, 75, 0.88) 45%, rgba(22, 43, 88, 0.9) 100%),
    url("assets/xref_76.jpeg");
}

.client-profile-main {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.client-panel-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 28px;
  align-items: start;
}

.client-panel-sidebar {
  padding: 28px 24px;
  border-radius: 22px;
  background: linear-gradient(165deg, var(--navy-3) 0%, var(--navy) 55%, var(--navy-2) 100%);
  box-shadow: var(--shadow-mid);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.client-panel-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(143, 209, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(243, 184, 75, 0.12), transparent 38%);
  pointer-events: none;
}

.client-panel-sidebar > * {
  position: relative;
  z-index: 1;
}

.client-avatar {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: linear-gradient(145deg, #fff 0%, #e8f0fc 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.client-panel-sidebar h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.client-panel-email {
  margin: 0 0 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-word;
}

.client-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(243, 184, 75, 0.18);
  color: #f3d9a0;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.client-panel-badge-wrap {
  display: flex;
  justify-content: center;
}

.client-panel-meta {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-panel-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.client-panel-meta li i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #8fd1ff;
  flex-shrink: 0;
}

.client-panel-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.client-panel-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.15s ease;
}

.client-panel-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateX(2px);
}

.client-panel-logout {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.client-panel-logout:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.client-panel-card {
  padding: 32px 30px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(16, 34, 75, 0.06);
}

.client-panel-card-header {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.client-panel-card-header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.client-panel-card-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.client-profile-form .form-label {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
}

.client-profile-form .form-control {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-profile-form .form-control:focus {
  border-color: rgba(16, 34, 75, 0.35);
  box-shadow: 0 0 0 4px rgba(143, 209, 255, 0.25);
}

.client-profile-form .form-control:disabled {
  background: #f4f7fc;
  color: var(--text-muted);
}

.client-profile-save {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(16, 34, 75, 0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.client-profile-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(16, 34, 75, 0.28);
  color: var(--white);
}

.client-profile-alert {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(25, 135, 84, 0.2);
  background: linear-gradient(90deg, rgba(25, 135, 84, 0.08), rgba(25, 135, 84, 0.04));
  color: #146c43;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991.98px) {
  .client-panel-grid {
    grid-template-columns: 1fr;
  }

  .client-profile-main {
    margin-top: -24px;
  }
}
