@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf');
}

:root {
  /* Primary & Theme Colors */
  --primary: #005526;
  --rmm-primary-color: #000;
  --rmm-text-gray: #666;
  --rmm-border-color: #ddd;
  --rmm-bg-light: #f8f9fa;
  --border: #E5E5E5;
  --white: #FFFFFF;
  --white-2: #A7ACB5;
  --black-2: #4f5259;
  --theme: #009946;
  --sc-primary: #590500;
  --themeColor: #009946;
  --menuActive: #ffcc00;
  --button: #1f7400;
  --buttonHover: #009946;
  --bright: #FDE428;
  --yellow-color: #FFB539;
  
    --cls-2007: #3b82f6;
    /* Blue */
    --cls-2009: #8b5cf6;
    /* Purple */
    --cls-2013: #10b981;
    /* Green */
    --cls-2015: #f59e0b;
    /* Amber */
    --cls-2017: #06b6d4;
    /* Teal */
    --cls-2019: #ec4899;
    /* Pink */
    --cls-2020: #ef4444;
    /* Red */

  /* Semantic Colors */
  --danger: #fe5a0e;
  --warning: #ffae00;
  /* --accent-color: #ffcc00; */
  /* --accent-color-hover: #009946; */
  --success-color: #28a745;
  --error-color: #dc3545;

  --mpe-primary: #0047AB;
  --mpe-primary-soft: rgba(0, 71, 171, 0.08);
  --mpe-secondary: #00bcd4;
  --mpe-dark: #1a1a1a;
  --mpe-gray: #f8f9fa;
  --mpe-text-muted: #6c757d;
  --mpe-glass: rgba(255, 255, 255, 0.95);
  --mpe-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --mpe-radius: 12px;

  /* Neutral & Utility Colors */
  --white-color: #FFFFFF;
  --black-color: #000000;
  --black-color2: #080E1C;
  --gray-color: #888C97;
  --light-color: #bdbdbd;
  --smoke-color: #F8F8F8;
  --smoke-color2: #F3F4F6;
  --second-color: #ececec;

  /* Specific UI Element Colors */
  --footerColor: #1e2227;
  --logoText: #6D0A77;
  --prdColor: #086ad8;
  --prdDarkBG: #4788C8;
  --parentColor: #0b6037;
  --title-color: #0E121D;
  --body-color: #2a3036;
  --th-border-color: #E9EDF5;

  /* Font Families */
  --title-font: "Poppins", sans-serif;

  /* Font Sizes */
  --title-font-size: 1rem;
  --para-font-size: 1rem;
  --header-font-size: 2rem;

  /* Layout & Container Sizes */
  --main-container: 1230px;
  --container-gutters: 24px;

  /* Spacing */
  --section-space: 5.5rem;
  --section-space-mobile: 5rem;
  --section-title-space: 3.75rem;

  /* Animation Durations */
  --ripple-ani-duration: 5s;

}


html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: auto !important
}

body {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  font-family: var(--title-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

button {
  outline: none;
  border: none;
  background: none;
}

iframe {
  border: none;
  width: 100%
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
a.nice-select.open,
input,
input:hover,
input:focus,
input:active,
input.nice-select.open,
textarea,
textarea:hover,
textarea:focus,
textarea:active,
textarea.nice-select.open {
  outline: none
}

input:focus {
  outline: none;
  box-shadow: none
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color)
}

th {
  font-weight: 700;
  color: var(--title-color)
}

td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s
}

a:hover {
  color: var(--title-color)
}

a:active,
a.nice-select.open,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s
}

img {
  border: none;
  max-width: 100%
}

.empty-30 {
  padding: 15px 0;
}

/* header */
/* ================= TOPBAR ================= */
.mte-topbar {
  background: #1f1e1e;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #fff;
}

.mte-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mte-topbar a {
  color: #fff;
  text-decoration: none;
}


/* ================= MAIN HEADER ================= */
.mte-header {
  background: var(--themeColor);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mte-header.stuck {
  box-shadow: 0 6px 18px rgba(11, 22, 40, 0.06);
}

/* 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;
}

/* Logo */
.mte-logo-wrap {
  padding: 10px 0;
}

.mte-logo-img {
  height: 52px !important;
  width: auto !important;
}


/* ===== DESKTOP NAVIGATION ===== */
.mte-nav>ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.mte-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--white-color);
  font-weight: 500;
  transition: 0.2s;
}

.mte-nav a:hover,
.mte-nav a.active {
  color: #ffffff;
  font-weight: 700;
}

/* Submenu Styles */
.hassubmenu {
  position: relative;
}

.hassubmenu ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 100;
  padding: 8px 0 !important;
}

.hassubmenu:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hassubmenu ul li {
  width: 100%;
}

.hassubmenu ul li a {
  color: var(--black-2) !important;
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500 !important;
  transition: 0.2s;
  border-bottom: 1px solid #f2f2f2;
}

.hassubmenu ul li a:hover {
  background: var(--themeColor);
  color: var(--white) !important;
}

.hassubmenu ul li:last-child a {
  border-bottom: none;
}

/* CTA Button */
.mte-cta-btn {
  background: #ffffff;
  color: var(--themeColor) !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

/* Full-width yellow line */
.mte-active-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #00000013;
}

/* Movable small dot */
.mte-active-indicator::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.mte-active-indicator::after {
  left: var(--dot-position, 50%);
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.hassubmenu:hover .dropdown-icon {
  transform: rotate(180deg);
}


/* ================= MOBILE MENU (SLIDE PANEL) ================= */
.mte-mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100vh;
  width: 80%;
  max-width: 380px;
  background: #fff;
  padding: 20px;
  transition: 0.35s ease;
  z-index: 99999;
  overflow-y: auto;
}

.mte-mobile-menu.show {
  right: 0;
}

.mte-mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.mte-mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mte-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mte-mobile-menu a:hover {
  color: var(--themeColor);
}

/* Mobile Dropdown */
.mte-mobile-submenu {
  list-style: none;
  padding: 0 0 0 20px !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.mte-mobile-dropdown.open .mte-mobile-submenu {
  max-height: 200px;
  padding-bottom: 10px !important;
}

.mte-mobile-dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.mte-mobile-drop-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* ================= MODERN ABOUT SECTION ================= */
.mte-about-section {
  background: var(--white);
  position: relative;
}

.mte-section-tag {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.mte-about-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black-2);
  line-height: 1.2;
  margin-bottom: 25px;
}

.mte-about-title-modern span {
  color: var(--primary);
  position: relative;
}

/* Visual Wrapper */
.mte-about-visual-wrapper {
  position: relative;
  padding: 30px;
}

.mte-about-image-card {
  position: relative;
  z-index: 2;
}

.mte-about-shape-1 {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  background: var(--themeColor);
  border-radius: 12px;
  z-index: 1;
  opacity: 0.2;
  animation: float 4s ease-in-out infinite;
}

.mte-about-shape-2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite reverse;
}

/* Experience Badge */
.mte-experience-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 153, 70, 0.3);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.mte-experience-badge .count {
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1;
}

.mte-experience-badge .plus {
  font-size: 1.5rem;
  font-weight: 700;
}

.mte-experience-badge p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Highlight Cards */
.mte-highlight-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.mte-highlight-card:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-left-color: var(--themeColor);
  transform: translateY(-5px);
}

.mte-highlight-card .icon-wrap {
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mte-highlight-card h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-2);
}

/* Certifications */
.cert-img {
  height: 45px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: 0.3s;
}

.cert-img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes icon-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes icon-pulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 10px 20px rgba(0, 153, 70, 0.3);
  }

  50% {
    box-shadow: 0 10px 40px rgba(0, 153, 70, 0.6);
  }
}

@keyframes draw-line {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* ================= GROUP COMPANIES SECTION ================= */
.mte-group-section {
  background: #fdfdfd;
}

.mte-group-main-title {
  font-weight: 850;
  font-size: 2rem;
  color: var(--black-2);
  margin-bottom: 10px;
}

.mte-title-line {
  width: 60px;
  height: 4px;
  background: var(--themeColor);
  border-radius: 2px;
}

.mte-badge-line {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mte-badge-line::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.mte-badge-line.secondary {
  color: var(--themeColor);
}

.mte-badge-line.secondary::before {
  background: var(--themeColor);
}

.mte-company-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a2b3c;
  margin-bottom: 20px;
}

.mte-company-text {
  color: #555;
  line-height: 1.6;
}

/* Capability Tags */
.mte-cap-tag {
  background: var(--white);
  border: 1px solid #eee;
  padding: 6px 15px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
}

.mte-cap-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Stat Cards */
.mte-stat-card {
  border-left: 3px solid var(--themeColor);
  padding-left: 15px;
  background: var(--white);
  padding: 10px 15px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 2px;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black-2);
  margin: 0;
}

/* Image Cards */
.mte-company-img-card {
  position: relative;
  padding: 20px;
}

.mte-img-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--themeColor);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.mte-img-decor-alt {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}

/* Material Expertise Icons */
.mte-material-expertise {
  color: #444;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-theme {
  color: var(--themeColor);
}

@media (max-width: 991px) {
  .mte-experience-badge {
    left: 20px;
    bottom: -20px;
  }

  .mte-company-title {
    font-size: 1.8rem;
  }

  .mte-about-title-modern {
    font-size: 2rem;
  }
}

/* ================= SERVICES / CERTIFICATE SECTION ================= */
.mte-cert-section {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.mte-cert-section:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: url(../images/bg/bg-line.svg);
  background-size: cover;
  top: -5%;
  left: 0%;
  opacity: .12;
  z-index: -1;
}

