@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.top-header {
  background-color: #2679be;
  color: #ffffff;
  font-size: 15px;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-header a {
  color: #ffffff;
  text-decoration: none;
}


/* Left side */
.th-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.th-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.th-contact-item i {
  font-size: 16px;
  color: #fff;
}

/* Right side */
.th-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.th-email {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.th-email i {
  font-size: 16px;
  color: #fff;
}

/* Social Icons */
.th-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.th-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  transition: background 0.3s ease;
}

/* Divider between email and social */
.th-divider {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  .top-header {
    padding: 8px 12px;
    /* justify-content: center; */
    gap: 0;
  }

  .th-left,
  .th-right {
    /* justify-content: center; */
    gap: 8px;
  }
}

/* Navbar */
.custom-navbar {
  background-color: transparent;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.logo img {
  margin: 7px 0;
  width: 165px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nav-links li {
  /* position: relative; */
}

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 15px;
  display: block;
}

ul.nav-links a:hover {
  color: #2679be;
}

/* Dropdowns */
.dropdown-menu {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  width: calc(100vw - 50px);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0;
  position: relative;
  background: #f4faff;
  max-width: 20%;
}

.dropdown-list a {
  padding: 15px 10px !important;
  font-size: 14px !important;
  color: #063e6d !important;
  font-weight: 500 !important;
}

.dropdown-list a i {
  margin-right: 5px;
  font-size: 18px;
}

.dropdown-list li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #e7f8ee;
}


.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  display: none;
  padding: 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  list-style: none;
}

.subdropdown-menu a {
  padding: 15px 10px !important;
  border-bottom: 1px solid #fff;
  color: #063e6d !important;
}

.subdropdown-menu a:hover {
  background: #e7f8ee;
}


.sub-subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #f4faff;
  display: none;
  flex-direction: column;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 9999;
}

.sub-subdropdown-menu a {
  padding: 15px 10px !important;
  color: #063e6d !important;
  border-bottom: 1px solid #fff;
}

.sub-subdropdown-menu a:hover {
  background: #e7f8ee;
}


.sub-sub-subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 0;
  list-style: none;
  min-width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 10000;
}

.sub-sub-subdropdown-menu a {
  padding: 15px 10px !important;
  color: #063e6d !important;
  border-bottom: 1px solid #fff;
}

.sub-sub-subdropdown-menu a:hover {
  background: #e7f8ee;
}

.sub-sub-sub-subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #f4faff;
  display: none;
  flex-direction: column;
  padding: 0;
  list-style: none;
  min-width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 10001;
}

.sub-sub-sub-subdropdown-menu a {
  padding: 12px 10px !important;
  color: #063e6d !important;
  border-bottom: 1px solid #fff;
}

.sub-sub-sub-subdropdown-menu a:hover {
  background: #e7f8ee;
}


/* === DESKTOP ONLY: Hover === */
@media (min-width: 992px) {
  .has-dropdown:hover>.dropdown-menu {
    display: flex;
  }

  .has-subdropdown:hover>.subdropdown-menu {
    display: flex;
  }

  .has-sub-subdropdown:hover>.sub-subdropdown-menu {
    display: flex;
  }

  .has-sub-sub-subdropdown:hover>.sub-sub-subdropdown-menu {
    display: flex;
  }

  .has-sub-sub-sub-subdropdown:hover>.sub-sub-sub-subdropdown-menu {
    display: flex;
  }

  .openmenu {
    display: flex;
  }

  .dropdown-list:has(.ep-menu:hover) .menu-wrapper .closenext .closelastmenu {
    display: none !important;
  }

  .contact-btn {
    background-color: #2679be;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    font-weight: 500 !important;
  }
}

/* === MOBILE === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #fff;
    width: 100%;
    transform: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown-menu a {
    padding: 10px 15px !important;
    font-size: 16px !important;
    border-bottom: 1px solid #ccc;
    color: #000 !important;
    font-weight: 400 !important;
  }

  .dropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .subdropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu a {
    padding: 10px 20px !important;
    border-bottom: 1px solid #333;
    color: #333 !important;
  }

  .sub-subdropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
  }

  .sub-subdropdown-menu.show {
    display: flex;
  }

  .sub-subdropdown-menu a {
    padding: 10px 25px !important;
    color: #000 !important;
  }

  .sub-sub-subdropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
  }

  .sub-sub-subdropdown-menu.show {
    display: flex;
  }

  .sub-sub-subdropdown-menu a {
    padding: 10px 30px !important;
    color: #000 !important;
  }

  .sub-sub-sub-subdropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border: none;
    border-radius: 0;
    width: 100%;
  }

  .sub-sub-sub-subdropdown-menu.show {
    display: flex;
  }

  .sub-sub-sub-subdropdown-menu a {
    padding: 10px 35px !important;
    color: #000 !important;
  }
}






/* hero section */

