/* ==========================================================================
   iGateway FZE — shared styles
   Palette: deep navy + gold + teal line-icons. Signature motif: orbital ring.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap");
:root {
  --navy-deep: #071e36;
  --navy: #0a2a4a;
  --navy-soft: #123255;
  --gold: #d4a24e;
  --gold-bright: #e6be6e;
  --teal: #1c6e8c;
  --teal-bright: #2b89a8;
  --red: #c9342b;

  --ink: #14253a;
  --slate: #5c6e7e;
  --mist: #f4f7fa;
  --line: #e3eaf0;
  --white: #ffffff;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(7, 30, 54, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 30, 54, 0.1);
  --shadow-lg: 0 30px 70px rgba(7, 30, 54, 0.18);

  --radius: 14px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Geologica", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow--light {
  color: var(--gold-bright);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--mist {
  background: var(--mist);
}
.section--navy {
  background: var(--navy);
  color: #dce6f0;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.lead {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 60ch;
}
.section--navy .lead {
  color: #aec0d4;
}

.title-xl {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 800;
}
.title-lg {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
}

.gold-rule {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 1.4rem 0 1.8rem;
}
.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  transition: all 0.25s var(--ease);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(212, 162, 78, 0.35);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost-navy {
  border-color: var(--line);
  color: var(--navy);
  background: #fff;
}
.btn-ghost-navy:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(7, 30, 54, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  transition:
    padding 0.3s var(--ease),
    background 0.3s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar.scrolled {
  padding: 0.55rem 0;
  background: rgba(7, 30, 54, 0.98);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.navbar-brand img {
  /* width: 38px;
  height: 38px; */
  /* width: 20%; */
}
.brand-text {
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}
.navbar .nav-link {
  color: #c4d2e2 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff !important;
}
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.3rem 0.55rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 162, 78, 0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background: radial-gradient(
    140% 120% at 80% -10%,
    #16456f 0%,
    var(--navy) 42%,
    var(--navy-deep) 100%
  );
  color: #fff;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}