.mte-cert-badge-icon {
  width: 48px;
  height: 48px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.mte-cert-title {
  font-size: 2.5rem;
  font-weight: 850;
  color: #1a2b3c;
  margin-bottom: 30px;
}

.mte-cert-info-box {
  background: #f1f8f6;
  border: 1px solid #d4e7e1;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.mte-cert-info-box h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mte-cert-info-box p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.mte-cert-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mte-cert-check-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.mte-cert-check-item span {
  font-weight: 700;
  color: #1a2b3c;
  font-size: 0.9rem;
}

.mte-cert-check-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.mte-cert-img-wrapper {
  position: relative;
  padding: 30px;
}

.mte-cert-image-card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

.mte-cert-image-card img {
  border: 1px solid #eee;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mte-cert-image-card img:hover {
  transform: scale(1.02);
}

.mte-precision-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 153, 70, 0.3);
  z-index: 3;
  animation: badge-glow 3s infinite ease-in-out;
}

.mte-precision-badge h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
}

.mte-precision-badge p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  opacity: 0.9;
}

/* ================= FEATURE CARDS SECTION ================= */
.mte-feature-cards-section {
  padding: 60px 0;
  background: #f8fbf9;
}

.mte-feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eeeeee;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated left accent bar */
.mte-feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0 4px 4px 0;
}

/* Subtle shine sweep on hover */
.mte-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(0, 153, 70, 0.06) 50%, transparent 70%);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.mte-feature-card:hover::before {
  transform: scaleY(1);
}

.mte-feature-card:hover::after {
  left: 125%;
}

.mte-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 153, 70, 0.12);
  border-color: rgba(0, 153, 70, 0.2);
}

.mte-feature-icon {
  width: 64px;
  height: 64px;
  background: #eef8f2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 24px;
  transition: all 0.4s ease;
  position: relative;
  flex-shrink: 0;
}

.mte-feature-card .mte-feature-icon svg {
  transition: all 0.4s ease;
  width: 34px;
  height: 34px;
}

.mte-feature-card:hover .mte-feature-icon {
  background: var(--primary);
  color: var(--white);
  /* border-radius: 50%; */
  box-shadow: 0 8px 24px rgba(0, 153, 70, 0.35);
}

.mte-feature-card:hover .mte-feature-icon svg {
  filter: brightness(10);
  fill: var(--accent-color) !important;
}

/* Specific icon animations on card hover */
.mte-feature-card:hover .animate-spin-hover {
  animation: icon-spin 3s infinite linear;
}

.mte-feature-card:hover .animate-bounce-hover {
  animation: icon-bounce 0.8s infinite ease-in-out;
}

.mte-feature-card:hover .animate-pulse-hover {
  animation: icon-pulse 1.2s infinite ease-in-out;
}

.mte-feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.mte-feature-card:hover h4 {
  color: var(--primary);
}

.mte-feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .mte-cert-title {
    font-size: 2rem;
  }

  .mte-feature-card {
    padding: 30px 20px;
  }
}

.bi-list,
.bi-x-circle {
  color: #000;
  width: 24px;
  height: 24px;
}

.mte-topbar-item p {
  margin: 0;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  color: #ffffff;
  /* white icons */
  font-size: 16px;
  margin-right: 15px;
  transition: 0.3s ease;
}

.social-icons a:last-child {
  margin-right: 0;
}

.social-icons a:hover {
  color: #ffb400;
  /* yellow hover */
}

/* ================= RESPONSIVE FIXES ================= */
/* Tablet (Hide angled BG, adjust spacing) */
@media (max-width: 991px) {
  .mte-header {
    background: var(--white);
  }

  .mte-header-bg {
    display: none;
  }

  .mte-logo-img {
    height: 46px;
  }

  .mte-header-inner {
    padding: 8px 0;
  }

  .mte-nav {
    display: none !important;
  }

  .mte-cta-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Mobile (Hide topbar, shrink header) */
@media (max-width: 767px) {

  .mte-topbar {
    display: none;
  }

  .mte-logo-img {
    height: 44px;
    margin-left: 8%;
  }

  .mte-header-inner {
    padding: 8px 0 !important;
    justify-content: space-between !important;
  }

  .mte-cta-btn {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}

/* button css */
.rr-btn-group {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font_dmsans);
}

.rr-btn-group.btn-whte .b {
  border: 1px solid white;
  color: var(--white);
}

.rr-btn-group.btn-whte .c {
  border: 1px solid white;
  color: var(--white);
}

.rr-btn-group span {
  letter-spacing: 0;
}

.rr-btn-group:hover .b {
  transform: rotate(-20deg);
}

.rr-btn-group:hover .c {
  transform: translate(-7px, 0px);
}

.rr-btn-group .b {
  padding: 9px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 50px;
  transition: all 0.3s;
}

.rr-btn-group .c {
  padding: 9px 11px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 50px;
  transition: all 0.3s;
}

.rr-btn-group .c i {
  rotate: -30deg;
}

.rr-btn {
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding: 19px 34px;
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  border-radius: 100px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  white-space: nowrap;
}

.dark .rr-btn {
  color: var(--black);
}

@media only screen and (max-width: 767px) {
  .rr-btn {
    padding: 16px 29px;
    font-size: 14px;
  }
}

.rr-btn:hover::before,
.rr-btn:focus::before {
  height: 100%;
}

.rr-btn:hover .btn-wrap .text-one,
.rr-btn:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}

.rr-btn:hover .btn-wrap .text-two,
.rr-btn:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}

.dark .rr-btn:hover .btn-wrap .text-two,
.dark .rr-btn:focus .btn-wrap .text-two {
  color: var(--white);
}

.rr-btn:after {
  display: block;
  clear: both;
  content: "";
}

.rr-btn::before {
  background-color: var(--white);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}

.dark .rr-btn::before {
  background-color: var(--black);
}

.rr-btn .btn-wrap {
  z-index: 1;
  /* float: left; */
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}

.rr-btn .btn-wrap .text-one,
.rr-btn .btn-wrap .text-two {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rr-btn .btn-wrap .text-one {
  position: relative;
  color: var(--white);
  transition: all 0.5s;
}

.dark .rr-btn .btn-wrap .text-one {
  color: var(--black);
}

.rr-btn .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  color: var(--white);
  transition: all 0.5s;
}

.dark .rr-btn .btn-wrap .text-two {
  color: var(--black);
}

.rr-btn.btn-white {
  border-color: transparent;
  background-color: var(--white);
}

.rr-btn.btn-white::before {
  background-color: var(--theme);
}

.rr-btn.btn-white .text-one,
.rr-btn.btn-white .text-two {
  gap: 119px;
  display: flex;
}

@media only screen and (max-width: 1399px) {

  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 50px;
  }
}

@media only screen and (max-width: 767px) {

  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 20px;
  }
}

.rr-btn.btn-white .btn-wrap .text-one {
  color: var(--primary);
}

.rr-btn.btn-white .btn-wrap .text-two {
  color: var(--white);
}

.rr-btn.btn-border {
  border: 1px solid rgba(17, 17, 17, 0.15);
  background-color: transparent;
  color: var(--black);
  padding: 25px 42px;
}

.rr-btn.btn-border:hover,
.rr-btn.btn-border:focus {
  border-color: transparent;
  color: white;
}

.rr-btn.btn-border:hover .text-two,
.rr-btn.btn-border:focus .text-two {
  color: #F9F9F9;
}

.rr-btn.btn-border .btn-wrap .text-one {
  color: var(--white);
}

.rr-btn.btn-border .btn-wrap .text-two {
  color: var(--white);
}

.rr-btn.btn-border-white {
  border: 1px solid rgba(252, 247, 243, 0.1);
  background-color: transparent;
}

.rr-btn-plus {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
  padding: 20px 50px 20px 33px;
  background-color: var(--white);
  color: var(--white);
  border-radius: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.dark .rr-btn-plus {
  background-color: var(--black);
  color: var(--black);
}

@media only screen and (max-width: 1199px) {
  .rr-btn-plus {
    padding: 10px 20px 10px 18px;
  }
}

@media (max-width: 575px) {
  .rr-btn-plus {
    font-size: 14px;
  }
}

.rr-btn-plus:hover .icon:before,
.rr-btn-plus:focus .icon:before {
  transform: scale(30);
}

.rr-btn-plus:hover .btn-wrap .text-one,
.rr-btn-plus:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}

.rr-btn-plus:hover .btn-wrap .text-two,
.rr-btn-plus:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}

.dark .rr-btn-plus:hover .btn-wrap .text-two,
.dark .rr-btn-plus:focus .btn-wrap .text-two {
  color: var(--black);
}

.rr-btn-plus .icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 48px;
}

.rr-btn-plus .icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFD80C;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.7s;
}

.rr-btn-plus .btn-wrap {
  z-index: 1;
  /* float: left; */
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}

.rr-btn-plus .btn-wrap .text-one,
.rr-btn-plus .btn-wrap .text-two {
  display: flex;
  align-items: center;
}

.rr-btn-plus .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--black);
  transition: all 0.5s;
}

.dark .rr-btn-plus .btn-wrap .text-one {
  color: var(--white);
}

.rr-btn-plus .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--black);
  transition: all 0.5s;
}

.dark .rr-btn-plus .btn-wrap .text-two {
  color: var(--black);
}

.rr-btn-underline {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: var(--primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 0px;
  white-space: nowrap;
}

.rr-btn-underline:hover::before {
  width: 0;
}

.rr-btn-underline:hover i {
  rotate: 0deg;
}

.rr-btn-underline::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s;
}

.rr-btn-underline i {
  font-size: 17px;
  font-weight: 400;
  rotate: -50deg;
  transition: all 0.3s;
}

@keyframes mask_animation {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}


/* about-us */
.mte-about-section {
  padding: var(--section-space) 0;
  padding-bottom: 9rem;
  background: var(--white-color);
}

/* Image Composition */
.mte-about-image-wrap {
  position: relative;
  width: 100%;
}

.mte-about-bg {
  width: 90%;
  height: 360px;
  background: linear-gradient(rgba(89, 5, 0, 0.15), rgba(89, 5, 0, 0.3)),
    url('../images/services/company-infra.webp') center/cover no-repeat;
  border-radius: 12px;
}

