/* =========================================================
   MTLS — MINI TRANS LOGISYS SERVICES
   Core Stylesheet
   Author: MTLS Web Team
   Notes: Built on top of Bootstrap 5 grid & components.
   ========================================================= */

/* -----------------------------------------------------------
   1. ROOT VARIABLES
   ----------------------------------------------------------- */
:root {
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Brand Colors (derived from MTLS logo blues, extended with a warm accent) */
  --color-primary: #0f2c6b;        /* deep navy */
  --color-primary-dark: #081a45;
  --color-primary-light: #2f4cdd;  /* royal blue */
  --color-primary-tint: #eef1fc;   /* very light navy tint for backgrounds */

  --color-accent: #ff7a29;         /* amber / orange for CTAs */
  --color-accent-dark: #e0631a;
  --color-accent-tint: #fff1e6;

  --color-teal: #0aa3a3;           /* secondary accent */

  --color-dark: #0a1224;
  --color-heading: #101a33;
  --color-body: #5b6472;
  --color-muted: #8891a2;
  --color-light-bg: #f5f7fb;
  --color-white: #ffffff;
  --color-border: #e7eaf2;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(15, 44, 107, 0.07);
  --shadow-md: 0 12px 30px rgba(15, 44, 107, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 44, 107, 0.16);
  --shadow-accent: 0 14px 30px rgba(255, 122, 41, 0.28);

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  /* Layout */
  --container-max: 1320px;
  --header-height: 92px;
}

/* -----------------------------------------------------------
   2. BASE / RESET
   ----------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.75;
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 0;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-primary-light);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font-family: var(--font-body);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

.container-xl-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* -----------------------------------------------------------
   3. UTILITIES
   ----------------------------------------------------------- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.section-padding-top { padding-top: 100px; }
.section-padding-bottom { padding-bottom: 100px; }

@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .section-padding-top { padding-top: 70px; }
  .section-padding-bottom { padding-bottom: 70px; }
}

.bg-light-soft { background-color: var(--color-light-bg); }
.bg-primary-soft { background-color: var(--color-primary-tint); }
.bg-navy { background-color: var(--color-primary); }
.bg-navy-dark { background-color: var(--color-primary-dark); }
.text-navy { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-teal { color: var(--color-teal) !important; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.rounded-xxl { border-radius: var(--radius-xl) !important; }
.shadow-soft { box-shadow: var(--shadow-md); }
.overflow-hidden-radius { overflow: hidden; border-radius: var(--radius-lg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin-bottom: 18px;
}

.section-title p {
  font-size: 1.05rem;
  max-width: 640px;
}

.section-title.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-title.on-dark h2,
.section-title.on-dark p {
  color: var(--color-white);
}

.section-title.on-dark p {
  opacity: 0.8;
}

/* Glassmorphism helper */
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
}

/* -----------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------- */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  transition: var(--transition);
  border: none;
  position: relative;
}

.btn-mtls-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}
.btn-mtls-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(255, 122, 41, 0.34);
}

.btn-mtls-navy {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-mtls-navy:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-mtls-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}
.btn-mtls-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-mtls-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-mtls-outline-light:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.btn-sm-pill {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-icon-circle:hover {
  transform: rotate(45deg);
  color: var(--color-white);
}

/* -----------------------------------------------------------
   5. TOP BAR
   ----------------------------------------------------------- */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar a:hover {
  color: var(--color-accent);
}

.topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 26px;
}

.topbar .topbar-item i {
  color: var(--color-accent);
  font-size: 15px;
}

.topbar-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  color: var(--color-white);
  font-size: 13px;
}

.topbar-socials a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* -----------------------------------------------------------
   6. HEADER / NAVIGATION
   ----------------------------------------------------------- */
.site-header {
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(16, 26, 51, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: 54px;
  width: auto;
}

.main-nav .navbar-nav {
  gap: 4px;
}

.main-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-heading);
  padding: 12px 16px !important;
  position: relative;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-primary-light);
}

.main-nav .nav-item.dropdown > .nav-link::after {
  content: '\f282';
  font-family: 'bootstrap-icons';
  border: none;
  font-size: 11px;
  margin-left: 5px;
  vertical-align: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-heading);
  transition: var(--transition-fast);
}

.header-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Mega Menu */
.mega-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  margin-top: 14px !important;
}

.mega-menu.dropdown-menu-wide {
  min-width: 720px;
}

.mega-menu-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--color-heading);
  font-weight: 500;
  font-size: 14.5px;
}