.hero__orbit {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: min(46vw, 640px);
  height: min(46vw, 640px);
  pointer-events: none;
  opacity: 0.85;
}
.hero__photo {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(40vw, 540px);
  height: min(40vw, 540px);
  border-radius: 50%;
  /* background:
    repeating-linear-gradient(
      135deg,
      rgba(212, 162, 78, 0.1) 0 16px,
      rgba(212, 162, 78, 0) 16px 32px
    ),
    linear-gradient(180deg, #2b6f93, #0c2f4d);
  border: 2px dashed rgba(212, 162, 78, 0.45); */
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  color: #cfe0ee;
}
.hero__photo .img-ph__icon {
  font-size: 2rem;
  color: var(--gold-bright);
}
.hero__photo .img-ph__label {
  color: #fff;
  font-size: 0.82rem;
}
.hero__photo .img-ph__dims {
  color: #aec0d4;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero h1 .fze {
  display: block;
  font-size: 0.34em;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.hero__tag {
  font-size: 1.15rem;
  color: #cddcec;
  max-width: 32ch;
}
.hero__regions {
  color: #9fb4c9;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.hero__regions span {
  color: var(--gold-bright);
}
.hero__group {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d93aa;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  /* background:
    linear-gradient(180deg, rgba(7, 30, 54, 0.86), rgba(7, 30, 54, 0.92)),
    radial-gradient(
      120% 140% at 85% 0%,
      #185079 0%,
      var(--navy) 55%,
      var(--navy-deep) 100%
    ); */
  color: #fff;
  padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(3.2rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  color: #000000;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
}
.page-hero .crumb {
  font-size: 0.85rem;
  color: #9fb4c9;
  letter-spacing: 0.04em;
}
.page-hero .crumb a {
  color: #9fb4c9;
}
.page-hero .crumb a:hover {
  color: var(--gold-bright);
}
.page-hero__ring {
  position: absolute;
  right: -6%;
  bottom: -40%;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Pillar / feature cards ---------- */
.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(28, 110, 140, 0.1);
  color: var(--teal);
  font-size: 1.5rem;
  flex: 0 0 auto;
  border: 1.5px solid rgba(28, 110, 140, 0.22);
  transition: all 0.3s var(--ease);
}
.icon-badge--solid {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pillar:hover .icon-badge {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pillar h3 {
  font-size: 1.18rem;
  margin: 1.1rem 0 0.4rem;
}
.pillar p {
  color: var(--slate);
  font-size: 0.96rem;
  margin: 0;
}

/* numbered marker (genuine sequence: business lines / reasons) */
.num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* region cards */
.region {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.region:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.region:hover .icon-badge {
  background: var(--teal);
  color: #fff;
}
.region h3 {
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}
.region p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--gold);
  color: #fff;
}
.stat {
  text-align: center;
  padding: 1rem;
}
.stat .num-big {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--navy-deep);
  line-height: 1;
}
.stat .lbl {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* ---------- Business line (services) ---------- */
.bizline {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.bizline:nth-child(even) {
  background: var(--mist);
}
.bizline__num {
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--gold);
  opacity: 0.22;
  line-height: 0.8;
}
.bizline__panel {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bizline__panel h3 {
  color: #fff;
}
.bizline__panel .eyebrow {
  color: var(--gold-bright);
}
.bizline__panel .panel-ring {
  position: absolute;
  right: -30%;
  bottom: -30%;
  width: 280px;
  height: 280px;
  opacity: 0.4;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.bizline:nth-child(even) .spec-row {
  background: #fff;
}
.spec-row:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.spec-row .bi {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 2px;
}
.spec-row strong {
  display: block;
  font-size: 0.97rem;
  color: var(--ink);
}
.spec-row span {
  font-size: 0.86rem;
  color: var(--slate);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.tag-pill .bi {
  color: var(--teal);
}
.tag-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ---------- Why us list ---------- */
.reason {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.reason__no {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  flex: 0 0 auto;
  width: 2.4rem;
  line-height: 1;
}
.reason h4 {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
}
.reason p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Industries chips ---------- */
.industry {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.96rem;
  transition: all 0.3s var(--ease);
}
.industry .bi {
  color: var(--gold-bright);
  font-size: 1.25rem;
}
.industry:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.industry:hover .bi {
  color: #fff;
}

/* ---------- Vision quote ---------- */
.vision {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: radial-gradient(
    120% 140% at 0% 0%,
    #16456f 0%,
    var(--navy) 50%,
    var(--navy-deep) 100%
  );
  color: #fff;
  overflow: hidden;
}
.vision blockquote {
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  line-height: 1.35;
  color: #fff;
  max-width: 22ch;
  margin: 0;
}
.vision .qmark {
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.6;
}
.vision__ring {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(40vw, 460px);
  opacity: 0.5;
}

/* ---------- Gateway group band ---------- */
.group-band {
  background: var(--navy-deep);
  color: #cdddec;
  border-radius: var(--radius);
  padding: clamp(2.4rem, 5vw, 3.4rem);
  position: relative;
  overflow: hidden;
}
.group-band h3 {
  color: #fff;
}
.group-band .icon-badge {
  background: rgba(212, 162, 78, 0.16);
  color: var(--gold-bright);
  border-color: rgba(212, 162, 78, 0.3);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 20px;
  padding: clamp(2.6rem, 5vw, 3.6rem);
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
}
.cta-band .ring {
  position: absolute;
  right: -8%;
  top: -40%;
  width: 340px;
  height: 340px;
  opacity: 0.45;
}

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-card h4 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}
.contact-card p,
.contact-card a {
  color: var(--slate);
  font-size: 0.95rem;
  margin: 0;
}
.contact-card a:hover {
  color: var(--teal);
}

.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.96rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(28, 110, 140, 0.15);
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-note {
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #9fb4c9;
  padding: 3.5rem 0 1.6rem;
}
.footer .brand-text {
  font-size: 1.15rem;
}
.footer h5 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer a {
  color: #9fb4c9;
  font-size: 0.93rem;
  display: inline-block;
  padding: 0.18rem 0;
}
.footer a:hover {
  color: var(--gold-bright);
}
.footer .foot-tag {
  color: #7d93aa;
  font-size: 0.92rem;
  max-width: 34ch;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.4rem 0 1.4rem;
}
.footer .copy {
  font-size: 0.85rem;
  color: #7d93aa;
}

/* ---------- Image placeholders ---------- */
/* Replace by swapping the <div class="img-ph ..."> for an <img> tag with the same class list removed, or just set background-image inline / add an <img> inside and hide the placeholder content. */
.img-ph {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(28, 110, 140, 0.07) 0 14px,
      rgba(28, 110, 140, 0) 14px 28px
    ),
    linear-gradient(160deg, #eaf0f5 0%, #dce6ee 100%);
  /* border: 1.5px dashed #9fb7c9; */
  border-radius: var(--radius);
  color: #5c7a8e;
  overflow: hidden;
  isolation: isolate;
}
.img-ph__icon {
  font-size: 1.7rem;
  color: #6e8fa3;
  opacity: 0.85;
}
.img-ph__label {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #3e5a6c;
  padding: 0 1rem;
}
.img-ph__dims {
  font-size: 0.72rem;
  color: #7a93a3;
  letter-spacing: 0.03em;
}
/* size variants */
.img-ph--hero {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.img-ph--wide {
  aspect-ratio: 16/9;
}
.img-ph--square {
  aspect-ratio: 1/1;
}
.img-ph--portrait {
  aspect-ratio: 3/4;
}
.img-ph--banner {
  aspect-ratio: 32/9;
}
.img-ph--avatar {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

/* dark variant for use on navy backgrounds */
.img-ph--dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(212, 162, 78, 0.07) 0 14px,
      rgba(212, 162, 78, 0) 14px 28px
    ),
    linear-gradient(160deg, #102e4c 0%, #0b2540 100%);
  border-color: rgba(212, 162, 78, 0.4);
  color: #aec0d4;
}
.img-ph--dark .img-ph__icon {
  color: var(--gold-bright);
}
.img-ph--dark .img-ph__label {
  color: #dce6f0;
}
.img-ph--dark .img-ph__dims {
  color: #8fa6bc;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero,
  .page-hero,
  .section,
  .stat-strip,
  .footer {
    max-width: 100%;
    overflow-x: hidden;
  }
  .navbar {
    padding: 0.65rem 0;
  }
  .navbar > .container {
    align-items: center;
    flex-wrap: wrap;
  }
  .navbar-brand {
    flex: 0 1 auto;
    margin-right: auto;
    padding: 0;
  }
  .navbar-brand img {
    width: 112px;
    max-width: 42vw;
    height: auto;
    display: block;
  }
  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }
  .hero__photo,
  .hero__orbit {
    opacity: 0.18;
    right: -30%;
  }
  .navbar-collapse {
    background: rgba(7, 30, 54, 0.98);
    flex-basis: 100%;
    margin-top: 0.8rem;
    border-radius: 12px;
    padding: 0.6rem;
  }
  .navbar .nav-link.active::after {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero__photo,
  .hero__orbit {
    display: none;
  }
  .page-hero .crumb {
    margin-top: 1.5rem;
  }
  .bizline__num {
    font-size: 3.4rem;
  }
}

.img-ph {
  object-fit: cover;
  object-position: center;
}
.section--bg-image {
  position: relative;
  background-image: url("../../assets/img/abt-banner2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 0;
}
.section--bg-image .container {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .hero .col-lg-8 {
    margin: 40px 0;
  }
}
.grid-about-card {
  --bs-gutter-y: 8.5rem !important;
}
.contact-form #contact .form-group label.error,
.contact-form #enquiry .form-group label.error {
  color: #d32f2f;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  position: absolute;
  bottom: -27px;
}
.contact-form #contact .form-group label {
  font-size: 14px;
}
.contact-form #contact .form-group,
.contact-form #enquiry .form-group {
  margin-top: 30px;
  position: relative;
}
.contact .contact-form #error,
.contact .contact-form #success {
  display: none;
  float: left;
}
.contact .contact-form #error {
  background: red;
  color: #fff;
}
.contact .contact-form #success {
  background: green;
  color: #fff;
}
.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

input::placeholder,
textarea::placeholder {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  background-color: #d9d9d926;
  color: #000;
  font-size: 14px;
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 14px;
  border: 1.5px solid #9a9999;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}