.mte-about-main-img {
  width: 55%;
  position: absolute;
  right: -18px;
  bottom: -150px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Content */
.mte-about-content {
  padding-left: 20px;
}

.mte-about-subtitle {
  color: var(--themeColor);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.mte-about-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 18px;
}

.mte-about-content p {
  font-size: 1rem;
  color: var(--body-color);
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: justify;
}

/* Divider Lines */
.mte-about-divider {
  height: 2px;
  background: var(--themeColor);
  width: 100%;
  margin: 20px 0;
}

/* Quote */
.mte-about-quote {
  font-size: 0.95rem;
  color: var(--body-color);
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid var(--themeColor);
}

/* Button */
.mte-about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--themeColor);
  border-radius: 8px;
  color: var(--white-color);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.mte-about-btn:hover {
  background: var(--primary);
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 991px) {
  .mte-about-section {
    padding-bottom: 2rem;
  }

  .mte-about-bg {
    width: 100%;
  }

  .mte-about-main-img {
    display: none;
  }

  .mte-about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* why us */
.mte-why-section {
  position: relative;
  padding: var(--section-space) 0;
  z-index: 1;
  overflow: hidden;
}

.mte-why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/dotted-map-4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.32;
  z-index: -1;
}

/* Subtitle */
.mte-why-sub {
  color: var(--themeColor);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Title */
.mte-why-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--black-color);
}

.mte-why-title span {
  color: var(--themeColor);
}

/* Paragraph */
.mte-why-text {
  font-size: 0.95rem;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: justify;
}

/* Left Image */
.mte-why-img-wrap {
  margin-top: 18px;
}

.mte-why-img {
  width: 80%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right Feature Blocks */
.mte-why-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 14px;
  margin-bottom: 34px;
}

.mte-why-icon {
  width: 180px;
  height: 60px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.mte-why-icon img {
  width: 140px;
  height: 50px;
}

.mte-why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--theme);
}

.mte-why-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 6px;
}

.mte-why-info p {
  font-size: 0.92rem;
  color: var(--body-color);
  line-height: 1.5;
  text-align: justify;
}

/* Responsive */
@media (max-width: 991px) {

  .mte-why-img {
    width: 100%;
  }

  .mte-why-section {
    padding: 40px 0;
  }

  .mte-why-title {
    font-size: 1.7rem;
  }

  .mte-why-item {
    margin-bottom: 28px;
  }
}

@media (max-width: 576px) {
  .mte-why-title {
    font-size: 1.5rem;
  }
}

.mte-industries-section {
  padding: var(--section-space) 0;
  background: var(--white-color);
  text-align: center;
}

.mte-industries-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--title-color);
}

.mte-industries-title span {
  color: var(--themeColor);
}

/* Cards */
.mte-industry-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  background: var(--smoke-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.mte-industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  transition: 0.3s ease;
}

.mte-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

/* Label */
.mte-industry-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Glass Shine Layer */
.mte-industry-card::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 100%;
  width: 200%;
  height: 250%;
  background: rgba(255, 255, 255, 0.212);
  transform: rotate(45deg);
  filter: blur(10px);
  transition: 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

/* Existing dark gradient overlay */
.mte-industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 55%);
  z-index: 1;
  transition: 0.3s ease;
}

/* Hover Image Zoom */
.mte-industry-card:hover img {
  transform: scale(1.06);
}

/* Shine Animation */
.mte-industry-card:hover::before {
  top: -20%;
  left: -20%;
  transition: 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .mte-industries-title {
    font-size: 1.6rem;
  }

  .mte-industry-card {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .mte-industry-card {
    height: 180px;
  }
}

/* ============================
   BASE SECTION STYLE
============================ */
.rmm_stats_section {
  /* background: var(--smoke-color); */
  background: url('../images/bg/1.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  padding: 2rem 0;
  position: relative;
}

.rmm_stats_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.404);
  /* z-index: -1; */
}

.rmm_stats_box {
  position: relative;
  z-index: 1;
  /* background: var(--white-color); */
  padding: 3rem;
  border-radius: 2rem;
  /* box-shadow: 0 1rem 2rem rgba(0,0,0,0.06); */
}

.rmm_stats_box.smaller {
  padding: 2.2rem 2rem;
}

/* Titles */
.rmm_stats_title {
  font-size: var(--header-font-size);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.rmm_stats_sub {
  font-size: var(--para-font-size);
  color: var(--body-color);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* ============================
   GRID
============================ */
.rmm_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  justify-content: end;
}

/* ============================
   STAT ITEM
============================ */
.rmm_stat_item {
  text-align: center;
}

.rmm_stat_value {
  font-size: 5rem;
  font-weight: 700;
  color: white;
  margin-bottom: .3rem;
}

.rmm_stat_label {
  font-size: calc(var(--para-font-size));
  color: white;
  opacity: 0.7;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 991px) {
  .rmm_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .rmm_stats_box {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .rmm_stats_grid {
    grid-template-columns: 1fr;
  }

  .rmm_stats_box {
    padding: 1.6rem;
  }

  .rmm_stat_value {
    font-size: 3.6rem;
  }
}

/* Footer Base */
.mte-footer {
  position: relative;
  background: #1f1e1e;
  padding: 70px 0 0;
  color: var(--title-color);
  font-size: 0.95rem;
  overflow: hidden;
  z-index: 1;
}

/* .mte-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/bg/1.webp') center/cover no-repeat;
  background: url(https://eco-cdn.iqpc.com/eco/images/channel_content/images/offshore_platform.webp) center/cover no-repeat;
  opacity: 0.3;
  filter: blur(4px);
  z-index: 0;
} */

/* Make all footer content above background */
.mte-footer>.container,
.mte-footer-bottom {
  position: relative;
  z-index: 2;
}

/* Logo + About */
.mte-footer-logo img {
  height: 75px;
  margin-bottom: 15px;
  padding: .5rem;
  background: #FFFFFF;
  border-radius: 10px;
}

.mte-footer-about-text {
  line-height: 1.6;
  opacity: 0.85;
  text-align: justify;
  color: var(--white-color);
}

/* Titles */
.mte-footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white-color);
}

/* Quick Links */
.mte-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mte-footer-links li {
  margin-bottom: 10px;
}

.mte-footer-links a {
  opacity: 0.8;
  text-decoration: none;
  color: var(--white-color);
}

.mte-footer-links a:hover {
  color: var(--themeColor);
  opacity: 1;
}

/* Newsletter */
.mte-footer-subscribe form {
  display: flex;
  gap: 8px;
}

.mte-footer-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--light-color);
  font-size: 0.9rem;
}

.mte-footer-btn {
  background: var(--themeColor);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-color);
  cursor: pointer;
}

.mte-footer-btn:hover {
  background: var(--primary);
}

/* Bottom Bar */
.mte-footer-bottom {
  margin-top: 20px;
  padding: 5px 0;
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid #ffffff59;
}

.mte-footer-copy,
.mte-footer-crafted {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
  color: var(--white-color);
}

.mte-footer-crafted a {
  color: #FDE428;
  text-decoration: none;
}

.mte-footer-para {
  color: var(--white-color);
}

.mte-footer-crafted a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .mte-footer-subscribe form {
    flex-direction: column;
  }

  .mte-footer-btn {
    width: 100%;
  }

  .mte-footer-bottom {
    text-align: center;
  }

  .mte-footer-bottom .container {
    flex-direction: column !important;
    gap: 8px;
  }
}

/* we do */
.mte-what-section {
  padding: var(--section-space) 0;
  background: var(--smoke-color2);
  background: url(../images/bg/Page-Bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Heading */
.mte-what-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--title-color);
}

/* Cards */
.mte-what-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Soft gradient background like reference */
.mte-what-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 244, 255, 0.7), rgba(230, 235, 250, 0.4));
  z-index: 0;
  opacity: 0.7;
}

/* Above background */
.mte-what-card>* {
  position: relative;
  z-index: 2;
}

/* Hover effect */
.mte-what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.mte-what-icon {
  width: 80px;
  height: 80px;
  padding: .5rem;
  border-radius: 50%;
  /* background: rgba(255, 121, 0, 0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.mte-what-icon img {
  width: 100%;
  height: 100%;
}

.mte-what-card:hover img {
  display: none;
  transition: all .3s ease-in-out;
}

.mte-what-card svg {
  display: none;
  transition: all .3s ease-in-out;
}

.mte-what-card:hover svg {
  display: block;
  width: 80px;
  height: 80px;
  transition: all .3s ease-in-out;
}

/* Headings */
.mte-what-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--title-color);
}

/* Text */
.mte-what-text {
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .mte-what-title {
    font-size: 1.6rem;
  }
}

/* backtotop */
#mte-backtotop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--themeColor);
  color: var(--white-color);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

#mte-backtotop.show {
  opacity: 1;
  visibility: visible;
}

#mte-backtotop:hover {
  background: var(--primary);
}

/* sidebar */
.mte-fab-container {
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 99999;
}

.mte-fab-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success-color);
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.mte-fab-toggle:hover {
  background: var(--themeColor);
}

/* ACTION LIST (HIDDEN INITIALLY) */
.mte-fab-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 70px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
}

/* SHOW ON TOGGLE */
.mte-fab-container.active .mte-fab-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* EACH ACTION BUTTON */
.mte-fab-btn {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black-color);
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mte-fab-btn:hover {
  transform: translateY(-3px);
}

/* ICON CONTAINER */
.mte-fab-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mte-fab-icon svg {
  fill: var(--white-color);
}

/* BRAND COLORS */
.mte-fab-btn.enquiry .mte-fab-icon {
  background: rgb(255, 119, 0);
}

.mte-fab-btn.whatsapp .mte-fab-icon {
  background: rgb(37, 211, 101);
}

.mte-fab-btn.phone .mte-fab-icon {
  background: rgb(89, 4, 0);
}

