@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");

:root {
  --text-font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --title-font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --alt-font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --text-color: rgba(0, 0, 0, 0.8);
  --title-color: #242424;
  --accent: #2b6cb0;
  --accent-contrast: #fff;
  --bg: #fff;
  --gray-100: #f7f7f7;
  --gray-200: #f1f1f1;
  --gray-300: #bbb;
  --gray-400: #a5a5a5;
  --gray-500: #767676;
  --gray-800: #333;
  --edge-padding: 40px;
  --container: 100%;
  --radius: 8px;
  --form-height: 42px;

  /* Footer variables from footer.css */
  --footer-bg: #082243;
  --footer-text-light: #aab7c4;
  --footer-text-white: #ffffff;
  --footer-heading-color: #ffffff;
  --footer-link-hover: #ffffff;
  --footer-divider: rgba(255, 255, 255, 0.08);
  --newsletter-button-bg: #2f6cc8;
  --newsletter-button-hover-bg: #2558a8;
  --newsletter-input-border: #3a5e8f;
  --newsletter-input-focus-border: #5d9eff;
  --scroll-to-top-bg: #ffffff;
  --scroll-to-top-arrow: #333333;
}

/* Our.Story starting from here */
.Our.Story {
  position: relative;
  padding: 100px 0;
  background: #fff;
}
.Our.Story .os-header {
  text-align: center;
  margin-bottom: 34px;
}
.Our.Story .os-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fbe6d7;
  color: #ff7a1a;
  font-weight: 700;
  font-size: 14px;
}
.Our.Story .os-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin: 14px 0 8px;
}
.Our.Story .os-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin: 0 auto;
  max-width: 680px;
}
.Our.Story .os-timeline {
  position: relative;
  margin: 26px auto 26px;
  max-width: 900px;
  padding: 18px 0 6px;
}

.Our.Story .os-years {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.Our.Story .os-year {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  cursor: pointer;
  color: #000000;
  transition: color 500ms ease;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  line-height: 1;
}
.Our.Story .os-year-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #cbd5e1;
  transition:
    transform 200ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.Our.Story .os-year:hover .os-year-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #9ca3af;
}

.Our.Story .os-year-label {
  font-weight: 500;
  font-size: 16px;
}
.Our.Story .os-year.is-active {
  color: #ff7a1a;
}
.Our.Story .os-year.is-active .os-year-dot {
  background: #ff7a1a;
  box-shadow: 0 0 0 2px #ff7a1a;
}
.Our.Story .os-year.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 26px;
  height: 2px;
  background: #ff7a1a;
}
.Our.Story .os-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1140px;
  margin: 24px auto 0;
}
.Our.Story .os-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  max-width: 80%;
  max-height: 80%;
  margin: 0 auto;
}
.Our.Story .os-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.Our.Story .os-content-inner {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  text-align: left;
}
.Our.Story .os-content-inner.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}
.Our.Story .os-headline {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin: 0 0 10px;
}
.Our.Story .os-desc {
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 14px;
}
.Our.Story .os-bullets {
  margin: 0;
  padding-left: 16px;
  color: #374151;
  display: grid;
  gap: 6px;
}
.Our.Story .os-content.is-coming-soon {
  grid-template-columns: 1fr;
  min-height: 280px;
}
.Our.Story .os-content.is-coming-soon .os-right {
  display: grid;
  place-items: center;
}
.Our.Story .os-content.is-coming-soon .os-content-inner {
  max-width: 560px;
  text-align: center;
}
.Our.Story .os-content.is-coming-soon .os-headline {
  margin-bottom: 0;
}
.Our.Story .os-content.is-coming-soon .os-desc,
.Our.Story .os-content.is-coming-soon .os-bullets {
  display: none;
}
@media (max-width: 992px) {
  .Our.Story .os-content {
    grid-template-columns: 1fr;
  }
}

/* Our.Story finished here */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-color);
  font-family: var(--text-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-family: var(--title-font);
  line-height: 1.3;
  margin: 0 0 15px;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.25s ease;
}
a:hover {
  opacity: 0.85;
}
.container {
  max-width: var(--container);
  padding: 0 var(--edge-padding);
  margin: 0 auto;
}
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Topbar & Navbar */
.topbar {
  background: var(--gray-100);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.brand {
  font-weight: 600;
  color: var(--title-color);
}
.lang-switcher {
  height: var(--form-height);
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 6px;
}

/* hero-banner starting from here */
/* Hero (required for navbar interaction) */
.hero-banner {
  position: relative;
  min-height: 92vh;
  background: #111;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 18, 0.75) 0%,
    rgba(7, 12, 20, 0.6) 45%,
    rgba(8, 14, 24, 0.35) 70%,
    rgba(8, 14, 24, 0) 100%
  );
  z-index: 1;
}
.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 22vh, 220px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 55%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../image/company_image.jpg") center/cover no-repeat;
  transform: scale(var(--hero-scale, 1));
  will-change: transform;
  animation: heroZoom 18s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 22vh;
  text-align: center;
}