.tm-hero-wrapper {
  position: relative;
}

.tm-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e8eef8;
}

/* Dot grid left */
.tm-dots-left {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 130px;
  background-image: radial-gradient(circle, #8fa3bf 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
}

/* Dot grid right */
.tm-dots-right {
  position: absolute;
  right: 8px;
  bottom: 80px;
  width: 44px;
  height: 90px;
  background-image: radial-gradient(circle, #8fa3bf 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  opacity: 0.4;
  z-index: 4;
  pointer-events: none;
}

/* ===== LEFT CONTENT ===== */
.tm-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 70px 20px 150px 80px;
}

.tm-hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1bb76e;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tm-hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: #1bb76e;
  border-radius: 2px;
  flex-shrink: 0;
}

.tm-hero-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.22;
  color: #0d1e4c;
  margin-bottom: 20px;
}

.tm-hero-heading span {
  color: #1e4da1;
  display: block;
}

.tm-hero-desc {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 400px;
}

.tm-hero-tags-line {
  font-size: 15px;
  font-weight: 700;
  color: #0d1e4c;
  margin-bottom: 32px;
}

.tm-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1bb76e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 22px 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.tm-hero-btn:hover {
  background: #18a563;
}

.tm-btn-circle {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ===== RIGHT IMAGE AREA ===== */

.tm-hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}

/* The actual image clipped with SVG path for the concave-left-curve shape */
.tm-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  clip-path: url(#hero-img-clip);
}

/* Hidden SVG for clip-path definition */
.tm-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
}

/* ===== FEATURE CARDS ===== */
.tm-hero-features {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  width: calc(100% - 200px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09);
}

.tm-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  border-right: 1px solid #edf1f7;
}

.tm-feature-item:last-child {
  border-right: none;
}

.tm-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #dde6f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tm-feature-icon i {
  font-size: 20px;
  color: #1e4da1;
}

.tm-feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0d1e4c;
  margin-bottom: 4px;
  line-height: 1.3;
}

.tm-feature-text p {
  font-size: 12px;
  color: #8a93a6;
  margin: 0;
  line-height: 1.55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .tm-hero-content {
    width: 58%;
    padding: 40px 10px 40px 36px;
  }

  .tm-hero-image-wrap {
    width: 100%;
  }

  .tm-hero-heading {
    font-size: 28px;
  }

  .tm-feature-item {
    min-width: 48%;
    border-right: none;
    border-bottom: 1px solid #edf1f7;
  }
}

@media (max-width: 768px) {

  .tm-hero {
    flex-direction: column;
    min-height: auto;
  }

  .tm-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
  }

  .tm-hero-btn {
    padding: 12px 20px 12px 26px;
    /* font-size: 14px; */
  }

  .tm-hero-btn .tm-btn-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .tm-hero-content {
    width: 100%;
    padding: 36px 20px 30px;
  }

  .tm-hero-image-wrap {

    height: 100%;
    clip-path: none;
  }

  .tm-hero-image-wrap img {
    clip-path: none;
  }

  .tm-hero-heading {
    font-size: 24px;
  }

  .tm-hero-features {
    width: 100%;
    bottom: auto;
    box-shadow: none;
    position: relative;
  }

  .extright-border {
    border-right: 1px solid #d7e6ff;
  }

  .extbottom-border {
    border-bottom: 1px solid #d7e6ff;
  }

  .tm-feature-item {
    min-width: 100%;
    padding: 15px 12px;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid #edf1f7;
  }

  .tm-feature-item:last-child {
    border-bottom: none;
  }
}


/* title animation  */


:root {
  --bg: #07071a;
  --text: #eeeef8;
  --a1: #7c5cfc;
  --a2: #3ecfb2;
  --dur: 0.65s;
  --stagger: 38ms;
}

.reveal-title {
  font-weight: 800;
  line-height: 1.18;
  color: #2679be;
}

.char-word {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.22em;
}

.char-clip {
  display: inline-block;
  /* overflow: hidden; */
  vertical-align: bottom;
  line-height: 1.25;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translatex(90%) skewY(8deg);
  /* filter: blur(7px); */
  /* opacity: 0; */
  animation: charIn var(--dur) cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity, filter;
}

@keyframes charIn {
  0% {
    opacity: 0;
    transform: translatex(90%) skewY(8deg);
  }

  55% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
    transform: translateY(0%) skewY(0deg);
  }
}

/* end  */



/* about us section  */
.tm-hero-section {
  overflow: hidden;
  background: url(../img/home/abt-ban.png) no-repeat left center/contain;
}


.tm-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  text-align: center;
}

.tm-stat-badge span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

.tm-badge-300 {
  top: 28%;
  right: 12px;
}

.tm-badge-20 {
  top: 42%;
  right: 12px;
}

/* ===== RIGHT: Content Side ===== */
.tm-hero-right {
  flex: 1;
  padding: 44px 44px 36px 48px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

/* Brand tag */
.tm-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf7f1;
  color: #0d5c3b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 30px;
  width: fit-content;
  text-transform: uppercase;
}

