.process-section {
  position: relative;
  padding: 70px 20px 85px;
  overflow: hidden;
  background: #f7f7f7;
}

.bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Certificate Section */
.cert-section {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 90px max(20px, calc((100% - 1240px) / 2));
  overflow: hidden;
}

.cert-row-one {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.cert-row-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cert-box {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(0, 64, 104, 0.15);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #edf2f5);
  box-shadow: 0 16px 38px rgba(0, 42, 69, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cert-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 62px;
  height: 4px;
  border-radius: 0 0 10px 0;
  background: linear-gradient(90deg, #b10219, #004068);
}

.cert-box:hover {
  transform: translateY(-8px);
  border-color: rgba(177, 2, 25, 0.35);
  box-shadow: 0 26px 55px rgba(0, 42, 69, 0.17);
}

.cert-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.cert-box:hover img {
  transform: scale(1.05);
}

.cert-box.vertical {
  aspect-ratio: 3 / 4;
}

.cert-box.horizontal {
  aspect-ratio: 16 / 10;
}

@media (max-width: 1200px) {
  .cert-row-one {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-box.vertical {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 768px) {
  .cert-row-two {
    grid-template-columns: 1fr;
  }

  .cert-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 576px) {
  .cert-row-one {
    grid-template-columns: 1fr;
  }

  .cert-section {
    padding: 60px 18px;
  }

  .cert-row-one,
  .cert-row-two {
    gap: 18px;
  }

  .cert-box {
    padding: 9px;
    border-radius: 12px;
  }
}

/* Our Machines mega menu */
.main-header,
.main-header .main-menu,
.main-header .main-menu__wrapper,
.main-header .main-menu__wrapper-inner,
.main-header .main-menu__middle-box,
.main-header .main-menu__main-menu-box,
.stricky-header,
.stricky-header .main-menu__wrapper,
.stricky-header .main-menu__wrapper-inner {
  overflow: visible !important;
}

.main-header {
  z-index: 1001;
}

.mmw-machine-menu-item {
  position: relative !important;
}

.mmw-machine-menu-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.mmw-machine-menu-trigger > i {
  font-size: 12px;
}

.mmw-serve-locations-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 5px;
  color: #fff !important;
  background: #004aac;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(177, 2, 25, 0.2);
}

.mmw-serve-locations-btn:hover {
  color: #fff !important;
  background: #161616;
}

.mmw-mobile-serve-link {
  display: none !important;
}

.mobile-nav__container .mmw-mobile-serve-link {
  display: block !important;
}

.mobile-nav__container .mmw-mobile-serve-link > a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mmw-site-search-results {
  padding: 80px 0;
  background: #f7f7f7;
}

.mmw-site-search-results__form {
  max-width: 780px;
  margin: 0 auto 35px;
  display: flex;
  gap: 10px;
}

.mmw-site-search-results__form input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.mmw-site-search-results h2,
.mmw-site-search-results__message {
  margin: 0 0 20px;
  text-align: center;
}

.mmw-site-search-results__list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 9px;
}

.mmw-site-search-results__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  color: #222;
  background: #fff;
  font-weight: 700;
}

.mmw-site-search-results__list a:hover {
  color: #b10219;
  border-color: #b10219;
}

.mmw-reviews-page {
  padding: 85px 0;
  background: #f6f7f9;
}

.mmw-reviews-summary {
  max-width: 900px;
  margin: 30px auto 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 24px;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 25, 35, 0.06);
}

.mmw-reviews-summary div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mmw-reviews-summary strong {
  color: #b10219;
  font-size: 32px;
  line-height: 1;
}
.mmw-reviews-summary span {
  color: #555;
  font-weight: 700;
}
.mmw-reviews-summary p {
  margin: 0;
  color: #555;
}
.mmw-reviews-summary p i {
  margin-right: 7px;
  color: #4285f4;
}

.mmw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}

.mmw-review-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid #e5e7ea;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 25, 35, 0.07);
}

.mmw-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mmw-review-card__avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b10219;
  font-size: 18px;
  font-weight: 800;
}

.mmw-review-card__identity {
  min-width: 0;
  flex: 1;
}
.mmw-review-card__identity h3 {
  margin: 0 0 2px;
  color: #171717;
  font-size: 17px;
  line-height: 1.3;
}
.mmw-review-card__identity span {
  color: #777;
  font-size: 13px;
}
.mmw-review-card__google {
  color: #4285f4;
  font-size: 19px;
}

.mmw-review-card__meta {
  margin: 15px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #858585;
  font-size: 13px;
}

.mmw-review-card__meta span {
  color: #188038;
  font-weight: 700;
}
.mmw-review-card__text {
  color: #3e3e3e;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.mmw-review-card__reply {
  margin-top: 18px;
  padding: 15px 16px;
  border-left: 3px solid #b10219;
  border-radius: 0 7px 7px 0;
  background: #faf2f3;
}

.mmw-review-card__reply div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
}
.mmw-review-card__reply strong {
  color: #222;
  font-size: 14px;
}
.mmw-review-card__reply span {
  color: #777;
  font-size: 12px;
}
.mmw-review-card__reply p {
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.locations-detail-page {
  padding: 90px 0;
  background: #f7f8fa;
}
.locations-detail-card {
  max-width: 900px;
  margin: auto;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 38, 77, 0.1);
  text-align: center;
}
.locations-detail-card__tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #b10219;
  font-weight: 800;
}
.locations-detail-card h1 {
  margin: 16px 0;
  color: #00264d;
  font-size: clamp(28px, 4vw, 48px);
}
.locations-detail-card p {
  max-width: 720px;
  margin: 0 auto;
  color: #5c6570;
  font-size: 17px;
  line-height: 1.8;
}
.locations-detail-card__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.locations-detail-card__contact {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 2px solid #b10219;
  border-radius: 5px;
  color: #b10219;
  font-weight: 800;
}
.locations-detail-card__contact:hover {
  color: #fff;
  background: #b10219;
}

@media (max-width: 991px) {
  .mmw-reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575px) {
  .mmw-reviews-page {
    padding: 55px 0;
  }
  .mmw-reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .mmw-review-card {
    padding: 18px;
  }
  .mmw-review-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 575px) {
  .mmw-site-search-results__form {
    flex-direction: column;
  }
  .mmw-site-search-results__form .thm-btn {
    justify-content: center;
  }
}

.mmw-machine-mega {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: min(380px, calc(100vw - 32px));
  display: block;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.mmw-machine-menu-item:hover > .mmw-machine-mega,
.mmw-machine-menu-item:focus-within > .mmw-machine-mega,
.mmw-machine-menu-item.is-open > .mmw-machine-mega {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
}

.mmw-machine-mega__categories > a > i {
  display: none;
}

.mmw-machine-mega__categories {
  height: 100%;
  background: #fafafa;
  border-right: 0;
}

.mmw-machine-mega__all,
.mmw-machine-mega__tab {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 20px;
  border: 0;
  border-bottom: 1px solid #f0f1f2;
  color: #171717 !important;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mmw-machine-mega__tab.is-active,
.mmw-machine-mega__tab:hover,
.mmw-machine-mega__all:hover {
  color: #fff !important;
  background: #b10219;
}

.mmw-machine-mega__panels {
  display: none !important;
}

.mmw-machine-mega__panel {
  display: none;
}

.mmw-machine-mega__panel.is-active {
  display: block;
  animation: mmwMegaPanelIn 0.25s ease;
}

.mmw-machine-mega__panel h3 {
  margin: 0 0 15px;
  color: #b10219;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.mmw-machine-mega__links {
  display: grid;
  gap: 2px;
}

.mmw-machine-mega__legacy-links {
  display: none;
}

.mmw-machine-mega__links--columns {
  grid-template-columns: minmax(0, 1fr);
}

.mmw-machine-mega__group .mmw-machine-mega__links--columns {
  grid-template-columns: minmax(0, 1fr);
}

.mmw-machine-mega__groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.mmw-machine-mega__group {
  min-width: 0;
}

.mmw-machine-mega__group h4 {
  margin: 0 0 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ead4d8;
  font-size: 14px;
  line-height: 1.35;
}

.mmw-machine-mega__group h4 a {
  color: #b10219 !important;
  font-weight: 800 !important;
  text-decoration: none;
}

.mmw-machine-mega__links a {
  display: block !important;
  padding: 7px 10px !important;
  border-radius: 4px;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-decoration: none;
}

.mmw-machine-mega__links a:hover {
  color: #b10219 !important;
  background: #fff2f4;
  padding-left: 15px !important;
}

@keyframes mmwMegaPanelIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .mobile-nav__container .mmw-machine-menu-item {
    position: relative !important;
  }

  .mobile-nav__container .mmw-machine-menu-trigger {
    justify-content: space-between;
  }

  .mobile-nav__container .mmw-machine-mega {
    position: static;
    width: 100%;
    height: auto;
    max-height: 0;
    display: block;
    grid-template-columns: minmax(0, 1fr);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.35s ease;
  }

  .mobile-nav__container .mmw-machine-menu-item.is-open > .mmw-machine-mega {
    max-height: 65vh;
    overflow-y: auto;
    transform: none;
  }

  .mobile-nav__container .mmw-machine-mega__categories {
    overflow: visible;
    border-right: 0;
  }

  .mobile-nav__container .mmw-machine-mega__all,
  .mobile-nav__container .mmw-machine-mega__tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-nav__container .mmw-machine-mega__panels {
    display: none;
  }

  .mobile-nav__container
    .mmw-machine-mega__categories
    > .mmw-machine-mega__panel {
    width: 100%;
    padding: 14px 16px 18px;
    border-bottom: 1px solid #e9e9e9;
    background: #fff;
  }

  .mobile-nav__container
    .mmw-machine-mega__categories
    > .mmw-machine-mega__panel
    h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .mobile-nav__container .mmw-machine-mega__tab.is-active > i {
    transform: rotate(90deg);
  }

  .mobile-nav__container .mmw-machine-mega__links a {
    padding: 7px 0 !important;
    white-space: normal;
  }
}

/* Center About section with equal left and right spacing */
.mmw-ag-about .container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.mmw-ag-about__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 42px clamp(30px, 4vw, 58px);
}

