:root {
  --bg-light     : #F0F5F9;
  --bg-dark      : #071b3a;
  --accent-lite  : #f5f9ff;
  --accent-main  : #1264e8;
  --accent-active: #0b4fbd;
  --accent-dark  : #24344d;
  --accent-alt   : #36a8ff;
  --muted        : #6d7d94;
  --border       : #e4ebf4;
}

.section-padding {
  padding: 100px 0;
	overflow-x: hidden;
}


.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-main);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-main);
  border-radius: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  color: var(--bg-dark);
  font-weight: 800;
}

.section-copy {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.btn-main {
  background: var(--accent-main);
  color: #fff;
  border: 1px solid var(--accent-main);
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(18, 100, 232, .20);
}

.btn-main:hover {
  background: var(--accent-active);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(18, 100, 232, .28);
}

.btn-outline-light-custom {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}

.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--bg-dark);
  border-color: #fff;
}

.link-arrow {
  position: relative;
  color: var(--accent-main);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------
  NAVBAR
-------------------------------- */
/*
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(5, 25, 55, .08);
  padding: 11px 0;
}

.navbar-brand {
  color: #fff !important;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar.scrolled .navbar-brand {
  color: var(--bg-dark) !important;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #42b4ff, #1264e8);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(18, 100, 232, .25);
}

.nav-link {
  color: rgba(255, 255, 255, .83) !important;
  font-size: .9rem;
  font-weight: 600;
  margin: 0 6px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--accent-dark) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  border-radius: 5px;
  background: var(--accent-main);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .3);
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-toggler-icon {
  filter: none;
} */

/* --------------------------------
  HERO
-------------------------------- */

.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(90deg, rgba(3, 19, 43, .96) 0%, rgba(4, 28, 61, .88) 42%, rgba(4, 28, 61, .42) 100%), url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=2200&q=85") center/cover; */
  background: linear-gradient(90deg, rgba(3, 19, 43, .96) 0%, rgba(4, 28, 61, .88) 42%, rgba(4, 28, 61, .42) 100%);
}

.hero .hero-video {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	pointer-events: none;
}

.hero .container::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	background: linear-gradient(90deg, rgba(3, 19, 43, .96) 0%, rgba(4, 28, 61, .88) 42%, rgba(4, 28, 61, .42) 100%);
	pointer-events: none;
	z-index: 3;
}

.hero .container {
	/* position: relative; */
	z-index: 10;
}

.hero .container::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -260px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 168, 255, .22), transparent 68%);
  pointer-events: none;
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 70px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  background: rgba(255, 255, 255, .07);
  color: #c9eaff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.hero-eyebrow i {
  color: #64c9ff;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.065em;
  max-width: 850px;
  margin-bottom: 27px;
}

