:root {
  --navy: #0B1C2E;
  --navy-2: #122842;
  --blue: #2D6FF2;
  --amber: #FFB020;
  --slate: #5B6B7C;
  --ice: #e6e6e6;
  --ink: #101820;
  --line: #E4E9F0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 58px;
  line-height: 1.06;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 16px;
}

.box,
.box p,
.box li,
.card p,
.card li,
.pill,
.step p,
.why-card p {
  font-size: 15px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: #241800;
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.digitech-logo img {
  width: 195px;
}

.real-workplaces i {
  color: var(--amber);
  width: 45px;
  height: 45px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
  padding: 10px;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-2);
}

.btn:hover {
  background-color: var(--navy);
  color: #fff !important;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: #cfd9e6;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: #cfd9e6;
}

.topbar .tb-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar .tb-badges {
  display: flex;
  gap: 16px;
  color: #8fa3bd;
}

@media(max-width:760px) {
  .topbar .tb-badges {
    display: none;
  }
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
}

.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand .mark svg {
  width: 20px;
  height: 20px;
}

nav.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

nav.main-nav a:hover {
  color: var(--amber);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .phone {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media(max-width:980px) {
  nav.main-nav {
    display: none;
  }

  .header-cta .phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgb(11 28 46 / 63%) 38%, rgba(11, 28, 46, .55) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding: 70px 24px 54px;
}

.hero h1 {
  color: #fff;
}

.hero p.lead {
  color: #fff;
  font-size: 16px;
  max-width: 540px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 9px 15px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8edf5;
}

.pill svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero-visual img {
  height: 565px;
  width: 100%;
}

/* ---- Responsive: large tablet / small desktop ---- */
@media(max-width:1100px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-visual img {
    height: 340px;
  }
}

/* ---- Responsive: tablets ---- */
@media(max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-visual img {
    height: 280px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
  }

  .cross-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner h2 {
    font-size: 26px;
  }
}

/* ---- Responsive: large phones / small tablets ---- */
@media(max-width:760px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .status-strip .wrap {
    justify-content: flex-start;
    gap: 16px 26px;
    padding: 14px 24px;
  }

  .cta-banner {
    padding: 36px 26px;
    text-align: left;
  }
}

/* ---- Responsive: phones ---- */
@media(max-width:520px) {
  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 22px;
  }

  .wrap {
    padding: 0 18px;
  }

  .why-grid,
  .process-row,
  .cross-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .hero-inner {
    padding: 28px 18px 40px;
  }

  section {
    padding: 46px 0;
  }

  .header-inner {
    height: 68px;
  }

  .brand {
    font-size: 16px;
  }
}

/* Status strip */
.status-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.status-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe4f0;
  font-weight: 600;
  font-size: 14px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #33d17a;
  position: relative;
  flex-shrink: 0;
}

.dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #33d17a;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.6);
    opacity: .9;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Sections */
section {
  padding: 84px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 46px;
}

.section-head .eyebrow {
  color: var(--blue);
}

.bg-ice {
  background: var(--ice);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: #1ea364;
  flex-shrink: 0;
  margin-top: 1px;
  background: #e3f7ec;
  border-radius: 50%;
  padding: 3px;
}

.why-card {
  background: #fff;
  border-radius: 0.375rem;
  padding: 28px 24px;
  border-bottom: 2px solid var(--amber);
  text-align: center;
}

.why-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}

.why-card .ic i {
  font-size: 24px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  margin: 0;
}

.process-section {
  background: #f8fafc;
}

.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px 25px 30px;
  text-align: center;
  position: relative;
  transition: .35s;
  height: 100%;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgb(46 92 255 / 35%);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #f5efff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-icon i {
  font-size: 34px;
  color: var(--navy);
}

.process-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  color: #6c757d;
  line-height: 1.8;
  margin: 0;
}

@media(min-width:992px) {

  .process-card::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--blue);
    top: 40px;
    right: -30px;
  }

  .col-lg-3:last-child .process-card::after {
    display: none;
  }

}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

/* -------- Slider Container -------- */
.gallery-strip {
  position: relative;
}

/* -------- Each Slide (all equal) -------- */
.gallery-strip .slick-slide {
  margin: 0 8px;
}

/* all images same size — no center highlight */
.gallery-strip .slick-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
  display: block;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-strip .slick-slide img:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transform: scale(1.02);
}

/* -------- Slick Dots -------- */
.gallery-strip .slick-dots {
  bottom: -44px;
}

.gallery-strip .slick-dots li button:before {
  font-size: 12px;
  color: var(--blue);
  opacity: 0.25;
}

.gallery-strip .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--blue);
}

/* -------- Slick Arrows -------- */
.gallery-strip .slick-prev,
.gallery-strip .slick-next {
  z-index: 5;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 14px var(--shadow);
}

.gallery-strip .slick-prev:hover,
.gallery-strip .slick-next:hover {
  background: var(--blue);
}

.gallery-strip .slick-prev:hover:before,
.gallery-strip .slick-next:hover:before {
  color: #fff;
}