.hero-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-top: 60px;
  font-family: Science Gothic;
  font-weight: 400;
  letter-spacing: 15;
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.55);
}

.hero-label {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.6px;
  opacity: 0.9;
  font-size: clamp(18px, 2.4vw, 30px);
  font-family: Science Gothic;
  text-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

/* hero-banner finished here */
/* Language Menu */
.lang-menu {
  position: absolute;
  right: 0;
  top: 52px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  padding: 6px;
  display: none;
  min-width: 180px;
  z-index: 120;
}
.lang-menu.open {
  display: block;
}
.lang-item {
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.lang-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.lang-item:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 6px rgba(255, 143, 58, 0.45);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.modal.is-open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal-content {
  position: relative;
  z-index: 1001;
  max-width: 640px;
  margin: 60px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 24px;
}
.modal-title {
  margin-bottom: 10px;
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}
.form {
  display: grid;
  gap: 12px;
}
.form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--title-color);
  font-weight: 600;
}
.form-row input,
.form-row textarea {
  width: 100%;
  height: var(--form-height);
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text-color);
}
.form-row textarea {
  height: auto;
  padding: 12px;
}
.form-actions {
  margin-top: 8px;
}
.form-status {
  margin-top: 10px;
  color: var(--accent);
}

/* Animations */
@keyframes pageDissolveIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pageDissolveOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.is-entering {
  animation: pageDissolveIn 1000ms ease;
  will-change: opacity;
}
body.is-exiting {
  animation: pageDissolveOut 1000ms ease;
  will-change: opacity;
  pointer-events: none;
}

/** quote-now */
/* quote-now starting from here */
.quote-now {
  position: relative;
  padding: 120px 0;
  background: url("../image/company_image.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.quote-now-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.quote-now-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-now-subtitle {
  font-size: 18px;
  color: #2b6cb0;
  font-weight: 600;
  margin-bottom: 10px;
}

.quote-now-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  background: #fff;
  color: #333;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.btn-light:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
/* quote-now finished here */

/* about-us starting from here */
.about-us {
  padding: 100px 20px;
  max-width: min(92vw, 1140px);
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-left .about-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #f6e1d2;
  color: #ff8c3c;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-left .about-title {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-left .about-title span {
  display: block;
}

.about-left .about-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: #4a5568;
  max-width: 560px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: clamp(20px, 2.8vw, 28px);
  text-align: left;
  border: 1px solid #e9eef5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stat-card .stat-number {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  color: #005fb9;
}

.stat-card .stat-title {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 700;
  color: #2d3748;
  margin-top: 8px;
}

.stat-card .stat-desc {
  font-size: 14px;
  color: #718096;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-left {
    text-align: center;
  }
  .about-left .about-desc {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .about-us {
    padding: 70px 16px;
  }
  .about-left .about-title {
    font-size: 32px;
  }
}
/* about-us finished here */
/* advanced technology starts from here */
/* ===== Advanced Technology (Exact Reference Match) ===== */

.advacned-technology {
  background: #000;
  padding: 60px 0;
  color: #fff;
}

.advacned-technology .container {
  max-width: 1400px;
  margin-left: 90px;
  padding: 0 40px 0 0;
}

.advacned-technology-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT */
.advacned-technology-content {
  max-width: none;
}

.advacned-technology-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #e6c8b3;
  color: #ff7a1a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.advacned-technology-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
  white-space: nowrap;
}

.advacned-technology-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 60px;
}

/* FEATURES GRID */
.advacned-technology-features {
  display: grid;
  grid-template-columns: 1fr minmax(650px, 900px);
  gap: 48px 140px;
  align-items: center;
}
.advacned-technology-grid {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  justify-content: start;
  align-items: start;
  gap: 36px;
}

.advacned-technology-card-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.advacned-technology-card-icon img {
  width: 28px;
  height: 28px;
}

.advacned-technology-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.advacned-technology-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #a8a8a8;
}
.advacned-technology-card {
  width: 360px;
}

.advacned-technology-image-wrap {
  justify-self: stretch;
  width: 100%;
  max-width: 780px;
  display: flex;
  align-items: center;
  perspective: 1000px;
}
.advacned-technology-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  transition:
    transform 350ms ease,
    box-shadow 350ms ease;
  transform-style: preserve-3d;
}
.advacned-technology-image-wrap img:hover {
  transform: perspective(1000px) rotateY(-6deg) rotateX(4deg) scale(1.03);
  box-shadow: 0 22px 45px rgba(255, 255, 255, 0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .advacned-technology .container {
    margin-left: 0;
  }
  .advacned-technology-layout {
    grid-template-columns: 1fr;
  }

  .advacned-technology-features {
    grid-template-columns: 1fr;
  }
  .advacned-technology-image-wrap {
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0;
    justify-self: center;
  }
}

/*advanced technology finished here*/

/* guiding-future starting from here */
.guiding-future {
  padding: 100px 20px;
  background-color: #f9fafb;
}

.guiding-future .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #fff0e6;
  color: #ff8c3c;
  font-weight: 700;
  font-size: 14px;
}

