@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

:root {
  --primary-color: #003887;
  --secondary-color: #002b66;
  --accent-color: #4a78a5;
  --dark-accent-color: #001526;
  --white-color: #ffff;
  --black-color: #0000;
  --bg-secondary-color: #f5f5f5;

  --brand-gradient: linear-gradient(135deg,
      #00448f 0%,
      #003887 45%,
      #002b66 100%);

  --soft-gradient: linear-gradient(180deg, #00408a 0%, #003060 100%);

  --title-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;

  --body-color: #0f172a;
  --muted-text-color: #64748b;
  --border-color: #e5e7eb;

  --button-radius-corner: 10px;
  --button-radius-corner-circle: 50px;
}

/* =========================
   PRELOADER STYLES
========================= */
#rmmPreloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rmm_loader {
  display: flex;
  gap: 8px;
}

.rmm_loader span {
  width: 12px;
  height: 12px;
  background: #003f63;
  border-radius: 50%;
  animation: rmmBounce 0.6s infinite alternate;
}

.rmm_loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.rmm_loader span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes rmmBounce {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }

  to {
    transform: translateY(-10px);
    opacity: 1;
  }
}

a {
  text-decoration: none;
}

.button2 {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  width: max-content;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button2__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button2:hover {
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
}

.button2:hover .button2__icon-wrapper {
  color: var(--primary-color);
}

.button2__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button2:hover .button2__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button2:hover .button2__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* =========================
   TOP HEADER
========================= */
.top-header {
  background: var(--dark-accent-color);
  padding: 0.375rem 0;
  font-size: 0.8125rem;
}

.top-header-right {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.top-header a:hover {
  opacity: 1;
}

/* =========================
   MAIN HEADER
========================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--primary-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.25rem 1.125rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

/* FLEX LAYOUT */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

/* LEFT */
.header-left {
  flex: 0 0 auto;
}

.logo img {
  height: 5rem;
}

/* HIDDEN STATE */
.main-header.header-hide {
  transform: translateY(-100%);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .dropdown-menu-list {
  display: flex;
  align-items: center;
  gap: 0.75rem !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .dropdown-menu-list li {
  border-bottom: 1px solid rgb(233, 233, 233);
  padding: 5px 10px;
}

.main-nav .dropdown-menu-list li:last-child {
  border-bottom: none;
}

.main-nav a {
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-color);
  text-decoration: none;
  padding: 0.375rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  width: 0;
  height: 0.125rem;
  background: var(--white-color);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* RIGHT */
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-enquiry {
  background: var(--white-color);
  color: var(--primary-color);
  padding: 15px 22px;
  border-radius: var(--button-radius-corner-circle);
  font-size: 0.875rem;
  border: none;
  outline: none;
  width: max-content;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 56, 135, 0.35);
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 1.625rem;
  height: 0.125rem;
  background: var(--white-color);
  margin: 0.375rem 0;
}

/* CLOSE BUTTON */
.nav-close {
  display: none;
}

/* Angled background (left side) */
.mte-header-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 450px;
  height: 105%;
  background: #ffffff;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  z-index: -1;
}

@media (max-width: 1400px) {
  .mte-header-bg {
    width: 350px;
  }
}

/* =========================
   MOBILE
========================= */

@media (min-width: 1600px) {
  .mte-header-bg {
    width: 43%;
  }
}

@media (max-width: 1400px) {
  .mte-header-bg {
    display: none;
  }

  .main-header {
    background: white;
    overflow: hidden;
  }

  .nav-toggle span {
    background: var(--primary-color);
  }

  .header-flex {
    height: 6rem;
    justify-content: space-between;
  }

  .logo img {
    height: 3.875rem;
  }

  .btn-enquiry {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-center {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: #ffffff;
    padding: 4.5rem 2rem 2rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
  }

  .header-center.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .main-nav a {
    color: var(--primary-color) !important;
  }

  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 56, 135, 0.08);
    border-radius: 50%;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-color);
  }

  .main-nav a.active {
    color: var(--primary-color) !important;
    border-bottom: 1px solid var(--primary-color);
  }

  .main-nav .dropdown-menu-list {
    display: none;
  }
}

/* =========================
   DROPDOWN MENU
========================= */
.has-dropdown {
  position: relative;
}

.has-dropdown:hover svg {
  rotate: 180deg;
  transition: all 0.3s ease;
}

.dropdown-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* DESKTOP STYLES */
@media (min-width: 1021px) {
  .dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 56, 135, 0.12);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 56, 135, 0.05);
    display: flex;
    flex-direction: column;
  }

  .has-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu-list li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .dropdown-menu-list a {
    color: #334155 !important;
    padding: 8px 24px !important;
    display: block !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
  }

  .dropdown-menu-list a:hover {
    background: #f8fafc !important;
    color: var(--primary-color) !important;
    padding-left: 30px !important;
  }

  .dropdown-menu-list a::after {
    display: none !important;
  }
}

/* MOBILE DROPDOWN */
@media (max-width: 1020px) {
  .dropdown-menu-list {
    display: none;
    padding: 10px 0 10px 20px;
    margin-top: 0.5rem;
    border-left: 2px solid #e2e8f0;
  }

  .has-dropdown.dropdown-open .dropdown-menu-list {
    display: block;
    animation: slideDownFade 0.3s ease-out;
  }

  .has-dropdown>a svg {
    transition: transform 0.3s ease;
  }

  .has-dropdown.dropdown-open>a svg {
    transform: rotate(180deg);
  }

  .dropdown-menu-list li a {
    font-size: 0.95rem !important;
    color: #475569 !important;
    padding: 6px 0 !important;
    display: block !important;
    transition: color 0.2s ease;
  }

  .dropdown-menu-list li a:hover,
  .dropdown-menu-list li a:active {
    color: var(--primary-color) !important;
  }

  .dropdown-menu-list li a::after {
    display: none !important;
  }
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  /* .main-header {
    transform: none !important;
  }

  .main-header.header-hide {
    transform: none !important;
  } */
}