.tm-brand-tag i {
  color: #1bb76e;
  font-size: 14px;
}

/* Heading */
.tm-hero-heading h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #0d1e4c;
}

.tm-hero-heading h1 span {
  color: #1bb76e;
  display: block;
}

.tm-heading-underline {
  width: 50px;
  height: 3px;
  background: #1bb76e;
  border-radius: 4px;
  margin-top: 8px;
}

/* Description */
.tm-hero-desc1 {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

/* Service Icons Row */
.tm-services-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tm-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  font-size: 12px;
  color: #334;
  font-weight: 500;
  max-width: 120px;
}

.tm-service-item i {
  font-size: 22px;
  color: #1bb76e;
}

/* Stats Cards Row */
.tm-stats-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tm-stat-card {
  flex: 1;
  min-width: 100px;
  flex-grow: 1;
  background: #f7fbf9;
  border: 1px solid #e0f0e9;
  border-radius: 14px;
  padding: 10px 6px 10px;
  text-align: center;
}

.tm-stat-card .tm-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: #fff;
}

.tm-stat-card:nth-child(1) .tm-stat-icon {
  background: #1e4da1;
}

.tm-stat-card:nth-child(2) .tm-stat-icon {
  background: #1bb76e;
}

.tm-stat-card:nth-child(3) .tm-stat-icon {
  background: #1e4da1;
}

.tm-stat-card:nth-child(4) .tm-stat-icon {
  background: #1bb76e;
}

.tm-stat-card .tm-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #1bb76e;
  line-height: 1;
}

.tm-stat-card:nth-child(1) .tm-stat-num,
.tm-stat-card:nth-child(3) .tm-stat-num {
  color: #1e4da1;
}

.tm-stat-card .tm-stat-label {
  font-size: 10px;
  color: #666;
  font-weight: 500;
  margin-top: 4px;
}

/* CTA Button */
.tm-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e4da1 0%, #1bb76e 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tm-cta-btn:hover {
  opacity: 0.9;
}

.tm-trust-text {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tm-trust-text i {
  color: #1bb76e;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .tm-hero-section {
    background: #fff;
    margin: 0;
    padding: 30px 0;
    border-radius: 0;
  }

  .tm-stat-card {
    min-width: 120px;
  }

  .tm-hero-right {
    padding: 0;
  }

  .tm-hero-heading h1 {
    font-size: 26px;
  }

  .tm-service-item {
    min-width: 160px;
  }

  .tm-stats-row {
    gap: 8px;
  }
}


.mpcls-section {
  background: linear-gradient(135deg, #0157e0 0%, #1aac55 100%);
  padding: 60px 0;
  overflow: hidden;
}

/* ── Owl Wrapper ── */
.mpcls-owl-wrapper {
  position: relative;
}

.mpcls-owl-wrapper::before,
.mpcls-owl-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.mpcls-logo-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 6px 10px;
  min-height: 250px;
  height: 100%;
  padding: 10px 20px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.mpcls-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d763b, #3fb064);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mpcls-logo-card:hover {
  border-color: #3fb064;
  background: rgba(245, 166, 35, 0.07);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mpcls-logo-card:hover::before {
  transform: scaleX(1);
}

.mpcls-logo-card img {
  /* aspect-ratio: 4/3; */
  object-fit: cover;
  max-width: 240px;
  transition: all 0.3s ease;
}

.mpcls-logo-card:hover img {
  opacity: 1;
}

.mpcls-logo-name {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  max-width: 220px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.mpcls-logo-card:hover .mpcls-logo-name {
  color: #3fb064;
}

/* ── Custom Arrows ── */
.mpcls-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  /* transform: translateY(-50%); */
  z-index: 10;
  align-items: center;
  gap: 14px;
  /* margin-top: 30px; */
}

.mpcls-nav button {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}

.mpcls-nav button:hover {
  background: #3fb064;
  border-color: #3fb064;
}

.mpcls-nav .owl-nav,
.mpcls-nav .owl-dots {
  display: none !important;
}

@media(max-width:768px) {

  .mpcls-section {
    padding: 40px 0 80px;
  }

  .mpcls-logo-card {
    min-height: 170px;
    padding: 10px 12px 12px;
  }


  .mpcls-logo-name {
    font-size: 12px;
  }

  .mpcls-nav {
    top: 105%;
    width: 100px;
    left: 50%;
    gap: 6px;
    transform: translateX(-50%);
  }
}











/* footer  */

.tmtf-footer {
  background: #0b67b2;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.tmtf-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.tmtf-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tmtf-logo-icon svg {
  width: 28px;
  height: 28px;
}

.tmtf-logo-name {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}

.tmtf-logo-name sup {
  font-size: 16px;
  color: #3fb064;
  font-weight: 900;
  top: -4px;
}

.tmtf-logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
}