.future-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  justify-content: center;
  gap: 36px;
}

.future-card {
  width: 100%;
  min-height: 200px;
  padding: 20px;
  background-color: #cbad8d;
  /* background-image: linear-gradient(
    43deg,
    #4158d0 0%,
    #c850c0 46%,
    #ffcc70 100%
  ); */
  border-radius: 8px;
  color: #f8fafc;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.future-card:hover {
  transform: rotateY(10deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.future-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.future-card:hover::before {
  transform: translateX(-100%);
}

.future-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.future-card:hover::after {
  transform: translateX(100%);
}

.future-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.future-card .card-icon img {
  width: 100%;
  height: 100%;
}

.future-card .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.future-card .card-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Card Specific Colors */
.card-innovation {
  background-color: #eaf1ff;
}
.card-innovation:hover {
  background-color: #88b0ff;
}

.card-quality {
  background-color: #e8e2d1;
}
.card-quality:hover {
  background-color: #0082a6;
}

.card-sustainability {
  background-color: #ebccb4;
}
.card-sustainability:hover {
  background-color: #bf6f31;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .future-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .future-cards-grid {
    grid-template-columns: 1fr;
  }
  .guiding-future {
    padding: 70px 16px;
  }
  .meet-the-team {
    padding: 100px 0;
    background: url("../image/place_background.png") center/cover no-repeat;
  }
}

/* guiding-future finished here */
/* meet-the-team starting from here */
.meet-the-team {
  padding: 120px 0;
  background: url("../image/place_background.png") center/cover no-repeat;
}
.mt-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.mt-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 12px;
  scrollbar-width: none;
}
.mt-carousel::-webkit-scrollbar {
  display: none;
}
.mt-card {
  flex: 0 0 20rem;
}
.mt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.mt-arrow.prev {
  left: 6px;
}
.mt-arrow.next {
  right: 6px;
}
.mt-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .mt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .mt-grid {
    grid-template-columns: 1fr;
  }
}
.mt-card {
  --bg: #fff;
  --title-color: #fff;
  --title-color-hover: #000;
  --text-color: #666;
  --button-color: #eee;
  --button-color-hover: #ddd;
  background: var(--bg);
  border-radius: 2rem;
  padding: 0.5rem;
  width: 20rem;
  height: 30rem;
  overflow: clip;
  position: relative;
  font-family: Lato, Montserrat, Helvetica, Arial, sans-serif;
}
.mt-card.dark {
  --bg: #222;
  --title-color: #fff;
  --title-color-hover: #fff;
  --text-color: #ccc;
  --button-color: #555;
  --button-color-hover: #444;
}
.mt-card::before {
  content: "";
  position: absolute;
  width: calc(100% - 1rem);
  height: 30%;
  bottom: 0.5rem;
  left: 0.5rem;
  -webkit-mask: linear-gradient(#0000, #000f 80%);
  mask: linear-gradient(#0000, #000f 80%);
  backdrop-filter: blur(1rem);
  border-radius: 0 0 1.5rem 1.5rem;
  translate: 0 0;
  transition: translate 0.25s;
}
.mt-card > img {
  max-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 5%;
  border-radius: 1.5rem;
  display: block;
  transition:
    aspect-ratio 0.25s,
    object-position 0.5s;
  width: 100%;
  height: auto;
}
.mt-card > section {
  margin: 1rem;
  height: calc(33.3333% - 1rem);
  display: flex;
  flex-direction: column;
}
.mt-card > section h2 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  translate: 0 -200%;
  opacity: 1;
  color: var(--title-color);
  transition:
    color 0.5s,
    margin-block-end 0.25s,
    opacity 1s,
    translate 0.25s;
}
.mt-card > section p {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text-color);
  opacity: 0;
  margin: 0;
  translate: 0 100%;
  transition:
    margin-block-end 0.25s,
    opacity 1s 0.2s,
    translate 0.25s 0.2s;
}
.mt-card > section > div {
  flex: 1;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  translate: 0 100%;
  transition:
    translate 0.25s 0.2s,
    opacity 1s;
}
.mt-card > section > div .tag {
  align-self: center;
  color: var(--title-color-hover);
}
.mt-card > section > div button {
  border: 1px solid #0000;
  border-radius: 1.25rem 1.25rem 1.5rem 1.25rem;
  font-size: 1rem;
  padding: 1rem 1.5rem 1rem 2.75rem;
  translate: 1rem;
  background: var(--button-color);
  transition: background 0.33s;
  outline-offset: 2px;
  position: relative;
  color: var(--title-color-hover);
  width: 8.2rem;
  text-align: right;
}
.mt-card > section > div button::before,
.mt-card > section > div button::after {
  content: "";
  width: 0.85rem;
  height: 0.1rem;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 1.33rem;
  border-radius: 1rem;
}
.mt-card > section > div button::after {
  rotate: 90deg;
  transition: rotate 0.15s;
}
.mt-card > section > div button.following::after {
  rotate: 0deg;
}
.mt-card > section > div button:hover {
  background: var(--button-color-hover);
}
.mt-card > section > div button:focus {
  outline: 2px solid var(--text-color);
}
.mt-card:hover::before,
.mt-card:focus-within::before {
  translate: 0 100%;
}
.mt-card:hover > img,
.mt-card:focus-within > img {
  aspect-ratio: 1 / 1;
  object-position: 50% 10%;
  transition:
    aspect-ratio 0.25s,
    object-position 0.25s;
}
.mt-card:hover > section h2,
.mt-card:hover > section p,
.mt-card:focus-within > section h2,
.mt-card:focus-within > section p {
  translate: 0 0;
  margin-block-end: 0.5rem;
  opacity: 1;
}
.mt-card:hover > section h2,
.mt-card:focus-within > section h2 {
  color: var(--title-color-hover);
}
.mt-card:hover > section > div,
.mt-card:focus-within > section > div {
  translate: 0 0;
  opacity: 1;
  transition:
    translate 0.25s 0.25s,
    opacity 0.5s 0.25s;
}
.mt-card > section > div {
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  margin-bottom: 3px;
  transform: translateY(-5px);
}
.mt-card > section > div button {
  width: auto;
  min-width: 7.5rem;
  padding: 0.7rem 1.2rem;
  margin-left: 0;
  translate: 0;
  text-align: center;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mt-card > section > div button::before,
.mt-card > section > div button::after {
  content: none;
}
.meet-the-team .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.meet-the-team .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.meet-the-team .section-pill {
  background-color: #fff0e6;
  color: #ff8c3c;
}

.meet-the-team .section-title {
  color: #242424;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
}

.meet-the-team .section-desc {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
}

.mt-mobile-controls {
  display: none;
}

.team-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.team-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;

  /* CRITICAL: This padding creates space for the box-shadow to be visible */
  padding: 12px 12px;
  justify-content: flex-start;
  gap: 12px;

  /* Optional: Hide scrollbar for cleaner look */
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

.team-card {
  flex: 0 0 23%;
  margin: 0 1%;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 24px;
  transform: translateY(0) scale(1);
  opacity: 1;
  will-change: transform, box-shadow, opacity;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease-out;
}

.team-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}
.team-member-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-member-name {
  font-size: 20px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 5px;
}