/* =========================
   TOOLTIP
========================= */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark-accent-color);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 1000;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
  [data-tooltip]::after {
    display: none;
  }
}

/* =========================
   HERO BANNER
========================= */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: #f8fbff;
  background-image:
    linear-gradient(rgba(0, 63, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 100, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
  z-index: 10;
}

/* SWIPER */
.heroSwiper {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  z-index: 5;
}

.heroSwiper .swiper-slide {
  height: auto;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-slide-content {
  width: 100%;
  padding: 20px 0;
}

.hero-grid-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* CONTENT LEFT */
.hero-content-col {
  flex: 1 1 500px;
  max-width: 650px;
  text-align: left;
  z-index: 20;
}

.hero-prefix {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-prefix .line {
  width: 40px;
  height: 2px;
  background: #003f63;
  opacity: 0.3;
}

.hero-prefix span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #003f63;
  text-transform: uppercase;
}

.hero-content-col h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content-col h2 span.highlight {
  color: #0077c5;
}

.hero-content-col p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  background: #0077c5;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 119, 197, 0.2);
}

.hero-btn-primary:hover {
  background: #005b97;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 119, 197, 0.3);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: #003f63;
  background: #f8fbff;
  transform: translateY(-3px);
}

/* CERTS */
.hero-certs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-certs-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}

.hero-certs-list {
  display: flex;
  gap: 2rem;
}

.hero-cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #444;
}

.hero-cert-item svg {
  color: #003f63;
  opacity: 0.4;
}

/* IMAGE RIGHT */
.hero-image-col {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1.6 / 1;
  border-radius: 4px;
  overflow: visible;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 100px;
  left: 100px;
  border-top: 2px solid #0077c5;
  border-right: 2px solid #0077c5;
  opacity: 0.3;
  border-radius: 12px;
  z-index: -1;
}

.hero-image-container::after {
  content: "";
  position: absolute;
  top: 100px;
  right: 100px;
  bottom: -20px;
  left: -20px;
  border-bottom: 2px solid #0077c5;
  border-left: 2px solid #0077c5;
  opacity: 0.3;
  border-radius: 12px;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ACCURACY BADGE */
.accuracy-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #0077c5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.badge-text span {
  display: block;
}

.badge-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0077c5;
}

.badge-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* HERO NAV BELOW IMAGE */
.hero-nav-wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 12px;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e0e6ed;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.hero-nav-btn:hover {
  background: #0077c5;
  color: #fff;
  border-color: #0077c5;
}

.hero-nav-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .hero-banner {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .hero-grid-row {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content-col {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-prefix {
    justify-content: center;
  }

  .hero-content-col h2 {
    font-size: 2.5rem;
  }

  .hero-content-col p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-certs-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-image-col {
    flex: 1 1 auto;
    width: 100%;
  }

  .hero-image-container {
    max-width: 100%;
  }

  .accuracy-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    padding: 0.75rem 1rem;
  }

  .hero-nav-wrapper {
    margin-top: 4rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 100px 1rem 60px;
  }

  .hero-content-col h2 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 1rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-certs-list {
    gap: 1rem;
  }

  .hero-cert-item {
    font-size: 0.75rem;
  }
}

.text-justify {
  text-align: justify;
}

.distributors-section {
  padding: 3.5rem 0;
  background: #fff;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.section-head p {
  font-size: 0.95rem;
  color: var(--muted-text-color);
}

.distributors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.distributor-card {
  position: relative;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.75rem 1.25rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-color);
  overflow: hidden;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.distributor-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.45s ease;

  z-index: 0;
}

.distributor-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fff;
  border-radius: inherit;
  z-index: 1;
}

.distributor-card img {
  position: relative;
  z-index: 2;

  max-height: 46px;
  max-width: 100%;

  /* filter: grayscale(100%); */
  /* opacity: 0.75; */

  transition:
    filter 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.distributor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 56, 135, 0.18);
  border-color: transparent;
}

.distributor-card:hover::before {
  opacity: 1;
}

.distributor-card:hover img {
  /* filter: grayscale(0%); */
  /* opacity: 1; */
  transform: scale(1.04);
}