.tmtf-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.6;
  margin-bottom: 28px;
}

.tmtf-socials {
  display: flex;
  gap: 10px;
}

.tmtf-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tmtf-social-btn:hover {
  background: #3fb064;
  border-color: #3fb064;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(63, 176, 100, 0.45);
}

/* ── Column Title ── */
.tmtf-col-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.tmtf-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2.5px;
  border-radius: 2px;
  background: #3fb064;
}

.tmtf-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tmtf-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.25s ease;
}

.tmtf-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Arrow badge */
.tmtf-arrow {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.tmtf-links li a:hover .tmtf-arrow {
  background: #3fb064;
  color: #ffffff;
}

/* ── Contact Info ── */
.tmtf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tmtf-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

.tmtf-contact-list li .tmtf-cicon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tmtf-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 50px 0 0;
}

.tmtf-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 -12px;
  padding: 18px 12px;
}

.tmtf-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.tmtf-copy span {
  color: #ffffff;
  font-weight: 600;
}

.tmtf-maintained {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.tmtf-maintained a {
  color: #3fb064;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.tmtf-maintained a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .tmtf-footer {
    padding: 50px 0 0;
  }

  .tmtf-desc {
    max-width: 100%;
  }

  .tmtf-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 50px;
  }
}



/* testimonial */

.mptst-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ── Dot grid deco top-right ── */
.mptst-dots-tr {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 160px;
  height: 130px;
  background-image: radial-gradient(circle, rgba(38, 121, 190, 0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.mptst-img-col {
  position: relative;
}

/* Light blue bg block behind image */
.mptst-img-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 88%;
  height: 94%;
  background: #ddeaf7;
  border-radius: 4px;
  z-index: 0;
}

.mptst-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  height: 520px;
}

.mptst-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blue triangle accent bottom-right of image */
.mptst-triangle {
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 90px 90px;
  border-color: transparent transparent #2679be transparent;
  z-index: 2;
}

/* Stars */
.mptst-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}

.mptst-stars i {
  color: #2679be;
  font-size: 20px;
}

/* Review text */
.mptst-review {
  font-size: 16px;
  font-style: italic;
  color: #2c2d2e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mptst-pro-icon {
  width: 55px;
  height: 55px;
  background: #c8dff4;
  color: #2679be;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

/* Client info */
.mptst-client-name {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 4px;
}

.mptst-client-company {
  font-size: 16px;
  color: #2f3031;
  margin-bottom: 0;
}

.mptst-section .owl-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.mptst-section .owl-dot span {
  display: block;
  width: 45px;
  height: 6px;
  border-radius: 3px;
  background: #c8dff4;
  transition: all 0.3s ease;
  margin: 0;
}

.mptst-section .owl-dot.active span {
  background: #2679be;
  width: 80px;
}

.mptst-section .owl-dot:hover span {
  background: #2679be;
}

.mptst-section .owl-nav {
  display: none;
}

@media (max-width: 991px) {
  .mptst-content-col {
    padding-left: 24px;
    padding-top: 40px;
  }

  .mptst-img-wrap {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .mptst-img-bg {
    display: none;
  }

  .mptst-content-col {
    padding-left: 0;
  }

  .mptst-section .owl-dot span {
    width: 24px;
  }

  .mptst-section .owl-dot.owl-dot.active span {
    width: 40px;
  }

  .mptst-img-wrap {
    height: 280px;
  }
}



/* contact form  */



/* ── Section ── */
.mpcf-section {
  background: #f0f4f9;
  padding: 90px 0;
}


/* ── Map ── */
.mpcf-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  box-shadow: 0 8px 32px rgba(11, 103, 178, 0.13);
}

.mpcf-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════
     FORM CARD
  ══════════════════════════ */

.mpcf-card-body {
  background: #ffffff;
  padding: 38px 40px 42px;
  border-radius: 20px;
  flex: 1;
}

/* ── Floating Field ── */
.mpfl-field {
  position: relative;
  margin-bottom: 20px;
}



/* ── Select Field ── */
.mpfl-select-field {
  position: relative;
}



.mpfl-select:hover {
  border-bottom-color: #94b8d8;
}

.mpfl-select:focus~.mpfl-bar {
  width: 100%;
}

/* Hide native arrow, show custom */
.mpfl-select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #aeb9c8;
  font-size: 12px;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mpfl-select:focus~.mpfl-select-arrow,
.mpfl-select:hover~.mpfl-select-arrow {
  color: #0b67b2;
}

/* Label always floated for select (since no :placeholder-shown trick) */
.mpfl-select-label {
  top: -8px;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  color: #aeb9c8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Label turns blue on focus or when a value is selected */
.mpfl-select:focus~.mpfl-select-label,
.mpfl-select.mpfl-selected~.mpfl-select-label {
  color: #0b67b2;
}

.mpfl-input,
.mpfl-select,
.mpfl-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #d1dce8;
  padding: 10px 0 10px;
  font-size: 15px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #0d1b2e;
  outline: none;
  display: block;
  transition: border-color 0.25s ease;
  caret-color: #0b67b2;
}

.mpfl-textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.65;
  overflow: hidden;
}