.mega-menu-link:hover {
  background: var(--color-primary-tint);
  color: var(--color-primary-light);
  transform: translateX(4px);
}

.mega-menu-link i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.mega-menu-link:hover i {
  background: var(--color-accent);
  color: var(--color-white);
}

.mega-menu-promo {
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 36, 0.96);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay .search-box {
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
}

.search-overlay input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: clamp(24px, 5vw, 42px);
  font-family: var(--font-heading);
  padding: 12px 0;
}

.search-overlay input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.search-overlay input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--color-white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------------------------------------
   7. HERO SLIDER
   ----------------------------------------------------------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.hero-slide {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 20, 45, 0.92) 0%, rgba(8, 20, 45, 0.72) 45%, rgba(8, 20, 45, 0.35) 100%);
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 680px;
}

.hero-slide .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-slide .hero-badge i { color: var(--color-accent); }

.hero-slide h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  margin-bottom: 22px;
}

.hero-slide h1 span { color: var(--color-accent); }

.hero-slide p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-slider .swiper-pagination,
.hero-slider .slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition: var(--transition-fast);
}

.slider-dots button.active {
  background: var(--color-accent);
  width: 50px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.hero-quick-form {
  position: relative;
  z-index: 2;
  margin-top: -78px;
}

/* Floating quick-quote strip below hero */
.quick-strip {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.quick-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quick-strip-item i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.quick-strip-item h6 {
  font-size: 14px;
  margin-bottom: 3px;
}

.quick-strip-item span {
  font-size: 13.5px;
  color: var(--color-muted);
}

/* -----------------------------------------------------------
   8. BREADCRUMB / INNER PAGE BANNER
   ----------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 180px 0 90px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 20, 45, 0.93), rgba(15, 44, 107, 0.86));
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.page-banner-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb-nav a:hover { color: var(--color-accent); }
.breadcrumb-nav .sep { opacity: 0.5; }
.breadcrumb-nav .current { color: var(--color-accent); }

/* -----------------------------------------------------------
   9. CARDS
   ----------------------------------------------------------- */

/* Service Card */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  z-index: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.service-card .service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-border);
  z-index: 1;
}

.service-card:hover .service-num { color: rgba(255,255,255,.3); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-card:hover h3,
.service-card:hover p { color: var(--color-white); }
.service-card:hover p { opacity: 0.85; }

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 10px;
}

.service-card:hover .service-link { color: var(--color-white); }
.service-card .service-link i { transition: var(--transition-fast); }
.service-card:hover .service-link i { transform: translateX(6px); }

/* Industry Card */
.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 320px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover img { transform: scale(1.12); }

.industry-card .industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 33, 0.92) 5%, rgba(8, 15, 33, 0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

.industry-card h4 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.industry-card .industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Stat / Counter Card */
.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-card .stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.stat-card .counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.stat-card .counter-suffix {
  font-size: 1.6rem;
  color: var(--color-accent);
}

.stat-card .stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 15px;
  margin-top: 6px;
}

/* Process / How We Work Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.process-step .process-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--color-primary);
  transition: var(--transition);
  background: var(--color-white);
}

.process-step:hover .process-num {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.08) rotate(6deg);
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 12px; }

/* Value / Feature Card (Mission Vision Values) */
.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-accent);
  transform: translateY(-6px);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 42px;
  color: var(--color-primary-tint);
  position: absolute;
  top: 24px;
  right: 28px;
}

.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.testimonial-card .client-info img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .client-info h6 { margin-bottom: 2px; font-size: 15px; }
.testimonial-card .client-info span { font-size: 13px; color: var(--color-muted); }

/* News / Blog Card */
.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }

.news-card .news-img { position: relative; overflow: hidden; height: 220px; }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-img img { transform: scale(1.1); }

.news-card .news-date-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.news-card .news-date-badge .day { font-size: 18px; font-weight: 800; display: block; }
.news-card .news-date-badge .month { font-size: 11px; text-transform: uppercase; }

.news-card .news-body { padding: 26px; }

.news-card .news-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.news-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.news-card h3 a { color: var(--color-heading); }
.news-card h3 a:hover { color: var(--color-primary-light); }

/* Team Card */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.team-card .team-img { overflow: hidden; height: 320px; }
.team-card .team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-img img { transform: scale(1.1); }

.team-card .team-info {
  padding: 22px;
  text-align: center;
  background: var(--color-white);
}

.team-card .team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .team-info span { color: var(--color-accent); font-size: 13.5px; font-weight: 600; }