.distributor-card .shine {
  position: absolute;
  inset: -150%;
  background: linear-gradient(120deg,
      transparent 45%,
      rgba(255, 255, 255, 0.75),
      transparent 55%);
  transform: translateX(-120%) rotate(8deg);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.distributor-card:hover .shine {
  animation: distributorShine 0.9s ease forwards;
}

@keyframes distributorShine {
  0% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .distributors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-slide-content {
    padding: 60px 20px;
  }

  .hero-prefix span {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .hero-banner {
    height: auto;
    min-height: 100vh;
    padding: 0px 0 60px;
  }

  .hero-content-col h2 {
    text-align: center;
  }

  .hero-content-col p {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .distributors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .distributor-card img {
    max-height: 40px;
  }

  .hero-image-col {
    text-align: center;
    flex: 1;
    padding: 2%;
    width: 100%;
  }

  .hero-grid-row {
    gap: 1px;
  }

  .hero-prefix {
    display: none;
  }

  .hero-content-col h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-content-col {
    justify-content: center;
  }

  .hero-slide-content {
    padding: 30px 20px;
  }

  .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: max-content;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .hero-banner {
    height: auto;
    min-height: 90vh;
    padding: 0px 0 60px;
  }

  .hero-actions {
    justify-content: center;
    align-items: center;
  }

  .distributors-section,
  .products-section {
    padding: 2rem 0;
  }
}

/* =========================
   ABOUT US
========================= */
.about-section {
  padding: 5rem 0;
  background: #f9fafb;
  position: relative;
  z-index: 1;
}

.about-bg {
  position: absolute;
  top: 0%;
  right: 0%;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: -1;
}

/* FLEX */
.about-flex {
  display: flex;
  align-items: start;
  gap: 3.5rem;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  /* overflow: hidden; */
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* =========================
   CIRCULAR EXPERIENCE COUNTER
========================= */
.about-counter {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;

  width: 170px;
  height: 170px;

  border-radius: 50%;
  overflow: hidden;

  cursor: default;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ROTATING GRADIENT RING */
.counter-border {
  position: absolute;
  inset: 0;

  background: conic-gradient(from 0deg,
      #013671,
      #0075ff,
      #57a5ff,
      #0070fe,
      #0d4da1);

  animation: spinRing 6s linear infinite;
}

/* INNER CIRCLE */
.counter-inner {
  position: relative;
  z-index: 2;

  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: 3px;

  border-radius: 50%;

  background: radial-gradient(circle at top,
      rgba(0, 86, 160, 0.95),
      rgba(0, 32, 80, 0.98));

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  gap: 0.25rem;

  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.12),
    0 22px 44px rgba(0, 56, 135, 0.45);

  transition: box-shadow 0.5s ease;
}

.counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.counter-number::after {
  content: attr(data-plus);
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: 0.2rem;
  vertical-align: top;
}

.counter-plus {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: -0.25rem;
}

.counter-text {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.35rem;
  letter-spacing: 0.4px;
}

/* HOVER EFFECT */
.about-counter:hover {
  transform: translateY(-10px) scale(1.03);
}

.about-counter:hover .counter-inner {
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.18),
    0 30px 70px rgba(0, 56, 135, 0.6);
}

/* ANIMATION */
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-right h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-right h2 {
  font-size: 0.8rem;
}

.about-highlight {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--assets-color);
  margin-bottom: 1rem;
}

.about-right p {
  font-size: 0.95rem;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 1rem;

  background: var(--brand-gradient);
  color: #fff;

  padding: 0.75rem 1.6rem;
  border-radius: var(--button-radius-corner);

  text-decoration: none;
  font-weight: 500;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 56, 135, 0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .about-flex {
    flex-direction: column;
  }

  .about-counter {
    width: 140px;
    height: 140px;
    top: -20%;
    left: 35%;
  }

  .counter-number {
    font-size: 2.6rem;
  }
}

/* =========================
   PRODUCTS SECTION
========================= */
.products-section {
  padding: 5rem 0;
  background: #fff;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.products-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.products-title p {
  font-size: 0.95rem;
  color: var(--muted-text-color);
  max-width: 520px;
}

.view-all-btn {
  background: var(--brand-gradient);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: var(--button-radius-corner);
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 56, 135, 0.35);
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  color: #b3b3b3;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
  padding-top: 1rem;
  font-weight: bold;
  border-top: 1px solid #e5e7eb;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--body-color);
  line-height: 1.6;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   NAV BUTTONS (CENTER BOTTOM)
========================= */
.products-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.products-nav .swiper-button-prev,
.products-nav .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
}

.products-nav .swiper-button-prev:hover,
.products-nav .swiper-button-next:hover {
  background: #004dc0;
}

.products-nav .swiper-button-prev::after,
.products-nav .swiper-button-next::after {
  font-size: 14px;
  color: var(--white-color);
}

@media (max-width: 768px) {
  .products-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============================
   INDUSTRIES WE SERVE – SECTION
================================ */
.industries-section {
  padding: 4.5rem 0;
  background: var(--bg-secondary-color);
  position: relative;
}

.industries-bg {
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 0;
}

/* SECTION HEADER */
.industries-section .section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.industries-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.industries-section p {
  font-size: 1rem;
  color: var(--muted-text-color);
  max-width: 720px;
  margin: 0 auto;
}

/* ===============================
   GRID LAYOUT
================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ===============================
   CARD
================================ */
.industry-card-bg {
  position: relative;
  height: 120px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* BASE OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  transition: background 0.35s ease;
  z-index: 1;
}

/* CONTENT */
.industry-content {
  position: absolute;
  /* left: 1.5rem;
  bottom: 1.5rem; */
  z-index: 2;
}

.industry-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin: 0;
}

/* ===============================
   HOVER EFFECT (SUBTLE BLUE)
================================ */
.industry-card-bg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 56, 135, 0.25);
}

.industry-card-bg:hover .industry-overlay {
  background: linear-gradient(180deg,
      rgba(0, 56, 135, 0.55),
      rgba(0, 32, 80, 0.85));
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card-bg {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card-bg {
    height: 200px;
  }

  .industry-content {
    left: 1.25rem;
    bottom: 1.25rem;
  }
}

/* ===============================
   STATS SECTION – IMAGE STYLE
================================ */
.stats-wrap {
  padding: 4rem 0 6rem;
  background: #ffffff;
}

.stats-bg {
  background: var(--brand-gradient);
  border-radius: 24px;
  padding: 2.5rem 1rem 5rem;
  position: relative;
  z-index: 1;
}

.stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg/2.svg);
  opacity: 0.5;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.stats-bg-img1 {
  position: absolute;
  top: -10%;
  left: -2%;
  z-index: 0;
  width: 320px;
}

.stats-bg-img {
  position: absolute;
  top: -10%;
  right: 0%;
  z-index: 0;
  width: 320px;
}

.stats-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 3.5rem;
}

.stats-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.stats-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;

  position: absolute;
  left: 50%;
  bottom: -3.5rem;
  transform: translateX(-50%);
  width: calc(100% - 6rem);
}

.stat-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}