/* LABEL HIDE IN MOBILE */
@media (max-width: 768px) {
  .mte-fab-btn {
    padding: 10px;
    border-radius: 12px;
  }
}

/* news and event */
.mte-news-section {
  padding: var(--section-space) 0;
  position: relative;
}

.mte-news-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--themeColor);
  margin-bottom: 5px;
}

.mte-news-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title-color);
}

/* Featured Event */
.mte-news-featured {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mte-news-featured-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mte-news-featured-content {
  padding: 20px 24px;
}

.mte-news-featured-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.mte-news-featured-content p {
  font-size: 0.95rem;
  color: var(--body-color);
}

/* Meta */
.mte-news-meta {
  list-style: none;
  padding: 0;
  margin: 12px 0 15px;
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.mte-news-meta li span {
  margin-right: 6px;
}

/* List items Right */
.mte-news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  background: var(--white-color);
  border-bottom: 1px solid var(--smoke-color2);
}

.mte-news-item-img img {
  width: 470px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.mte-news-item-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mte-news-item-content p {
  font-size: 0.9rem;
  color: var(--body-color);
  margin-bottom: 4px;
}

/* Read More */
.mte-news-readmore {
  color: var(--themeColor);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.mte-news-readmore:hover {
  color: var(--primary);
}

/* View More */
.mte-news-viewmore {
  display: inline-block;
  padding: 10px 24px;
  background: var(--themeColor);
  color: var(--white-color);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.mte-news-viewmore:hover {
  background: var(--button) !important;
  color: var(--white-color);
}

.news-bg {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -10px;
  left: -10px;
  object-fit: cover;
  z-index: -1;
}

.news-bg-top {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -10px;
  right: -10px;
  object-fit: cover;
  opacity: .3;
  z-index: -1;
}

@media (max-width: 1400px) {
  header .mte-cta-btn {
    display: none !important;
  }
}

@media (max-width: 1300px) and (min-width: 997px) {
  .mte-nav a {
    text-decoration: none;
    font-size: 0.75rem;
    color: var(--white-color);
    font-weight: 500;
    transition: 0.2s;
  }

  .mte-header-bg {
    width: 380px;
    height: 105%;
  }
}

/* stats */
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border-radius: 40px;
  /* background: #111; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}

.stats-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stats-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%); */
  z-index: 1;
}

.stats-left,
.stats-right {
  position: relative;
  z-index: 2;
}

.stats-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.712), rgba(0, 0, 0, 0.226)); */
}

/* Left side */
.stats-left {
  flex: 1;
  z-index: 1;
}

.stats-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
}

.stats-left p {
  font-size: 1rem;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Industries List */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  list-style: none;
}

.industries-item {
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--white-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.industries-item:hover {
  transform: translateY(-3px);
}

/* Right side stats */
.stats-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  z-index: 1;
}

/* Each stat box */
.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffffee;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
}

/* Icon */
.stat-icon {
  color: #1a1a1a;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--themeColor);
}

/* Numbers */
.stat-box h3 {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0;
}

/* Label */
.stat-box span {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    padding: 30px;
  }

  .mte-news-item {
    flex-direction: column;
  }

  .mte-news-item-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
}

.rmm_about-section {
  padding: 80px 0;
  position: relative;
}

.about-bg {
  position: absolute;
  width: 350px;
  height: 250px;
  bottom: 0;
  left: 0%;
  object-fit: cover;
  z-index: -1;
  opacity: .7;
}

.about-bg-top {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 10%;
  right: 0;
  object-fit: cover;
  z-index: -1;
  opacity: .7;
}

.rmm_about-badge {
  font-size: 12px;
  background: #fff3e4;
  padding: 6px 14px;
  color: #ff6b00;
  border-radius: 30px;
  font-weight: 600;
}

.rmm_about-title {
  font-size: 2rem;
  color: #111;
  line-height: 1.3;
}

.rmm_about-title span {
  color: #ff4b2b;
  font-weight: 600;
}

.rmm_about-title strong {
  color: #1a1a1a;
}

.rmm_about-text {
  margin: 15px 0 25px;
  color: #666;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.7;
}

.images-about-quality {
  display: flex;
  gap: 20px;
}

.images-about-quality img {
  width: 80px;
  height: 80px;
}

.images-about-quality.footer-quality img {
  width: 60px;
  height: 60px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .rmm_about-title {
    font-size: 30px;
  }
}

.counter-year-wrapper {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
}

.counter-year-wrapper.left-counter {
  left: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
}

.counter-rotate-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dotted #ff3b2b;
  animation: rotateBorder 6s linear infinite;
  z-index: 1;
}

.about-image-wrapper {
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.about-shaped-img {
  width: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%,
      75% 100%, 25% 100%, 0% 50%);
  /* HEXAGON */
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s;
}

.about-shaped-img:hover {
  transform: scale(1.03);
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.counter-year-about-circle {
  position: absolute;
  inset: 10px;
  /* keeps the circle inside rotating border */
  background: rgb(248, 70, 0);
  /* backdrop-filter: blur(6px); */
  border-radius: 50%;
  border: 2px solid rgba(255, 80, 60, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 1%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.counter-year-about-circle span {
  font-size: 2.5rem;
  padding-bottom: 6%;
}

.counter-year-about-circle p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    max-width: 320px;
  }

  .counter-year-wrapper {
    right: 0px;
  }
}

@media (max-width: 767px) {
  .counter-year-wrapper {
    display: none;
  }
}

/* SECTION LAYOUT */
.mte-products-section {
  background: var(--smoke-color2);
}

/* Title / Description */
.mte-prod-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--title-color, #0E121D);
}

.mte-prod-desc {
  color: var(--body-color, #6b7280);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.mte-prod-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mte-prod-list li {
  position: relative;
  padding: 14px 26px 14px 34px;
  min-width: 185px;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  border: 1px solid #e5e5e5;
  color: #0E121D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: .3s ease;
}

/* always highlighted accent bar */
.mte-prod-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff7a00, #ff3b00);
  opacity: .9;
}

/* Hover */
.mte-prod-list li:hover::before {
  width: 0%;
}

.mte-prod-list li:hover {
  color: #ffff;
  background: var(--themeColor);
}


/* RIGHT â€” Swiper Slider */
.mte-prod-swiper {
  padding-top: 10px;
}

.swiper-wrapper {
  align-items: start;
}

.mte-prod-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  height: 470px;
  border: 1px solid #aeaeae6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mte-prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ARROWS */
.mte-prod-arrows {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 20;
}

.mte-arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 22, 40, 0.06);
}

.mte-arrow-btn:hover {
  transform: translateY(-2px);
  background: #ddd;
}

/* Hide default swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* DESKTOP â€” 2 slides */
@media (min-width: 992px) {
  .mte-prod-card {
    height: 380px;
  }
}

/* TABLET + MOBILE */
@media (max-width: 991px) {
  .mte-prod-card {
    width: 100%;
    height: 420px;
  }

  .mte-prod-arrows {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mte-prod-list li {
    min-width: 45%;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 575px) {
  .mte-prod-list li {
    min-width: 100%;
  }

  .mte-products-section {
    padding: 30px 0;
  }

  .mte-prod-card {
    height: 360px;
    border-radius: 14px;
  }

  .mte-prod-arrows {
    bottom: 60px;
    left: 50%;
    transform: translateX(-25%);
  }
}

/* CTA Section */
.mte-cta-section {
  padding: var(--section-space) 0;
}

/* CTA Box */
.mte-cta-box {
  background: url('../images/banners/5.webp') top/cover no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 110px 50px 20px;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
}

.mte-cta-box.mte-cta-box1 {
  background: url('../images/bg/3.webp') bottom/cover no-repeat;
  background-attachment: fixed;
  min-height: 260px;
}

.mte-cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.822) 0%, rgba(0, 0, 0, 0.781) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

/* Ensure row stays above overlay */
.mte-cta-box .row {
  z-index: 1;
  width: 100%;
}

/* Title */
.mte-cta-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}

/* Description */
.mte-cta-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 500px;
}

/* CTA Button */
.mte-cta-btn {
  background: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  color: var(--themeColor);
  font-weight: 600;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .mte-cta-box {
    padding: 30px 20px;
    min-height: 300px;
    align-items: flex-end;
    /* still bottom-aligned */
  }

  .mte-cta-box::after {
    background: #000000b7;
    z-index: 0;
  }

  .mte-cta-title {
    font-size: 1.5rem;
  }
}

/* ================= PRELOADER ================= */
#mte-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#mte-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Logo */
.mte-preloader-logo {
  width: 110px;
  margin-bottom: 25px;
  animation: preloader-pop 0.8s ease forwards;
}

/* Loader Circle */
.mte-loader {
  width: 48px;
  height: 48px;
  border: 4px solid #ddd;
  border-top-color: var(--themeColor, #ff6b00);
  border-radius: 50%;
  animation: mte-spin 0.9s linear infinite;
  margin: auto;
}

/* CTA Button (Enhanced with ring + glow) */
.mte-cta-btn2 {
  background: var(--themeColor);
  padding: 12px 32px;
  border-radius: 30px;
  color: var(--white-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
  overflow: visible;
  z-index: 5;
  transition: 0.3s ease;
  animation: mte-cta-pulse 2s ease-in-out infinite;
}

/* Outer Ring (2px border like experience counter) */
.mte-cta-btn2::before {
  content: "";
  position: absolute;
  inset: -6px;
  /* controls distance of ring */
  border-radius: 40px;
  border: 2px solid var(--themeColor);
  opacity: 0.7;
  z-index: -1;
  transition: 0.35s ease;
  animation: mte-cta-outline 2s ease-in-out infinite;
}

/* Hover Effects */
.mte-cta-btn2:hover {
  background: var(--white-color);
  color: var(--themeColor);
  transform: translateY(-3px);
}

.mte-cta-btn2:hover::before {
  opacity: 1;
  border-color: var(--themeColor);
  inset: -8px;
  /* grows slightly */
}

.mte-cta-btn2:hover::after {
  opacity: 0.45;
  filter: blur(26px);
}

/* Pulse Scale Animation */
@keyframes mte-cta-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

/* Outline stroke animation */
@keyframes mte-cta-outline {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.042);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


@keyframes mte-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Wrapper */
.about-video-wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
}

/* Video with organic blob shape */
.about-shaped-video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s ease;
  cursor: pointer;
}