.mmw-ag-about__content > h2,
.mmw-ag-about__content > h3,
.mmw-ag-about__content > p,
.mmw-ag-about__content > span,
.mmw-ag-about__content > a {
  max-width: 100%;
}

@media (max-width: 767px) {
  .mmw-ag-about .container { width: calc(100% - 34px); }
  .mmw-ag-about__content { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .mmw-ag-about .container { width: calc(100% - 24px); }
  .mmw-ag-about__content { padding: 25px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .mmw-machine-mega,
  .mmw-machine-mega__panel {
    transition: none;
    animation: none;
  }
}

/* Agartala city page sections */

.mmw-ag-showcase {
  padding: 70px 0;
  background: #f3f3f3;
}
.mmw-ag-heading {
  max-width: 850px;
  margin: 0 auto 32px;
  text-align: center;
}
.mmw-ag-heading p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.65;
}
.mmw-ag-machine-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.mmw-ag-machine-row a {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #222;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.mmw-ag-machine-row img {
  width: 100%;
  height: 215px;
  padding: 12px;
  object-fit: contain;
  transition: 0.4s;
}
.mmw-ag-machine-row span {
  display: block;
  padding: 13px 8px;
  border-top: 1px solid #eee;
  font-size: 14px;
  font-weight: 700;
}
.mmw-ag-machine-row a:hover {
  border-color: #b10219;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.mmw-ag-machine-row a:hover img {
  transform: scale(1.05);
}
.mmw-ag-why {
  padding: 78px 0;
  background: #fff;
}
.mmw-ag-why__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1120px;
  margin: auto;
}
.mmw-ag-why__side {
  display: grid;
  gap: 25px;
}
.mmw-ag-why__side:first-child {
  text-align: right;
}
.mmw-ag-why__side article {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
.mmw-ag-why__side b {
  position: absolute;
  top: -11px;
  color: rgba(177, 2, 25, 0.12);
  font-size: 39px;
  line-height: 1;
}
.mmw-ag-why__side:first-child b {
  right: 0;
}
.mmw-ag-why__side:last-child b {
  left: 0;
}
.mmw-ag-why__side h3 {
  position: relative;
  margin: 0 0 5px;
  font-size: 16px;
}
.mmw-ag-why__side p {
  position: relative;
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}
.mmw-ag-why__visual {
  position: relative;
  text-align: center;
}
.mmw-ag-why__visual img {
  width: 100%;
  aspect-ratio: 1/1.04;
  border-radius: 50% 50% 44% 44%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.mmw-ag-why__visual div {
  position: absolute;
  right: -12px;
  bottom: 18px;
  left: -12px;
  padding: 17px 20px;
  border-radius: 5px;
  background: #b10219;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  box-shadow: 0 12px 24px rgba(177, 2, 25, 0.28);
}
.mmw-ag-stats {
  padding: 38px 0;
  background: #f2f2f2;
}
.mmw-ag-stats .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.mmw-ag-stats .container > div {
  text-align: center;
}
.mmw-ag-stats i {
  display: block;
  margin-bottom: 7px;
  color: #b10219;
  font-size: 28px;
}
.mmw-ag-stats strong,
.mmw-ag-stats small {
  display: block;
}
.mmw-ag-stats strong {
  color: #222;
  font-size: 25px;
}
.mmw-ag-stats small {
  color: #666;
  font-size: 12px;
}
.mmw-ag-stats strong span {
  display: inline;
}
.mmw-ag-recognition {
  padding: 72px 0 82px;
  text-align: center;
  background: #fff;
}
.mmw-ag-recognition__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: auto;
}
.mmw-ag-recognition article {
  padding: 12px 12px 20px;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.3s;
}
.mmw-ag-recognition article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.mmw-ag-recognition img {
  width: 100%;
  height: 230px;
  background: #f7f7f7;
  object-fit: contain;
}
.mmw-ag-recognition h3 {
  margin: 16px 0 6px;
  color: #b10219;
  font-size: 17px;
}
.mmw-ag-recognition p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .mmw-ag-machine-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .mmw-ag-why__layout {
    grid-template-columns: 1fr 1.15fr;
  }
  .mmw-ag-why__side:last-child {
    grid-column: 1/-1;
    grid-template-columns: repeat(3, 1fr);
  }
  .mmw-ag-stats .container {
    grid-template-columns: repeat(3, 1fr);
  }
  .mmw-ag-recognition__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .mmw-ag-about {
    padding: 58px 0;
  }
  .mmw-ag-about__content {
    max-width: none;
  }
  .mmw-ag-why__layout {
    grid-template-columns: 1fr;
  }
  .mmw-ag-why__side:first-child {
    text-align: left;
  }
  .mmw-ag-why__side:first-child b {
    right: auto;
    left: 0;
  }
  .mmw-ag-why__visual {
    max-width: 430px;
    margin: auto;
  }
  .mmw-ag-why__side:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .mmw-ag-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .mmw-ag-recognition__grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
  .mmw-ag-recognition img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .mmw-ag-machine-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .mmw-ag-machine-row a {
    min-width: 82%;
    scroll-snap-align: start;
  }
  .mmw-ag-machine-row img {
    height: 210px;
  }
  .mmw-ag-stats .container {
    grid-template-columns: 1fr 1fr;
  }
  .mmw-ag-about:after {
    font-size: 66px;
  }
  .mmw-ag-showcase,
  .mmw-ag-why,
  .mmw-ag-recognition {
    padding: 58px 0;
  }
}

/* Responsive visual polish for the Agartala reference sections */
.mmw-ag-why {
  position: relative;
  overflow: hidden;
  padding: 90px 0 82px;
  background:
    radial-gradient(circle at 50% 48%, rgba(177, 2, 25, 0.07), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.mmw-ag-why::before,
.mmw-ag-why::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(177, 2, 25, 0.08);
  border-radius: 50%;
}

.mmw-ag-why::before {
  top: -120px;
  left: -80px;
}
.mmw-ag-why::after {
  right: -100px;
  bottom: -130px;
}

.mmw-ag-why .mmw-ag-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
}

.mmw-ag-why .mmw-ag-heading h2 {
  color: #151515;
  font-size: clamp(30px, 3vw, 44px);
}

.mmw-ag-why .mmw-ag-heading h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #b10219, #004068);
}

.mmw-ag-why__layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 400px) minmax(
      250px,
      1fr
    );
  gap: 34px;
  max-width: 1180px;
}

.mmw-ag-why__side {
  gap: 16px;
}