/* .stat-box:hover::before {
  content: " ";
  width: 90%;
  height: 90%;
  border: 1px solid var(--body-color);
  border-radius: 12px;
  position: absolute;
  inset: 5%;
} */

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-box span {
  font-size: 0.95rem;
  color: var(--muted-text-color);
  font-weight: 500;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 56, 135, 0.18);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2.5rem;
  }

  .stats-bg {
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 575px) {
  .stats-cards {
    grid-template-columns: 1fr;
  }

  .stats-bg {
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* ===============================
   WHY CHOOSE US
================================ */
.why-us-section {
  padding: 4.5rem 0;
  background: var(--bg-secondary-color);
}

/* HEADER */
.why-us-section .section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-us-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.why-us-section p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--muted-text-color);
}

/* GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-color);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-text-color);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  background: color-mix(in srgb, var(--primary-color) 12%, transparent);
  color: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card:hover .why-card-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 56, 135, 0.2);
}

/* HOVER – SUBTLE, PROFESSIONAL */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 56, 135, 0.16);
  border-color: rgba(0, 56, 135, 0.35);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ===============================
   CTA / HOOK SECTION
================================ */
.cta-section {
  position: relative;
  padding: 2rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 21, 38, 0.85),
      rgba(0, 56, 135, 0.75));
  z-index: 1;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2.2rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 767px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-content h2 {
    font-size: 1.9rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background: var(--white-color);
  color: #000000;
  padding-top: 1rem;
  border-top: 1px solid gainsboro;
}

.footer-logo {
  width: 50%;
  height: auto;
  /* padding: 10px; */
  background-color: var(--white-color);
  border-radius: 12px;
  /* margin-bottom: 15px; */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 1.2fr;
  gap: 2rem;
  padding: 2rem 0;
}

.social-links {
  display: flex;
  gap: 10px;
  padding-bottom: 2%;
}

.social-links a {
  color: var(--primary-color);
}

.social-links a svg {
  width: 24px;
  height: 24px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 14%;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rmm-footer-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #0c0c0c;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  font-weight: 500;
}

/* NEWSLETTER */
.footer-note {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  font-size: 0.9rem;
}

