: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;
}
* {
  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;
}

/* screenshot  */
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media print {
  body {
    display: none !important;
  }
}
/* screenshot */

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 {
  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-banner {
  position: relative;
  min-height: 92vh;
  background: #111;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../image/main-banner1.jpg") center/cover no-repeat;
  transform: scale(var(--hero-scale, 1));
  will-change: transform;
}
.hero-banner::after {
  content: none;
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  text-align: center;
}
.hero-label {
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  font-family: "Science Gothic";
  letter-spacing: 20px;
  margin-top: 215px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}
.hero-title {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  padding-top: 0px;
  font-family: "Science Gothic";
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
    --hero-scale: 0.85;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-label {
    font-size: clamp(28px, 7vw, 34px);
    letter-spacing: 10px;
    margin-top: 80px;
  }
  .hero-title {
    font-size: clamp(26px, 8vw, 34px);
  }
}

/* hero-banner finished here */

.kpi {
  padding: 40px 0;
  background: #101010;
  color: #fff;
}
.kpi-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kpi-number {
  font-size: 42px;
  line-height: 1;
  color: #fff;
  display: block;
}
.kpi-label {
  color: rgba(255, 255, 255, 0.8);
}

/* products starting from here */
.products {
  padding: 60px 0;
}
/* products finished here */
.section-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-height: 140px;
  background: #fff;
  color: var(--title-color);
  font-weight: 600;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* why starting from here */
.why {
  padding: 60px 0;
  background: var(--gray-100);
}
/* why finished here */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 20px;
}
.why-item h3 {
  margin-bottom: 10px;
}

/* services starting from here */
.services {
  padding: 60px 0;
}
/* services finished here */
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