.mmw-ag-why__side article {
  min-height: 126px;
  padding: 22px 22px 19px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  border-bottom: 3px solid transparent;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mmw-ag-why__side article:hover {
  z-index: 2;
  border-bottom-color: #b10219;
  box-shadow: 0 17px 34px rgba(177, 2, 25, 0.12);
  transform: translateY(-5px);
}

.mmw-ag-why__side:first-child,
.mmw-ag-why__side:last-child {
  text-align: left;
}

.mmw-ag-why__side:first-child b,
.mmw-ag-why__side:last-child b {
  top: 8px;
  right: 14px;
  left: auto;
  color: rgba(177, 2, 25, 0.09);
  font-size: 52px;
}

.mmw-ag-why__side h3 {
  padding-right: 35px;
  color: #111;
  font-size: 17px;
  line-height: 1.35;
}

.mmw-ag-why__side p {
  color: #666;
  font-size: 13.5px;
  line-height: 1.65;
}

.mmw-ag-why__visual {
  align-self: center;
  padding: 10px;
  border-radius: 48% 48% 18px 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.mmw-ag-why__visual img {
  display: block;
  aspect-ratio: 1 / 1.04;
  border-radius: 48% 48% 12px 12px;
  background: #f7f7f7;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.mmw-ag-why__visual div {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin: -5px 5px 5px;
  padding: 15px;
  font-size: 13px;
  line-height: 1.45;
}

.mmw-ag-stats {
  padding: 48px 0;
  background: linear-gradient(110deg, #f5f5f5, #fff);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.mmw-ag-stats .container {
  gap: 14px;
}

.mmw-ag-stats .container > div {
  padding: 20px 10px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.055);
}

.mmw-ag-stats i {
  width: 48px;
  height: 48px;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f2;
}

@media (max-width: 1199px) {
  .mmw-ag-why__layout {
    grid-template-columns: minmax(220px, 1fr) 340px minmax(220px, 1fr);
    gap: 22px;
  }

  .mmw-ag-why__side article {
    padding: 19px 17px;
  }
}

@media (max-width: 991px) {
  .mmw-ag-why {
    padding: 74px 0;
  }

  .mmw-ag-why__layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .mmw-ag-why__visual {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 390px);
    margin: 0 auto 14px;
  }

  .mmw-ag-why__side:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .mmw-ag-stats .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .mmw-ag-why {
    padding: 62px 0;
  }
  .mmw-ag-why .mmw-ag-heading {
    margin-bottom: 34px;
  }
  .mmw-ag-why__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mmw-ag-why__side:last-child {
    grid-column: 1;
  }
  .mmw-ag-why__side article {
    min-height: 0;
  }
  .mmw-ag-stats .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .mmw-ag-why__visual {
    width: calc(100% - 10px);
    padding: 7px;
  }
  .mmw-ag-why__side article {
    padding: 18px 16px;
  }
  .mmw-ag-stats .container {
    gap: 10px;
  }
  .mmw-ag-stats .container > div {
    padding: 17px 7px;
  }
  .mmw-ag-stats strong {
    font-size: 22px;
  }
  .mmw-ag-stats small {
    font-size: 11px;
  }
}

.mmw-ag-about strong {
  color: #252525;
  font-weight: 800;
}

.mmw-ag-outputs {
  padding: 82px 0;
  background: linear-gradient(180deg, #f7f7f7, #fff);
}

.mmw-ag-outputs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mmw-ag-outputs article {
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.mmw-ag-outputs article:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(177, 2, 25, 0.12);
}

.mmw-ag-outputs article > img {
  display: block;
  width: 100%;
  height:auto;
  transition: transform 0.45s ease;
}

.mmw-ag-outputs article:hover > img {
  transform: scale(1.045);
}

.mmw-ag-outputs article > div {
  position: relative;
  padding: 23px 24px 25px;
  border-top: 3px solid #b10219;
}

.mmw-ag-outputs h3 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 19px;
}

.mmw-ag-outputs article p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .mmw-ag-outputs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mmw-ag-outputs {
    padding: 62px 0;
  }
  .mmw-ag-outputs__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mmw-ag-outputs article > img {
    height: 215px;
  }
}

/* Desktop base styling for the complete Agartala page */
.mmw-ag-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.mmw-ag-page > section:not(.arnold-hero) {
  position: relative;
  isolation: isolate;
}

.mmw-ag-about {
  min-height: 650px;
  padding: 78px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 58%,
      rgba(255, 255, 255, 0.72) 100%
    ),
    url("../img/agartala-light-pattern-bg.png") center / cover no-repeat,
    #f7f7f7;
}

.mmw-ag-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    url("../img/map_transparent_dark.webp") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.mmw-ag-about::after {
  content: attr(data-city-label);
  position: absolute;
  right: -20px;
  bottom: -34px;
  z-index: -1;
  color: rgba(177, 2, 25, 0.045);
  font-size: clamp(90px, 13vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -7px;
}

.mmw-ag-about__content {
  padding: 38px 44px;
  backdrop-filter: blur(3px);
}

.mmw-ag-about .mmw-ag-kicker {
  display: inline-flex;
  margin: 0 0 11px;
  padding: 7px 11px;
  border-radius: 3px;
  background: #fff0f2;
  color: #b10219;
  font-size: 13px;
  font-weight: 800;
}

.mmw-ag-about h2 {
  margin: 0 0 17px;
  color: #b10219;
  font-size: clamp(28px, 2.5vw, 39px);
  font-weight: 800;
  line-height: 1.2;
}

.mmw-ag-about h3 {
  margin: 20px 0 6px;
  color: #b10219;
  font-size: 19px;
  font-weight: 800;
}

.mmw-ag-about p {
  margin: 0 0 10px;
  color: #545454;
  font-size: 15px;
  line-height: 1.72;
}

.mmw-ag-about .mmw-ag-red-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 13px 19px;
  border-radius: 4px;
  background: #b10219;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(177, 2, 25, 0.2);
  transition: 0.3s ease;
}

.mmw-ag-about .mmw-ag-red-btn:hover {
  background: #004068;
  transform: translateY(-3px);
}

.mmw-ag-showcase,
.mmw-ag-outputs,
.mmw-ag-why,
.mmw-ag-recognition {
  background-image: radial-gradient(
    circle at 10% 10%,
    rgba(177, 2, 25, 0.035),
    transparent 24%
  );
}

@media (max-width: 991px) {
  .mmw-ag-about {
    min-height: 0;
    padding: 68px 0;
    background:
      linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.96)),
      url("../img/agartala-light-pattern-bg.png") center / cover no-repeat;
  }

  .mmw-ag-about__content {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .mmw-ag-about {
    padding: 48px 0;
  }
  .mmw-ag-about__content {
    padding: 26px 20px;
    border-left-width: 4px;
    border-radius: 0 8px 8px 0;
  }
  .mmw-ag-about h2 {
    font-size: 27px;
  }
  .mmw-ag-about h3 {
    font-size: 18px;
    line-height: 1.35;
  }
  .mmw-ag-about p {
    font-size: 14px;
  }
  .mmw-ag-about::after {
    font-size: 65px;
    letter-spacing: -3px;
  }
}

/* One heading system and full-width city introduction */
.mmw-ag-page .mmw-ag-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.mmw-ag-page .mmw-ag-heading .mmw-ag-kicker,
.mmw-ag-page .mmw-ag-kicker {
  display: block;
  margin: 0 0 9px;
  padding: 0;
  background: transparent;
  color: #b10219;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.mmw-ag-page .mmw-ag-heading h2,
.mmw-ag-page .mmw-ag-about h2 {
  margin: 0 0 14px;
  color: #b10219 !important;
  font-size: clamp(20px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
}

.mmw-ag-page .mmw-ag-heading h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #b10219, #004068);
}

.mmw-ag-page .mmw-ag-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #626262;
  font-size: 15px;
  line-height: 1.65;
}

.mmw-ag-about .container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.mmw-ag-about__content {
  width: 100%;
  max-width: none;
  padding: 42px clamp(28px, 4vw, 58px);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.95) 62%,
    rgba(255, 255, 255, 0.55) 78%,
    rgba(255, 255, 255, 0.16) 100%
  );
}

.mmw-ag-about__content > h2,
.mmw-ag-about__content > h3,
.mmw-ag-about__content > p,
.mmw-ag-about__content > span,
.mmw-ag-about__content > a {
  max-width: 100%;
}

.mmw-ag-about__content > h2,
.mmw-ag-about__content > h3,
.mmw-ag-about__content > p,
.mmw-ag-about__content > span {
  display: block;
}

.mmw-ag-about {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.86) 57%,
      rgba(255, 255, 255, 0.12) 76%
    ),
    url("../img/agartala-light-pattern-bg.png") center / cover no-repeat,
    #f7f7f7;
}

.mmw-ag-about h3 {
  color: #b10219 !important;
  font-size: 19px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .mmw-ag-about__content {
    background: rgba(255, 255, 255, 0.88);
  }

  .mmw-ag-about__content > h2,
  .mmw-ag-about__content > h3,
  .mmw-ag-about__content > p,
  .mmw-ag-about__content > span,
  .mmw-ag-about__content > a {
    max-width: 100%;
  }

  .mmw-ag-about {
    background:
      linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94)),
      url("../img/agartala-light-pattern-bg.png") center / cover no-repeat;
  }
}

@media (max-width: 575px) {
  .mmw-ag-page .mmw-ag-heading {
    margin-bottom: 28px;
  }
  .mmw-ag-page .mmw-ag-heading h2,
  .mmw-ag-page .mmw-ag-about h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .mmw-ag-about .container {
    padding-right: 14px;
    padding-left: 14px;
  }
  .mmw-ag-about__content {
    padding: 27px 19px;
  }
}