.team-card .team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.team-card .team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.team-card .team-socials a:hover { background: var(--color-accent); color: var(--color-white); }

/* -----------------------------------------------------------
   10. TIMELINE (About Page)
   ----------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px dashed var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 46px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 4px solid var(--color-accent-tint);
}

.timeline-item .timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary-light);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* -----------------------------------------------------------
   11. FAQ / ACCORDION
   ----------------------------------------------------------- */
.mtls-accordion .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 16px;
}

.mtls-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-heading);
  padding: 22px 26px;
  background: var(--color-white);
}

.mtls-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: var(--color-primary-tint);
  box-shadow: none;
}

.mtls-accordion .accordion-button:focus { box-shadow: none; border-color: var(--color-border); }

.mtls-accordion .accordion-button::after {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-light-bg);
  background-size: 16px;
  flex-shrink: 0;
}

.mtls-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--color-accent);
  filter: brightness(10);
}

.mtls-accordion .accordion-body {
  padding: 6px 26px 26px;
  color: var(--color-body);
}

/* -----------------------------------------------------------
   12. CTA SECTIONS
   ----------------------------------------------------------- */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 70px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 20, 45, 0.94), rgba(15, 44, 107, 0.85));
}

.cta-section-inner { position: relative; z-index: 2; }

.cta-section h2 { color: var(--color-white); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-section p { color: rgba(255, 255, 255, 0.8); }

/* -----------------------------------------------------------
   13. FOOTER
   ----------------------------------------------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer-top { padding: 90px 0 50px; position: relative; z-index: 2; }

.footer-logo img { height: 50px; margin-bottom: 22px; filter: brightness(0) invert(1); }

.site-footer h5 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 26px;
  position: relative;
}

.footer-links li { margin-bottom: 13px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\f285';
  font-family: 'bootstrap-icons';
  font-size: 10px;
  color: var(--color-accent);
}
.footer-links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item span, .footer-contact-item a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a:hover { background: var(--color-accent); transform: translateY(-4px); }

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 14px 22px;
}
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-newsletter input:focus { outline: none; box-shadow: none; background: rgba(255, 255, 255, 0.12); }
.footer-newsletter button {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 13.5px;
  position: relative;
  z-index: 2;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom a:hover { color: var(--color-accent); }

.footer-payment-icons i { font-size: 26px; color: rgba(255, 255, 255, 0.5); margin-left: 10px; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary); color: var(--color-white); }

/* WhatsApp Floating Button */
.float-whatsapp {
  position: fixed;
  bottom: 92px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.4s infinite;
}

/* -----------------------------------------------------------
   14. FORMS
   ----------------------------------------------------------- */
.mtls-form .form-control,
.mtls-form .form-select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  background: var(--color-light-bg);
  transition: var(--transition-fast);
}

.mtls-form .form-control:focus,
.mtls-form .form-select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(47, 76, 221, 0.1);
  background: var(--color-white);
}

.mtls-form label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.mtls-form textarea.form-control { min-height: 140px; resize: vertical; }

.form-status-msg { display: none; padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-top: 18px; }
.form-status-msg.success { display: block; background: #e5f8ee; color: #147a3d; border: 1px solid #b6ecd0; }
.form-status-msg.error { display: block; background: #fdeaea; color: #b02a2a; border: 1px solid #f6c6c6; }

.invalid-feedback-custom {
  color: #d9534f;
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}

.mtls-form .is-invalid ~ .invalid-feedback-custom,
.mtls-form .form-control.is-invalid,
.mtls-form .form-select.is-invalid {
  display: block;
}

.mtls-form .form-control.is-invalid,
.mtls-form .form-select.is-invalid {
  border-color: #d9534f;
}

/* Contact page panel */
.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-white);
  height: 100%;
  background-image: url('../images/backgrounds/world-route-map.svg');
  background-repeat: no-repeat;
  background-position: right -60px bottom -60px;
  background-size: 420px;
}

.contact-info-card .footer-contact-item i { background: rgba(255, 255, 255, 0.12); }

.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.map-wrapper iframe { width: 100%; height: 460px; border: 0; filter: grayscale(15%); }

/* -----------------------------------------------------------
   15. SIDEBAR (Service Detail Pages)
   ----------------------------------------------------------- */
.service-sidebar { position: sticky; top: 120px; }

.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 26px;
}