.gallery-strip .slick-prev:before,
.gallery-strip .slick-next:before {
  font-size: 22px;
  color: var(--blue);
  opacity: 1;
  transition: color 0.3s;
}

.gallery-strip .slick-prev {
  left: -22px;
}

.gallery-strip .slick-next {
  right: -22px;
}

/* ========================================
                   LIGHTBOX (Full‑screen image viewer)
                   ======================================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: lightboxIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes lightboxIn {
  0% {
    transform: scale(0.92);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  display: block;
}

/* ---- Close button ---- */
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 34px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---- Navigation arrows inside lightbox ---- */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ---- Counter (e.g. "3 / 5") ---- */
.lightbox-counter {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 18px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ========================================
                   RESPONSIVE
                   ======================================== */
@media (max-width: 1024px) {
  .gallery-strip .slick-slide img {
    height: 220px;
  }

  .gallery-strip .slick-prev {
    left: -10px;
  }

  .gallery-strip .slick-next {
    right: -10px;
  }

  .lightbox-prev {
    left: -40px;
  }

  .lightbox-next {
    right: -40px;
  }
}

@media (max-width: 760px) {
  section {
    padding: 56px 0;
  }

  .section-head h2 {
    font-size: 1.6rem;
  }

  .gallery-strip .slick-slide {
    margin: 0 4px;
  }

  .gallery-strip .slick-slide img {
    height: 180px;
    border-radius: 12px;
  }

  .gallery-strip .slick-prev,
  .gallery-strip .slick-next {
    width: 36px;
    height: 36px;
  }

  .gallery-strip .slick-prev {
    left: 2px;
  }

  .gallery-strip .slick-next {
    right: 2px;
  }

  .gallery-strip .slick-prev:before,
  .gallery-strip .slick-next:before {
    font-size: 18px;
  }

  .gallery-strip .slick-dots {
    bottom: -36px;
  }

  .lightbox-content {
    max-width: 94vw;
    max-height: 92vh;
  }

  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: -10px;
  }

  .lightbox-next {
    right: -10px;
  }

  .lightbox-close {
    top: -44px;
    font-size: 28px;
  }

  .lightbox-counter {
    font-size: 0.8rem;
    bottom: -38px;
    padding: 2px 14px;
  }
}

@media (max-width: 480px) {
  .gallery-strip .slick-slide img {
    height: 150px;
    border-radius: 10px;
  }

  .gallery-strip .slick-prev {
    left: 0px;
  }

  .gallery-strip .slick-next {
    right: 0px;
  }

  .lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .lightbox-prev {
    left: -6px;
  }

  .lightbox-next {
    right: -6px;
  }

  .lightbox-close {
    top: -38px;
    font-size: 24px;
    right: 0;
  }
}

/* --- Service cards with image (like the reference) --- */

.services-section {
  background: #f8f8f8;
}

.service-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  left: 50%;
  top: 175px;
  transform: translateX(-50%);
  z-index: 2;
}

.icon-circle {
  width: 85px;
  height: 85px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 38px;
  color: #fff;
}

.service-content {
  padding: 25px 12px 12px;
  text-align: center;
}

.service-content h4 {
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-content p {
  color: #777;
  line-height: 1.8;
  margin-bottom: 25px;
}

.discover {
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


@media(max-width:767px) {

  .service-image {
    height: 200px;
  }

  .service-icon {
    top: 155px;
  }

}

.newsletter {
  position: relative;
  top: 74px;
}

.cta-banner {
  background: linear-gradient(135deg, #122842 0%, #1d466d 45%, #FFB020 100%);
  color: #fff;
  border-radius: 20px;
  padding: 56px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: #fff;
  margin: 0;
  font-size: 32px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

footer {

  color: #b7c4d6;
  padding: 140px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 18px;
  letter-spacing: .03em;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 14px;
  color: #aebbcf;
  margin-bottom: 11px;
}

.footer-grid a::before {
  content: "➜";
  position: relative;
  right: 5px;
  color: var(--amber);
  transition: .3s;

}

.footer-grid a:hover {
  color: #fff;
}

.footer-icon i {
  color: var(--amber);
}

.f-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}

.f-brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--amber);
  color: #241800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-brand .mark svg {
  width: 18px;
  height: 18px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  color: #8398b3;
  flex-wrap: wrap;
  gap: 8px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating contact cluster (call / whatsapp / email) - all screen sizes */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 28, 46, .28);
  color: #fff;
  transition: .18s ease;
  position: relative;
  flex-shrink: 0;
}

.fab svg {
  width: 24px;
  height: 24px;
}

.fab:hover {
  transform: translateY(-3px) scale(1.05);
}