/* Image-first responsive industry cards */
.mmw-ag-outputs__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.mmw-ag-outputs article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #161616;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.13);
}
.mmw-ag-outputs article:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 0, 0, 0.18) 62%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}
.mmw-ag-outputs article > img {
  width: 100%;
  height: auto;
  padding: 0;
}
.mmw-ag-outputs article > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px 24px 22px;
  border: 0;
  background: transparent;
}
.mmw-ag-outputs h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}
.mmw-ag-outputs h3:after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 4px;
  background: #e00021;
  transition: width 0.35s ease;
}
.mmw-ag-outputs article:hover h3:after {
  width: 78px;
}
@media (max-width: 991px) {
  .mmw-ag-outputs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mmw-ag-outputs article,
  .mmw-ag-outputs article > img {
    min-height: 290px;
    height: 290px;
  }
}
@media (max-width: 575px) {
  .mmw-ag-outputs__grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .mmw-ag-outputs article,
  .mmw-ag-outputs article > img {
    min-height: 260px;
    height: 260px;
  }
  .mmw-ag-outputs article > div {
    padding: 24px 20px 19px;
  }
  .mmw-ag-outputs h3 {
    font-size: 18px;
  }
}

.page-wrapper {
  background-color: #fff;
}

.mmw-footer {
  position: relative;
  --mmw-footer-space: 90px;
  margin-bottom: 0;
  background:
    linear-gradient(rgba(18, 18, 18, 0.88), rgba(18, 18, 18, 0.88)),
    url("../img/banner/bg-footer.jpg");
  background-size: cover;
  background-position: center;
  padding: var(--mmw-footer-space) 0 0;
  overflow: hidden;
  color: #fff;
}

.mmw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 45px;
  position: relative;
  z-index: 2;
}

.mmw-footer-col strong,
.mmw-unit strong {
  color: #fff;
}

.mmw-unit {
  margin-bottom: 18px;
}

.mmw-unit address {
  margin: 5px 0 0;
  color: #d5d5d5;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.mmw-footer-contact-old .mmw-contact li {
  padding-left: 28px;
  position: relative;
}

.mmw-footer-contact-old .mmw-contact li > i {
  position: absolute;
  top: 7px;
  left: 0;
}

.mmw-machine-motion {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 36px;
  overflow: hidden;
  opacity: 0.22;
  pointer-events: none;
}

.mmw-machine-motion__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(55px, 10vw, 150px);
  color: #fff;
  font-size: 25px;
  animation: mmwMachineMove 20s linear infinite;
}

.mmw-machine-motion__track .fa-cog,
.mmw-machine-motion__track .fa-cogs {
  animation: mmwGearSpin 5s linear infinite;
}

@keyframes mmwMachineMove {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes mmwGearSpin {
  to {
    transform: rotate(360deg);
  }
}

.mmw-footer-logo {
  max-width: 210px;
  margin-bottom: 20px;
}

.mmw-footer p,
.mmw-footer li,
.mmw-footer a {
  color: #d5d5d5;
  font-size: 15px;
  line-height: 28px;
  text-decoration: none;
}

.mmw-footer h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.mmw-footer h4::after {
  content: "";
  width: 55px;
  height: 3px;
  background: #d61f26;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mmw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mmw-footer li {
  margin-bottom: 10px;
}

.mmw-footer li i {
  color: #d61f26;
  margin-right: 10px;
}

.mmw-footer a:hover {
  color: #d61f26;
}

.mmw-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.mmw-social a {
  width: 42px;
  height: 42px;
  background: #d61f26;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-social a:hover {
  transform: translateY(-6px) rotate(360deg);
  background: #fff;
  color: #181818;
}

.mmw-footer-links {
  text-align: center;
  margin-top: 55px;
  position: relative;
  z-index: 2;
}

.mmw-footer-links a,
.mmw-footer-links span {
  color: #fff;
  margin: 0 6px;
  font-weight: 600;
}

.mmw-footer-bottom {
  background: #0c0c0c;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-top: var(--mmw-footer-space);
  position: relative;
  z-index: 2;
}

.mmw-footer-bottom__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: none;
}

html,
body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-color: #0c0c0c;
  overflow-x: clip;
}

.page-wrapper,
.mmw-ag-page,
.mmw-footer,
.mmw-footer-bottom {
  margin-bottom: 0 !important;
}

.mmw-ag-page > section:last-child {
  margin-bottom: 0 !important;
}

.mmw-footer {
  display: block;
}

.mmw-footer-bottom {
  bottom: 0;
}

.mmw-footer-bottom p,
.mmw-footer-bottom ul {
  margin-bottom: 0 !important;
}

.mmw-footer-bottom p {
  margin: 0;
  color: #fff;
}

.mmw-footer-legal ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
}

.mmw-footer-legal li {
  margin: 0;
}

.mmw-footer-legal a {
  color: #d5d5d5;
  font-size: 13px;
  white-space: nowrap;
}

.mmw-shape {
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatShape 6s ease-in-out infinite;
}

.mmw-shape-left {
  left: -140px;
  top: -90px;
}

.mmw-shape-right {
  right: -140px;
  bottom: 30px;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

@media (max-width: 1199px) {
  .mmw-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mmw-footer {
    --mmw-footer-space: 60px;
    padding-top: var(--mmw-footer-space);
  }

  .mmw-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mmw-footer-links {
    text-align: justify;
  }

  .mmw-footer-links {
    line-height: 32px;
  }

  .mmw-footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    transform: none;
  }

  .mmw-footer-legal ul {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mmw-machine-motion__track,
  .mmw-machine-motion__track .fa-cog,
  .mmw-machine-motion__track .fa-cogs {
    animation: none;
  }
}

/* mission and vision */
.mmw-offer-v3 {
  padding: 45px 30px 90px;
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.mmw-offer-v3 .container {
  position: relative;
  z-index: 5;
}

/* Top Right Corner Shape */
.mmw-offer-v3-corner {
  position: absolute;
  right: 0;
  top: 0;
  width: 230px;
  height: 230px;
  background: #e8e8ff;
  border-bottom-left-radius: 100%;
  z-index: 1;
  animation: mmwCornerPulse 5s ease-in-out infinite;
}

/* Top Right Dots */
.mmw-offer-v3::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#b10219 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.75;
  z-index: 2;
  animation: mmwDotsTop 5s ease-in-out infinite;
}

/* Left Bottom Dots */
.mmw-offer-v3::before {
  content: "";
  position: absolute;
  left: 35px;
  bottom: 35px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(#b10219 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.65;
  z-index: 1;
  animation: mmwDotsBottom 6s ease-in-out infinite;
}

.mmw-offer-v3-wrap {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 55px;
}

.mmw-offer-v3-left {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-offer-v3-bgbox {
  position: absolute;
  width: 340px;
  height: 520px;
  background: #e5e8ff;
  left: 40px;
  top: 15px;
  animation: mmwBgFloat 6s ease-in-out infinite;
}
.mmw-offer-v3-img {
  width: 430px;
  height: 430px;
  overflow: hidden;
  background: #b10219;
  position: relative;
  z-index: 2;
  border-radius: 15px; /* Optional */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.mmw-offer-v3-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Image poori dikhegi */
  transform: none; /* Rotation remove */
  display: block;
}
.mmw-offer-v3-right h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
}

.mmw-offer-v3-right p {
  font-size: 17px;
  line-height: 28px;
  color: #080707;
  margin: 0 0 28px;
}

.mmw-offer-v3-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mmw-offer-v3-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #b10219;
  transition: 0.4s ease;
  animation: mmwCardUp 0.8s ease forwards;
}

.mmw-offer-v3-item img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: contain;
  background: #f4f8fb;
  padding: 10px;
  transition: 0.4s ease;
}

.mmw-offer-v3-item h4 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.mmw-offer-v3-item:hover {
  transform: translateY(-6px);
  background: #b10219;
}

.mmw-offer-v3-item:hover h4 {
  color: #fff;
}

.mmw-offer-v3-item:hover img {
  background: #fff;
  transform: scale(1.08);
}

/* Animations */
@keyframes mmwDotsTop {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate(-15px, 18px);
    opacity: 1;
  }
}

@keyframes mmwDotsBottom {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate(18px, -15px);
    opacity: 1;
  }
}

@keyframes mmwCornerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.8;
  }
}

@keyframes mmwBgFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes mmwImageFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}

@keyframes mmwCardUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .mmw-offer-v3 {
    padding: 75px 0;
  }

  .mmw-offer-v3-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mmw-offer-v3-left {
    min-height: 460px;
  }

  .mmw-offer-v3-bgbox {
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 410px;
    top: 10px;
  }

  .mmw-offer-v3-img {
    width: 340px;
    height: 340px;
  }

  .mmw-offer-v3-right h2 {
    font-size: 38px;
  }
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .mmw-offer-v3 {
    padding: 60px 0;
  }

  .mmw-offer-v3-corner {
    width: 130px;
    height: 130px;
  }

  .mmw-offer-v3::after {
    width: 85px;
    height: 85px;
    right: 18px;
    top: 25px;
    background-size: 11px 11px;
  }

  .mmw-offer-v3::before {
    width: 110px;
    height: 110px;
    left: 15px;
    bottom: 15px;
    background-size: 11px 11px;
  }

  .mmw-offer-v3-left {
    min-height: 320px;
  }

  .mmw-offer-v3-bgbox {
    width: 180px;
    height: 310px;
  }

  .mmw-offer-v3-img {
    width: 260px;
    height: 260px;
  }

  .mmw-offer-v3-right h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .mmw-offer-v3-right p {
    font-size: 15px;
    line-height: 25px;
  }

  .mmw-offer-v3-list {
    grid-template-columns: 1fr;
  }

  .mmw-offer-v3-item {
    padding: 14px;
  }

  .mmw-offer-v3-item img {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .mmw-offer-v3-item h4 {
    font-size: 16px;
    line-height: 23px;
  }
}