.team-member-role {
  color: #767676;
}

.meet-the-team .team-carousel .team-card {
  padding: 0;
  height: 420px;
  /* background: #1c1c1c; */
  color: #fff;
  margin: 0;
  border: 3px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.meet-the-team .team-carousel .team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.meet-the-team .team-member-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  margin: 0;
}
.meet-the-team .team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  border-radius: 0 0 24px 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}
.meet-the-team .team-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: flex-start;
  text-align: left;
}
.meet-the-team .team-member-name,
.meet-the-team .team-member-role {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meet-the-team .team-member-name {
  color: #fff;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.35);
}
.meet-the-team .team-member-role {
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0 10px;
}
.meet-the-team .team-actions .team-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.meet-the-team .team-actions .team-details-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.meet-the-team .team-overlay .team-actions {
  margin-top: 0;
}
.meet-the-team .team-info-icon {
  width: 35px;
  height: 35px;
  display: block;
}

.meet-the-team .team-info-bubble {
  position: absolute;
  left: 5px;
  bottom: var(--bubble-bottom, 110px);
  width: clamp(220px, 72%, 320px);
  max-width: calc(100% - 10px);
  background: rgba(86, 181, 194, 0.9);
  color: #fff;
  border-radius: 14px;
  padding: 8px 10px 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  display: grid;
  grid-auto-rows: min-content;
  pointer-events: auto;
  z-index: 3;
  font-size: 11px;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.meet-the-team .team-info-bubble.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.meet-the-team .team-info-bubble .team-info-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  /* gap between label and value in the same row */
  column-gap: 2px;
  align-items: center;
  margin: 2px 0;
}
.meet-the-team .team-info-bubble .team-info-row .label {
  font-weight: 400;
  color: #eef7f8;
}
.meet-the-team .team-info-bubble .team-info-row .label {
  text-align: left;
}
.meet-the-team .team-info-bubble .team-info-row .value {
  font-weight: 300;
}
.meet-the-team .team-info-bubble .team-info-row .value {
  min-width: 0;
  text-align: left;
  transform: translateX(-10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meet-the-team .team-info-bubble .team-info-row .team-info-email-link {
  color: #fff;
  text-decoration: none;
}
.meet-the-team .team-info-bubble .team-info-row .team-info-email-link:hover {
  color: #ffc863;
  text-decoration: none;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2000;
}
.team-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.team-modal-card {
  position: relative;
  width: min(92vw, 460px);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(110, 158, 161, 0.92);
  color: #fff;
  padding: 18px 18px 16px 18px;
  overflow: visible;
  transform: translateY(6px) scale(0.96);
  opacity: 0.96;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
.team-modal.open .team-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.team-modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.team-modal-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  border-radius: 0 0 24px 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}
.team-info-panel {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}
.team-info-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2d55;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.15);
}
.team-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 8px 0;
}
.team-info-row .label {
  color: #e8f7f9;
  font-weight: 700;
}
.team-modal-name {
  color: #fff;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.35);
}
.team-modal-role {
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0 10px;
}