/* Custom Play Button */
.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--themeColor);
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

/* Outer subtle animated pulse ring */
.about-video-play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 80, 60, 0.7);
  animation: pulsePlay 2s ease-in-out infinite;
  z-index: -1;
  opacity: .7;
}

/* Pulse Animation */
@keyframes pulsePlay {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  50% {
    transform: scale(1.15);
    opacity: .4;
  }

  100% {
    transform: scale(1);
    opacity: .8;
  }
}

/* breadcrumb area style  */
.breadcrumb-area {
  /* margin-top: 155px; */
  padding: 40px 40px 0;
}

@media only screen and (max-width: 1919px) {
  .breadcrumb-area {
    /* margin-top: 135px; */
    padding: 20px 20px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-area {
    /* margin-top: 125px; */
    padding: 10px 10px 0;
  }
}

/* @media (max-width: 575px) {
  .breadcrumb-area {
    margin-top: 80px;
  }
} */
.breadcrumb-area-inner {
  border: 10px solid var(--white);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-area-inner {
    border-width: 5px;
    border-radius: 20px;
  }
}

.breadcrumb-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.breadcrumb-bg:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(1px);
  background: linear-gradient(270deg, rgba(26, 15, 5, 0) 0%, rgba(18, 0, 117, 0.425) 100%);
}

.breadcrumb-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumb-bg.contact1:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(1px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.37) 50%, rgba(0, 0, 0, 0.151) 100%);
}

.breadcrumb-content.contact1 {
  padding-left: 0;
  text-align: center;
}

@media only screen and (max-width: 1919px) {
  .breadcrumb-content {
    padding: 50px 0;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-content {
    padding: 50px 0;
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-content {
    padding-left: 20px;
  }
}

.breadcrumb-content {
  padding: 20px 0;
  /* padding-left: 120px; */
  background: #f7f7f7;
}

.breadcrumb-content .breadcrumb-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  color: var(--theme);
}

@media only screen and (max-width: 1919px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 46px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-content .breadcrumb-title {
    font-size: 34px;
  }
}

.rr-breadcrumb {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 12px 30px;
  list-style: none;
  -webkit-backdrop-filter: blur(80px);
  backdrop-filter: blur(80px);
  display: inline-flex;
  /* margin-top: 23px; */
  text-align: center;
}

.rr-breadcrumb li {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  line-height: 19px;
  font-weight: 600;
  color: var(--black);
}

.rr-breadcrumb li+li:before {
  padding: 0 7px;
  color: var(--black);
  content: "/";
}

.rr-breadcrumb li a {
  color: var(--black);
  text-decoration: none;
}

.rr-breadcrumb li a:hover {
  color: var(--black);
}

/* =========================
   NEWS PAGE LAYOUT
========================= */
.mte-news-page {
  padding: 60px 0;
}

/* Make right-side event list sticky */
.mte-news-left {
  position: sticky;
  top: 120px;
  /* adjust based on your header height */
  height: fit-content;
}

/* Featured Box */
.mte-news-featured {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Featured Image */
.mte-news-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

/* Featured Content */
.mte-news-featured-content h3,
.mte-news-featured-content h4 {
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Meta Info */
.mte-news-meta {
  padding: 0;
  margin: 14px 0;
  display: flex;
  gap: 22px;
  list-style: none;
  font-size: 0.95rem;
}

/* =========================
   RIGHT SIDE EVENT LIST
========================= */
.mte-news-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.mte-news-item:last-child {
  border-bottom: none;
}

/* FIXED IMAGE SIZE â€“ SAME FOR ALL */
.mte-news-item-img {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
}

.mte-news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Right Side Content */
.mte-news-item-content h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.mte-news-item-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
}

/* Read More Button */
.mte-news-readmore {
  color: var(--themeColor);
  font-weight: 600;
  margin-top: 6px;
  display: inline-block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .mte-news-featured-img img {
    height: auto;
  }

  .mte-news-featured {
    padding: 16px;
  }

  .mte-news-item {
    flex-direction: column;
    gap: 12px;
  }

  .mte-news-item-img {
    width: 100%;
    height: 200px;
  }

  .mte-news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sticky-featured {
    position: relative !important;
    top: auto !important;
  }

  .mte-news-left {
    position: relative;
    top: auto;
    height: fit-content;
  }

}

/* Section Headings */
.mte-news-page h6 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.mte-contact-section {
  padding: 80px 0;
  position: relative;
}

.contact-bg-top {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 150px;
  object-fit: cover;
  z-index: -1;
}

.mte-contact-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
}

.mte-contact-title span {
  color: var(--themeColor);
}

.mte-contact-desc {
  margin-top: 15px;
  margin-bottom: 25px;
  color: #444;
  font-size: 1rem;
}

.mte-contact-info {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.mte-contact-info li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid #d6d6d6;
  padding: 10px;
  padding-left: 20px;
  border-radius: 10px;
  background-color: #fcf9f956;
  color: #888888;
}

.mte-contact-info li a,
.mte-contact-info li:last-child {
  color: var(--black-color);
}

.mte-contact-info li a:hover {
  color: var(--themeColor);
}

.mte-contact-info svg {
  width: 24px;
  height: 24px;
  margin-top: 5px;
  color: var(--themeColor);
}

.mte-contact-image img {
  min-width: 100%;
  height: 200px;
  margin-top: 25px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1;
}

/* FORM BOX */
.mte-contact-form-box {
  /* background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.055) 0px,
            rgba(255, 255, 255, 0.048) 1px,
            transparent 1px,
            transparent 15px
        ),
        #061a3a; */
  border: 1px solid #e4e4e4;
  padding: 35px;
  background-color: #fff;
  backdrop-filter: blur(1px);
  border-radius: 8px;
  color: #000000;
}

.mte-contact-form-box label {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 4px;
}

.mte-contact-form-box input,
.mte-contact-form-box select,
.mte-contact-form-box textarea {
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  padding: 10px 14px;
}

.mte-contact-submit {
  margin-top: 18px;
  background: var(--themeColor);
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.mte-contact-submit:hover {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .mte-contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .mte-contact-desc,
  .mte-contact-info {
    text-align: center;
  }

  .mte-contact-image img {
    margin: 0 auto;
    display: block;
  }
}

.mte-feature-section {
  padding: 90px 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mte-feature-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .4;
  z-index: -1;
}

.mte-feature-section .container {
  z-index: 1;
}

.mte-feature-head {
  margin-bottom: 50px;
}

.mte-feature-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--themeColor);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mte-feature-title {
  max-width: 620px;
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 20px;
}

.mte-feature-title .highlight {
  color: var(--themeColor);
}

.mte-feature-subtext {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Feature Cards */
.mte-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mte-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.mte-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.mte-feature-card img {
  width: 70px;
  margin-bottom: 20px;
}

.mte-feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.mte-feature-card svg {
  width: 70px;
  height: 70px;
  /* margin-bottom: 20px; */
}

.mte-feature-card:hover svg {
  fill: var(--themeColor);
}

.mte-feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.mte-feature-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mte-about-btnss {
  padding-bottom: 10px;
}

.mte-about-btnss:hover {
  color: var(--themeColor);
}

.mte-about-btnss svg {
  width: 25px;
  height: 25px;
  rotate: 45deg;
}

/* Mobile */
@media (max-width: 768px) {
  .mte-feature-cards {
    grid-template-columns: 1fr;
  }

  .mte-feature-title {
    font-size: 1.8rem;
  }
}

/* ============================
   RMM Excellence Section
============================ */

.rmm_excellence-section {
  padding: 90px 0;
  position: relative;
  /* background: url(../images/bg/dotted-map-4.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  /* background: #f7f7f9; */
  z-index: 1;
}

.rmm_excellence-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/dotted-map-4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .6;
  z-index: -1;
}

.excellence-bg-top {
  position: absolute;
  bottom: -60px;
  right: 20px;
  width: 250px;
  height: 250px;
  z-index: -1;
}

.excellence-bg-bottom {
  position: absolute;
  top: -60px;
  left: -20px;
  width: 250px;
  height: 250px;
  z-index: -1;
}

.rmm_excellence-left {
  padding-right: 30px;
}

.rmm_excellence-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--themeColor);
  margin-bottom: 10px;
}

.rmm_excellence-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.rmm_excellence-title span {
  color: var(--themeColor);
}

.rmm_excellence-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.rmm_excellence-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--themeColor);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.rmm_excellence-btn:hover {
  background: #000;
}

/* ============================
   STATS GRID
============================ */

.rmm_stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.rmm_stat-box {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: 0.3s ease;
}

.rmm_stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.rmm_stat-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.rmm_stat-box p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .rmm_excellence-section {
    padding: 60px 0;
  }

  .rmm_stats-grid {
    grid-template-columns: 1fr;
  }

  .rmm_excellence-title {
    font-size: 1.8rem;
  }
}

/* Gallery Styles */
.event-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.event-gallery .gallery-item:hover {
  transform: scale(1.05);
}

.event-gallery .gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.mte-event-detail img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.gallery-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.gallery-close:hover,
.gallery-close:focus {
  color: #bbb;
}

@media only screen and (max-width: 768px) {
  .event-gallery .gallery-image {
    height: 200px;
  }
}

.mte-news-item-more {
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center;
  text-align: center; */
  gap: 20px;
  padding: 10px;
  border-bottom: 1px solid #ececec;
}

.recent-posts {
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 20px;
}

.mte-news-item-more h5 {
  font-size: 1rem;
}