/* mission and vision */
.mmw-vmv {
  padding: 80px 20px;
  background: url("assets/img/your-bg-image.jpg") center/cover no-repeat;
  position: relative;
}

.mmw-vmv:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
}

.mmw-vmv-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  position: relative;
  z-index: 1;
}

.mmw-vmv-card {
  background: #fff;
  min-height: 559px;
  padding: 10px 48px 0;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.mmw-icon {
  font-size: 82px;
  color: #1f4f9b;
  margin-bottom: 25px;
}

.mmw-vmv-card h3 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.mmw-vmv-card h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #ed1c24;
  margin: 22px auto 12px;
}

.mmw-vmv-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 12px;
}

.mmw-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: #1f4f9b;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.mmw-card-bottom:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 45px;
  background: #ed1c24;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.mmw-card-bottom:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #1f4f9b;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

/* Responsive */
@media (max-width: 991px) {
  .mmw-vmv-wrap {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .mmw-vmv-card {
    min-height: 520px;
  }
}

@media (max-width: 575px) {
  .mmw-vmv {
    padding: 50px 15px;
  }

  .mmw-vmv-card {
    padding: 38px 22px 0;
  }

  .mmw-icon {
    font-size: 65px;
  }

  .mmw-vmv-card h3 {
    font-size: 28px;
  }

  .mmw-vmv-card p {
    font-size: 14px;
  }

  .mmw-card-bottom {
    height: 105px;
    font-size: 26px;
  }
}

/* Branches */
.mmw-branches-section {
  padding: 70px 0 45px;
  background: #f8f9fc;
}

.mmw-branches-heading {
  text-align: center;
  margin-bottom: 30px;
}

.mmw-branches-heading span {
  color: #b10219;
  font-weight: 700;
  text-transform: uppercase;
}

.mmw-branches-heading h2 {
  font-size: 36px;
  margin: 8px 0;
  font-weight: 800;
  color: #111;
}

.mmw-branches-heading p {
  max-width: 760px;
  line-height: 24px;
  margin: auto;
  color: #050404;
}

.mmw-branches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.mmw-branch-col {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
}

.mmw-branch-card {
  height: 100%;
  padding: 18px 15px;
  text-align: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.branch-icon {
  width: 55px;
  height: 55px;
  font-size: 20px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #b10219;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-branch-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #00264d;
  font-weight: 800;
}

.mmw-branch-card h5 {
  font-size: 15px;
  line-height: 22px;
  min-height: 44px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.mmw-branch-card p {
  font-size: 13px;
  line-height: 22px;
  min-height: 88px;
  margin-bottom: 15px;
  color: #050404;
}

.mmw-branch-card a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  background: #b10219;
  color: #fff;
}

.mmw-branch-card a:hover {
  background: #00264d;
  color: #fff;
}

.mmw-map-preview {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mmw-map-preview img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.mmw-map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 991px) {
  .mmw-branch-col {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 576px) {
  .mmw-branches-section {
    padding: 45px 0 35px;
  }

  .mmw-branches-heading h2 {
    font-size: 28px;
  }

  .mmw-branch-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mmw-branch-card h5,
  .mmw-branch-card p {
    min-height: auto;
  }

  .mmw-map-section iframe {
    height: 280px;
  }
}
/* Our Machines: shop.css card extensions */
.mmw-machine-category-heading {
  margin: 45px 0 10px;
}
.mmw-machine-category-heading:first-child {
  margin-top: 0;
}
.mmw-machine-product-card {
  height: calc(100% - 20px);
}
.mmw-machine-product-card .single-product-style1__img {
  height: 310px;
  background: #fff;
}
.mmw-machine-product-card .mmw-product-image-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.mmw-machine-product-card .single-product-style1__img img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}
.mmw-machine-product-card .single-product-style1__content {
  align-items: center;
  gap: 8px;
  padding: 17px 15px 14px;
}
.mmw-machine-product-card .single-product-style1__content-left {
  width: 100%;
  min-width: 0;
  text-align: center;
}
.mmw-machine-product-card .single-product-style1__content-left h4 {
  margin-top: 0;
  font-weight: 800;
  line-height: 1.3;
}
.mmw-machine-product-card .single-product-style1__content-left h4 a {
  font-weight: 800;
}
.mmw-machine-product-card .single-product-style1__content-left p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mmw-card-enquiry {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 5px;
  background: var(--gorent-base, #e6002d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.mmw-card-enquiry:hover {
  background: var(--gorent-black, #171717);
  color: #fff;
}
@media (max-width: 575px) {
  .product {
    padding: 65px 0;
  }
  .mmw-machine-product-card .single-product-style1__img {
    height: 270px;
  }
  .mmw-machine-product-card .single-product-style1__content {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Our Products toolbar, category headings and hover actions */
.mmw-product-toolbar {
  display: block;
  width: 100%;
  gap: 24px;
}
.mmw-product-search {
  display: block;
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  max-width: none;
}
.mmw-product-search input {
  width: 100%;
  height: 52px;
  padding: 0 55px 0 20px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fff;
  color: #202020;
  outline: none;
}
.mmw-product-search input:focus {
  border-color: var(--gorent-base, #e6002d);
  box-shadow: 0 0 0 3px rgba(230, 0, 45, 0.08);
}
.mmw-product-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--gorent-base, #e6002d);
  color: #fff;
}
.mmw-machine-category-heading {
  margin: 45px 0 25px;
}
.mmw-machine-category-heading:first-child {
  margin-top: 15px;
}
.mmw-machine-category-heading h3 {
  margin: 0;
  padding: 15px 20px;
  border-left: 4px solid var(--gorent-base, #e6002d);
  background: #f5f5f5;
  font-size: 25px;
}
.mmw-product-column[hidden],
.mmw-machine-category-heading[hidden] {
  display: none !important;
}
.mmw-machine-product-card .single-product-style1__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(15, 15, 15, 0.58);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mmw-product-hover-actions {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: all 0.35s ease;
}
.mmw-product-hover-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #fff;
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.mmw-product-hover-actions a:last-child {
  border-color: var(--gorent-base, #e6002d);
  background: var(--gorent-base, #e6002d);
  color: #fff;
}
.mmw-product-hover-actions a:hover {
  border-color: var(--gorent-black, #171717);
  background: var(--gorent-black, #171717);
  color: #fff;
}
.mmw-machine-product-card:hover .single-product-style1__img::after {
  opacity: 1;
}
.mmw-machine-product-card:hover .mmw-product-hover-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mmw-no-products {
  padding: 50px 20px;
  border: 1px dashed #ccc;
  text-align: center;
  font-size: 18px;
}
.mmw-products-page .styled-pagination[hidden] {
  display: none !important;
}
.mmw-products-page .styled-pagination ul {
  margin: 0;
  padding: 0;
}
.mmw-products-page .styled-pagination li.disabled a {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.mmw-products-page .styled-pagination li.prev a,
.mmw-products-page .styled-pagination li.next a {
  font-size: 24px;
  line-height: 36px;
}
.mmw-card-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 10px;
}
.mmw-card-social a {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.mmw-card-social a:hover {
  border-color: var(--gorent-base, #e6002d);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}
.mmw-card-social img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
@media (hover: none) {
  .mmw-machine-product-card .single-product-style1__img::after {
    display: none;
  }
  .mmw-product-hover-actions {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 14px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mmw-product-hover-actions a:first-child {
    border-color: #d9d9d9;
  }
}
@media (max-width: 767px) {
  .mmw-product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .mmw-product-search {
    width: 100%;
  }
  .mmw-machine-category-heading h3 {
    font-size: 21px;
  }
}
/* Machine catalog sticky all-products sidebar */
.mmw-products-page > .container {
  width: min(calc(100% - clamp(24px, 4vw, 64px)), 1760px);
  max-width: none;
  padding-inline: 0;
}
.mmw-product-image-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.mmw-image-missing {
  min-height: 240px;
  background: #fff !important;
}

.mmw-machine-catalog-layout {
  display: grid;
  grid-template-columns: minmax(310px, 350px) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}
.mmw-products-sidebar {
  position: relative;
  align-self: stretch;
  min-width: 0;
}
.mmw-machine-catalog-main {
  min-width: 0;
}
.mmw-products-sidebar__sticky {
  position: sticky;
  top: 100px;
  z-index: 20;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  scrollbar-width: thin;
  scrollbar-color: #b10219 #ececec;
}
.mmw-products-sidebar__sticky.is-scroll-fixed {
  position: fixed;
  top: 100px;
  z-index: 40;
}
.mmw-products-sidebar__sticky.is-scroll-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.mmw-products-sidebar__sticky::-webkit-scrollbar {
  width: 9px;
}
.mmw-products-sidebar__sticky::-webkit-scrollbar-track {
  background: #ececec;
}
.mmw-products-sidebar__sticky::-webkit-scrollbar-thumb {
  border: 2px solid #ececec;
  border-radius: 10px;
  background: #b10219;
}
.mmw-products-sidebar__heading {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 17px;
  background: #002f52;
  color: #fff;
}
.mmw-products-sidebar__heading h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.mmw-products-sidebar__heading i {
  color: #b10219;
}
.mmw-products-sidebar__group {
  border-bottom: 1px solid #ececec;
}
.mmw-products-sidebar__group:last-child {
  border-bottom: 0;
}
.mmw-products-sidebar__group summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 14px 13px;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.mmw-products-sidebar__group summary::-webkit-details-marker {
  display: none;
}
.mmw-products-sidebar__group summary small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  border-radius: 20px;
  background: #f1f1f1;
  color: #555;
  font-size: 11px;
}
.mmw-products-sidebar__group summary i {
  color: #b10219;
  transition: transform 0.25s ease;
}
.mmw-products-sidebar__group[open] summary {
  background: #fff1f3;
  color: #b10219;
}
.mmw-products-sidebar__group[open] summary i {
  transform: rotate(180deg);
}
.mmw-products-sidebar__links {
  max-height: none;
  overflow: visible;
  padding: 7px 10px 12px;
  background: #fafafa;
}
.mmw-products-sidebar__links a {
  display: block;
  padding: 8px 9px;
  border-radius: 5px;
  color: #444;
  font-size: 12px;
  line-height: 1.4;
}
.mmw-products-sidebar__links a:hover,
.mmw-products-sidebar__links a:focus {
  padding-left: 13px;
  background: #fff;
  color: #b10219;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mmw-products-page > .container {
    width: calc(100% - 32px);
  }

  .mmw-machine-catalog-layout {
    grid-template-columns: minmax(275px, 310px) minmax(0, 1fr);
    gap: 24px;
  }

  .mobile-nav__container .mmw-machine-mega__groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .mobile-nav__container .mmw-machine-mega__links--columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 991px) {
  .mmw-products-page > .container {
    width: calc(100% - 24px);
  }

  .mmw-machine-catalog-layout {
    grid-template-columns: 1fr;
  }
  .mmw-products-sidebar__sticky {
    position: relative;
    top: auto;
    z-index: auto;
    width: 100%;
    height: min(65vh, 620px);
    min-height: 420px;
  }
  .mmw-products-sidebar__sticky.is-scroll-fixed,
  .mmw-products-sidebar__sticky.is-scroll-bottom {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100% !important;
  }
}
@media (max-width: 575px) {
  .mmw-products-page > .container {
    width: calc(100% - 16px);
  }

  .mmw-machine-catalog-layout {
    gap: 24px;
  }
  .mmw-products-sidebar__sticky {
    height: 60vh;
    min-height: 380px;
    border-radius: 7px;
  }
}

/* market areas */
:root {
  --primary: #052e54;
  --primary-dark: #031f3a;
  --accent: #e23b2e;
  --white: #fff;
  --surface: #f3f6f8;
  --text: #1f2d38;
  --muted: #697886;
  --border: #dce4e9;
  --shadow: 0 18px 45px rgba(3, 31, 58, 0.14);
  --container: 1320px;
}

.page-document {
  scroll-behavior: smooth;
}

.page-body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  color: var(--text);
}

.location-card,
.cta-btn {
  text-decoration: none;
  color: inherit;
}

.world-map,
.location-card > [src],
.location-map {
  max-width: 100%;
  display: block;
}

.count {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #052e54;
}

.count-icon {
  color: #e23b2e;
  font-size: 22px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: auto;
}

.map-section {
  padding: 0 0 40px;
}

.map-section > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.map-card {
  background: #0b2438;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
}

.map-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
  overflow: hidden;
  background-color: #fff;
}

.world-map {
  position: relative;
  z-index: 1;
  width: 100%;

  object-fit: contain;
}

.location-section {
  padding: 42px 0 82px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(3, 31, 58, 0.06);
}

.count {
  font-weight: 800;
  color: var(--primary);
}

.search-wrap {
  position: relative;
  width: min(100%, 420px);
}

.country-search {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 44px 0 14px;
  outline: 0;
}

.country-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 59, 46, 0.1);
}

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #7b8994;
  font-size: 0;
  pointer-events: none;
}

.search-icon::before {
  content: "\1F50D";
  font-size: 18px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 92px;
}

.location-card {
  position: relative;
  height: 245px;
  overflow: visible;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 11px 25px rgba(3, 31, 58, 0.16);
  transition: 0.35s;
}

.location-card > [src] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  background: transparent;
  filter: invert(1);
  border-radius: 9px;
  transition: 0.55s;
}

.location-map {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
  transition: transform 0.55s;
}

.location-map::before {
  content: "Loading map...";
  opacity: 0.55;
}

.location-map.map-ready::before,
.location-map.map-error::before {
  display: none;
}

.location-map svg {
  width: 100%;
  height: 100%;
}

.location-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-map.map-error svg {
  width: calc(100% - 32px);
  height: calc(100% - 28px);
}

.map-region-label {
  fill: #17232d;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.1px;
  paint-order: stroke fill;
  font-size: 4.2px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.territory-map {
  position: relative;
}

.territory-map > svg {
  width: calc(100% - 34px);
  height: calc(100% - 30px);
}

.territory-map-label {
  position: absolute;
  left: 50%;
  top: 48%;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  color: #17232d;
  font-size: 10px;
  transform: translate(-50%, -50%);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 9px;
  transition: 0.35s;
}

.location-name {
  position: absolute;
  left: 50%;
  bottom: -70px;
  z-index: 9;
  display: block;
  width: max-content;
  max-width: calc(100% - 12px);
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--primary);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.location-arrow {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--primary);
  font-size: 0;
  font-weight: 800;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: 0.3s;
}

.location-arrow::before {
  content: "\2197";
  font-size: 18px;
}

.location-card:hover,
.location-card:active,
.location-card:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(3, 31, 58, 0.22);
}

.location-card:hover > [src],
.location-card:active > [src],
.location-card:focus-visible > [src],
.location-card:hover .location-map,
.location-card:active .location-map,
.location-card:focus-visible .location-map {
  transform: scale(1.1);
}

.country-flag-badge {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -32px;
  z-index: 10;
  display: flex;
  width: 64px;
  height: 64px;
  padding: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  box-shadow: 0 8px 20px rgba(3, 31, 58, 0.35);
  transform: translateX(-50%);
  transition: transform 0.3s;
}

.country-flag-image {
  display: block;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  background: var(--white);
}

.location-card:hover .country-flag-badge,
.location-card:active .country-flag-badge,
.location-card:focus-visible .country-flag-badge {
  transform: translateX(-50%) scale(1.1);
}

.location-card:hover .location-overlay,
.location-card:active .location-overlay,
.location-card:focus-visible .location-overlay {
  background: rgba(5, 46, 84, 0.05);
}

.location-card:hover .location-arrow,
.location-card:active .location-arrow,
.location-card:focus-visible .location-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.location-card.hidden {
  display: none;
}

.map-attribution {
  margin: 42px 0 0;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
}

.map-attribution a {
  color: var(--primary);
}

.no-results {
  display: none;
  text-align: center;
  padding: 30px;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--muted);
  margin-top: 20px;
}

.no-results.show {
  display: block;
}

.cta {
  padding: 0 0 75px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 38px 42px;
  background: linear-gradient(130deg, var(--primary-dark), var(--primary));
  border-radius: 15px;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-title {
  margin: 0 0 7px;
  font-size: clamp(26px, 3vw, 40px);
}

.cta-text {
  margin: 0;
  color: #d4e1eb;
  max-width: 760px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-wrap {
    width: 100%;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    height: 245px;
  }
}

/* Home: Why Choose Mohindra — isolated to prevent template CSS collisions. */
.mmw-why-choose {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
}
.mmw-why-choose::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: rgba(231, 0, 76, 0.06);
  pointer-events: none;
}
.mmw-why-choose__heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.mmw-why-choose__heading > span {
  color: #e7004c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.mmw-why-choose__heading h2 {
  margin: 10px 0 13px;
  color: #111;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.mmw-why-choose__heading h2 strong {
  color: #e7004c;
  font-weight: 800;
}
.mmw-why-choose__heading p {
  margin: 0;
  color: #5f626b;
  font-size: 16px;
  line-height: 1.7;
}
.mmw-why-choose__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}
.mmw-why-choose__list {
  display: grid;
  gap: 36px;
}
.mmw-why-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.mmw-why-choose__list--left .mmw-why-card {
  flex-direction: row-reverse;
  text-align: right;
}
.mmw-why-card__icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 68px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  background: linear-gradient(145deg, #ff326e, #c8003d);
  box-shadow: 0 12px 25px rgba(231, 0, 76, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.mmw-why-card:hover .mmw-why-card__icon {
  transform: translateY(-5px) rotate(4deg);
  box-shadow: 0 17px 30px rgba(231, 0, 76, 0.34);
}
.mmw-why-card h3 {
  margin: 0 0 7px;
  color: #161616;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}
.mmw-why-card p {
  margin: 0;
  color: #5f626b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}
.mmw-why-choose__visual {
  position: relative;
  margin: 0;
}
.mmw-why-choose__visual::before {
  content: "";
  position: absolute;
  inset: -13px;
  z-index: 0;
  border: 1px solid rgba(231, 0, 76, 0.22);
  border-radius: 180px 180px 24px 24px;
}
.mmw-why-choose__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 170px 170px 20px 20px;
  box-shadow: 0 25px 55px rgba(32, 0, 10, 0.2);
}

@media (max-width: 1199px) {
  .mmw-why-choose__layout {
    grid-template-columns: 1fr 300px 1fr;
    gap: 22px;
  }
  .mmw-why-choose__list {
    gap: 25px;
  }
  .mmw-why-card {
    gap: 12px;
  }
  .mmw-why-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    font-size: 20px;
  }
  .mmw-why-card h3 {
    font-size: 16px;
  }
  .mmw-why-card p {
    font-size: 12px;
  }
  .mmw-why-choose__visual img {
    height: 520px;
  }
}
@media (max-width: 991px) {
  .mmw-why-choose {
    padding: 75px 0;
  }
  .mmw-why-choose__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .mmw-why-choose__visual {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(430px, 100%);
    margin: 0 auto 24px;
  }
  .mmw-why-choose__visual img {
    height: 520px;
  }
  .mmw-why-choose__list--left .mmw-why-card {
    flex-direction: row;
    text-align: left;
  }
  .mmw-why-card {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .mmw-why-choose {
    padding: 60px 0;
  }
  .mmw-why-choose__heading {
    margin-bottom: 35px;
  }
  .mmw-why-choose__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mmw-why-choose__visual {
    grid-column: auto;
    margin-bottom: 15px;
  }
  .mmw-why-choose__visual img {
    height: auto;
    max-height: 570px;
  }
  .mmw-why-choose__list {
    gap: 18px;
  }
  .mmw-why-card {
    padding: 16px;
    border: 1px solid rgba(231, 0, 76, 0.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 18, 22, 0.06);
  }
}

/* ============================================================
   Get A Quote Modal (quote-modal)
   ============================================================ */
.quote-modal .modal-dialog {
  max-width: 940px;
}
.quote-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(10, 20, 40, 0.28);
}
.quote-modal .modal-body {
  padding: 0;
}

.quote-modal-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.quote-modal-confetti span {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  opacity: 0.7;
  animation: quoteConfetti linear infinite;
}
.quote-modal-confetti span:nth-child(1) {
  left: 4%;
  background: #b10219;
  animation-duration: 9s;
}
.quote-modal-confetti span:nth-child(2) {
  left: 12%;
  background: #00c98d;
  animation-duration: 11s;
}
.quote-modal-confetti span:nth-child(3) {
  left: 22%;
  background: #f5b301;
  animation-duration: 8s;
}
.quote-modal-confetti span:nth-child(4) {
  left: 33%;
  background: #004068;
  animation-duration: 12s;
}
.quote-modal-confetti span:nth-child(5) {
  left: 44%;
  background: #b10219;
  animation-duration: 10s;
}
.quote-modal-confetti span:nth-child(6) {
  left: 55%;
  background: #f5b301;
  animation-duration: 9s;
}
.quote-modal-confetti span:nth-child(7) {
  left: 63%;
  background: #00c98d;
  animation-duration: 13s;
}
.quote-modal-confetti span:nth-child(8) {
  left: 72%;
  background: #004068;
  animation-duration: 8s;
}
.quote-modal-confetti span:nth-child(9) {
  left: 80%;
  background: #b10219;
  animation-duration: 11s;
}
.quote-modal-confetti span:nth-child(10) {
  left: 88%;
  background: #f5b301;
  animation-duration: 10s;
}
.quote-modal-confetti span:nth-child(11) {
  left: 94%;
  background: #00c98d;
  animation-duration: 12s;
}
.quote-modal-confetti span:nth-child(12) {
  left: 50%;
  background: #b10219;
  animation-duration: 9s;
}
@keyframes quoteConfetti {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0;
  }
  12% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.quote-modal-header {
  position: relative;
  z-index: 2;
  padding: 24px 30px 20px;
  background: linear-gradient(90deg, #b10219, #004068);
  color: #fff;
}
.quote-modal-header > span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.quote-modal-header h4 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}
.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(90deg);
}

.quote-modal-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

/* Aside */
.quote-modal-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 34px 28px;
  color: #fff;
  background: linear-gradient(160deg, #0a2b47, #004068 55%, #b10219 140%);
  overflow: hidden;
}
.quote-modal-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.quote-modal-orbits span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: quoteOrbit 12s linear infinite;
}
.quote-modal-orbits span:nth-child(1) {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
}
.quote-modal-orbits span:nth-child(2) {
  width: 280px;
  height: 280px;
  right: -110px;
  top: -110px;
  animation-duration: 18s;
}
.quote-modal-orbits span:nth-child(3) {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: -40px;
  animation-duration: 15s;
}
.quote-modal-orbits span:nth-child(4) {
  width: 200px;
  height: 200px;
  left: -80px;
  bottom: -80px;
  animation-duration: 22s;
}
@keyframes quoteOrbit {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.quote-modal-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.quote-modal-machine {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.quote-modal-float {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  animation: quoteFloat 3.4s ease-in-out infinite;
}
.quote-modal-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.quote-modal-mail {
  top: -14px;
  left: -14px;
}
.quote-modal-call {
  bottom: -14px;
  left: -10px;
  animation-delay: 0.6s;
}
.quote-modal-whatsapp {
  top: 38%;
  right: -14px;
  animation-delay: 1.2s;
}
@keyframes quoteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.quote-modal-aside > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quote-modal-aside p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.quote-modal-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.quote-modal-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.quote-modal-contact a:hover {
  color: #f5b301;
}

/* Form side */
.quote-modal-body > form {
  position: relative;
  padding: 30px 30px 32px;
}
.quote-modal-social-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  overflow: hidden;
}
.quote-modal-social-bg img {
  position: absolute;
  opacity: 0.06;
}
.quote-social-one {
  width: 60px;
  top: 8%;
  right: 6%;
}
.quote-social-two {
  width: 48px;
  top: 44%;
  right: 14%;
}
.quote-social-three {
  width: 56px;
  bottom: 8%;
  right: 5%;
}
.quote-social-four {
  width: 44px;
  bottom: 16%;
  right: 22%;
}

.quote-modal-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.quote-modal-form-head span {
  display: block;
  color: #b10219;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.quote-modal-form-head h5 {
  margin: 4px 0 0;
  color: #00264d;
  font-size: 22px;
  font-weight: 800;
}
.quote-modal-body form .row {
  position: relative;
  z-index: 1;
}
.quote-modal-body .form-floating > .form-control {
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #f8fafc;
  color: #1b2a3a;
  font-size: 15px;
}
.quote-modal-body .form-floating > .form-control:focus {
  border-color: #b10219;
  box-shadow: 0 0 0 4px rgba(177, 2, 25, 0.1);
  background: #fff;
}
.quote-modal-body .form-floating > label {
  color: #7b8494;
  font-size: 14px;
}
.quote-modal-body .form-floating > .form-control:focus ~ label,
.quote-modal-body
  .form-floating
  > .form-control:not(:placeholder-shown)
  ~ label {
  color: #b10219;
}

.quote-submit-btn {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #b10219, #004068);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(177, 2, 25, 0.28);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.quote-submit-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(177, 2, 25, 0.36);
}

@media (max-width: 767px) {
  .quote-modal-body {
    grid-template-columns: 1fr;
  }
  .quote-modal-aside {
    display: none;
  }
  .quote-modal-header {
    padding: 20px 22px 16px;
  }
  .quote-modal-body > form {
    padding: 22px 18px 26px;
  }
  .quote-modal .modal-dialog {
    margin: 14px;
  }
}

/* Contact page native select */
.contact-page__input-box select.contact-page__select {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--gorent-white-rgb), 0.05);
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding: 0 20px;
  outline: none;
  font-size: 16px;
  color: #fff;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
}
.contact-page__input-box select.contact-page__select option {
  color: #111;
  background: #fff;
}

/* cities css home page */
.arnold-hero {
  position: relative;
  height: min(760px, 100svh);
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 87% 32%, rgba(172, 0, 16, 0.8), transparent 29%),
    linear-gradient(105deg, #0a0a0b 0%, #111011 48%, #450008 75%, #87000d 100%);
}

.arnold-hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(
      circle at 70% 35%,
      rgba(255, 23, 41, 0.28),
      transparent 25%
    ),
    radial-gradient(circle at 88% 72%, rgba(118, 0, 12, 0.3), transparent 24%);
  animation: backgroundPulse 9s ease-in-out infinite alternate;
}

.arnold-hero__inner {
  width: min(1295px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100% - 1295px) / 2));
  z-index: 4;
  width: min(46%, 670px);
  padding: 20px 45px 40px 0;
  transform: translateY(-50%);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 30px;
  padding: 8px 13px;
  border-radius: 3px;
  background: #f5e7e7;
  font-size: 16px;
  font-weight: 600;
  color: #940712;
}