.footer-newsletter button {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: none;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.footer-newsletter button:hover {
  opacity: 0.9;
}

/* BOTTOM BAR */
.footer-bottom {
  /* margin-top: 3.5rem; */
  padding: 1.25rem 0;
  background: #f0f0f0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.5fr 1.2fr;
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-col {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .rmm-footer-product-grid {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-col h4::after {
    left: 0;
    transform: none;
  }
}

.footer-credit a {
  color: gold !important;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-header {
    display: none;
  }

  .mte-header-bg {
    width: 380px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer-newsletter {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .site-footer {
    padding-top: 2rem;
  }
}

.white-card-tile {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.white-card-tile {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.white-card-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);

  transform: scale(0);
  transform-origin: bottom right;
  opacity: 0;

  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;

  will-change: transform, opacity;
  z-index: 0;
}

/* =========================================================
   GLASS SWEEP LAYER
========================================================= */
/* .white-card-tile::after {
  content: "";
  position: absolute;
  inset: -160%;

  background: linear-gradient(
    120deg,
    transparent 46%,
    rgba(255, 255, 255, 0.9),
    transparent 54%
  );

  transform: translateX(-130%) rotate(8deg);
  opacity: 0;
  pointer-events: none;

  will-change: transform, opacity;
  z-index: 1;
} */

/* =========================================================
   CONTENT LAYER
========================================================= */
.white-card-tile>* {
  position: relative;
  z-index: 2;
  transition:
    color 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   HOVER IN
========================================================= */
.white-card-tile:hover {
  transform: translateY(-6px);
}

.white-card-tile:hover::before {
  transform: scale(1);
  transform-origin: top left;
  opacity: 1;
}

.white-card-tile:hover::after {
  animation: whiteCardGlassSweep 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* text invert */
.white-card-tile:hover span,
.white-card-tile:hover h3,
.white-card-tile:hover h4,
.white-card-tile:hover p,
.white-card-tile:hover ul li {
  color: #ffffff !important;
}

.white-card-tile:hover .rmm_partnership_icon {
  background-color: var(--bg-secondary-color);
}

.white-card-tile:hover .button4 {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

/* =========================================================
   HOVER OUT (NO SNAP)
========================================================= */
.white-card-tile:not(:hover)::before {
  transform-origin: bottom right;
}

.white-card-tile:not(:hover)::after {
  opacity: 0;
}

/* =========================================================
   GLASS ANIMATION
========================================================= */
@keyframes whiteCardGlassSweep {
  0% {
    transform: translateX(-130%) rotate(8deg);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(130%) rotate(8deg);
    opacity: 0;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */
@media (prefers-reduced-motion: reduce) {

  .white-card-tile,
  .white-card-tile::before,
  .white-card-tile::after,
  .white-card-tile>* {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   BACK TO TOP
========================= */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.75rem;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: var(--brand-gradient);
  color: #ffffff;

  font-size: 1.2rem;
  font-weight: 600;

  cursor: pointer;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    box-shadow 0.3s ease;
}

/* SHOW STATE */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.back-to-top:hover {
  box-shadow: 0 12px 30px rgba(0, 56, 135, 0.35);
  transform: translateY(-3px);
}

/* MOBILE ADJUST */
@media (max-width: 575px) {
  .back-to-top {
    right: 1rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 991px) {

  .stats-bg-img1,
  .about-img,
  .industty-img {
    display: none;
  }
}

/* ===============================
   FLOATING FAB (FINAL)
================================ */
.fab-wrapper {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1600;
}

/* MAIN BUTTON */
.fab-main {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;

  display: grid;
  place-items: center;
  position: relative;

  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

/* ICON SWITCH */
.fab-main svg {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

/* ACTION GROUP (CLOSED) */
.fab-actions {
  position: absolute;
  bottom: 4.75rem;
  left: 0;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* OPEN STATE */
.fab-wrapper.active .fab-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ICON TOGGLE */
.fab-wrapper.active .icon-plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.fab-wrapper.active .icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* ACTION ITEM */
.fab-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
}

/* LABEL */
.fab-label {
  background: #fff;
  color: #111;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ICON */
.fab-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

.fab-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* COLORS */
.whatsapp .fab-icon {
  background: #25d366;
}

.call .fab-icon {
  background: #0b5ed7;
}

.enquiry .fab-icon {
  background: var(--primary-color);
}

/* MOBILE */
@media (max-width: 768px) {
  .fab-main {
    width: 3.75rem;
    height: 3.75rem;
  }
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  margin: 1.5rem 0;
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #6b7280;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #9ca3af;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: #111827;
  font-weight: 600;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 2rem 1.5rem;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT FORM */
.contact-form {
  background: #ffffff;
  padding: 3rem;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 0.5rem;
}

.contact-form p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
}

.contact-btn {
  margin-top: 1.5rem;
  padding: 14px 28px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* RIGHT INFO */
.contact-info {
  position: relative;
  background: var(--primary-color);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* LINE GRID BACKGROUND */
/* .contact-info::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);

  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
} */

/* KEEP CONTENT ABOVE GRID */
.contact-info>* {
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item span {
  font-size: 13px;
  opacity: 0.8;
}

.info-item p {
  font-size: 15px;
  margin-top: 4px;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/* =========================
   MAP SECTION (DEPRECATED OLD STYLES)
========================= */
.map-container {
  /* max-width: 1200px; */
  margin: auto;
  height: 320px;
  /* border-radius: 20px; */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
    border-radius: 14px;
  }
}

#success,
#success1,
#error,
#error1 {
  display: none;
}

/* =========================
   CONTACT INFO ICONS
========================= */
.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 14px;
  text-align: left;
  transition: all 0.35s ease;
}

.info-item {
  background: rgb(255, 255, 255);
  transform: translateY(-4px);
  border: 1px solid #ececec7a;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.959);
  transform: translateY(-4px);
}

.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.info-item:hover .info-icon {
  background: #ffffffdc;
  fill: rgb(255, 255, 255);
  transform: scale(1.05);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: #000000;
}

.info-item span {
  font-size: 13px;
  opacity: 0.85;
  color: #000000;
}

.info-item p {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
}

.info-item p a {
  color: #000000;
}

.info-item a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* =========================
   RMM CORE FEATURES
========================= */
.rmm_core_features {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.rmm_core_container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.rmm_core_header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.rmm_core_kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

.rmm_core_title {
  font-size: 2rem;
  line-height: 1.15;
  margin-top: 1rem;
  color: #111827;
}

.rmm_core_header_right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
}

/* GRID */
.rmm_core_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* border-radius: 28px; */
  overflow: hidden;
  /* border: 1px solid #e5e7eb; */
}

.rmm_core_card {
  padding: 3rem;
  background: #ffffff;
  position: relative;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rmm_core_card:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.rmm_core_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1.5rem;
  transition: transform 0.45s ease;
}

.rmm_core_card:hover .rmm_core_icon {
  background: var(--white-color);
  color: var(--primary-color);
}

.rmm_core_icon svg {
  width: 22px;
  height: 22px;
}

.rmm_core_card h3 {
  font-size: 22px;
  margin-bottom: 0.75rem;
  color: #111827;
}

.rmm_core_card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.rmm_core_card:hover .rmm_core_icon {
  transform: scale(1.15) rotate(6deg);
}

@media (max-width: 900px) {
  .rmm_core_header {
    grid-template-columns: 1fr;
  }

  .rmm_core_title {
    font-size: 34px;
  }

  .rmm_core_grid {
    grid-template-columns: 1fr;
  }

  .rmm_core_card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

/* ===============================
   RMM CTA / HOOK SECTION
================================ */
.rmm_cta_section {
  position: relative;
  padding: 5rem 1.5rem;
  color: #ffffff;

  background-image:
    linear-gradient(135deg, rgba(11, 60, 93, 0.92), rgba(0, 63, 99, 0.92)),
    url("../images/bg/cta-bg.webp");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.rmm_cta_section .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rmm_cta_content {
  max-width: 920px;
}

.rmm_cta_bg {
  width: 350px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  pointer-events: none;
}

.rmm_cta_title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.rmm_cta_text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.rmm_cta_actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rmm_cta_btn {
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rmm_cta_btn_primary {
  background: #ffffff;
  color: #003f63;
}

.rmm_cta_btn_secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.rmm_cta_btn_secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.rmm_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .rmm_cta_bg {
    display: none;
  }

  .rmm_cta_section {
    padding: 3.5rem 1.25rem;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .rmm_cta_section {
    padding: 3.5rem 1.25rem;
  }

  .rmm_cta_actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rmm_core_features {
    padding: 1rem;
  }

  .stats-wrap {
    padding: 1rem 0.5rem;
  }

  .about-section {
    padding: 1rem 0.2rem;
  }

  .about-counter {
    display: none;
  }
}

/* =========================
   SIDEBAR
========================= */

.rmm-p-desktop-sidebar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

/* MAIN LIST */
.rmm_sidebar_main {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rmm_sidebar_main>li {
  margin-bottom: 0.5rem;
}

/* MAIN CATEGORY */
.rmm_main_cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.rmm_main_cat:hover {
  background: rgba(var(--primary-color-rgb, 0, 63, 99), 0.05);
  color: var(--primary-color);
  transform: translateX(5px);
}

.rmm_sidebar_main li.active>.rmm_main_cat {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb, 0, 63, 99), 0.2);
}

/* BRAND EXPANDED BUT NOT ACTIVE */
.rmm_main_cat.expanded:not(.active) {
  background: rgba(var(--primary-color-rgb, 0, 63, 99), 0.03);
  color: var(--primary-color);
}

/* LABEL */
.rmm_cat_label {
  flex: 1;
}

/* ARROW */
.rmm_cat_arrow {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* ROTATE WHEN OPEN */
.rmm_main_cat.expanded .rmm_cat_arrow {
  transform: rotate(90deg);
  opacity: 1;
}

/* =========================
   SUB MENU
========================= */

.rmm_sidebar_sub {
  list-style: none;
  padding-left: 0.5rem;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease,
    margin 0.3s ease;
}

.rmm_sidebar_sub.open {
  max-height: 1000px;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.rmm_sidebar_sub li {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.rmm_sidebar_sub.open li {
  transform: translateY(0);
  opacity: 1;
}

.rmm_sidebar_sub a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: #64748b;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.rmm_sidebar_sub a:hover {
  background: rgba(var(--primary-color-rgb, 0, 63, 99), 0.05);
  color: var(--primary-color);
  padding-left: 1.25rem;
}

.rmm_sidebar_sub a.active {
  background: #f8fafc;
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: inset 4px 0 0 var(--primary-color);
  border-radius: 8px;
}

/* =========================
   STICKY (DESKTOP ONLY)
========================= */
@media (min-width: 992px) {
  .rmm-p-desktop-sidebar {
    position: sticky;
    top: 6.5rem;
    height: fit-content;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }

  /* Hide scrollbar for sidebar while keeping functionality */
  .rmm-p-desktop-sidebar::-webkit-scrollbar {
    width: 4px;
  }

  .rmm-p-desktop-sidebar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
  }
}

/* ================= GRID ================= */

.rmm_product_grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Consolidated under Detail UI section and updated for responsiveness */
.rmm_top_row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.rmm_detail_gallery_side {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rmm_detail_gallery_side img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

/* ================= PRODUCT CARD ================= */

.rmm_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  /* Ensure equal height cards */
}

@media (max-width: 1200px) {
  .rmm_cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rmm_cards_grid {
    grid-template-columns: 1fr;
  }
}

.rmm_product_card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rmm_product_card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.rmm_product_card.active {
  border-color: var(--primary-color);
  background-color: #f8fafc;
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb, 0, 63, 99), 0.1);
}

.rmm_product_card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.rmm_product_card h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  color: #111827;
}

.rmm_view_btn {
  margin-top: auto;
  /* Push button to bottom */
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: #003f63;
  cursor: pointer;
  text-align: left;
}

/* ================= DETAIL ================= */

.rmm_product_detail {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 2.5rem;
  /* border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04); */
  flex: 1;
  min-width: 300px;
}

.rmm_detail_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.rmm_pdf_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmm_pdf_btn:hover {
  background: #ff4d4d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.2);
}

.rmm_pdf_icon {
  width: 20px;
  height: 20px;
  color: #ff4d4d;
}

.rmm_pdf_btn:hover .rmm_pdf_icon {
  color: #fff;
}

/* ================= TABS ================= */

.rmm_detail_tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  /* background: #f8fafc; */
  padding: 0.6rem;
  /* border-radius: 18px; */
  width: fit-content;
  /* border: 1px solid #edf2f7; */
  /* box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03); */
}

.rmm_tab_btn {
  background: transparent;
  border: none;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  color: #718096;
  border-radius: 14px;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.rmm_tab_btn.active {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 4px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb, 0, 63, 99), 0.25);
  transform: translateY(-2px);
}

.rmm_tab_btn:not(.active) {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0px;
  padding-left: 12px;
  border-left: 1px solid rgba(var(--primary-color-rgb, 0, 63, 99), 0.1);
}

.rmm_tab_btn:not(.active):first-child {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0px;
  padding-left: 12px;
  border-left: 0;
}

.rmm_brand_label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb, 0, 63, 99), 0.05);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  letter-spacing: 0.05em;
  border: 1px solid rgba(var(--primary-color-rgb, 0, 63, 99), 0.1);
}

.rmm_detail_label {
  font-size: 1rem;
  font-weight: 600;
  color: #003f63;
  border-bottom: 2px solid #003f63;
  display: inline-block;
  padding: 0 0.5rem 0.5rem 0.5rem;
  margin-bottom: 1rem;
}

.rmm_tab_content.active {
  display: block;
}

/* ================= SPEC TABLE DECORATION ================= */

.rmm_spec_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  background: #fff;
  margin-bottom: 1rem;
}

.rmm_spec_table thead th {
  background: #f8fafc;
  color: #1e293b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 1.25rem 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.rmm_spec_table tbody td {
  padding: 1rem;
  color: #475569;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.rmm_spec_table tbody tr:last-child td {
  border-bottom: none;
}

.rmm_spec_table tbody tr:hover td {
  background: #f1f7ff;
  color: #003f63;
  transform: translateX(4px);
}

.rmm_spec_table tbody tr td:first-child {
  font-weight: 600;
  color: #334155;
  width: 40%;
}

#detailTitle {
  font-size: 1.7rem;
}

#detailTitle,
.productTitle {
  text-transform: capitalize;
}

/* Bullet points for Applications & Features */
.rmm_points {
  padding-left: 1.25rem;
  margin: 0;
}

.rmm_points li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  position: relative;
}

.rmm_points li::marker {
  color: #003f63;
}

/* ================= BOTTOM GRID ================= */

.rmm_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .rmm_top_row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .rmm_detail_gallery_side {
    width: 100%;
    flex: none;
    max-width: 500px;
    margin: 0 auto;
  }

  .rmm_cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rmm_product_detail {
    padding: 2rem;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-main-cli-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 1.5rem !important;
  }

  .rmm_product_detail {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .rmm_cards_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rmm_detail_tabs {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem;
    border-radius: 20px;
  }

  .rmm_tab_btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .rmm_detail_gallery_side {
    padding: 0;
  }

  .rmm_detail_slider {
    border-radius: 15px;
  }
}

/* ===============================
   MODAL BACKDROP
================================ */
.ShowcaseModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

/* ===============================
   MODAL CONTAINER
================================ */
.Formoutliner {
  background: #ffffff;
  width: 100%;
  max-width: 980px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: modalFadeUp 0.35s ease;
}

/* ===============================
   ANIMATION
================================ */
@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   LEFT FORM SECTION
================================ */
.contact-form {
  padding: 2rem 2.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #dfe3e8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #003f63;
  box-shadow: 0 0 0 2px rgba(0, 63, 99, 0.1);
}

/* ===============================
   SUBMIT BUTTON
================================ */
.submit-btn {
  background: #003f63;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
  background: #005b8f;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 63, 99, 0.2);
}

.enquiry-info svg {
  width: 20px;
  height: 20px;
}

/* ===============================
   RIGHT INFO SECTION
================================ */
#EnquiryContactSection {
  background: linear-gradient(180deg, #003f63, #002b45);
  color: #fff;
  padding: 2.25rem;
}

#EnquiryContactSection h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.enquiry-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquiry-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.enquiry-info a,
.enquiry-info span {
  color: #fff;
  text-decoration: none;
}

/* ===============================
   CLOSE BUTTON
================================ */
.close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}

.close-icon svg {
  fill: var(--white-color);
}

/* ===============================
   SUCCESS / ERROR
================================ */
#success,
#error {
  display: none;
  margin-top: 1.25rem;
  font-weight: 600;
}

/* ===============================
   CONTACT PANEL
================================ */
.rmm_contact_panel {
  /* background: linear-gradient(180deg, #003f63, #00283f); */
  color: #ffffff;
  height: 100%;
  border-radius: 0 20px 20px 0;
}

/* BRAND */
.rmm_contact_brand {
  text-align: center;
  margin-bottom: 1.75rem;
}

.rmm_contact_brand img {
  max-width: 200px;
  background-color: var(--white-color);
  padding: 10px;
  border-radius: 12px;
}

.rmm_contact_tagline {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* TITLE */
.rmm_contact_title {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

/* LIST */
.rmm_contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rmm_contact_list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.rmm_contact_list li:last-child {
  border-bottom: none;
}

/* ICON */
.rmm_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rmm_icon svg {
  width: 18px;
  height: 18px;
}

/* LINKS */
.rmm_contact_list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.rmm_contact_list a:hover {
  text-decoration: underline;
}

/* ADDRESS */
.rmm_contact_address {
  opacity: 0.9;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .rmm_contact_panel {
    display: none;
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .contact-form {
    padding: 1.5rem;
  }

  #EnquiryContactSection {
    padding: 1.5rem;
  }
}

/* =========================
   SIDEBAR ACCORDION ACTIVE STATE
========================= */
.rmm_main_cat.expanded {
  background: #eef4ff;
  color: #003f63;
  border-left: 4px solid #003f63;
}

.rmm_main_cat.expanded .rmm_cat_arrow {
  transform: rotate(90deg);
  opacity: 1;
}

/* =========================
   PRODUCT DETAIL UI ENHANCEMENTS
========================= */
.rmm_top_row {
  display: flex;
  gap: 30px;
  margin-bottom: 2rem;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* LEFT COLUMN: GALLERY */
.rmm_detail_gallery_side {
  flex: 0 0 380px;
  max-width: 100%;
}

.rmm_detail_slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.rmm_brand_label {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background: rgba(var(--primary-color-rgb, 0, 63, 99), 0.05);
  border-radius: 50px;
  display: inline-block;
  width: 100%;
}

.rmm_slide_item {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.rmm_slide_item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.rmm_slide_item:hover img {
  transform: scale(1.05);
}

/* THUMBNAILS */
.rmm_thumbnails_container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem;
  scrollbar-width: thin;
}

.rmm_thumb_item {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.rmm_thumb_item.active {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-color-rgb, 0, 63, 99), 0.15);
}

.rmm_thumb_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* RIGHT COLUMN: CONTENT */
.rmm_product_detail {
  flex: 1;
  min-width: 320px;
}

.rmm_detail_header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

/* SLIDER NAV WITHIN MAIN IMAGE (MOBILE STYLE ARROWS) */
.rmm_slider_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  pointer-events: none;
}

.rmm_slider_nav button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 14px;
}

/* TABS SYSTEM */
.rmm_detail_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.rmm_tab_btn {
  padding: 10px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmm_tab_btn:hover {
  color: #003f63;
  transform: translateY(-1px);
}

.rmm_tab_btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  /* background: #003f63; */
  transform: scaleX(0);
  transition: transform 0.2s;
}

.rmm_tab_btn.active {
  color: #ffffff;
}

.rmm_tab_btn.active::after {
  transform: scaleX(1);
}

.rmm_tab_pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.rmm_tab_pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rmm_content_loading {
  position: relative;
  min-height: 200px;
}

.rmm_loading_overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  animation: fadeIn 0.3s ease;
}

.rmm_spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #003f63;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rmm_content_fade_in {
  animation: fadeIn 0.4s ease forwards;
}

/* TECH SPEC TABLE */
.rmm_spec_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rmm_spec_table tr:nth-child(even) {
  background: #fcfcfc;
}

.rmm_spec_table th,
.rmm_spec_table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #eee;
}

.rmm_spec_table th {
  background: #f8f9fa;
  font-weight: 600;
  width: max-content;
  color: #444;
}

/* LIGHTBOX / POPUP NAV */
.rmm_lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.rmm_lightbox.active {
  display: flex;
}

.rmm_lightbox img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  background: var(--white-color);
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); */
}