.team-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.team-details-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 14px;
  transition:
    background-color 200ms ease,
    transform 200ms ease,
    opacity 200ms ease;
}

.team-details-btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.team-details-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  pointer-events: auto;
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

.team-carousel.dragging {
  cursor: grabbing;
  user-select: none;
}

/* meet-the-team finished here */
.carousel-dots {
  text-align: center;
  margin-top: 30px;
}

.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
  line-height: 0;
  -webkit-appearance: none;
  appearance: none;
}

.carousel-dot.active {
  background-color: #2b6cb0;
}

@media (max-width: 1024px) {
  .team-card {
    flex-basis: 48%;
  }
}

@media (max-width: 768px) {
  .team-card {
    flex-basis: 98%;
  }
}

/* Client Case Section */
/* client-case starting from here */
.client-case {
  position: relative;
  padding: 100px 0;
  background: url("../image/place_background.png") center/cover no-repeat;
  color: #fff;
}

.client-case-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.client-case-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.client-case-image {
  width: 80%;
  border-radius: 24px;
  margin-left: 100px;
}

.client-case-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #ff8c3c;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.client-case-main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.client-case-highlight {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.client-case-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ff8c3c;
}

.client-case-meta {
  font-size: 16px;
  color: #a0aec0;
  margin-bottom: 5px;
}

.client-case-highlight-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.client-case-desc {
  font-size: 18px;
  color: #ff8c3c;
  margin-bottom: 30px;
  font-style: italic;
}

@media (max-width: 992px) {
  .client-case-layout {
    grid-template-columns: 1fr;
  }
  .client-case-left {
    margin-bottom: 40px;
  }
}

/* client-case finished here */
/* Achievements Section */
/* achievements starting from here */
.achievements {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
}
.achievements::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 19px,
      rgba(75, 85, 99, 0.08) 19px,
      rgba(75, 85, 99, 0.08) 20px,
      transparent 20px,
      transparent 39px,
      rgba(75, 85, 99, 0.08) 39px,
      rgba(75, 85, 99, 0.08) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 19px,
      rgba(75, 85, 99, 0.08) 19px,
      rgba(75, 85, 99, 0.08) 20px,
      transparent 20px,
      transparent 39px,
      rgba(75, 85, 99, 0.08) 39px,
      rgba(75, 85, 99, 0.08) 40px
    ),
    radial-gradient(
      circle at 20px 20px,
      rgba(55, 65, 81, 0.12) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40px 40px,
      rgba(55, 65, 81, 0.12) 2px,
      transparent 2px
    );
  background-size:
    40px 40px,
    40px 40px,
    40px 40px,
    40px 40px;
}
.achievements::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  z-index: 0;
  pointer-events: none;
}
.achievements .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ach-header {
  text-align: center;
  margin-bottom: 34px;
}
.ach-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fbe6d7;
  color: #ff7a1a;
  font-weight: 700;
  font-size: 14px;
}
.ach-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin: 14px 0 8px;
}
.ach-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin: 0 auto;
  max-width: 640px;
}
.achievements-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 24px auto 0;
  max-width: 1200px;
}
.ach-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.ach-arrow.prev {
  left: 10px;
}
.ach-arrow.next {
  right: 10px;
}
.achievements-carousel {
  display: flex;
  align-items: stretch;
  gap: 36px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 0;
  justify-content: flex-start;
  scrollbar-width: none; /* Firefox */
}
.achievements-carousel::-webkit-scrollbar {
  display: none;
}
.achievement-card {
  flex: 0 0 calc((100% - 72px) / 3); /* 3 visible with 2 gaps (2*36px) */
}
.achievement-frame {
  background: #fff;
  border-radius: 12px;
  aspect-ratio: 3 / 4.2;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.achievement-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  object-position: center;
}

.achievement-img--zoomed {
  transform: scale(1.9);
  transform-origin: center;
}
.achievement-caption {
  text-align: center;
  font-weight: 600;
  color: #242424;
  margin-top: 12px;
}
.achievements-dots {
  text-align: center;
  margin-top: 18px;
}
.ach-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
  line-height: 0;
  -webkit-appearance: none;
  appearance: none;
}
.ach-dot.active {
  background: var(--accent);
}

@media (max-width: 1024px) {
  .achievement-card {
    flex: 0 0 calc(50% - 12px);
  } /* 2 visible */
  .ach-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .achievement-card {
    flex: 0 0 100%;
  } /* 1 visible */
  .achievements {
    padding: 70px 16px;
  }
  .ach-title {
    font-size: 32px;
  }
}