.sidebar-widget h5 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-nav-list li { margin-bottom: 4px; }
.sidebar-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--color-heading);
  font-weight: 500;
  font-size: 14.5px;
}
.sidebar-nav-list a i:first-child { color: var(--color-primary); margin-right: 10px; }
.sidebar-nav-list a:hover,
.sidebar-nav-list a.active {
  background: var(--color-primary);
  color: var(--color-white);
}
.sidebar-nav-list a:hover i:first-child,
.sidebar-nav-list a.active i:first-child { color: var(--color-white); }

.sidebar-cta {
  background: linear-gradient(155deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  color: var(--color-white);
  text-align: center;
}

.sidebar-cta i { font-size: 34px; color: var(--color-accent); margin-bottom: 14px; }

.sidebar-download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1.5px dashed var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
}
.sidebar-download i { font-size: 26px; color: var(--color-accent); }
.sidebar-download small { display: block; color: var(--color-muted); }

/* Service detail content blocks */
.service-detail-content h2 { font-size: 1.7rem; margin: 46px 0 20px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content h3 { font-size: 1.25rem; margin: 30px 0 16px; }
.service-detail-content p { margin-bottom: 18px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--color-body);
}
.check-list li i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent-tint);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-strip {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--color-light-bg);
  margin-bottom: 16px;
}
.feature-strip i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.related-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}
.related-service-item:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateX(4px); }
.related-service-item img { width: 66px; height: 66px; border-radius: 10px; object-fit: cover; }
.related-service-item h6 { margin-bottom: 4px; font-size: 14.5px; }
.related-service-item span { font-size: 12.5px; color: var(--color-muted); }

/* -----------------------------------------------------------
   16. GALLERY / LIGHTBOX
   ----------------------------------------------------------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter button {
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-heading);
  transition: var(--transition-fast);
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.15); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 44, 107, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.gallery-item .gallery-zoom-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: scale(0.6);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 26, 0.95);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 30px;
}

.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-height: 86vh; max-width: 100%; border-radius: 10px; box-shadow: var(--shadow-lg); }

.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-nav.prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 30px; top: 50%; transform: translateY(-50%); }

.video-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 15, 33, 0.4);
}
.video-thumb .play-btn i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* -----------------------------------------------------------
   17. PROGRESS BARS
   ----------------------------------------------------------- */
.mtls-progress { margin-bottom: 24px; }
.mtls-progress .progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-heading);
  margin-bottom: 10px;
}
.mtls-progress .progress {
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  overflow: visible;
}
.mtls-progress .progress-bar {
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border-radius: var(--radius-pill);
  width: 0;
  transition: width 1.6s cubic-bezier(.16,1,.3,1);
}

/* -----------------------------------------------------------
   18. TRACKING PAGE
   ----------------------------------------------------------- */
.tracking-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: -110px;
  position: relative;
  z-index: 3;
}

.tracking-steps { display: flex; justify-content: space-between; position: relative; margin: 50px 0 20px; }
.tracking-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--color-border);
  z-index: 0;
}
.tracking-steps .track-step { position: relative; z-index: 1; text-align: center; width: 20%; }
.tracking-steps .track-step .track-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-border);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 18px;
  transition: var(--transition);
}
.tracking-steps .track-step.completed .track-dot {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}
.tracking-steps .track-step.active .track-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 0 8px var(--color-accent-tint);
}
.tracking-steps .track-step span { font-size: 13px; font-weight: 600; color: var(--color-body); }

.tracking-result-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* -----------------------------------------------------------
   19. MISC
   ----------------------------------------------------------- */

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-primary-tint);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

/* Client logo strip */
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-fast);
}
.client-logo-item:hover { filter: grayscale(0%); opacity: 1; }

/* Badges */
.mtls-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-tint);
  color: var(--color-accent-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certification / achievement badges */
.cert-badge {
  text-align: center;
  padding: 26px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.cert-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.cert-badge i { font-size: 36px; color: var(--color-primary); margin-bottom: 14px; }
.cert-badge h6 { font-size: 13.5px; margin-bottom: 4px; }
.cert-badge span { font-size: 11.5px; color: var(--color-muted); }

/* City presence cards (homepage "Team Across India" section) */
.city-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.city-card .city-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.city-card:hover .city-icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.08);
}

.city-card h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.city-card span {
  font-size: 12.5px;
  color: var(--color-muted);
  font-weight: 500;
}

.city-card.hq {
  border-top: 3px solid var(--color-accent);
}

.city-card .hq-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* 404 helper (used sparingly, not a separate page but kept for utility) */
.not-found-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--color-primary-tint);
  line-height: 1;
}