.mpfl-input:hover,
.mpfl-select:hover,
.mpfl-textarea:hover {
  border-bottom-color: #94b8d8;
}

.mpfl-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0b67b2;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mpfl-input:focus~.mpfl-bar,
.mpfl-select:focus~.mpfl-bar,
.mpfl-textarea:focus~.mpfl-bar {
  width: 100%;
}

/* Floating label */
.mpfl-label {
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #aeb9c8;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left top;
}

/* Label floats up when focused or filled */
.mpfl-input:focus~.mpfl-label,
.mpfl-input:not(:placeholder-shown)~.mpfl-label,
.mpfl-select:focus~.mpfl-label,
.mpfl-select.mpfl-selected~.mpfl-label,
.mpfl-textarea:focus~.mpfl-label,
.mpfl-textarea:not(:placeholder-shown)~.mpfl-label {
  top: -8px;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  color: #0b67b2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mpfl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Submit Button ── */
.mpfl-btn {
  width: 100%;
  padding: 16px;
  background: #0b67b2;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.mpfl-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}

.mpfl-btn:hover::before {
  left: 150%;
}

.mpfl-btn:hover {
  background: #0952a0;
  box-shadow: 0 8px 28px rgba(11, 103, 178, 0.38);
  transform: translateY(-2px);
}


.mpfl-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.mpfl-btn:hover .mpfl-btn-icon {
  transform: translateX(4px);
}

.mpfl-btn.mpfl-sent {
  background: #e8f4ec;
  color: #2e9e5b;
  border: 1.5px solid #a8d9b8;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* Privacy note */
.mpcf-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: #666a70;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
}

.mpcf-privacy i {
  color: #3fb064;
  font-size: 11px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .mpcf-map-wrap {
    min-height: 300px;
    height: 300px;
  }

  .mpcf-card-top {
    padding: 28px 28px 22px;
  }

  .mpcf-card-body {
    padding: 28px 28px 32px;
  }
}

@media (max-width: 767px) {
  .mpcf-map-wrap {
    min-height: 240px;
    height: 240px;
  }

  .mpfl-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mpcf-card-title {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .mpcf-card-top {
    padding: 22px 18px 18px;
  }

  .mpcf-card-body {
    padding: 22px 18px 26px;
  }
}



/* logo section  */

.mpcl-section {
  background: #f6f6f6;
  padding: 60px 0;
}

.mpcl-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1.5px solid #f0f0f0;
  border-left: 1.5px solid #f0f0f0;
  border-radius: 16px;
  overflow: hidden;
}

.mpcl-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  border-right: 1.5px solid #f0f0f0;
  border-bottom: 1.5px solid #f0f0f0;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 110px;
}

.mpcl-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2679be, #5ca9e0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mpcl-logo-card:hover {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px #5ca9e0;
  z-index: 1;
}

.mpcl-logo-card:hover::before {
  transform: scaleX(1);
}