/* achievements finished here */
/* ==============================
   Products Mega Dropdown (new)
   ============================== */
/* mega-products starting from here */
.mega-products {
  position: fixed;
  top: 0;
  left: 0;
  width: min(900px, 92vw);
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  padding: 18px;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  will-change: opacity, transform;
  pointer-events: none;
  z-index: 10000;
}
.mega-products.mp--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mega-products .mp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.mega-products .mp-card {
  position: relative;
  background: #0f0f10;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 0;
}
.mega-products .mp-imgwrap {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.mega-products .mp-imgwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}
.mega-products .mp-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.mega-products .mp-card:hover .mp-imgwrap img {
  transform: scale(1.06);
}
.mega-products .mp-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
@media (max-width: 992px) {
  .mega-products:not(.mp--open) {
    display: none;
  }
}

/* mega-products finished here */

/* ==============================
   Company Page Responsive Layer
   ============================== */
.page-company .container {
  width: min(100%, 1200px);
  padding-inline: clamp(16px, 3vw, 40px);
  margin-inline: auto;
}

.page-company .navbar .container.nav-row {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(16px, 2.8vw, 40px);
}

.page-company .hero-banner {
  min-height: 78svh;
}

.page-company .hero-content {
  padding-top: clamp(130px, 22vh, 250px);
  padding-bottom: clamp(56px, 10vh, 110px);
}

.page-company .hero-title {
  margin-top: clamp(20px, 6vh, 60px);
  letter-spacing: clamp(2px, 0.8vw, 8px);
}

.page-company .hero-label {
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 1025px) {
  .page-company .about-us {
    max-width: 100%;
    width: 100%;
    padding-inline: clamp(20px, 4vw, 64px);
  }

  .page-company .about-layout {
    max-width: 100%;
    width: 100%;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.25fr);
    gap: clamp(32px, 4vw, 72px);
  }
}

.page-company .advacned-technology .container {
  margin-left: auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.page-company .advacned-technology-header {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.page-company .advacned-technology-header-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-company .advacned-technology-pill,
.page-company .advacned-technology-title,
.page-company .advacned-technology-desc {
  margin-inline: auto;
}

.page-company .advacned-technology-desc {
  max-width: 980px;
  margin-bottom: 24px;
}

.page-company .advacned-technology-title {
  white-space: normal;
  font-size: clamp(30px, 4.2vw, 52px);
}

.page-company .advacned-technology-features {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.page-company .advacned-technology-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.page-company .advacned-technology-card {
  width: auto;
}

.page-company .advacned-technology-image-wrap {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}

@media (min-width: 1025px) {
  .page-company .advacned-technology .container {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(20px, 4vw, 64px);
  }

  .page-company .advacned-technology-layout {
    width: 100%;
    max-width: 100%;
  }

  .page-company .advacned-technology-content {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 42vw);
    column-gap: clamp(24px, 4vw, 68px);
    row-gap: clamp(20px, 3vw, 34px);
    align-items: center;
  }

  .page-company .advacned-technology-header {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    align-self: start;
    width: 100%;
  }

  .page-company .advacned-technology-title {
    white-space: nowrap;
    text-align: center;
    width: 100%;
    margin-inline: auto;
  }

  .page-company .advacned-technology-features {
    display: contents;
  }

  .page-company .advacned-technology-grid {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: clamp(18px, 2.6vw, 30px);
  }

  .page-company .advacned-technology-image-wrap {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: min(560px, 42vw);
    margin: 0;
  }
}

.page-company .Our.Story .os-content {
  gap: clamp(20px, 4vw, 40px);
}

.page-company .Our.Story .os-years {
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}

.page-company .meet-the-team .container {
  padding-inline: clamp(16px, 3vw, 40px);
}

.page-company .mt-grid {
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 18rem));
  justify-content: center;
  align-items: stretch;
}

.page-company .mt-card {
  width: 100%;
  max-width: 18rem;
  height: 27rem;
  min-height: 27rem;
  margin-inline: 0;
}

.page-company .mt-card > section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  column-gap: 0.65rem;
}

.page-company .mt-card > section h2 {
  grid-column: 1 / -1;
}