.mte-news-item-more p {
  font-size: 0.9rem;
}

.mte-event-detail h2 {
  font-size: 1.3rem;
  font-weight: bold;
}

.mte-event-detail h4 {
  font-size: 1.3rem;
  font-weight: bold;
}

.event-description {
  font-size: 1rem;
}

.recent-postss {
  position: sticky;
}

.highlight {
  color: var(--themeColor);
}

/* MAIN SECTION */
.rmm_quality_section {
  padding: 80px 0;
  position: relative;
}

.quality-bg-top {
  position: absolute;
  bottom: 30px;
  left: 50px;
  width: 250px;
  height: 250px;
  z-index: -1;
}

.rmm_quality_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.rmm_quality_desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.rmm_quality_list {
  list-style: none;
  margin: 0%;
  padding: 0%;
}

.rmm_quality_list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
}

/* IMAGE BOX */
.rmm_quality_img_box {
  max-width: 420px;
  margin: auto;
  cursor: pointer;
}

.rmm_quality_img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}

.rmm_quality_img:hover {
  transform: scale(1.04);
}

/* POPUP OVERLAY */
.rmm_popup_overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rmm_popup_content img {
  width: 90%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.images-about-qualitys {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.images-about-qualitys img {
  width: 80px;
  height: 80px;
}

.rmm_popup_close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  padding: 10px 15px;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
  .rmm_quality_section {
    padding: 50px 0;
  }

  .rmm_quality_img {
    width: 100%;
    height: auto;
  }

  .rmm_quality_title {
    text-align: center;
  }

  .rmm_quality_desc,
  .rmm_quality_list {
    text-align: center;
  }

  .images-about-qualitys {
    display: flex;
    justify-content: center;
  }
}

/* ============================
   Excellence Section Wrapper
===============================*/
.rmm_excellence-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
}

.excellence-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}

/* ============================
   LEFT TEXT CONTENT
===============================*/
.rmm_excellence-left {
  padding-right: 20px;
}

.rmm_excellence-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.rmm_excellence-title span {
  color: var(--themeColor);
}

.rmm_excellence-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* ============================
   RIGHT STATS GRID
===============================*/
.rmm_stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.rmm_stat-box {
  padding: 25px 25px;
  border-left: 3px solid var(--themeColor);
  background: #fafafa;
  border-radius: 12px;
  transition: 0.3s ease;
}

.rmm_stat-box:hover {
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.rmm_stat-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.rmm_stat-box p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

/* ============================
   RESPONSIVE DESIGN
===============================*/
@media (max-width: 991px) {
  .rmm_excellence-section {
    padding: 60px 0;
  }

  .rmm_excellence-title {
    font-size: 2rem;
  }

  .rmm_stats-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .rmm_stats-grid {
    grid-template-columns: 1fr;
  }

  .excellence-bg-top {
    display: none;
  }
}

@media (max-width: 576px) {
  .rmm_excellence-title {
    font-size: 1.8rem;
  }
}

/* SECTION WRAPPER */
.rmm_vmv_section {
  padding: 0px 0 80px;
  text-align: center;
  background: #fff;
  position: relative;
}

.vmv-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  opacity: 0.45;
  user-select: none;
  pointer-events: none;
}

/* Tagline */
.rmm_vmv_tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--themeColor);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.rmm_vmv_title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.rmm_vmv_title span {
  color: var(--themeColor);
}

/* Subtext */
.rmm_vmv_subtext {
  max-width: 680px;
  margin: 15px auto 50px;
  color: #555;
  font-size: 16px;
}

/* LEFT SIDE */
.rmm_vmv_left {
  position: relative;
}

.rmm_vmv_main_img {
  width: 100%;
  max-height: 400px;
  border-radius: 18px;
  object-fit: cover;
}

/* RIGHT SIDE CARDS */
.rmm_vmv_card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 18px;
  text-align: left;
}

.rmm_vmv_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 77, 41, 0.068);
  color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
}

.rmm_vmv_icon svg {
  color: var(--themeColor);
  fill: var(--themeColor);
  width: 24px;
  height: 24px;
}

/* Titles */
.rmm_vmv_card h4 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 20px;
}

/* Paragraph text */
.rmm_vmv_card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rmm_vmv_title {
    font-size: 30px;
  }

  .rmm_vmv_section {
    text-align: left;
    padding: 50px 0;
  }

  .rmm_vmv_subtext {
    margin-bottom: 30px;
  }

  .rmm_vmv_award {
    left: 0;
    top: 0;
    transform: translateY(-50%);
  }
}

.rmm_infra_section {
  padding: 80px 0;
  background: #f8f9fb;
}

.rmm_infra_image img {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.rmm_infra_tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--themeColor);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 10px;
}

.rmm_infra_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.rmm_infra_title span {
  color: var(--themeColor);
}

.rmm_infra_desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Feature Grid */
.rmm_infra_features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.rmm_infra_feature_box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  width: 31%;
  min-width: 150px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.rmm_infra_feature_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.rmm_infra_feature_box h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--themeColor);
  margin-bottom: 6px;
}

.rmm_infra_feature_box p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rmm_infra_title {
    font-size: 30px;
  }

  .rmm_infra_features {
    gap: 15px;
  }

  .rmm_infra_feature_box {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .rmm_infra_feature_box {
    width: 100%;
  }
}

.breadcrumb-bg.infra-bg img {
  object-position: 20% 20%;
}

.mte-prod-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.mte-prod-popup.show {
  display: flex;
}

.mte-popup-overlay {
  position: absolute;
  inset: 0;
}

.mte-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  z-index: 100000;
  text-align: center;
}

.mte-popup-close {
  position: absolute;
  top: -60px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  background: var(--white-color);
  padding: 10px 15px;
  border-radius: 50%;
}

#mtePopupImg {
  max-width: 100%;
  max-height: 75vh;
  transition: transform .3s ease;
  cursor: zoom-in;
}

.mte-navss {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 100001;
}

.mte-navss.prev {
  left: -50px;
}

.mte-navss.next {
  right: -50px;
}

/* --- PRODUCT GRID SECTION --- */
.mte-products-grid-section {
  padding: 60px 0;
}

.mte-prod-grid-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.mte-prod-grid-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* IMAGE */
.mte-prod-grid-card img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mte-prod-grid-card:hover img {
  transform: scale(1.05);
}

/* PRODUCT TITLE (hidden since you don't use titles in popup) */
.mte-prod-grid-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: #222;
}

/* GRID GUTTER */
.mte-prod-detail-section .row {
  row-gap: 28px;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .mte-prod-grid-card img {
    max-height: 100%;
  }
}

@media (max-width: 576px) {
  .mte-prod-grid-card {
    padding: 12px;
  }

  .mte-prod-grid-card img {
    max-height: 100%;
  }
}

/* ================================
   INFRASTRUCTURE (ZIGâ€‘ZAG) SECTION
===================================*/

.rmm_infra_section {
  padding: 80px 0;
}

.rmm_infra_header {
  text-align: center;
  margin-bottom: 50px;
}

.rmm_infra_header h6 {
  color: var(--themeColor);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.rmm_infra_header h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.rmm_infra_header p {
  max-width: 700px;
  margin: 10px auto 0;
  color: #555;
}

/* --- ZIG ZAG CONTENT WRAPPER --- */
.rmm_infra_item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

.rmm_infra_item:last-child {
  border-bottom: none;
}

/* Reverse on even rows */
.rmm_infra_item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image */
.rmm_infra_img img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

/* Content */
.rmm_infra_content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.rmm_infra_content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.rmm_infra_content table tr {
  border-bottom: 1px solid #eaeaea;
}

.rmm_infra_content table td {
  padding: 10px 8px;
  font-size: 1rem;
}

.rmm_infra_content table td:first-child {
  font-weight: 600;
  width: 45%;
  color: #333;
}

.rmm_infra_content table td:last-child {
  color: #555;
}

/* Hover highlight */
.rmm_infra_item:hover {
  background: #fafafa;
  transition: 0.3s;
}

/* ========================
      RESPONSIVE
==========================*/

@media (max-width: 992px) {
  .rmm_infra_item {
    flex-direction: column !important;
    text-align: center;
  }

  .rmm_infra_img img {
    max-width: 100%;
  }

  .rmm_infra_content table td:first-child {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .rmm_infra_content h3 {
    font-size: 1.3rem;
  }

  .rmm_infra_item {
    padding: 25px 0;
  }
}

/* ================================
   INFRASTRUCTURE ZIGZAG SECTION
================================ */
.rmm_infra_section {
  padding: 80px 0;
}

.rmm_infra_header {
  text-align: center;
  margin-bottom: 50px;
}

.rmm_infra_header h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--themeColor);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.rmm_infra_header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rmm_infra_header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

/* Cards */
.rmm_infra_card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #e8e8e8;
}

.rmm_infra_card:last-child {
  border-bottom: none;
}

.rmm_infra_img img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
}

.rmm_cap_content .rmm_cap_name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Table */
.rmm_cap_table {
  width: 100%;
  border-collapse: collapse;
}

.rmm_cap_table tr td {
  padding: 12px;
  font-size: 15px;
  color: #333;
}

.rmm_cap_table tr td:first-child {
  font-weight: 600;
  width: 45%;
}