/* site-footer starting from here */
.site-footer {
  background: var(--gray-100);
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
/* site-footer finished here */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-menu {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
}
.modal {
  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;
}
/* Map iframe loader overlay */
.map-section .map-frame {
  position: relative;
  width: 100%;
  min-height: 530px;
}
.map-section .map-frame iframe {
  display: block;
  width: 100%;
  height: 530px;
  border: 0;
}
.map-section .banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
  z-index: 9999;
  opacity: 1;
  transition: opacity 160ms ease;
}
.map-section .banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.map-section .banter-loader__box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2f6cc8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.map-section .banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}
.map-section .banter-loader__box:nth-child(1):before,
.map-section .banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}
.map-section .banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}
.map-section .banter-loader__box:last-child {
  margin-bottom: 0;
}
@keyframes moveBox-1 {
  9.0909% {
    transform: translate(-26px, 0);
  }
  18.1818% {
    transform: translate(0px, 0);
  }
  27.2727% {
    transform: translate(0px, 0);
  }
  36.3636% {
    transform: translate(26px, 0);
  }
  45.4545% {
    transform: translate(26px, 26px);
  }
  54.5455% {
    transform: translate(26px, 26px);
  }
  63.6364% {
    transform: translate(26px, 26px);
  }
  72.7273% {
    transform: translate(26px, 0px);
  }
  81.8182% {
    transform: translate(0px, 0px);
  }
  90.9091% {
    transform: translate(-26px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(1) {
  animation: moveBox-1 4s infinite;
}
@keyframes moveBox-2 {
  9.0909% {
    transform: translate(0, 0);
  }
  18.1818% {
    transform: translate(26px, 0);
  }
  27.2727% {
    transform: translate(0px, 0);
  }
  36.3636% {
    transform: translate(26px, 0);
  }
  45.4545% {
    transform: translate(26px, 26px);
  }
  54.5455% {
    transform: translate(26px, 26px);
  }
  63.6364% {
    transform: translate(26px, 26px);
  }
  72.7273% {
    transform: translate(26px, 26px);
  }
  81.8182% {
    transform: translate(0px, 26px);
  }
  90.9091% {
    transform: translate(0px, 26px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(2) {
  animation: moveBox-2 4s infinite;
}
@keyframes moveBox-3 {
  9.0909% {
    transform: translate(-26px, 0);
  }
  18.1818% {
    transform: translate(-26px, 0);
  }
  27.2727% {
    transform: translate(0px, 0);
  }
  36.3636% {
    transform: translate(-26px, 0);
  }
  45.4545% {
    transform: translate(-26px, 0);
  }
  54.5455% {
    transform: translate(-26px, 0);
  }
  63.6364% {
    transform: translate(-26px, 0);
  }
  72.7273% {
    transform: translate(-26px, 0);
  }
  81.8182% {
    transform: translate(-26px, -26px);
  }
  90.9091% {
    transform: translate(0px, -26px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(3) {
  animation: moveBox-3 4s infinite;
}
@keyframes moveBox-4 {
  9.0909% {
    transform: translate(-26px, 0);
  }
  18.1818% {
    transform: translate(-26px, 0);
  }
  27.2727% {
    transform: translate(-26px, -26px);
  }
  36.3636% {
    transform: translate(0px, -26px);
  }
  45.4545% {
    transform: translate(0px, 0px);
  }
  54.5455% {
    transform: translate(0px, -26px);
  }
  63.6364% {
    transform: translate(0px, -26px);
  }
  72.7273% {
    transform: translate(0px, -26px);
  }
  81.8182% {
    transform: translate(-26px, -26px);
  }
  90.9091% {
    transform: translate(-26px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(4) {
  animation: moveBox-4 4s infinite;
}
@keyframes moveBox-5 {
  9.0909% {
    transform: translate(0, 0);
  }
  18.1818% {
    transform: translate(0, 0);
  }
  27.2727% {
    transform: translate(0, 0);
  }
  36.3636% {
    transform: translate(26px, 0);
  }
  45.4545% {
    transform: translate(26px, 0);
  }
  54.5455% {
    transform: translate(26px, 0);
  }
  63.6364% {
    transform: translate(26px, 0);
  }
  72.7273% {
    transform: translate(26px, 0);
  }
  81.8182% {
    transform: translate(26px, -26px);
  }
  90.9091% {
    transform: translate(0px, -26px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(5) {
  animation: moveBox-5 4s infinite;
}
@keyframes moveBox-6 {
  9.0909% {
    transform: translate(0, 0);
  }
  18.1818% {
    transform: translate(-26px, 0);
  }
  27.2727% {
    transform: translate(-26px, 0);
  }
  36.3636% {
    transform: translate(0px, 0);
  }
  45.4545% {
    transform: translate(0px, 0);
  }
  54.5455% {
    transform: translate(0px, 0);
  }
  63.6364% {
    transform: translate(0px, 0);
  }
  72.7273% {
    transform: translate(0px, 26px);
  }
  81.8182% {
    transform: translate(-26px, 26px);
  }
  90.9091% {
    transform: translate(-26px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(6) {
  animation: moveBox-6 4s infinite;
}
@keyframes moveBox-7 {
  9.0909% {
    transform: translate(26px, 0);
  }
  18.1818% {
    transform: translate(26px, 0);
  }
  27.2727% {
    transform: translate(26px, 0);
  }
  36.3636% {
    transform: translate(0px, 0);
  }
  45.4545% {
    transform: translate(0px, -26px);
  }
  54.5455% {
    transform: translate(26px, -26px);
  }
  63.6364% {
    transform: translate(0px, -26px);
  }
  72.7273% {
    transform: translate(0px, -26px);
  }
  81.8182% {
    transform: translate(0px, 0px);
  }
  90.9091% {
    transform: translate(26px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(7) {
  animation: moveBox-7 4s infinite;
}
@keyframes moveBox-8 {
  9.0909% {
    transform: translate(0, 0);
  }
  18.1818% {
    transform: translate(-26px, 0);
  }
  27.2727% {
    transform: translate(-26px, -26px);
  }
  36.3636% {
    transform: translate(0px, -26px);
  }
  45.4545% {
    transform: translate(0px, -26px);
  }
  54.5455% {
    transform: translate(0px, -26px);
  }
  63.6364% {
    transform: translate(0px, -26px);
  }
  72.7273% {
    transform: translate(0px, -26px);
  }
  81.8182% {
    transform: translate(26px, -26px);
  }
  90.9091% {
    transform: translate(26px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.map-section .banter-loader__box:nth-child(8) {
  animation: moveBox-8 4s infinite;
}
@keyframes moveBox-9 {
  9.0909% {
    transform: translate(-26px, 0);
  }
  18.1818% {
    transform: translate(-26px, 0);
  }
  27.2727% {
    transform: translate(0px, 0);
  }
  36.3636% {
    transform: translate(-26px, 0);
  }
  45.4545% {
    transform: translate(0px, 0);
  }
  54.5455% {
    transform: translate(0px, 0);
  }
  63.6364% {
    transform: translate(-26px, 0);
  }
  72.7273% {
    transform: translate(-26px, 0);
  }
  81.8182% {
    transform: translate(-52px, 0);
  }
  90.9091% {
    transform: translate(-26px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}
.map-section .banter-loader__box:nth-child(9) {
  animation: moveBox-9 4s infinite;
}
.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);
}

.placeholder {
  min-height: 600px;
  display: flex;
  align-items: center;
}
.placeholder.p1 {
  background: #f5f5f5;
}
.placeholder.p2 {
  background: #191919;
  color: #fff;
}
.placeholder.p3 {
  background: #ececec;
}
.placeholder.p4 {
  background: #151515;
  color: #fff;
}
.placeholder.p5 {
  background: #e9e9e9;
}
.placeholder.p6 {
  background: #121212;
  color: #fff;
}

.segmented {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 960px);
  height: 58px;
  padding: 8px;
  border-radius: 9999px;
  background: rgba(115, 86, 54, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  z-index: 2;
}
.segmented .seg-btn {
  flex: 1 1 0;
  height: 100%;
  border-radius: 9999px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}
.segmented .seg-btn:hover {
  filter: brightness(110%);
}
.segmented .seg-btn: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);
}
.segmented .seg-btn.is-active {
  color: #ff8f3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.segmented .active-pill {
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);
  border-radius: 9999px;
  background: #fff5e6;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 200ms ease,
    background-color 200ms ease;
  will-change: transform, box-shadow, background-color;
  transform: translateZ(0);
  z-index: 0;
}

@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;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .kpi-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .btn-quote {
    margin-left: 0;
  }
  .hero-title {
    font-size: 34px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==============================
   Products We Provide
   ============================== */

/* products-we-provide starting from here */
.products-we-provide {
  position: relative;
  padding: 90px 0 50px;
  color: #fff;
  overflow: hidden;
  background: #000;
}

.products-we-provide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.products-we-provide .container {
  position: relative;
  z-index: 1;
  padding-left: clamp(24px, 10vw, 160px);
  padding-right: clamp(24px, 5vw, 80px);
}

.products-we-provide .pwp-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fbe6d7;
  color: #ff7a1a;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.products-we-provide .pwp-title {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.products-we-provide .pwp-grid {
  display: grid;
  grid-template-columns: clamp(260px, 20vw, 320px) 1fr;
  align-items: center;
  margin-top: 70px;
}

.products-we-provide .pwp-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.viewAllProducts {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.viewAllProducts:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.products-we-provide .pwp-btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 14px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.products-we-provide .pwp-btn:hover {
  color: #000000;
  background: #929292;
  transform: translateY(-2px);
}

.products-we-provide .pwp-btn.is-active,
.products-we-provide .pwp-btn[aria-current="true"] {
  background: #083a5f;
  color: #fff;
}

.products-we-provide .pwp-preview {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
}
/* top vignette to blend upper edge of image */
.products-we-provide .pwp-preview::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0%;
  height: 26%;
  filter: blur(8px);
  opacity: 0.45;
  pointer-events: none;
}

.products-we-provide .pwp-preview::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14%;
  height: 20%;
  background: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0)
  );
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.products-we-provide .pwp-imgwrap {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  position: relative;
  bottom: 40px;
  overflow: hidden; /* Prevent zoom from overlapping left section */
  border-radius: 8px; /* Optional: smooth corners */
  transition: transform 700ms ease; /* Subtle container animation */
}

.products-we-provide .pwp-imgwrap:hover {
  transform: scale(1.02); /* Slight container scale for depth */
}

.products-we-provide .pwp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 86%,
    rgba(0, 0, 0, 0) 100%
  );
  transform: scale(1);
  transition: transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.products-we-provide .pwp-imgwrap:hover .pwp-img {
  transform: scale(1.07);
  transform-origin: center center; /* Ensure zoom stays centered within container */
}

@media (max-width: 1024px) {
  .products-we-provide .pwp-grid {
    grid-template-columns: 320px 1fr;
    /*gap: 28px;*/
  }
  .products-we-provide .pwp-btn {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .products-we-provide {
    padding: clamp(48px, 12vw, 70px) 0 clamp(56px, 14vw, 90px);
  }
  .products-we-provide .pwp-pill {
    padding: 8px 14px;
    font-size: clamp(0.72rem, 3.2vw, 0.86rem);
  }
  .products-we-provide .pwp-title {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1.15;
  }
  .products-we-provide .pwp-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3.4vw, 18px);
    align-items: start;
    margin-top: clamp(26px, 7vw, 40px);
  }

  .products-we-provide .pwp-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(6px, 2vw, 10px);
  }
  .products-we-provide .pwp-btn {
    width: auto;
    height: auto;
    padding: clamp(8px, 2.6vw, 10px) clamp(10px, 3.4vw, 14px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: clamp(0.7rem, 2.8vw, 0.86rem);
    letter-spacing: 0.2px;
  }
  .products-we-provide .pwp-btn.is-active {
    background: #083a5f;
  }

  .products-we-provide .pwp-preview {
    min-height: clamp(110px, 30vw, 190px);
  }
  .products-we-provide .pwp-imgwrap {
    width: min(100%, 92vw);
    aspect-ratio: 4 / 3;
    overflow: hidden; /* Ensure mobile also contains zoom */
    transition: transform 200ms ease; /* Faster animation on mobile */
  }

  .products-we-provide .pwp-imgwrap:hover {
    transform: scale(1.01); /* Subtle container scale on mobile */
  }

  .products-we-provide .pwp-imgwrap:hover .pwp-img {
    transform: scale(1.2); /* Slightly less zoom on mobile for better UX */
  }
}

/* products-we-provide finished here */
/* ==============================
   Why Choose Us
   ============================== */
/* why-choose starting from here */
.why-choose {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
  background-image: url("../image/place_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-choose::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

/* Subtle background pattern */
.why-choose::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  right: -150px;
  bottom: -150px;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 40%);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.why-choose .container {
  position: relative;
  z-index: 1;
  max-width: min(1280px, 92vw);
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
}

/* Separate headline row for pill */
.wc-topline {
  display: flex;
  justify-content: center;
  margin-bottom: 34px; /* controls space between pill and grid */
}

/* Pill */
.wc-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fbe6d7;
  color: #ff7a1a;
  font-weight: 600;
  font-size: 15px;
}

/* Main 2-column layout */
.wc-grid {
  display: grid;
  grid-template-columns: clamp(420px, 38vw, 560px) clamp(420px, 42vw, 620px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

/* Image card */
.wc-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  margin-top: clamp(12px, 3vw, 30px);
  width: clamp(420px, 40vw, 560px);
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   Products Mega Dropdown (new)
   ============================== */
.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;
  }
}

/* Make image fill nicely */
.wc-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* IMPORTANT: looks like the reference */
}
/* Heading */
.wc-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #222;
  margin: 0 0 30px;
  text-align: center;
}

.wc-highlight {
  color: #005fb9;
}

/* Accordion layout */
.wc-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wc-accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wc-accordion-item.is-open {
  border-color: #073a5c;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.wc-accordion-item h3 {
  margin: 0;
}

.wc-accordion-btn {
  width: 100%;
  padding: clamp(16px, 2.5vw, 20px);
  background: #fff;
  border: none;
  text-align: left;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: #222;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.wc-accordion-item.is-open .wc-accordion-btn {
  background-color: #073a5c;
  color: #fff;
}

/* Plus/minus */
.wc-accordion-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.wc-accordion-item.is-open .wc-accordion-btn::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

/* Panels */
.wc-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.wc-accordion-item.is-open .wc-accordion-panel {
  max-height: 220px; /* adjust if text is longer */
}

.wc-accordion-panel p {
  padding: clamp(18px, 2.2vw, 25px);
  margin: 0;
  color: #555;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  border-left: 3px solid #073a5c;
  margin-left: 20px;
  padding-left: 22px;
}

@media (max-width: 992px) {
  .wc-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 30px);
    align-items: start;
  }
  .wc-image-card,
  .wc-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* why-choose finished here */

/* best-service starting from here */
.best-service {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(
      900px 500px at 70% 40%,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0) 60%
    ),
    #070707;
  color: #fff;
  overflow: hidden;
}

.best-service .container {
  position: relative;
  z-index: 1;
  max-width: min(1280px, 92vw);
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
}

.best-service .bs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f6e1d2;
  color: #ff7a1a;
  font-weight: 600;
  margin: 0 auto 24px;
}

.best-service .bs-layout {
  display: grid;
  grid-template-columns: clamp(520px, 58vw, 760px) clamp(280px, 32vw, 420px);
  gap: clamp(24px, 5vw, 50px);
  align-items: center;
}

.best-service .bs-left {
  text-align: left;
}

.bs-title {
  font-size: clamp(38px, 4.8vw, 64px);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.best-service .bs-fixed {
  color: #fff;
  margin-left: clamp(12px, 3vw, 28px);
}

.best-service .bs-dynamic {
  color: #1e88ff;
  transition:
    color 0.4s ease,
    opacity 0.4s ease;
  display: inline-block;
  min-width: 10ch;
}

.best-service .bs-dynamic.is-muted {
  color: #9a9a9a;
  opacity: 1;
}

.best-service .bs-dynamic.is-hidden {
  opacity: 0;
}

.best-service .bs-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px) clamp(20px, 3vw, 34px);
  justify-items: center;
}

.best-service .bs-feature-col {
  display: grid;
  gap: 16px;
}

.best-service .bs-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}

.best-service .bs-feature img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.best-service .bs-right {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: end;
}

.best-service .bs-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: clamp(280px, 28vw, 380px);
  padding: clamp(14px, 2vw, 18px) clamp(18px, 2.4vw, 22px);
  padding-block: calc(clamp(14px, 2vw, 18px) + 7.5px);
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  color: #0b1b2b;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
  background: rgba(105, 13, 197, 0.08);
  will-change: transform, box-shadow, filter;
}

.best-service .bs-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.best-service .bs-arrow {
  font-size: clamp(18px, 2vw, 22px);
}

.best-service .bs-card:hover {
  transform: translateY(-4px);
  /*box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);*/
}

.best-service .bs-card::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  top: -40%;
  left: -20%;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.1);
  transition: all 0.8s ease;
  filter: blur(0.5rem);
  pointer-events: none;
}
.best-service .bs-card:hover::before {
  width: 140px;
  height: 140px;
  top: -30%;
  left: 50%;
  filter: blur(0);
}

.best-service .bs-card--support {
  background: #d9efff;
}
.best-service .bs-card--support:hover {
  background: #68bcf8;
}

.best-service .bs-card--showcase {
  background: #f7e3d6;
}
.best-service .bs-card--showcase:hover {
  background: #f99451;
}

.best-service .bs-card--contact {
  background: #f6dbe7;
}
.best-service .bs-card--contact:hover {
  background: #f965a8;
}

@media (max-width: 992px) {
  .best-service .bs-layout {
    grid-template-columns: 1fr;
  }
  .best-service .bs-right {
    justify-items: center;
  }
  .best-service .bs-right::before {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .best-service {
    padding: clamp(48px, 12vw, 64px) 0;
  }
  .best-service .container {
    padding-left: clamp(14px, 4vw, 20px);
    padding-right: clamp(14px, 4vw, 20px);
  }
  .best-service .bs-pill {
    padding: 7px 14px;
    margin-bottom: 16px;
    font-size: clamp(0.74rem, 3.2vw, 0.88rem);
  }
  .best-service .bs-layout {
    gap: clamp(14px, 4vw, 22px);
  }
  .bs-title {
    font-size: clamp(1.35rem, 8vw, 2rem);
    gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
  }
  .best-service .bs-fixed {
    margin-left: 0;
  }
  .best-service .bs-feature {
    gap: 8px;
  }
  .best-service .bs-feature span {
    font-size: clamp(0.8rem, 3.4vw, 0.96rem);
    line-height: 1.35;
  }
  .best-service .bs-feature img {
    width: clamp(20px, 6vw, 24px);
    height: clamp(20px, 6vw, 24px);
  }
  .best-service .bs-features {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }
  .best-service .bs-card {
    width: min(100%, 320px);
    padding: clamp(10px, 3vw, 13px) clamp(12px, 3.4vw, 16px);
    border-radius: 14px;
    gap: 10px;
  }
  .best-service .bs-card img {
    width: clamp(20px, 6vw, 26px);
    height: clamp(20px, 6vw, 26px);
  }
  .best-service .bs-card span {
    font-size: clamp(0.82rem, 3.5vw, 0.98rem);
  }
  .best-service .bs-arrow {
    font-size: clamp(14px, 4.2vw, 18px);
  }
}

/* best-service finished here */
/* about-excellence starting from here */
.about-excellence {
  position: relative;
  background-image: url("../image/place_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-excellence::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.about-excellence > * {
  position: relative;
  z-index: 1;
}
.about-excellence {
  position: relative;
  background-color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.about-excellence::before {
  content: "MEYSHER";
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 130px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  z-index: 0;
  transform: rotate(0deg);
}

.about-excellence .container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--edge-padding);
}

.about-excellence-collage {
  display: flex;
  gap: 20px;
  width: 50%;
}

.about-excellence-main-image img {
  width: clamp(240px, 75%, 900px);
  height: auto;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
  transform-origin: center;
  border-radius: 15px;
  margin-left: clamp(12px, 8vw, 200px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  will-change: transform, box-shadow;
  display: block;
}

.about-excellence-main-image:hover img {
  transform: perspective(900px) rotateX(7deg) rotateY(-7deg) scale(1.04);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.2),
    0 12px 18px rgba(0, 0, 0, 0.12);
}

.about-excellence-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-excellence-content .badge {
  display: inline-block;
  color: #ff6b00;
  background-color: #fff0e6;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(0.78rem, 2.4vw, 1rem);
  margin-bottom: 20px;
}

.about-excellence-content h2 {
  font-size: clamp(1.5rem, 6vw, 2.625rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px 20px;
  padding: 30px 0;
  position: relative;
}

.stats-grid::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #eee;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #eee;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.6rem, 7vw, 3rem);
  font-weight: 700;
  color: #000;
  display: block;
}

.stat-label {
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  color: #666;
}

.about-us-link {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 5px;
}
.about-us-link .btn:hover {
  background-color: #ff6b00;
  transform: translateY(-2px);
  color: #fff;
}

.about-us-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff6b00;
}

@media (max-width: 992px) {
  .about-excellence .container {
    flex-direction: column;
  }

  .about-excellence-collage,
  .about-excellence-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 16px 12px;
    padding: 18px 0;
  }

  .stat-number {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .stat-label {
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
    line-height: 1.35;
  }
}

/* about-excellence finished here */

@media (max-width: 768px) {
  .modal-content {
    width: calc(100% - 60px);
    max-width: none;
    margin: 30px auto;
    max-height: calc(100dvh - 60px);
    overflow: auto;
    padding: clamp(14px, 4vw, 20px);
    border-radius: 10px;
  }

  .modal-title {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    margin-bottom: 8px;
    padding-right: 24px;
  }

  .modal-close {
    right: 10px;
    top: 8px;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  .form {
    gap: 10px;
  }

  .form-row label {
    font-size: clamp(0.78rem, 2.8vw, 0.92rem);
  }

  .form-row input,
  .form-row textarea {
    font-size: clamp(0.78rem, 2.9vw, 0.92rem);
  }

  .form-row input {
    height: clamp(34px, 8.6vw, 40px);
    padding: 0 10px;
  }

  .form-row textarea {
    padding: 10px;
  }

  .modal-content .btn {
    height: clamp(34px, 8.6vw, 40px);
    padding: 0 clamp(10px, 3.2vw, 14px);
    font-size: clamp(0.78rem, 2.8vw, 0.92rem);
  }

  .form-status {
    font-size: clamp(0.76rem, 2.8vw, 0.9rem);
  }
}