.mpcl-logo-card img {
  max-width: 150px;
  object-fit: contain;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.mpcl-logo-card:hover img {
  opacity: 1;
  transform: scale(1.07);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .mpcl-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .mpcl-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .mpcl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* speciality */


.mpsp-section {
  background: #f4f7fb;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* ── Decorative Dots ── */
.mpsp-dots-deco {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(38, 121, 190, 0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.mpsp-dots-deco-2 {
  position: absolute;
  bottom: 60px;
  left: 20px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(63, 176, 100, 0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

/* ── Header ── */
.mpsp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #3fb064;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mpsp-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: #3fb064;
  border-radius: 2px;
}

.mpsp-heading {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #1a2235;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 1000px;
}

.mpsp-heading span {
  color: #2679be;
}

/* ── Carousel Outer ── */
.mpsp-carousel-outer {
  position: relative;
  padding: 0
}

/* ── Side Arrows ── */
.mpsp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color: #2679be;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 10px rgba(38, 121, 190, 0.1);
}

.mpsp-arrow:hover {
  background: #2679be;
  border-color: #2679be;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(38, 121, 190, 0.3);
}

.mpsp-arrow.mpsp-prev {
  left: -50px;
}

.mpsp-arrow.mpsp-next {
  right: -50px;
}

.mpsp-carousel-outer .owl-nav,
.mpsp-carousel-outer .owl-dots {
  display: none !important;
}

@media(max-width:768px) {
  .mpsp-arrow.mpsp-prev {
    left: -10px;
  }

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

/* ── Card ── */
.mpsp-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px 20px 25px;
  /* margin: 8px; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Gradient top bar on hover */
.mpsp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2679be, #3fb064);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mpsp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(38, 121, 190, 0.12);
  border-color: rgba(38, 121, 190, 0.2);
}

.mpsp-card:hover::before {
  transform: scaleX(1);
}

/* ── Odd Cards (Blue) ── */
.mpsp-card-num-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #e8f2fb;
  margin-bottom: 16px;
}

.mpsp-card-num {
  font-size: 17px;
  font-weight: 900;
  color: #2679be;
  line-height: 1;
  font-style: italic;
}

.mpsp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #2679be;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: gap 0.3s, opacity 0.3s;
}

.mpsp-card-link:hover {
  gap: 11px;
  opacity: 0.75;
}

/* ── Even Cards (Green) ── */
.mpsp-card.mpsp-even .mpsp-card-num-wrap {
  background: #e8f7ed;
}

.mpsp-card.mpsp-even .mpsp-card-num {
  color: #3fb064;
}

.mpsp-card.mpsp-even .mpsp-card-link {
  color: #3fb064;
}

/* ── Shared Card Content ── */
.mpsp-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2235;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.mpsp-card-text {
  font-size: 16px;
  color: #272727;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* ── Custom Dots ── */
.mpsp-custom-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.mpsp-dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.mpsp-dot.active {
  background: linear-gradient(90deg, #2679be, #3fb064);
  width: 42px;
}

/* ── Responsive Visibility ── */
@media (max-width: 991px) {
  .mpsp-desktop-slide {
    display: none !important;
  }

  .mpsp-mobile-items {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .mpsp-desktop-slide {
    display: block !important;
  }

  .mpsp-mobile-items {
    display: none !important;
  }
}



.quicksnap {
  background: #ffffff;
  padding: 22px 12px 20px;
  border-radius: 8px;
  position: relative;
}

.quicksnap-head {
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #3fb064;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.quicksnap>ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.quicksnap>ul>li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  color: #333;
  display: flex;
  padding: 6px 0;
  border-bottom: 2px solid #f1f1f1;
  align-items: center;
  position: relative;
}

.quicksnap>ul>li:last-child {
  border-bottom: none;
}

.quicksnap>ul>li i {
  margin-right: 8px;
  color: #3fb064;
  font-size: 16px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: 2px solid #3fb064;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


@media (max-width: 480px) {

  .quicksnap {
    padding: 30px 16px 16px;
  }

  .quicksnap-head {
    font-size: 20px;
    padding: 10px 20px;
  }

  .quicksnap>ul>li {
    font-size: 14px;
    padding: 12px 0;
  }

  .quicksnap>ul>li i {
    font-size: 18px;
    height: 46px;
    width: 46px;
  }
}


/* gallery */


/* ── Grid ── */
.mpgal-grid {
  columns: 5 180px;
  column-gap: 12px;
}

.mpgal-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  margin-bottom: 12px;
  break-inside: avoid;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mpgal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11, 103, 178, 0.2);
}

.mpgal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mpgal-item:hover img {
  transform: scale(1.05);
}

.mpgal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 103, 178, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpgal-item:hover .mpgal-overlay {
  opacity: 1;
}

.mpgal-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.mpgal-item:hover .mpgal-overlay-icon {
  background: #ffffff;
  color: #0b67b2;
  transform: scale(1.1);
}

/* ── Lightbox ── */
.mpgal-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 36, 0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.mpgal-lightbox.active {
  display: flex;
}

.mpgal-lb-inner {
  position: relative;
  max-width: 900px;
  width: 92%;
  animation: mpgalIn 0.3s ease;
}

@keyframes mpgalIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mpgal-lb-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.mpgal-lb-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.mpgal-lb-close:hover {
  background: #0b67b2;
  border-color: #0b67b2;
}

.mpgal-lb-prev,
.mpgal-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mpgal-lb-prev {
  left: -60px;
}

.mpgal-lb-next {
  right: -60px;
}

.mpgal-lb-prev:hover,
.mpgal-lb-next:hover {
  background: #0b67b2;
  border-color: #0b67b2;
}

.mpgal-lb-counter {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

/* Thumbnail strip */
.mpgal-lb-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.mpgal-lb-thumb {
  width: 52px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mpgal-lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpgal-lb-thumb.active {
  opacity: 1;
  border-color: #0b67b2;
}

.mpgal-lb-thumb:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .mpgal-grid {
    columns: 2 160px;
  }

  .mpgal-lb-prev {
    left: 6px;
    z-index: 2;
  }

  .mpgal-lb-next {
    right: 6px;
    z-index: 2;
  }

  .mpgal-lb-thumbs {
    display: none;
  }
}


/* faq  */


.mpfq-section {
  background: #f4f7fb;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mpfq-dots-deco {
  position: absolute;
  top: 50px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(38, 121, 190, 0.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.mpfq-dots-deco-2 {
  position: absolute;
  bottom: 50px;
  left: 20px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(63, 176, 100, 0.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

/* ── Accordion ── */
.mpfq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpfq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mpfq-item.mpfq-open {
  border-color: rgba(38, 121, 190, 0.3);
  box-shadow: 0 8px 28px rgba(38, 121, 190, 0.1);
}

.mpfq-item.mpfq-even.mpfq-open {
  border-color: rgba(63, 176, 100, 0.3);
  box-shadow: 0 8px 28px rgba(63, 176, 100, 0.1);
}

.mpfq-item::before {
  content: '';
  display: block;
  height: 0;
  background: linear-gradient(90deg, #2679be, #3fb064);
  transition: height 0.3s ease;
}

.mpfq-item.mpfq-open::before {
  height: 3px;
}

/* Question Row */
.mpfq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s ease;
}

.mpfq-question:hover {
  background: #f8fafc;
}

.mpfq-q-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mpfq-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e8f2fb;
  color: #2679be;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-style: italic;
}

.mpfq-item.mpfq-even .mpfq-num {
  background: #e8f7ed;
  color: #3fb064;
}

.mpfq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a2235;
  line-height: 1.45;
}

/* Icon */
.mpfq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: #2679be;
  font-size: 13px;
}

.mpfq-item.mpfq-open .mpfq-icon {
  background: #2679be;
  border-color: #2679be;
  color: #ffffff;
  transform: rotate(45deg);
}

.mpfq-item.mpfq-even.mpfq-open .mpfq-icon {
  background: #3fb064;
  border-color: #3fb064;
  color: #ffffff;
}

/* Answer */
.mpfq-answer {
  display: none;
  padding: 0 24px 22px 76px;
}

.mpfq-answer p {
  font-size: 15px;
  color: #333;
  line-height: 1.85;
  margin: 0;
  font-weight: 500;
  border-top: 1px solid #f0f4f8;
  padding-top: 16px;
}

@media (max-width: 767px) {
  .mpfq-answer {
    padding: 0 16px 18px 56px;
  }

  .mpfq-q-text {
    font-size: 14px;
  }

  .mpfq-question {
    padding: 16px 18px;
  }
}



/* contact  */


.tmt-contact {
  background: #f8fafd;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.tmt-hero {
  background: #2679be;
  padding: 50px 0 45px;
  position: relative;
  overflow: hidden;
}

.tmt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(11, 103, 178, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(59, 158, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* dot grid */
.tmt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tmt-hero-content {
  position: relative;
  z-index: 2;
}

.tmt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 158, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tmt-hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: tmtPulse 1.8s ease-in-out infinite;
}

@keyframes tmtPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.tmt-hero-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* .tmt-hero-title span {
  background: linear-gradient(90deg, #3b9eff 0%, #63d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.tmt-cards-row {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.tmt-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  height: 100%;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(11, 103, 178, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.tmt-info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b67b2, #3b9eff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 2px 2px 0 0;
}

.tmt-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), 0 20px 48px rgba(11, 103, 178, 0.14);
}

.tmt-info-card:hover::after {
  transform: scaleX(1);
}

.tmt-ic-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #eaf2fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0b67b2;
  flex-shrink: 0;
  transition: all 0.28s ease;
}

.tmt-info-card:hover .tmt-ic-icon {
  background: #0b67b2;
  color: #ffffff;
}


.tmt-ic-title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 6px;
}

.tmt-ic-val {
  font-size: 15px;
  color: #1f1f1f;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.tmt-ic-val:hover {
  color: #0b67b2;
}

/* ══════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════ */
.tmt-main {
  padding: 64px 0 90px;
  background: #f8fafd;
}

/* ── LEFT PANEL ── */
.tmt-left-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.3;
  margin-bottom: 14px;
}

.tmt-left-title span {
  color: #0b67b2;
}

.tmt-left-text {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Hours */
.tmt-hours {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 2px 8px rgba(11, 103, 178, 0.05), 0 8px 24px rgba(11, 103, 178, 0.07);
  margin-bottom: 28px;
}

.tmt-hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0d1b2e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.tmt-hours-head i {
  color: #0b67b2;
  font-size: 14px;
}

.tmt-hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #f0f4f8;
  font-size: 13.5px;
}

.tmt-hr:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tmt-hr-day {
  color: #475569;
  font-weight: 500;
}

.tmt-badge-open {
  background: #e6f7ee;
  color: #2e9e5b;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
}

.tmt-badge-closed {
  background: #fdeaea;
  color: #e05252;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
}

/* Socials */
.tmt-social-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.tmt-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tmt-soc {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid #e2eaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(11, 103, 178, 0.05);
}

.tmt-soc:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.tmt-soc.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.tmt-soc.tw:hover {
  background: #000000;
  border-color: #000000;
}

.tmt-soc.li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.tmt-soc.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
}

.tmt-soc.pt:hover {
  background: #e60023;
  border-color: #e60023;
}

@media (max-width: 991px) {
  .tmt-hero {
    padding: 56px 0;
  }

}

@media (max-width: 480px) {
  .tmt-stat-pill {
    flex: 1 1 100%;
  }

}







/* ══════════════════════════════════
   ABOUT US — TACIT MEDTEK
══════════════════════════════════ */
.tmt-about-section {
  background: #f4f7fb;
  padding: 0;
}

/* ── SECTION TAGS & HEADINGS ── */
.tmt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #dbffea;
  color: #2e9e5b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.tmt-section-tag i {
  font-size: 10px;
  color: #3fb064;
}

.tmt-section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.25;
  margin-bottom: 14px;
}

.tmt-section-heading span {
  color: #0b67b2;
}

.tmt-divider-line {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #0b67b2, #3fb064);
  border-radius: 4px;
  margin-bottom: 22px;
}

.tmt-section-text {
  font-size: 16px;
  color: #242424;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  text-align: justify;
}


.tmt-check-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.tmt-check-list>li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  font-weight: 500;
  color: #243447;
  line-height: 1.6;
}