.hero h1 span {
  background: linear-gradient(90deg, #fff, #77d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subline {
  color: rgba(255, 255, 255, .74);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-meta {
  margin-top: 70px;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.hero-meta-item {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-meta-item i {
  color: #63c9ff;
  font-size: 1rem;
}

/* --------------------------------
  ABOUT
-------------------------------- */

.about-image-wrap {
  position: relative;
  padding: 0 25px 25px 0;
}

.about-image {
  border-radius: 28px;
  height: 530px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 55px rgba(12, 42, 82, 0.10);
}

.about-floating {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 190px;
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(12, 42, 82, 0.10);
}

.about-floating strong {
  display: block;
  color: var(--bg-dark);
  font: 800 2rem "Manrope", sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.about-floating small {
  color: var(--muted);
  line-height: 1.4;
}

/* --------------------------------
  TRUST BAR
-------------------------------- */

.trust-bar {
  background: var(--bg-dark);
  padding: 32px 0;
}

.trust-item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(91, 196, 255, .13);
  color: #66cbff;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.trust-item strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
}

.trust-item span {
  color: rgba(255, 255, 255, .55);
  font-size: .73rem;
}

/* --------------------------------
  STATS
-------------------------------- */

.stats-section {
  background: var(--accent-lite);
}

.stat-card {
  height: 100%;
  padding: 35px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: all .35s ease;
}

.stat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(12, 42, 82, 0.08);
  border-color: rgba(18, 100, 232, .18);
}

.stat-number {
  color: var(--bg-dark);
  font: 800 clamp(2.3rem, 4vw, 3.5rem) "Manrope", sans-serif;
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number span {
  color: var(--accent-main);
}

.stat-card p {
  color: var(--muted);
  margin: 0;
  font-size: .9rem;
}

/* --------------------------------
  MANUFACTURING
-------------------------------- */

.facility-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  transition: all .4s ease;
  box-shadow: 0 8px 25px rgba(5, 25, 55, .04);
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(12, 42, 82, 0.10);
}

.facility-img {
  height: 255px;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.facility-card:hover .facility-img {
  transform: scale(1.05);
}

.facility-image-wrap {
  overflow: hidden;
  position: relative;
}

.facility-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 11px;
  border-radius: 9px;
  background: rgba(7, 27, 58, .88);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.facility-body {
  padding: 27px;
}

.facility-body h3 {
  color: var(--bg-dark);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.facility-body p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.facility-link {
  color: var(--accent-main);
  font-weight: 700;
  font-size: .86rem;
}

/* --------------------------------
  PRODUCTS
-------------------------------- */

.products-section {
  background: var(--accent-lite);
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 330px;
  height: 100%;
  background: #071b3a;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .64;
  transition: transform .6s ease, opacity .4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
  opacity: .8;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 39, .95), rgba(3, 17, 39, .08));
}

.product-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 24px;
  z-index: 2;
}

.product-number {
  color: #6acaff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.product-content h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.product-content p {
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  margin: 0;
}

/* --------------------------------
  PROCESS
-------------------------------- */

.process-section {
  background: #fff;
}

.process-line {
  position: relative;
  margin-top: 55px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #dbeeff, var(--accent-main), #dbeeff);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-icon {
  width: 63px;
  height: 63px;
  margin: 0 auto 19px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-main), #36a8ff);
  border: 6px solid #fff;
  box-shadow: 0 8px 25px rgba(18, 100, 232, .2);
  font-size: 1.15rem;
}

.process-step h4 {
  font-size: .98rem;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: .75rem;
  color: var(--muted);
  margin: 0;
  padding: 0 8px;
}

/* --------------------------------
  WHY US
-------------------------------- */

.why-section {
  background: var(--accent-lite);
}

.value-card {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
  transition: all .35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(12, 42, 82, 0.08);
}

.value-icon {
  width: 53px;
  height: 53px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--accent-main);
  background: #eaf4ff;
  font-size: 1.35rem;
  margin-bottom: 23px;
}

.value-card h3 {
  color: var(--bg-dark);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------
  R&D
-------------------------------- */

.rnd-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.rnd-section::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 166, 255, .16), transparent 65%);
}

.rnd-img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 1;
}

.rnd-copy {
  position: relative;
  z-index: 2;
}

.rnd-copy .section-label {
  color: #66caff;
}

.rnd-copy .section-label::before {
  background: #66caff;
}

.rnd-copy .section-title {
  color: #fff;
}

.rnd-copy .section-copy {
  color: rgba(255, 255, 255, .64);
}

.rnd-list {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.rnd-list li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 14px;
  font-size: .88rem;
}

.rnd-list i {
  color: #63caff;
}

/* --------------------------------
  CLIENTS
-------------------------------- */

.client-logo {
	height: 100px;
	border: 1px solid var(--border);
	background: #fff;
	border-radius: 15px;
	color: #6f8096;
	transition: all .3s ease;
	overflow: hidden;
}

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

.client-logo:hover {
  color: var(--accent-main);
  border-color: #b9dbff;
  box-shadow: 0 12px 35px rgba(12, 42, 82, 0.08);
  transform: translateY(-3px);
}

.testimonial {
  padding: 32px;
  background: var(--accent-lite);
  border-radius: 22px;
  border: 1px solid var(--border);
  height: 100%;
}