/* Zigzag effect */
.rmm_cap_card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 991px) {
  .rmm_infra_card {
    flex-direction: column !important;
    text-align: center;
  }

  .rmm_infra_img img {
    max-width: 100%;
  }

  .rmm_infra_content {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .rmm_infra_header h2 {
    font-size: 28px;
  }

  .rmm_infra_card {
    padding: 30px 0;
  }
}

.mte-news-item-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mte-desc-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mte-desc-limit p {
  margin: 0;
  /* avoid spacing issues */
}

.mte-tab-btn {
  background: transparent;
  border: 1px solid #ccc;
  /* Or use theme color var */
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mte-tab-btn:hover,
.mte-tab-btn.active {
  background: #000;
  /* Or theme primary color */
  color: #fff;
  border-color: #000;
}

/* =========================================
   CAREERS PAGE MODERN STYLES
   ========================================= */

.careers-section {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.bg-pattern {
  background-color: var(--rmm-bg-light);
  background-image: radial-gradient(var(--rmm-border-color) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* --- Hero & Info Cards --- */
.title-ext {
  font-size: 0.9rem;
  padding: 8px 16px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  font-weight: 600;
  background-color: rgba(89, 5, 0, 0.1);
  color: var(--primary);
}

.bg-primary-soft {
  background-color: rgba(89, 5, 0, 0.08) !important;
  color: var(--primary) !important;
}

.bg-success-soft {
  background-color: rgba(40, 167, 69, 0.1) !important;
  color: var(--success-color) !important;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.info-card-inner {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  font-size: 2rem;
  color: var(--themeColor);
  background: rgba(255, 121, 0, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.gradient-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
  border: 1px solid rgba(255, 121, 0, 0.1);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--body-color);
}

.benefit-item i {
  color: var(--success-color);
}

/* --- Modern Accordion --- */
.modern-accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 12px !important;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.modern-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.08);
}

.modern-accordion-button {
  background-color: #fff !important;
  color: var(--title-color) !important;
  font-weight: 600;
  padding: 24px 30px;
  font-size: 1.1rem;
  border: none;
  box-shadow: none !important;
}

.modern-accordion-button:not(.collapsed) {
  background-color: #fcfcfc !important;
  color: var(--primary) !important;
}

.modern-accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23590500'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.modern-accordion-button:not(.collapsed):after {
  transform: rotate(-180deg) scale(1.2);
}

.job-icon {
  width: 45px;
  height: 45px;
  background: var(--smoke-color2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.modern-accordion-body {
  padding: 0 30px 30px 30px;
  background-color: #fcfcfc;
}

/* --- Job Meta Tags --- */
.mte-job-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.mte-job-meta-item i {
  font-size: 1.5rem;
}

.job-description-text {
  color: var(--rmm-text-gray);
  line-height: 1.7;
}

/* --- Modal Styles --- */
.ShowcaseModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modern-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 10000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-close-custom {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--rmm-text-gray);
  cursor: pointer;
  transition: color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-close-custom:hover {
  color: var(--danger);
  background-color: rgba(0, 0, 0, 0.05);
}

.modal-title {
  font-weight: 700;
  color: var(--title-color);
}

/* --- Form Styles --- */
.modern-form-group {
  margin-bottom: 20px;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--title-color);
  font-size: 0.95rem;
}

.modern-input {
  border: 2px solid #eee;
  padding: 12px 15px;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fdfdfd;
  height: auto;
}

.input-group-text {
  background: #ffffff;
  border: 2px solid #eee;
  border-right: none;
  color: var(--gray-color);
  border-radius: 10px 0 0 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
}

.job-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.modern-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.1);
  background: #fff;
  outline: none;
}

.modern-input:focus+.input-group-text,
.input-group:focus-within .input-group-text {
  border-color: var(--themeColor);
  background: #fff;
  color: var(--themeColor);
}

.file-input {
  border-radius: 10px !important;
  padding: 10px;
}


.alert-modern {
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- General Application Section --- */
.bg-gradient-section {
  /* background: linear-gradient(135deg, var(--primary) 0%, #a15600 100%); */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--black-color);
}

.job-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.modern-job-form .modern-input {
  border: none;
  padding: 15px;
}

.modern-job-form .input-group-text {
  border: none;
}

.modern-job-form .form-group {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .careers-section {
    padding: 40px 0;
  }

  .modern-accordion-button {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .job-icon {
    display: none;
  }

  .modern-modal {
    padding: 25px;
    width: 95%;
    margin: 10px;
  }

  .info-card-inner {
    flex-direction: column;
    text-align: center;
  }

  .modern-input {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* ===============================
   ACCORDION CORE
================================ */
.rmm-accordion {
  max-width: 100%;
  border-top: 1px solid #e6e6e6;
}

.rmm-accordion-item {
  border-bottom: 1px solid #e6e6e6;
}

.rmm-accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.rmm-accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.rmm-accordion-item.active .rmm-accordion-header::after {
  content: "â€“";
}

/* BODY */
.rmm-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.rmm-accordion-body>.row {
  padding: 20px 0;
}

/* IMAGE */
.rmm_cap_img {
  width: 100%;
  border-radius: 8px;
}

/* TABLE */
.rmm_cap_table {
  width: 100%;
  border-collapse: collapse;
}

.rmm_cap_table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 767px) {
  .rmm-accordion-header {
    font-size: 1rem;
  }

  .rmm-accordion-body>.row {
    gap: 16px;
  }
}

/* ===============================
   INFRA SECTION â€“ UNIQUE DESIGN
================================ */

.rmm_infra_section {
  padding: 100px 0;
  background: #f8f9fb;
}

.rmm_infra_wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* MEDIA CARD */
.rmm_infra_media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.rmm_infra_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(0, 0, 0, 0.0),
      rgba(0, 0, 0, 0.25));
}

.rmm_infra_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT PANEL */
.rmm_infra_panel {
  position: relative;
  background: #ffffff;
  padding: 60px 56px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Accent Bar */
.rmm_infra_panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg, var(--themeColor), var(--themeColor));
  border-radius: 6px 0 0 6px;
}

.rmm_infra_tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--themeColor);
  margin-bottom: 16px;
}

.rmm_infra_title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.rmm_infra_title span {
  color: var(--themeColor);
}

.rmm_infra_desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* STATS */
.rmm_infra_stats {
  display: flex;
  gap: 32px;
}

.rmm_infra_stats div {
  display: flex;
  flex-direction: column;
}

.rmm_infra_stats strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
}

.rmm_infra_stats span {
  font-size: 0.85rem;
  color: #666;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .rmm_infra_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rmm_infra_panel {
    padding: 40px;
  }

  .rmm_infra_title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .rmm_infra_stats {
    flex-direction: column;
    gap: 20px;
  }

  .rmm_infra_panel {
    padding: 32px 28px;
  }
}

/* ===============================
   INFRA AUTO SCROLL GALLERY
================================ */

.rmm_infra_gallery_section {
  padding: 100px 0;
  background: var(--smoke-color2);
}

.rmm_infra_gallery_header {
  max-width: 420px;
  margin-bottom: 40px;
}

.rmm_infra_gallery_header h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.rmm_infra_gallery_header p {
  color: #555;
  font-size: 1rem;
}

/* ===============================
   SWIPER â€“ FIXED TILE SIZE
================================ */

.rmm_infra_swiper {
  width: 100%;
  height: 350px;
  /* lock height */
}

.rmm_infra_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* EACH TILE */
.rmm_infra_swiper .swiper-slide {
  height: 100%;
  /* fill swiper height */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  display: flex;
}

/* IMAGE FIT */
.rmm_infra_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crops uniformly */
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .rmm_infra_swiper {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .rmm_infra_gallery_section {
    padding: 70px 0;
  }

  .rmm_infra_swiper {
    height: 220px;
  }
}

/* ================================
   POPUP MODAL WRAPPER
================================ */
.ShowcaseModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 99999;
  display: none;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Form Layout */
.Formoutliner {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

/* ================================
   LEFT FORM â€“ CONTENT
================================ */
.contact-form {
  padding: 35px 28px;
  background: #fff;
}

.heading-bx .title-head {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.heading-bx .title-bottom {
  width: 55px;
  height: 4px;
  background: var(--ve-blue);
  border-radius: 2px;
  margin-top: 6px;
}

/* ================================
   INPUT STYLES
================================ */
.Formoutliner input,
.Formoutliner textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--black);
  transition: .25s ease;
  margin-bottom: 18px;
}

.Formoutliner input:focus,
.Formoutliner textarea:focus {
  border-color: var(--ve-blue);
  box-shadow: 0 0 0 3px rgba(0, 0, 102, 0.12);
  outline: none;
}

.Formoutliner textarea {
  min-height: 100px;
  resize: vertical;
}

/* ================================
   RIGHT SIDE INFO PANEL
================================ */
#EnquiryContactSection .cont-info {
  background: #f5f5f5;
  padding: 40px 28px;
  height: 100%;
  color: #fff;
  border-radius: 12px;
}

.main-img p {
  font-size: 1.2rem;
  color: #fff;
}

.popup-logo {
  width: 100%;
  /* background: #fff; */
  /* padding: 18px; */
  /* border-radius: 10px; */
}

.cont-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 20px 0;
}

.cont-info h6 {
  color: #000000;
}

.enquiry-info {
  padding: 0;
  margin: 0;
  list-style: none;
}

.enquiry-info li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.enquiry-info li i {
  font-size: 18px;
  color: #000000;
}

.enquiry-info li a,
.enquiry-info li span {
  font-size: 16px;
  color: #000000;
}

.enquiry-info li svg,
.bi-envelope-fill {
  fill: var(--black-color);
  width: 22px !important;
  height: 22px !important;
}

/* ================================
   CLOSE BUTTON (SVG or ICON)
================================ */
.close-icon {
  position: absolute;
  top: 20px;
  right: 22px;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.close-icon svg,
.close-icon i {
  width: 22px;
  height: 22px;
  color: var(--ve-blue);
}

/* ================================
   SUCCESS / ERROR BOX
================================ */
#success,
#error {
  display: none;
  padding: 12px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 15px;
}

#success {
  background: #d4edda;
  border: 1px solid #bcd5bf;
  color: #2f6a36;
}

#error {
  background: #f8d7da;
  border: 1px solid #e4b7bb;
  color: #842029;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  #EnquiryContactSection {
    display: none;
  }

  #EnquiryContactSection .cont-info {
    border-radius: 0;
    text-align: center;
  }

  .popup-logo {
    margin: 0 auto;
  }
}