.tmt-check-list>li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f8ee;
  border: 1px solid #bfe6cc;
  color: #2e9e5b;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


.tmt-center-head {
  text-align: center;
  margin-bottom: 12px;
}

.tmt-center-head .tmt-section-tag {
  justify-content: center;
}

.tmt-center-divider {
  margin: 0 auto 10px;
}

/* ══════════════════════════════════
   ABOUT BODY
══════════════════════════════════ */
.tmt-about-body {
  padding: 80px 0 60px;
  background: #f4f7fb;
}

.tmt-presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tmt-presence-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #d4e6f6;
  color: #0b67b2;
  font-size: 12.5px;
  font-weight: 600;

  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.tmt-presence-pill:hover {
  background: #0b67b2;
  color: #ffffff;
  border-color: #0b67b2;
}

.tmt-presence-pill i {
  font-size: 11px;
  color: #e66655;
}

.tmt-presence-pill:hover i {
  color: #ffffff;
}

/* ══════════════════════════════════
   VISION & MISSION
══════════════════════════════════ */
.tmt-vm-section {
  padding: 0 0 80px;
  background: #f4f7fb;
}

.tmt-vm-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 20px;
  height: 100%;
  border: 1px solid #e2edf7;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tmt-vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}

.tmt-vm-card.tmt-vision::before {
  background: linear-gradient(90deg, #0b67b2, #5bc4f5);
}

.tmt-vm-card.tmt-mission::before {
  background: linear-gradient(90deg, #3fb064, #a8e6be);
}

.tmt-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 103, 178, 0.1);
}

