:root {
  --ink: #111111;
  --muted: #666666;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --deep: #000000;
  --accent: #111111;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 9px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
}

.topbar a,
.topbar span,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg,
.contact-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d6d6d6;
}

.nav-cta {
  padding: 12px 17px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 160px 0 70px;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: grayscale(100%);
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-heading {
  max-width: 420px;
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button.primary {
  background: #fff;
  color: #000;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-height: 104px;
  padding: 20px;
  background: rgba(11, 24, 32, 0.58);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.intro-band,
.values-section,
.clients-section {
  background: var(--soft);
}

.split,
.contact-layout,
.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.prose p,
.section-heading p,
.clients-layout p,
.contact-layout p,
.values-grid p,
.partner-statement p,
.manual-showcase p {
  color: var(--muted);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-top: 24px;
  background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.spendlifetraveling.com%2Fwp-content%2Fuploads%2F2019%2F11%2Fliving_in_abu_dhabi.jpg&f=1&nofb=1&ipt=33db04d083c355ac4ac4ebc188536e94052ce5858a205de52223d91665398312');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-image:hover,
.statement-image:hover,
.advantage-image-placeholder:hover {
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.015);
}

.about-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.about-layout .prose {
  max-width: 640px;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 960px;
}

.advantage-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
}

.feature-panel {
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.feature-panel h3,
.feature-panel p,
.feature-panel .text-link {
  margin-left: 34px;
  margin-right: 34px;
}

.feature-panel h3 {
  margin-top: 32px;
}

.feature-panel p {
  color: var(--muted);
}

.advantage-image-placeholder {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1100&q=82');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.advantage-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.advantage-image-placeholder span {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.45);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.advantage-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.advantage-grid article,
.values-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.advantage-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--ink);
}

.advantage-grid p {
  color: var(--muted);
}

.services-section {
  background: #f7f7f7;
}

.image-carousel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  display: grid;
  align-items: end;
  padding: 48px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: grayscale(100%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-overlay {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: #fff;
}

.slide-overlay svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
}

.slide-overlay h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.slide-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.carousel-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-controls svg {
  width: 22px;
  height: 22px;
}

.values-grid article {
  border-top: 4px solid #111;
}

.team-section {
  padding-bottom: 0;
}

.partner-statement {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 70px;
  color: #fff;
  background: var(--deep);
}

.partner-statement .section-kicker,
.contact-section .section-kicker {
  color: #fff;
}

.statement-image {
  min-height: 520px;
  background-image: url('https://tajmlc.ae/image/MAS-PHOTO.jpeg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.partner-statement article {
  padding: 58px;
}

.partner-statement h2 {
  margin-bottom: 4px;
}

.partner-statement .role {
  color: #fff;
  font-weight: 800;
}

blockquote {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 4px solid #fff;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.manual-showcase {
  margin-top: 80px;
  padding-bottom: 96px;
}

.manual-showcase .section-heading {
  margin-bottom: 28px;
}

.thumbnail-slider {
  margin-top: 30px;
}

.thumb-main {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr 52px;
  gap: 18px;
}

.thumb-slides {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #000;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thumb-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 46px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.thumb-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.thumb-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.thumb-caption {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff;
}

.thumb-caption h3 {
  margin-bottom: 10px;
  font-size: 34px;
}

.thumb-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.thumb-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.thumb-arrow svg {
  width: 18px;
  height: 18px;
}

.thumb-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.thumb-dot {
  flex: 0 0 42px;
  width: 42px;
  height: 30px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: #eeeeee;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.thumb-dot.is-active {
  border-color: #111;
  opacity: 1;
  transform: translateY(-2px);
}

.thumb-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.clients-layout {
  align-items: center;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sector-list span {
  padding: 18px 20px;
  border-left: 4px solid #111;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.contact-section {
  color: #fff;
  background: var(--deep);
}

.contact-layout {
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list svg {
  color: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.button.primary.submit-button {
  min-height: 56px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
  letter-spacing: 0;
}

.button.primary.submit-button:hover {
  color: #000;
  background: #fff;
  border-color: #000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.22);
  border-color: #111;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: heroRise 0.9s ease both;
}

.brand-logo img {
  animation: logoFade 0.8s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.footer {
  padding: 28px 0;
  color: #fff;
  background: #000;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(18, 33, 45, 0.98);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .split,
  .contact-layout,
  .clients-layout,
  .advantage-layout,
  .partner-statement {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .image-carousel {
    min-height: 460px;
  }

  .about-heading {
    max-width: none;
    font-size: 30px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    max-width: 560px;
    aspect-ratio: 16 / 10;
  }

  .thumb-main {
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }

  .thumb-slides {
    min-height: 430px;
  }

  .statement-image {
    min-height: 330px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 28px, 1160px);
  }

  .brand-logo {
    width: 58px;
    height: 48px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .about-heading {
    font-size: 25px;
  }

  .about-image {
    max-width: none;
    aspect-ratio: 4 / 3;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-stats,
  .advantage-grid,
  .values-grid,
  .sector-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .feature-panel,
  .advantage-grid article,
  .values-grid article,
  .partner-statement article,
  .contact-form {
    padding: 24px;
  }

  .feature-panel {
    padding: 0;
  }

  .feature-panel h3,
  .feature-panel p,
  .feature-panel .text-link {
    margin-left: 24px;
    margin-right: 24px;
  }

  .carousel-slide {
    padding: 28px;
  }

  .slide-overlay h3 {
    font-size: 26px;
  }

  .carousel-controls {
    right: 16px;
    bottom: 16px;
  }

  .thumb-main {
    grid-template-columns: 1fr;
  }

  .thumb-prev,
  .thumb-next {
    justify-self: center;
  }

  .thumb-slides {
    min-height: 340px;
    order: 1;
  }

  .thumb-prev {
    order: 2;
  }

  .thumb-next {
    order: 3;
  }

  .thumb-slide {
    padding: 24px;
  }

  .thumb-caption h3 {
    font-size: 25px;
  }

  .thumb-caption p {
    font-size: 15px;
  }

  .thumb-strip {
    flex-wrap: wrap;
  }

  .thumb-dot {
    flex-basis: 38px;
    width: 38px;
    height: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.thumbnail-slider .thumb-strip .thumb-dot {
  flex: 0 0 42px;
  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
}

@media (max-width: 680px) {
  .thumbnail-slider .thumb-strip .thumb-dot {
    flex-basis: 38px;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
  }
}

/* this is for the carousel */

.team-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px 35px;
}

.team-slider::-webkit-scrollbar {
  height: 6px;
}

.team-slider::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 20px;
}

.team-card {
  min-width: 500px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.team-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 20px;
  color: #0b2c5f;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .team-card {
    min-width: 300px;
    max-width: 300px;
  }

  .team-card img {
    height: 270px;
  }
}