.quote-mark {
  font-size: 2.4rem;
  color: var(--accent-main);
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial p {
  color: var(--accent-dark);
  line-height: 1.75;
  font-size: .93rem;
  margin-bottom: 20px;
}

.testimonial strong {
  display: block;
  color: var(--bg-dark);
  font-size: .85rem;
}

.testimonial span {
  color: var(--muted);
  font-size: .75rem;
}

/* --------------------------------
  GLOBAL
-------------------------------- */

.global-section {
  background: var(--accent-lite);
}

.map-box {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff url("../img/map2.png") center/contain no-repeat;
  border: 1px solid var(--border);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 100, 232, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 100, 232, .07) 1px, transparent 1px);
  background-size: 45px 45px;
}

.map-center {
	position: absolute;
	left: 46%;
	top: 57%;
	width: 18px;
	height: 18px;
	background: var(--accent-main);
	border: 4px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 12px rgba(18, 100, 232, .13), 0 8px 25px rgba(18, 100, 232, .25);
}

.map-label {
	position: absolute;
	left: calc(46% - 5px);
	top: calc(57% + 20px);
	color: var(--bg-dark);
	font-weight: 800;
	font-size: .82rem;
}

.country-list {
  columns: 2;
  padding: 0;
  list-style: none;
  margin: 25px 0 0;
}

.country-list li {
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-list i {
  color: var(--accent-main);
}

/* --------------------------------
  INVESTORS
-------------------------------- */

.investor-card {
  background: var(--bg-dark);
  border-radius: 28px;
  padding: 42px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.investor-card::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -200px;
  top: -220px;
  border-radius: 50%;
  background: rgba(48, 162, 255, .15);
}

.investor-link {
  position: relative;
  z-index: 1;
  min-height: 120px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  color: #fff;
  transition: all .3s ease;
}

.investor-link:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px);
  color: #fff;
}

.investor-link i {
  color: #65caff;
  font-size: 1.2rem;
}

.investor-link span {
  font-weight: 700;
  font-size: .82rem;
}

/* --------------------------------
  CTA
-------------------------------- */

.cta-section {
  padding: 100px 0;
  background:
    linear-gradient(110deg, rgba(8, 34, 73, .98), rgba(18, 100, 232, .88)),
    url("https://images.unsplash.com/photo-1563213126-a4273aed2016?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -.055em;
  line-height: 1.04;
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255, 255, 255, .67);
  max-width: 600px;
  line-height: 1.75;
}

.enquiry-card {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.form-control,
.form-select {
  border-color: #dce5ef;
  border-radius: 11px;
  min-height: 48px;
  font-size: .84rem;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #76baff;
}

/* --------------------------------
  FOOTER
-------------------------------- */

.footer-brand {
  color: #fff;
  font: 800 1.3rem "Manrope", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, .57);
  font-size: .8rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: #66caff;
}

.contact-line {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  font-size: .8rem;
}

.contact-line i {
  color: #63caff;
  margin-top: 2px;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  color: rgba(255, 255, 255, .65);
  transition: all .25s ease;
}

.socials a:hover {
  background: var(--accent-main);
  color: #fff;
  border-color: var(--accent-main);
  transform: translateY(-3px);
}

.certifications {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cert-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .65);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 55px;
  padding: 22px 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
}

/* --------------------------------
  SCROLL REVEAL
-------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* --------------------------------
  RESPONSIVE
-------------------------------- */

@media (max-width: 991.98px) {
  .navbar {
    background: #F0F5F9;
    border-radius: 5px;
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, .96);
  }

  .navbar.scrolled .navbar-collapse {
    background: #fff;
  }

  .hero {
    min-height: 730px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 12px 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .process-line::before {
    display: none;
  }

  .process-step {
    margin-bottom: 35px;
  }

  .rnd-img {
    height: 430px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 680px;
    background:
      linear-gradient(90deg, rgba(3, 19, 43, .95), rgba(4, 28, 61, .78)),
      url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1400&q=80") center/cover;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-subline {
    font-size: .96rem;
  }

  .hero-meta {
    margin-top: 45px;
    gap: 14px;
    flex-direction: column;
  }

  .about-image {
    height: 400px;
  }

  .about-floating {
    width: 165px;
  }

  .country-list {
    columns: 1;
  }

  .map-box {
    min-height: 380px;
  }

  .investor-card {
    padding: 28px;
  }

  .cta-section {
    padding: 75px 0;
  }

  .enquiry-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}