.tmt-vm-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.tmt-vision .tmt-vm-icon {
  background: #e8f3fd;
  color: #0b67b2;
}

.tmt-mission .tmt-vm-icon {
  background: #e8f8ee;
  color: #3fb064;
}

.tmt-vm-title {

  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 0;
}


/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.tmt-why-section {
  padding: 60px 0;
  background: #ffffff;
}

.tmt-why-item {
  background: #f4f7fb;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #e2edf7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tmt-why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b67b2, #3fb064);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 16px 16px;
}

.tmt-why-item:hover::after {
  transform: scaleX(1);
}

.tmt-why-item:hover {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(11, 103, 178, 0.1);
  transform: translateY(-3px);
}

.tmt-why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b67b2, #346da5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.tmt-why-item:hover .tmt-why-icon {
  transform: scale(1.08) rotate(-4deg);
}

/* ══════════════════════════════════
   ENQUIRE + BROCHURE + HELP
══════════════════════════════════ */
.tmt-cta-section {
  padding: 80px 0;
  background: #f4f7fb;
}

.tmt-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991px) {
  .tmt-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* Enquire Panel */
.tmt-enq-panel {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2edf7;
  grid-column: span 2;
}

@media (max-width: 991px) {
  .tmt-enq-panel {
    grid-column: span 1;
  }
}

.tmt-enq-head {
  background: linear-gradient(135deg, #0b1e3d, #0b67b2);
  padding: 28px 32px;
}

.tmt-enq-head-title {

  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.tmt-enq-head-sub {

  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Side Column */
.tmt-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Help Card */
.tmt-help-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #e2edf7;
  flex: 1;
}

.tmt-help-title {

  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1b2e;
  margin-bottom: 6px;
}

.tmt-help-sub {

  font-size: 13px;
  color: #6b7a8d;
  margin-bottom: 20px;
  line-height: 1.65;
}

.tmt-help-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4f9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tmt-help-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tmt-help-item:hover .tmt-help-item-icon {
  background: #0b67b2;
  color: #ffffff;
}

.tmt-help-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8f3fd;
  color: #0b67b2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tmt-help-item-text strong {
  display: block;

  font-size: 13px;
  font-weight: 600;
  color: #0d1b2e;
}

.tmt-help-item-text span {

  font-size: 12px;
  color: #8898a8;
}