.mte-nav a {
  text-decoration: none;
  font-size: 1.0rem;
  color: var(--white-color);
  font-weight: 600;
  transition: 0.2s;
}

.mte-nav a:hover,
.mte-nav a.active {
  color: #ffffff;
  font-weight: 800;
  position: relative;
}

.mte-nav a:hover:before,
.mte-nav a.active:before {
  position: absolute;
  content: '';
  border-bottom: solid 1px #fff;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-bottom: 25px;
}

/* Footer 2-Column Links */
.mte-footer-links-2col {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.mte-footer-links-2col li {
  width: 50%;
  margin-bottom: 10px;
}

/* ================= FOUNDER MESSAGE SECTION ================= */
.mte-founder-section {
  overflow: hidden;
  background: var(--primary);
}

.mte-founder-inner {
  display: flex;
  min-height: 480px;
}

/* LEFT: Slightly darker green panel for photo */
.mte-founder-photo-panel {
  flex: 0 0 40%;
  max-width: 40%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 60px 0;
  position: relative;
}

/* White-bordered card that rises from the bottom */
.mte-founder-img-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  padding: 10px 10px 0;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
}

.mte-founder-img-card img {
  width: 100%;
  min-height: 360px;
  display: block;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  object-position: top center;
}

/* RIGHT: Green content panel with diagonal left edge */
.mte-founder-content-panel {
  flex: 1;
  background: var(--primary);
  padding: 60px 80px 60px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Creates the angled/diagonal cut on the left edge */
  clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: -50px;
}

.mte-founder-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #f1c440;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mte-founder-name {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.1;
}

.mte-founder-title-tag {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 26px;
}

.mte-founder-quote {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.87);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 560px;
}

.mte-founder-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.mte-founder-btn {
  display: inline-block;
  background: #f1c440;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mte-founder-btn:hover {
  background: #dda600;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #1a1a1a;
}

.mte-founder-expertise {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 24px;
}

.mte-founder-exp-label {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.mte-founder-exp-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mte-founder-photo-panel {
    flex: 0 0 42%;
    max-width: 42%;
    padding: 40px 40px 0;
  }

  .mte-founder-content-panel {
    padding: 50px 50px 50px 80px;
  }

  .mte-founder-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mte-founder-inner {
    flex-direction: column;
  }

  .mte-founder-photo-panel {
    flex: none;
    max-width: 100%;
    padding: 40px 40px 0;
    min-height: 320px;
    justify-content: center;
  }

  .mte-founder-img-card {
    max-width: 260px;
  }

  .mte-founder-content-panel {
    clip-path: none;
    margin-left: 0;
    padding: 48px 32px;
  }

  .mte-founder-name {
    font-size: 1.85rem;
  }

  .mte-founder-quote {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mte-founder-content-panel {
    padding: 40px 20px;
  }

  .mte-founder-name {
    font-size: 1.6rem;
  }

  .mte-founder-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mte-founder-expertise {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 0;
    padding-top: 16px;
  }
}

/* ================= WORLD-CLASS FACILITIES SECTION ================= */
.mte-facilities-section {
  background: var(--white);
}

.mte-facility-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 380px;
  cursor: pointer;
}

.mte-facility-img {
  width: 100%;
  height: 100%;
}

.mte-facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mte-facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: left;
}

.mte-facility-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.mte-facility-subtitle {
  color: #f1c40f;
  /* Golden color as in reference */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* Hover Effects */
.mte-facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mte-facility-card:hover .mte-facility-img img {
  transform: scale(1.1);
}

.mte-facility-card:hover .mte-facility-title {
  color: #f1c40f;
}

@media (max-width: 991px) {
  .mte-facility-card {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .mte-facility-card {
    height: 280px;
  }
}

/* ==================== JOB DESCRIPTION DESIGN ==================== */

/* --- Container --- */
.design-job-descripiton {
  font-family: inherit;
  color: #333333;
  line-height: 1.8;
}

/* --- Position Title & Job Name --- */
.design-job-descripiton h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.design-job-descripiton h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.design-job-descripiton h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* --- Section Headings (from DB content: h5 > strong) --- */
.design-job-descripiton .job-description-html h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 166, 0, 0.15);
  display: inline-block;
  line-height: 1.5;
}

.design-job-descripiton .job-description-html h5 strong {
  font-weight: 700;
  color: #111111;
}

.design-job-descripiton h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* --- Paragraphs & Divs (text blocks from DB) --- */
.design-job-descripiton .job-description-html > div {
  font-size: 1rem;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.design-job-descripiton .job-description-html p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* --- Lists (ul/ol from DB content) --- */
.design-job-descripiton .job-description-html ul,
.design-job-descripiton .job-description-html ol {
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.design-job-descripiton .job-description-html ul li,
.design-job-descripiton .job-description-html ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  color: #444444;
  line-height: 1.75;
  transition: transform 0.2s ease;
}

.design-job-descripiton .job-description-html ul li:hover,
.design-job-descripiton .job-description-html ol li:hover {
  transform: translateX(4px);
}

/* Custom green checkmark bullet */
.design-job-descripiton .job-description-html ul li::before,
.design-job-descripiton .job-description-html ol li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00b046, #00a600);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 166, 0, 0.2);
  flex-shrink: 0;
}

/* --- Strong / Bold text --- */
.design-job-descripiton .job-description-html strong {
  font-weight: 700;
  color: #111111;
}

/* --- Line breaks (spacing control) --- */
.design-job-descripiton .job-description-html br {
  display: block;
  content: "";
  margin-top: 0.5rem;
}

/* --- Links inside description --- */
.design-job-descripiton .job-description-html a {
  color: #00a600;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 166, 0, 0.3);
  transition: all 0.3s ease;
}

.design-job-descripiton .job-description-html a:hover {
  color: #008f00;
  border-bottom-color: #008f00;
}

/* --- Job Description HTML container --- */
.design-job-descripiton .job-description-html {
  font-size: 1rem;
  line-height: 1.85;
  color: #555555;
}

/* --- Sidebar Card inside job detail --- */
.design-job-descripiton .job-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.design-job-descripiton .job-sidebar-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(0, 166, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.design-job-descripiton .job-sidebar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999999;
  margin-bottom: 2px;
}

.design-job-descripiton .job-sidebar-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* --- Apply Now Button --- */
.design-job-descripiton .btn-sidebar-apply {
  background: linear-gradient(135deg, #00b046, #00a600);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 166, 0, 0.2);
}

.design-job-descripiton .btn-sidebar-apply:hover {
  background: linear-gradient(135deg, #009b3e, #008f00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 166, 0, 0.35);
}

/* --- Share Job Section --- */
.design-job-descripiton .share-job-title {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999999;
}

.design-job-descripiton .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.design-job-descripiton .share-btn:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.design-job-descripiton .share-btn.whatsapp { background-color: #25d366; }
.design-job-descripiton .share-btn.email { background-color: #ea4335; }
.design-job-descripiton .share-btn.copy-link { background-color: #1a73e8; cursor: pointer; }

/* ==================== RESPONSIVE: JOB DESCRIPTION ==================== */
@media (max-width: 991px) {
  .design-job-descripiton h2 {
    font-size: 1.75rem;
  }

  .design-job-descripiton .job-sidebar-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .design-job-descripiton h2 {
    font-size: 1.5rem;
  }

  .design-job-descripiton h3 {
    font-size: 1.25rem;
  }

  .design-job-descripiton .job-description-html h5 {
    font-size: 1rem;
  }

  .design-job-descripiton .job-description-html ul li,
  .design-job-descripiton .job-description-html ol li {
    font-size: 0.92rem;
    padding-left: 26px;
  }

  .design-job-descripiton .job-description-html ul li::before,
  .design-job-descripiton .job-description-html ol li::before {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }
}

@media (max-width: 575px) {
  .design-job-descripiton h2 {
    font-size: 1.3rem;
  }

  .design-job-descripiton .job-description-html > div,
  .design-job-descripiton .job-description-html p {
    font-size: 0.93rem;
  }
}

/* ==================== AWARDS SECTION ==================== */
.mte-awards-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.mte-awards-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.mte-award-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    position: relative;
}
.mte-award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009639 0%, #10b981 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mte-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}
.mte-award-card:hover::before {
    opacity: 1;
}
.mte-award-img-wrapper {
    position: relative;
    margin: 1.5rem 1.5rem 0 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}
.mte-award-img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
    cursor: pointer;
}
.mte-award-card:hover .mte-award-img {
    transform: scale(1.06) rotate(1deg);
}
.mte-award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    cursor: pointer;
}
.mte-award-card:hover .mte-award-overlay {
    opacity: 1;
}
.mte-award-zoom {
    background: #ffffff;
    color: #009639;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
}
.mte-award-zoom:hover {
    transform: scale(1.1);
    background: #009639;
    color: #ffffff;
}
.mte-award-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.mte-award-badge {
    align-self: flex-start;
    background: rgba(0, 150, 57, 0.08);
    color: #009639;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 150, 57, 0.15);
}
.mte-award-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.mte-award-org {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mte-award-org::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}
.mte-award-description {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== AWARDS POPUP / LIGHTBOX ==================== */
.mte-award-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}
.mte-award-modal.open {
    display: flex;
    opacity: 1;
}
.mte-award-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mte-award-modal.open .mte-award-modal-content {
    transform: scale(1);
}
.mte-award-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}
.mte-award-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.mte-award-modal-close:hover {
    color: #10b981;
    transform: rotate(90deg);
}
.mte-award-modal-caption {
    margin-top: 1rem;
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
    .mte-award-img-wrapper {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .mte-award-img-wrapper {
        height: 230px;
        margin: 1rem 1rem 0 1rem;
    }
    .mte-award-info {
        padding: 1.25rem;
    }
    .mte-award-title {
        font-size: 1.15rem;
    }
    .mte-award-description {
        font-size: 0.85rem;
    }
    .mte-award-modal-close {
        top: -45px;
        right: 10px;
    }
}