.hero-copy h1 {
  min-height: 235px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.hero-copy h1 span {
  display: block;
  margin-top: 28px;
  color: #ff1729;
  white-space: normal;
}

.typing-link {
  color: inherit;
  text-decoration: none;
}

.typing::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 5px;
  vertical-align: -0.05em;
  background: #ff1729;
  animation: blink 0.75s steps(1) infinite;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #c7c7c7;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.gallery {
  position: relative;
  grid-column: 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  min-width: 0;
  padding-left: 18px;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    #0c0c0d 0%,
    transparent 11%,
    transparent 87%,
    #5e0008 100%
  );
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 100%;
  will-change: transform;
}

.gallery-column--one {
  animation: scrollUp 24s linear infinite;
}

.gallery-column--two {
  animation: scrollDown 28s linear infinite;
  transform: translateY(-980px);
}

.product-card {
  flex: 0 0 278px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 12px;
  border-radius: 3px;
  background: #fff;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.product-name {
  width: 100%;
  margin: 0;
  color: #161616;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.world {
  position: absolute;
  top: 18px;
  left: 49%;
  z-index: 2;
  width: 130px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  opacity: 0.78;
  animation: spin 16s linear infinite;
}

.world::before,
.world::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.world::before {
  transform: scaleX(0.42);
}