.rmm_lb_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.rmm_lb_btn {
  width: 50px;
  height: 50px;
  background: rgb(0, 9, 117);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 24px;
  transition: all 0.2s;
}

button:focus {
  outline: none;
}

.rmm_lb_btn:hover {
  background: rgb(22, 32, 145);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rmm_lb_close:hover {
  color: #ff4d4d;
  transform: rotate(90deg);
}

.rmm_lb_close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: hsl(0, 0%, 0%);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rmm_top_row {
    flex-direction: column;
  }

  .rmm_detail_gallery_side {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .rmm_lb_nav {
    top: 90%;
  }
}

.product-main-cli-logo {
  width: 180px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: white;
  padding: 12px;
}

.rmm_products_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* MAP SECTION STYLES */
.map-section {
  padding: 40px 0;
}

.map-container-flex {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  justify-content: space-evenly;
  padding: 0 15px;
}

.map-item {
  flex: 1;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  /* border: 1px solid #eee; */
}

.map-item h3 {
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #003f63;
}

.map-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container-flex {
    flex-direction: column;
  }

  .map-item {
    height: 350px;
  }

  .rmm_detail_header {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .info-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .form-grid {
    gap: 0.25rem;
  }
}

/* =========================
   CORE FEATURES (ABOUT US)
   ========================= */
.rmm_core_features {
  padding: 4rem 0;
  background-color: #ffffff;
}

.rmm_core_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.rmm_core_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 5rem;
}