.fab-call {
  background: var(--blue);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-email {
  background: var(--navy);
}

.fab-label {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .15s ease;
}

.fab:hover .fab-label {
  opacity: 1;
}

@media(max-width:760px) {
  .fab-stack {
    right: 14px;
    bottom: 78px;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab svg {
    width: 21px;
    height: 21px;
  }

  .fab-label {
    display: none;
  }
}

/* Sticky mobile action bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--line);
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, .08);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 11px 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--line);
}

.mobile-bar a:last-child {
  border-right: none;
}

.mobile-bar svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

@media(max-width:760px) {
  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 64px;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 17, 28, .6);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 36px;
  position: relative;
}

.modal-box h2 {
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ice);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
}

.modal-box .btn {
  width: 100%;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 90;
  display: none;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 4px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.mobile-nav-close {
  align-self: flex-end;
  background: var(--ice);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 10px;
}

/* --- Desktop dropdown --- */
.services-dropdown {
  position: relative;
}

.services-dropdown .dropdown-toggle {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  background: none !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}

/* Bootstrap's default caret is a border triangle (hollow) */
.services-dropdown .dropdown-toggle::after {
  border-top-color: var(--ink);
  /* colour of the caret */
  margin-left: 4px;
  font-size: 20px;
  transition: transform .2s ease;
}

/* Rotate caret when dropdown is open */
.services-dropdown .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.services-dropdown .dropdown-toggle:hover {
  color: var(--amber);
}

.services-dropdown .dropdown-menu {
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 14px 34px rgba(11, 28, 46, .14);
  background: var(--navy);
  margin-top: 8px !important;
}

.services-dropdown .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--ice);
  padding: 9px 22px;
  transition: .15s ease;
  border-bottom: 1px solid var(--navy);
}

.services-dropdown .dropdown-item:hover {
  background: var(--ice);
  color: var(--navy);
  border-left-color: var(--blue);
}

.services-dropdown .dropdown-item:active {
  background: var(--ice);
  color: var(--blue);
}

/* --- Mobile services toggle --- */
.mobile-services-wrapper {
  border-bottom: 1px solid var(--line);
}

.mobile-services-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 4px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--navy) !important;
  border-bottom: none !important;
  cursor: pointer;
  text-decoration: none;
}

.mobile-services-toggle .arrow {
  font-size: 20px;
  transition: transform .25s ease;
  color: var(--slate);
}

.mobile-services-toggle[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.mobile-services-list {
  padding: 4px 0 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 8px;
  background: var(--navy);
}

.mobile-services-list a {
  padding: 10px 4px 10px 14px !important;
  font-weight: 500 !important;
  font-size: 14.5px !important;
  border-bottom: none !important;
  color: var(--ice) !important;
  transition: .15s ease;
}

.mobile-services-list a:hover {
  color: var(--navy) !important;
  border-left-color: var(--blue);
  background: var(--ice);
  border-radius: 0 6px 6px 0;
}

/* --- Fix for Bootstrap dropdown in sticky header --- */
.site-header .dropdown-menu {
  z-index: 1050;
}

/* --- Mobile nav adjustments for collapse --- */
.mobile-nav .collapse {
  width: 100%;
}

/* --- Ensure Bootstrap doesn't break existing flex --- */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* --- Responsive: hide dropdown toggle arrow on mobile if needed --- */
@media(max-width:980px) {
  .services-dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* --- Contact page styles --- */
.contact-info-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.contact-info-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-info-item .icon-box i {
  color: #fff;
  font-size: 22px;
}

.contact-item-content p {
  margin: 0 0 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

.contact-item-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.contact-item-content h5 a {
  color: var(--ink);
  text-decoration: none;
}

.contact-item-content h5 a:hover {
  color: var(--blue);
}

/* Breadcrumb style */
.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #cfd9e6;
}

.page-header .breadcrumb-item a {
  color: #cfd9e6;
}

.page-header .breadcrumb-item a:hover {
  color: #fff;
}

/* Form styling */
.contact-us-form .form-control {
  border: 1px solid #e4e9f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

.contact-us-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 111, 242, 0.15);
}

.stats .border {
  border-bottom: 2px solid var(--amber) !important;
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: .18s ease;
}

.project-card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(11, 28, 46, .12);
  transform: translateY(-3px);
}

.project-card .thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .thumb .ic {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(11, 28, 46, .85);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}


.project-card .body {
  padding: 22px 22px 24px;
}

.project-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.project-card p {
  margin: 0 0 14px;
}

.project-card a.link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-meta span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: #e8edf5;
  font-weight: 600;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 110px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0px 0px 2px #fbab1f;
}

.legal-toc h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c7a8a;
  margin: 0 0 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc h4::before {
  content: '📋';
  font-size: 16px;
}

.legal-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1a2a4a;
  padding: 10px 0;
  border-bottom: 1px solid rgb(251 172 33);
  transition: all 0.25s ease;
  text-decoration: none;
  position: relative;
}

.legal-toc a:last-child {
  border-bottom: none;
}

.legal-toc a:hover {
  color: var(--amber);
}

.legal-toc a:hover::before {
  background: var(--amber);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
}

.legal-body {
  max-width: 760px;
}

.legal-section {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.legal-section p {
  margin-bottom: 14px;
}

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
}

.legal-section li strong {
  color: var(--ink);
}

.legal-contact-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}

.legal-contact-card h3 {
  color: #fff;
  font-size: 19px;
  margin: 0 0 14px;
}

.legal-contact-card a {
  color: #e8edf5;
  display: block;
  font-size: 14.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-contact-card a:hover {
  color: var(--amber);
}

@media(max-width:980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}