.world::after {
  transform: scaleY(0.42);
}

.spark {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  color: #ddd;
  animation: sparkle 2s ease-in-out infinite alternate;
}

.spark--one {
  top: 11%;
  left: 22%;
}

.spark--two {
  top: 23%;
  left: 47%;
  animation-delay: 0.7s;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.spark::before {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

.spark::after {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.copy-globe {
  position: absolute;
  top: 9%;
  left: 5%;
  z-index: 1;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid #e8e7e9;
  border-radius: 50%;
  opacity: 0.55;
  animation: spin 14s linear infinite;
}

.copy-globe::before,
.copy-globe::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid #e8e7e9;
  border-radius: 50%;
}

.copy-globe::before {
  transform: scaleX(0.4);
}

.copy-globe::after {
  transform: scaleY(0.4);
}

.long-arrow {
  position: absolute;
  top: 17%;
  left: 29%;
  z-index: 1;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 23, 41, 0.65));
  transform: rotate(-14deg);
  transform-origin: right center;
  animation: arrowFloat 4s ease-in-out infinite alternate;
}

.long-arrow::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #a00b17;
  border-right: 2px solid #940712;
  transform: rotate(45deg);
}

.orbit {
  position: absolute;
  left: 37%;
  bottom: 4%;
  z-index: 1;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid #faa8a8;
  border-radius: 50%;
  animation: spin 7s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #81030d;
  box-shadow: 0 0 16px rgba(133, 3, 14, 0.7);
}