.rmm_core_header_left {
  flex: 1;
}

.rmm_core_header_right {
  flex: 1;
  padding-top: 1.5rem;
}

.rmm_core_kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #003f63;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.rmm_core_title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  text-transform: capitalize;
}

.rmm_core_header_right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  max-width: 480px;
}

/* GRID */
.rmm_core_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* CARD */
.rmm_core_card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem;
  background: #fff;
  border: 1px solid #f0f4f8;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rmm_core_card:hover {
  transform: translateY(-8px);
  border-color: #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 63, 100, 0.06);
}

.rmm_core_icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #eff6ff;
  color: #0077c5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rmm_core_card:hover .rmm_core_icon {
  background: #0077c5;
  color: #fff;
  transform: scale(1.05);
}

.rmm_core_card_content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.rmm_core_card_content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .rmm_core_header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .rmm_core_header_right {
    padding-top: 0;
  }

  .rmm_core_card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .rmm_core_features {
    padding: 4.5rem 0;
  }

  .rmm_core_grid {
    grid-template-columns: 1fr;
  }

  .rmm_core_card {
    flex-direction: column;
    padding: 2rem;
    text-align: left;
  }

  .rmm_core_icon {
    margin-bottom: 0.5rem;
  }
}

/* ===============================
   INDUSTRIES WE SERVE
================================ */
.industries-section {
  padding: 5rem 0;
  background-color: #f8fbff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.industry-card-bg {
  position: relative;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 63, 100, 0.9) 0%,
      rgba(0, 63, 100, 0.2) 60%,
      transparent 100%);
  transition: opacity 0.3s ease;
}