.page-company .mt-card > section p {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.page-company .mt-card > section > div {
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  flex: none;
  margin-top: 0;
  transform: none;
}

.page-company .mt-card > section > div button {
  width: 50px;
  height: 50px;
  min-width: 50px;
  padding: 0;
  border-radius: 0;
  border: 0;
  font-size: 0;
  line-height: 1;
  background: transparent;
  color: var(--title-color-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-company .mt-card > section > div button::before {
  content: "";
  width: 50px;
  height: 50px;
  position: static;
  top: auto;
  left: auto;
  display: block;
  background: url("../image/icons/mail (2).png") center/contain no-repeat;
}

.page-company .mt-card > section > div button::after {
  content: none;
}

.page-company .mt-card > section > div button:hover {
  background: transparent;
}

.page-company .client-case-image {
  width: 100%;
  max-width: 560px;
  margin-left: 0;
}

.page-company .achievements .container {
  padding-inline: clamp(16px, 3vw, 40px);
}

.page-company .quote-now {
  padding: clamp(70px, 12vh, 120px) 0;
}

.page-company .quote-now-title {
  font-size: clamp(30px, 5vw, 52px);
}

@media (max-width: 1024px) {
  .page-company .about-layout {
    gap: 32px;
  }

  .page-company .future-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-company .mt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-company .client-case-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-company .client-case-left {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-company .hero-banner {
    min-height: clamp(46svh, 58svh, 66svh);
    width: 100%;
  }

  .page-company .hero-banner::after {
    height: clamp(70px, 16vh, 120px);
  }

  .page-company .hero-content {
    width: 100%;
    padding-top: clamp(96px, 18vh, 150px);
    padding-bottom: clamp(28px, 7vh, 52px);
    padding-inline: clamp(12px, 4vw, 20px);
  }

  .page-company .hero-title {
    font-size: clamp(26px, 8vw, 40px);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    margin-top: 0;
    line-height: 1.15;
  }

  .page-company .hero-label {
    font-size: clamp(14px, 4vw, 20px);
    line-height: 1.35;
    max-width: min(92vw, 34ch);
    margin-inline: auto;
  }

  .page-company .about-us,
  .page-company .guiding-future,
  .page-company .advacned-technology,
  .page-company .Our.Story,
  .page-company .meet-the-team,
  .page-company .client-case,
  .page-company .achievements {
    padding-block: clamp(56px, 10vw, 80px);
  }

  .page-company .client-case {
    padding: clamp(54px, 9vw, 72px) 0;
    min-height: auto;
  }

  .page-company .client-case-bg-overlay {
    background-color: rgba(0, 0, 0, 0.62);
  }

  .page-company .client-case-layout {
    gap: clamp(18px, 5vw, 28px);
  }

  .page-company .client-case-image {
    width: min(100%, 24rem);
    max-width: 100%;
    margin-inline: auto;
    border-radius: clamp(14px, 3.6vw, 20px);
  }

  .page-company .client-case-pill {
    font-size: clamp(11px, 2.8vw, 13px);
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .page-company .client-case-main-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .page-company .client-case-highlight {
    padding-left: 14px;
    margin-bottom: 12px;
  }

  .page-company .client-case-highlight::before {
    width: 3px;
  }

  .page-company .client-case-meta {
    font-size: clamp(12px, 3.1vw, 14px);
  }

  .page-company .client-case-highlight-title {
    font-size: clamp(18px, 4.8vw, 24px);
    line-height: 1.3;
  }

  .page-company .client-case-desc {
    font-size: clamp(13px, 3.2vw, 16px);
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .page-company .client-case-right .btn.btn-light {
    min-height: 38px;
    padding-inline: clamp(12px, 4vw, 18px);
    font-size: clamp(11px, 2.8vw, 13px);
  }

  .page-company .achievements {
    padding: clamp(52px, 9vw, 72px) 0;
  }

  .page-company .achievements .container {
    padding-inline: clamp(12px, 4vw, 20px);
  }

  .page-company .ach-header {
    margin-bottom: clamp(18px, 5vw, 28px);
  }

  .page-company .ach-pill {
    font-size: clamp(11px, 2.8vw, 13px);
    padding: 6px 14px;
  }

  .page-company .ach-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
    margin: 10px 0 6px;
  }

  .page-company .ach-subtitle {
    font-size: clamp(13px, 3.2vw, 16px);
    max-width: min(92vw, 34ch);
  }

  .page-company .achievements-carousel-wrapper {
    margin-top: clamp(12px, 4vw, 20px);
    max-width: 100%;
  }

  .page-company .achievements-carousel {
    gap: clamp(12px, 3vw, 16px);
    padding: 8px 0;
  }

  .page-company .achievement-card {
    flex: 0 0 100%;
  }

  .page-company .achievement-frame {
    border-radius: clamp(10px, 3vw, 14px);
    padding: clamp(8px, 2.6vw, 12px);
  }

  .page-company .achievement-img {
    border-radius: clamp(6px, 2vw, 10px);
  }

  .page-company .achievement-caption {
    font-size: clamp(12px, 3vw, 14px);
    margin-top: 8px;
  }

  .page-company .ach-arrow {
    width: 34px;
    height: 34px;
  }

  .page-company .ach-arrow.prev {
    left: 4px;
  }

  .page-company .ach-arrow.next {
    right: 4px;
  }

  .page-company .achievements-dots {
    margin-top: 12px;
  }

  .page-company .ach-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  .page-company .stats-grid,
  .page-company .future-cards-grid,
  .page-company .advacned-technology-grid,
  .page-company .mt-grid {
    grid-template-columns: 1fr;
  }

  .page-company .future-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 10px);
  }

  .page-company .future-card {
    min-height: clamp(132px, 30vw, 176px);
    padding: clamp(8px, 2.2vw, 12px);
    border-radius: 10px;
  }

  .page-company .future-card .card-icon {
    width: clamp(22px, 6vw, 28px);
    height: clamp(22px, 6vw, 28px);
    margin-bottom: clamp(6px, 1.8vw, 8px);
  }

  .page-company .future-card .card-title {
    font-size: clamp(10px, 2.5vw, 13px);
    line-height: 1.25;
    margin-bottom: 0;
    text-transform: none;
  }

  .page-company .future-card .card-desc {
    display: none;
  }

  .page-company .advacned-technology-pill {
    font-size: clamp(11px, 2.8vw, 13px);
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .page-company .advacned-technology-title {
    font-size: clamp(22px, 6.4vw, 32px);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .page-company .advacned-technology-desc {
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .page-company .advacned-technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 14px);
  }

  .page-company .advacned-technology-card {
    padding: clamp(10px, 2.8vw, 14px);
    min-height: clamp(120px, 30vw, 170px);
  }

  .page-company .advacned-technology-card-icon {
    width: clamp(28px, 7vw, 40px);
    height: clamp(28px, 7vw, 40px);
    margin-bottom: 8px;
  }

  .page-company .advacned-technology-card-icon img {
    width: clamp(16px, 4.2vw, 22px);
    height: clamp(16px, 4.2vw, 22px);
  }

  .page-company .advacned-technology-card h3 {
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.3;
    margin-bottom: 0;
  }

  .page-company .advacned-technology-card p {
    display: none;
  }

  .page-company .about-layout {
    gap: clamp(20px, 5vw, 32px);
  }

  .page-company .about-left .about-pill {
    font-size: clamp(11px, 2.8vw, 13px);
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .page-company .about-left .about-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .page-company .about-left .about-desc {
    font-size: clamp(13px, 3.2vw, 16px);
    line-height: 1.45;
  }

  .page-company .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 16px);
  }

  .page-company .stat-card {
    min-height: clamp(116px, 28vw, 160px);
    padding: clamp(10px, 2.4vw, 16px);
    border-radius: 12px;
  }

  .page-company .stat-card .stat-number {
    font-size: clamp(20px, 5.4vw, 30px);
    line-height: 1.1;
  }

  .page-company .stat-card .stat-title {
    font-size: clamp(12px, 2.8vw, 14px);
    margin-top: 6px;
  }

  .page-company .stat-card .stat-desc {
    font-size: clamp(10px, 2.4vw, 12px);
    margin-top: 3px;
    line-height: 1.3;
  }

  .page-company .Our.Story .os-timeline {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .page-company .Our.Story .os-years {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
  }

  .page-company .Our.Story .os-year-label {
    font-size: 14px;
  }

  .page-company .meet-the-team .section-title,
  .page-company .client-case-main-title,
  .page-company .ach-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .page-company .meet-the-team .section-pill {
    font-size: clamp(11px, 3vw, 13px);
    padding: 6px 14px;
  }

  .page-company .meet-the-team .section-desc {
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.45;
    max-width: min(92vw, 40ch);
  }

  .page-company .mt-grid {
    display: block;
    overflow: visible;
    width: 100%;
  }

  .page-company .mt-card {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: auto;
    min-height: clamp(22rem, 82vw, 28rem);
    margin-inline: auto;
  }

  .page-company .mt-card.is-active {
    display: block;
  }

  .page-company .mt-card > img {
    aspect-ratio: 3 / 4;
    object-position: 50% 10%;
  }

  .page-company .mt-card > section {
    height: auto;
    min-height: 0;
    margin: 0.75rem 1rem 1rem;
  }

  .page-company .mt-card > section > div {
    flex: none;
  }

  .page-company .mt-mobile-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .page-company .mt-mobile-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.88);
    color: #111;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .page-company .mt-mobile-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .page-company .mt-card:not(.is-open) > section h2 {
    translate: 0 0;
    margin-block-end: 0;
    opacity: 1;
  }

  .page-company .mt-card:not(.is-open) > section p,
  .page-company .mt-card:not(.is-open) > section > div {
    display: none;
    translate: 0 100%;
    opacity: 0;
  }

  .page-company .mt-card.is-open {
    min-height: clamp(30rem, 92vw, 36rem);
  }

  .page-company .mt-card.is-open::before {
    translate: 0 100%;
  }

  .page-company .mt-card.is-open > img {
    aspect-ratio: 4 / 5;
    object-position: 50% 10%;
  }

  .page-company .mt-card.is-open > section h2,
  .page-company .mt-card.is-open > section p {
    translate: 0 0;
    margin-block-end: 0.5rem;
    opacity: 1;
  }

  .page-company .mt-card.is-open > section > div {
    display: flex;
    translate: 0 0;
    opacity: 1;
  }

  .page-company .mt-card > section p {
    margin-bottom: 0.5rem;
  }
}

@media (orientation: landscape) and (min-width: 1024px) {
  .page-company .meet-the-team {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .page-company .meet-the-team .container {
    width: 100%;
    max-width: 100%;
  }
}