.floating-ball {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
  animation: ballFloat 4s ease-in-out infinite alternate;
}

.floating-ball--one {
  top: 38%;
  left: 3%;
  width: 13px;
  height: 13px;
}

.floating-ball--two {
  bottom: 13%;
  left: 24%;
  width: 8px;
  height: 8px;
  animation-delay: 1.2s;
}

.glass-bubble {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255, 255, 255, 0.78),
      transparent 9%
    ),
    radial-gradient(
      circle at 60% 70%,
      rgba(141, 90, 255, 0.35),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(103, 157, 255, 0.5),
      rgba(255, 255, 255, 0.08) 45%,
      rgba(255, 103, 181, 0.28)
    );
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset -8px -9px 16px rgba(255, 255, 255, 0.17),
    inset 7px 7px 14px rgba(63, 117, 255, 0.22),
    0 0 10px rgba(255, 255, 255, 0.2);
  opacity: 0.72;
  animation: bubbleDrift 5s ease-in-out infinite alternate;
}

.glass-bubble--top {
  top: 5%;
  left: 40%;
  width: 58px;
  height: 58px;
}

.glass-bubble--bottom {
  bottom: 10%;
  left: -18px;
  width: 78px;
  height: 78px;
  animation-delay: 0.8s;
}

.glass-bubble--small {
  bottom: 17%;
  left: 5%;
  width: 22px;
  height: 22px;
  animation-delay: 1.5s;
}

.diagonal-bars {
  position: absolute;
  bottom: 8%;
  left: 47%;
  z-index: 2;
  width: 95px;
  height: 105px;
  overflow: hidden;
  opacity: 0.7;
  transform: rotate(-2deg);
  animation: barsDrift 4.5s ease-in-out infinite alternate;
}

.triangle-stack {
  position: absolute;
  top: 26%;
  left: 47%;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: #fff;
  opacity: 0.8;
  animation: triangleFloat 3s ease-in-out infinite alternate;
}

.triangle-stack i {
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-bottom: 14px solid currentColor;
  border-left: 7px solid transparent;
}

@keyframes backgroundPulse {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sparkle {
  to {
    opacity: 0.25;
    transform: rotate(45deg) scale(0.65);
  }
}

@keyframes arrowFloat {
  to {
    opacity: 0.25;
    transform: translate(22px, -8px) rotate(-8deg);
  }
}

@keyframes ballFloat {
  to {
    transform: translate(18px, -24px) scale(1.35);
    opacity: 0.35;
  }
}

@keyframes bubbleDrift {
  from {
    transform: translate3d(0, 0, 0) scale(0.94);
  }

  to {
    transform: translate3d(13px, -20px, 0) scale(1.06);
  }
}

@keyframes barsDrift {
  to {
    transform: translate(-18px, -13px) rotate(6deg);
    opacity: 0.35;
  }
}

@keyframes triangleFloat {
  to {
    transform: translateY(-16px);
    opacity: 0.35;
  }
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1228px);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-1228px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .arnold-hero {
    height: auto;
    min-height: 100svh;
  }

  .arnold-hero__inner {
    width: min(calc(100% - 34px), 680px);
    grid-template-columns: 1fr;
    padding: 75px 0 0;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0 0 50px;
    text-align: center;
    transform: none;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero-copy h1 {
    min-height: 220px;
    font-size: clamp(42px, 10vw, 62px);
  }

  .hero-copy p {
    margin: auto;
    font-size: 16px;
  }

  .gallery {
    grid-column: 1;
    height: 600px;
    gap: 16px;
    padding: 0;
    overflow: hidden;
  }

  .product-card {
    flex-basis: 210px;
  }

  .gallery-column {
    gap: 18px;
  }

  .gallery-column--one {
    animation-duration: 20s;
  }

  .gallery-column--two {
    animation-duration: 23s;
  }

  @keyframes scrollUp {
    to {
      transform: translateY(-912px);
    }
  }

  @keyframes scrollDown {
    from {
      transform: translateY(-912px);
    }
  }

  .world {
    left: 48%;
    width: 95px;
  }

  .spark--one {
    top: 4%;
    left: 9%;
  }

  .spark--two {
    top: 39%;
    left: 89%;
  }

  .copy-globe {
    top: 2%;
    left: 3%;
    width: 55px;
  }

  .long-arrow {
    top: 31%;
    left: 8%;
    width: 95px;
  }

  .orbit {
    left: auto;
    right: 4%;
    bottom: 58%;
    width: 65px;
  }

  .glass-bubble--top {
    left: 76%;
    width: 44px;
    height: 44px;
  }

  .glass-bubble--bottom {
    bottom: 52%;
    width: 58px;
    height: 58px;
  }

  .diagonal-bars {
    left: 72%;
    bottom: 52%;
    transform: scale(0.7);
  }

  .triangle-stack {
    top: 34%;
    left: 91%;
  }
}

@media (max-width: 480px) {
  .arnold-hero__inner {
    padding-top: 55px;
  }

  .hero-copy h1 {
    min-height: 205px;
    letter-spacing: -1.5px;
  }

  .gallery {
    height: 490px;
  }

  .product-card {
    flex-basis: 170px;
    padding: 8px;
  }

  .gallery-column {
    gap: 14px;
  }

  @keyframes scrollUp {
    to {
      transform: translateY(-736px);
    }
  }

  @keyframes scrollDown {
    from {
      transform: translateY(-736px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