.industry-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.industry-content h4 {
  color: #fff;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.industry-card-bg:hover {
  transform: translateY(-8px) scale(1.02);
}

.industry-card-bg:hover .industry-overlay {
  background: linear-gradient(to top,
      rgba(0, 119, 197, 0.95) 0%,
      rgba(0, 119, 197, 0.3) 100%);
}

@media (max-width: 575px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-section {
    padding: 3rem 0;
  }
}

.site-footer,
.cta-section,
.industries-section,
.stats-wrap,
.why-us-section,
.products-section,
.about-section,
.distributors-section,
.hero-banner {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .rmm_top_row {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .rmm_product_detail {
    flex: 1;
    justify-content: center;
    min-width: 320px;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .rmm_detail_header {
    flex-direction: column;
    gap: 20px;
  }

  .rmm_detail_tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

}

/* =========================
   404 ERROR PAGE
========================= */
.rmm-error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #f8fafc;
  padding: 80px 0;
}

.rmm-error-wrapper {
  padding: 40px;
}

.text-404 {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #003f63, #005b8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -5px;
}

.text-message {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-primary-premium {
  background: #003f63;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 63, 99, 0.2);
}

.btn-primary-premium:hover {
  background: #002b45;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 63, 99, 0.3);
}

@media (max-width: 768px) {
  .text-404 {
    font-size: 80px;
  }

  .text-message {
    font-size: 1.5rem;
  }
}

/* ===============================
   MODERN ABOUT US V3
================================ */
.rmm_about_v3_content {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.rmm_about_section_block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rmm_about_subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  padding-bottom: 0.75rem;
  /* width: max-content; */
  text-align: center;
}

.rmm_about_subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-gradient);
  border-radius: 2px;
}

.rmm_about_lead_text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Partnerships */
.rmm_partnership_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.rmm_partnership_card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.rmm_partnership_card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 56, 135, 0.08);
  transform: translateY(-5px);
}

.rmm_partnership_icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 56, 135, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.rmm_partnership_info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: #1a1a1a;
}

.rmm_partnership_info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Ecosystem */
.rmm_ecosystem_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rmm_ecosystem_card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.rmm_ecosystem_icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.rmm_ecosystem_info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #1a1a1a;
}

.rmm_ecosystem_info p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Why Us V2 */
.rmm_why_grid_v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.rmm_why_card_v2 {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.rmm_why_icon_v2 {
  width: 54px;
  height: 54px;
  background: rgba(0, 56, 135, 0.04);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.rmm_why_content_v2 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.rmm_why_content_v2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  transition: color 0.3s ease;
}

/* Hover Adjustments for white-card-tile */
.white-card-tile:hover .rmm_why_icon_v2 {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.rmm_about_closing {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
  color: var(--primary-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .rmm_about_v3_content {
    gap: 3rem;
  }

  .rmm_partnership_grid,
  .rmm_ecosystem_grid,
  .rmm_why_grid {
    grid-template-columns: 1fr;
  }
}