/* ==========================================================================
   Terotech Engineers - Custom Font Declarations (@font-face)
   ========================================================================== */

@font-face {
  font-family: 'Digital Serial';
  src: url('../fonts/Digital-Serial-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eczar';
  src: url('../fonts/Eczar.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Terotech Engineers - Design System & Global Styles
   ========================================================================== */

:root {
  /* Typography */
  --font-heading: 'Digital Serial', 'Digital-Serial-Bold', system-ui, -apple-system, sans-serif;
  --font-body: 'Eczar', Georgia, 'Times New Roman', serif;

  /* Brand Colors */
  --color-primary: #A43A12;
  --color-primary-hover: #862E0E;
  --color-primary-light: #FDF4F0;
  
  --color-secondary: #0B2033;
  --color-secondary-light: #1A3B5C;
  --color-secondary-dark: #071522;
  
  /* Backgrounds */
  --bg-main: #FFFFFF;
  --bg-hero-light: #ECECEC;
  --bg-hero-dark: #0B2033;
  --bg-hero-accent: #A43A12;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F8FAFC;
  
  /* Typography Colors */
  --text-main: #0B2033;
  --text-muted: #526374;
  --text-light: #FFFFFF;
  
  /* Borders & Shadows */
  --border-subtle: #E2E8F0;
  --border-focus: #A43A12;
  --shadow-sm: 0 1px 3px rgba(11, 32, 51, 0.08);
  --shadow-md: 0 4px 14px rgba(11, 32, 51, 0.08);
  --shadow-lg: 0 10px 28px rgba(11, 32, 51, 0.12);
}

/* Base resets & typography */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Utilities */
.text-navy {
  color: var(--color-secondary) !important;
}

.text-rust {
  color: var(--color-primary) !important;
}

.bg-navy {
  background-color: var(--color-secondary) !important;
  color: #ffffff !important;
}

.bg-hero-light {
  background-color: var(--bg-hero-light) !important;
}

.bg-hero-dark {
  background-color: var(--bg-hero-dark) !important;
  color: #ffffff !important;
}

.bg-rust {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   Navigation Bar Styles
   ========================================================================== */

.terotech-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(11, 32, 51, 0.06);
  border-bottom: 1px solid #ECECEC;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.terotech-navbar {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background-color: #ffffff !important;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.2rem 0;
  margin-right: 1.5rem;
}

.navbar-brand-logo {
  height: 64px;
  width: 64px;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease;
  flex-shrink: 0;
}

.navbar-brand-wrapper:hover .navbar-brand-logo {
  transform: scale(1.04);
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.035em;
  line-height: 0.95;
  font-family: var(--font-heading);
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.navbar-brand-wrapper:hover .brand-title {
  color: var(--color-primary-hover);
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.085em;
  line-height: 1.15;
  margin-top: 3px;
  white-space: nowrap;
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.3s ease;
}

/* ==========================================================================
   Header Scrolled / Compact Sticky State
   ========================================================================== */

.terotech-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(11, 32, 51, 0.12);
  border-bottom-color: rgba(226, 232, 240, 0.85);
}

.terotech-header.header-scrolled .terotech-navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.terotech-header.header-scrolled .navbar-brand-logo {
  height: 48px;
  width: 48px;
}

.terotech-header.header-scrolled .brand-title {
  font-size: 1.5rem;
}

.terotech-header.header-scrolled .brand-subtitle {
  font-size: 0.6rem;
  margin-top: 1px;
}

.terotech-header.header-scrolled .nav-link {
  padding: 0.45rem 0.95rem !important;
}

.terotech-header.header-scrolled .nav-link.active::after {
  bottom: 0.1rem;
}

@media (max-width: 991.98px) {
  .navbar-brand-logo {
    height: 54px;
    width: 54px;
  }
  .brand-title {
    font-size: 1.6rem;
  }
  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }
  .terotech-header.header-scrolled .navbar-brand-logo {
    height: 44px;
    width: 44px;
  }
  .terotech-header.header-scrolled .brand-title {
    font-size: 1.35rem;
  }
  .terotech-header.header-scrolled .brand-subtitle {
    font-size: 0.54rem;
  }
}

@media (max-width: 480px) {
  .navbar-brand-wrapper {
    gap: 0.6rem;
  }
  .navbar-brand-logo {
    height: 46px;
    width: 46px;
  }
  .brand-title {
    font-size: 1.35rem;
  }
  .brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
  .terotech-header.header-scrolled .navbar-brand-logo {
    height: 38px;
    width: 38px;
  }
  .terotech-header.header-scrolled .brand-title {
    font-size: 1.15rem;
  }
  .terotech-header.header-scrolled .brand-subtitle {
    font-size: 0.46rem;
  }
}


@media (max-width:400px){
  .brand-title {
    font-size: 1rem;
  }
}






/* Nav links */
.terotech-navbar .nav-link {
  color: var(--color-secondary) !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 0.95rem !important;
  position: relative;
  transition: color 0.2s ease-in-out, padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.terotech-navbar .nav-link:hover {
  color: var(--color-primary) !important;
}

/* Active Link & Indicator Underline */
.terotech-navbar .nav-link.active {
  color: var(--color-primary) !important;
}

.terotech-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.95rem;
  right: 0.95rem;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
  transition: bottom 0.3s ease;
}

/* Navbar Toggle Button (Mobile) */
.terotech-toggler {
  border: 1.5px solid var(--color-secondary);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  color: var(--color-secondary);
  transition: all 0.2s ease;
}

.terotech-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(164, 58, 18, 0.35);
  outline: none;
}

.terotech-toggler-icon {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B2033' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (max-width: 991.98px) {
  .terotech-navbar .navbar-collapse {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: 6px;
  }
  
  .terotech-navbar .nav-link {
    padding: 0.65rem 1rem !important;
    justify-content: flex-start;
  }
  
  .terotech-navbar .nav-link.active::after {
    left: 1rem;
    right: auto;
    width: 36px;
    bottom: 0.2rem;
  }
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */

.hero-banner-section {
  position: relative;
  background-color: var(--color-secondary);
  background-image: 
    linear-gradient(90deg, rgba(11, 32, 51, 0.95) 0%, rgba(11, 32, 51, 0.88) 45%, rgba(11, 32, 51, 0.5) 75%, rgba(11, 32, 51, 0.1) 100%),
    url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 5.5rem 0 5rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .hero-banner-section {
    background-image: 
      linear-gradient(180deg, rgba(11, 32, 51, 0.96) 0%, rgba(11, 32, 51, 0.86) 100%),
      url('../images/hero-banner.jpg');
    padding: 3.5rem 0 3rem 0;
    min-height: auto;
  }
}

.hero-content {
  max-width: 660px;
}

.hero-title {
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title-highlight {
  color: #E25822; /* Vivid Rust-Orange highlight */
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 1.85rem;
  max-width: 540px;
}

.btn-hero-primary {
  font-family: var(--font-heading);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(164, 58, 18, 0.45);
}

.btn-hero-outline {
  font-family: var(--font-heading);
  background-color: rgba(11, 32, 51, 0.35);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Hero Metrics / Trust Bar
   ========================================================================== */

.hero-metrics-bar {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 0.8rem;
}

.metric-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.metric-icon-box svg {
  width: 36px;
  height: 36px;
}

.metric-text {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.25;
  text-transform: uppercase;
}

.metric-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 991.98px) {
  .metric-divider {
    border-right: none;
  }
  .hero-metrics-bar .metric-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.75rem 0.5rem;
  }
  .hero-metrics-bar .metric-col:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   Railway Solutions / Services Grid Section
   ========================================================================== */

.solutions-section {
  padding: 5rem 0 5.5rem 0;
  background-color: #FFFFFF;
}

.solutions-header-row {
  margin-bottom: 3.5rem;
}

.solutions-subheading {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.solutions-heading-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
}

.solutions-heading-line {
  width: 50px;
  height: 3.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.solutions-heading-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.section-title-line {
  width: 45px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

/* Service Card Component */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 10px rgba(11, 32, 51, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(11, 32, 51, 0.12);
  border-color: #cbd5e1;
  text-decoration: none;
  color: inherit;
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background-color: #0B2033;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-icon-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.service-icon-badge svg {
  width: 22px;
  height: 22px;
}

.service-body {
  padding: 1.4rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: none;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.service-card:hover .service-title {
  color: var(--color-primary);
}

.service-desc {
  font-size: 0.88rem;
  color: #526374;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-link {
  gap: 0.65rem;
  color: var(--color-primary-hover);
}

/* ==========================================================================
   Page Header Banner (Inner Pages)
   ========================================================================== */

.page-header-banner {
  position: relative;
  background-color: var(--color-secondary);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 5rem 0 5rem 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.about-header-banner {
  background-image: 
    linear-gradient(90deg, rgba(7, 21, 34, 0.95) 0%, rgba(7, 21, 34, 0.88) 35%, rgba(7, 21, 34, 0.5) 65%, rgba(7, 21, 34, 0.12) 100%),
    url('../images/header_banner.jpg');
}

@media (max-width: 991.98px) {
  .about-header-banner {
    background-image: 
      linear-gradient(180deg, rgba(7, 21, 34, 0.95) 0%, rgba(7, 21, 34, 0.85) 100%),
      url('../images/header_banner.jpg');
    padding: 3.5rem 0 3rem 0;
    min-height: auto;
  }
}

.page-header-content {
  max-width: 650px;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
}

.page-header-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-header-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-header-breadcrumb .breadcrumb-separator {
  color: #94a3b8;
  font-weight: 400;
  user-select: none;
}

.page-header-breadcrumb .current-page {
  color: #ffffff;
  font-weight: 600;
}

.page-header-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.page-header-divider {
  width: 60px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.page-header-desc {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #f1f5f9;
  margin-bottom: 0;
  max-width: 580px;
}

/* ==========================================================================
   About Page - Company Overview Section
   ========================================================================== */

.about-overview-section {
  padding: 5rem 0 4.5rem 0;
  background-color: #ffffff;
}

.overview-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #E25822;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.overview-title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.overview-divider {
  width: 50px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.overview-text-block {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
}

.overview-text-block p {
  margin-bottom: 1rem;
}

.overview-stats-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.overview-stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.overview-stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-stat-icon svg {
  width: 100%;
  height: 100%;
}

.overview-stat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-stat-label-navy {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary, #0B2033);
  line-height: 1.2;
}

.overview-stat-val-orange {
  font-size: 1.85rem;
  font-weight: 800;
  color: #E25822;
  line-height: 1.05;
  font-family: var(--font-heading);
}

.overview-stat-iso-orange {
  font-size: 1.22rem;
  font-weight: 800;
  color: #E25822;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.overview-stat-certified-orange {
  font-size: 1.05rem;
  font-weight: 700;
  color: #E25822;
  line-height: 1.2;
}

.overview-stats-divider {
  width: 1px;
  height: 46px;
  background-color: #cbd5e1;
}

.overview-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 32, 51, 0.08);
}

.overview-img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ==========================================================================
   About Page - Who We Are / Values Section (Trust, Speciality, Aim)
   ========================================================================== */

.about-values-section {
  padding: 5.5rem 0 6rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.values-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.5rem auto;
}

.values-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #E25822;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.values-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
}

.values-header-divider {
  width: 50px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 1.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card-divider {
  border-right: 1px solid #e2e8f0;
}

@media (max-width: 991.98px) {
  .value-card-divider {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .value-card {
    padding: 1rem 0.5rem;
  }
}

.value-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #FDE8DE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover .value-icon-circle {
  transform: translateY(-4px) scale(1.04);
  background-color: #FCD8C7;
}

.value-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.value-card-accent {
  width: 34px;
  height: 3px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.value-card-desc {
  font-size: 0.94rem;
  line-height: 1.68;
  color: #475569;
  margin-bottom: 0;
  max-width: 330px;
}

/* ==========================================================================
   About Page - Leadership / Management Team Section
   ========================================================================== */

.about-team-section {
  padding: 5.5rem 0 6rem 0;
  background-color: #ffffff;
  border-top: 1px solid #E2E8F0;
}

.team-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.team-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #E25822;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.team-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
}

.team-header-divider {
  width: 50px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin: 0 auto;
}

.team-member-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 2px 10px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.team-member-photo-wrap {
  width: 108px;
  min-width: 108px;
  height: 138px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f1f5f9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.team-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.team-member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
}

.team-member-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-member-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.team-member-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E25822;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.team-member-bullets {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
}

.team-member-bullets li {
  margin-bottom: 0.5rem;
}

.team-member-bullets li:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .team-member-card {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .team-member-photo-wrap {
    width: 120px;
    height: 150px;
    margin-bottom: 0.75rem;
  }
}

/* ==========================================================================
   About Page - Our Journey / Key Milestones Timeline Section
   ========================================================================== */

.about-journey-section {
  padding: 5.5rem 0 6rem 0;
  border-top: 1px solid #E2E8F0;
}

.journey-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.journey-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #E25822;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.journey-title {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.timeline-track-wrapper {
  position: relative;
  width: 100%;
}

.timeline-track-line {
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-color: #cbd5e1;
  z-index: 1;
}

.timeline-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-node-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.timeline-dot {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #475569;
  border-radius: 50%;
  z-index: 3;
}

.timeline-item:last-child .timeline-dot {
  display: none;
}

.timeline-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 32, 51, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.timeline-circle.circle-orange {
  background-color: #E25822;
}

.timeline-circle.circle-navy {
  background-color: #0B2033;
}

.timeline-item:hover .timeline-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(11, 32, 51, 0.2);
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.timeline-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
  margin: 0;
  max-width: 135px;
}

@media (max-width: 991.98px) {
  .timeline-track-wrapper {
    overflow-x: auto;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .timeline-grid {
    min-width: 820px;
    padding: 0 1rem;
  }
  .timeline-track-line {
    left: 45px;
    right: 45px;
  }
}

/* ==========================================================================
   About Page - Customized Solution CTA Banner
   ========================================================================== */

.custom-solution-cta-section {
  position: relative;
  background-color: var(--color-primary, #A43A12);
  background-image: 
    linear-gradient(90deg, rgba(164, 58, 18, 0.94) 0%, rgba(164, 58, 18, 0.88) 45%, rgba(164, 58, 18, 0.65) 75%, rgba(164, 58, 18, 0.45) 100%),
    url('../images/about-company-overview.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 2.25rem 0;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.custom-solution-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.custom-solution-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.custom-solution-icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.custom-solution-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.custom-solution-title {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.custom-solution-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  line-height: 1.4;
}

.btn-custom-solution {
  font-family: var(--font-heading);
  background-color: #ffffff;
  color: #E25822 !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.85rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-custom-solution:hover,
.btn-custom-solution:focus {
  background-color: #f8fafc;
  color: #862E0E !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .custom-solution-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-solution-btn-wrap {
    margin-top: 0.5rem;
    width: 100%;
  }
  .btn-custom-solution {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-cards-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: #F8FAFC;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.contact-info-card.left-aligned {
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.contact-badge-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #E25822;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 10px rgba(226, 88, 34, 0.25);
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.contact-card-address {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.contact-card-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #0B2033;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.btn-contact-direction {
  background-color: #E25822;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(226, 88, 34, 0.25);
  transition: all 0.2s ease;
}

.btn-contact-direction:hover {
  background-color: #862E0E;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 88, 34, 0.35);
  text-decoration: none;
}

.contact-channel-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #E25822;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(226, 88, 34, 0.25);
}

.contact-channel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
}

.contact-channel-links {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.45;
}

.contact-channel-links a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.contact-channel-links a:hover {
  color: #E25822;
  text-decoration: underline;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2.75rem 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(11, 32, 51, 0.04);
}

.contact-form-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.contact-form-divider {
  width: 38px;
  height: 3px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.contact-form-subtitle {
  font-size: 0.94rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.contact-form-card .form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-secondary, #0B2033);
  margin-bottom: 0.45rem;
}

.contact-form-card .form-label .required-star {
  color: #E25822;
  margin-left: 2px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: #E25822;
  box-shadow: 0 0 0 0.2rem rgba(226, 88, 34, 0.15);
  outline: none;
}

.btn-send-enquiry {
  background-color: #E25822;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.25rem;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 3px 10px rgba(226, 88, 34, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-send-enquiry:hover {
  background-color: #862E0E;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 88, 34, 0.4);
}

@media (max-width: 767.98px) {
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ==========================================================================
   Infrastructure Page Redesign Styles
   ========================================================================== */

.infra-overview-section {
  padding: 4.5rem 0 5rem 0;
  background-color: #ffffff;
}

.infra-section-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: #E25822;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.infra-section-divider {
  width: 42px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.infra-metric-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.1rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.infra-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.infra-metric-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #E25822;
}

.infra-metric-icon svg {
  width: 100%;
  height: 100%;
}

.infra-metric-info {
  display: flex;
  flex-direction: column;
}

.infra-metric-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.infra-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-secondary, #0B2033);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

/* Capabilities Checklist */
.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 1.15rem;
}

.capability-item:last-child {
  margin-bottom: 0;
}

.capability-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #E25822;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(226, 88, 34, 0.3);
}

.capability-text {
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}

/* Locations & Reach */
.reach-desc {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reach-map-wrapper {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(11, 32, 51, 0.04);
  text-align: center;
}

.reach-map-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   Service Detail Page Styles
   ========================================================================== */

.service-detail-hero {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 4rem 0 3.5rem 0;
  position: relative;
}

.service-breadcrumb {
  margin-bottom: 1.5rem;
}

.service-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-breadcrumb a:hover {
  color: #ffffff;
}

.service-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

.service-detail-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-spec-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

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

/* ==========================================================================
   General Buttons & Components
   ========================================================================== */

.btn-primary-rust {
  font-family: var(--font-heading);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.btn-primary-rust:hover, 
.btn-primary-rust:focus {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(164, 58, 18, 0.25);
}

.btn-outline-rust {
  font-family: var(--font-heading);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.btn-outline-rust:hover,
.btn-outline-rust:focus {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   Industrial Coating Solutions Section (Secondary Navy Background)
   ========================================================================== */

.coating-section {
  background-color: var(--color-secondary);
  padding: 5rem 0 5.5rem 0;
  color: #ffffff;
  position: relative;
}

.coating-section .section-title {
  color: #ffffff;
}

.coating-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.coating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: inherit;
}

.coating-card-inner {
  display: flex;
  align-items: center;
}

.coating-img-box {
  width: 260px;
  height: 145px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f8fafc;
}

.coating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.coating-card:hover .coating-img {
  transform: scale(1.06);
}

.coating-content-box {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-grow: 1;
}

.coating-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #A43A12 0%, #D35400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(164, 58, 18, 0.35);
}

.coating-badge-icon svg {
  width: 28px;
  height: 28px;
}

.coating-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.coating-card:hover .coating-title {
  color: var(--color-primary);
}

.coating-desc {
  font-size: 0.95rem;
  color: #526374;
  margin-bottom: 0;
}

.coating-action-box {
  padding: 1.5rem 2.75rem;
  border-left: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coating-link-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.coating-card:hover .coating-link-btn {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

@media (max-width: 991.98px) {
  .coating-card-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .coating-img-box {
    width: 100%;
    height: 190px;
  }
  .coating-content-box {
    padding: 1.25rem;
  }
  .coating-action-box {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding: 1.1rem 1.25rem;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Infrastructure Strength & Technology Partners Section
   ========================================================================== */

.infra-partners-section {
  background-color: #ffffff;
  padding: 5rem 0 5.5rem 0;
}

.infra-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.15rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.infra-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.infra-stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.infra-stat-icon svg {
  width: 38px;
  height: 38px;
}

.infra-stat-content {
  display: flex;
  flex-direction: column;
}

.infra-stat-number {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.infra-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Infrastructure Capabilities & Network Cards
   ========================================================================== */

.infra-capabilities-grid {
  margin-bottom: 4.5rem;
}

.infra-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.65rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.infra-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.infra-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 32, 51, 0.09);
  border-color: #cbd5e1;
}

.infra-feature-card:hover::before {
  opacity: 1;
}

.infra-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.infra-feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(164, 58, 18, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.infra-feature-card:hover .infra-feature-icon-box {
  background: var(--color-primary);
  color: #ffffff;
}

.infra-feature-icon-box svg {
  width: 22px;
  height: 22px;
}

.infra-feature-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: #fdf4f0;
  border: 1px solid rgba(164, 58, 18, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.infra-feature-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.infra-feature-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Associate Cards */
.associate-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem 1.25rem 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.associate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.09);
  border-color: #cbd5e1;
}

.associate-logo-box {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.associate-logo-img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.associate-card:hover .associate-logo-img {
  transform: scale(1.05);
}

.associate-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Partner Cards (Legacy fallback) */
.partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.partner-country {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 0.45rem;
}

/* ==========================================================================
   Trusted Across Railway Projects Section
   ========================================================================== */

.trusted-projects-section {
  padding: 4.5rem 0 5rem 0;
  background-color: #FFFFFF;
}

.trusted-projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
}

@media (max-width: 1199.98px) {
  .trusted-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .trusted-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .trusted-projects-grid {
    grid-template-columns: 1fr;
  }
}

.trusted-project-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease;
  height: 100%;
}

.trusted-project-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.trusted-project-img-box {
  width: 100%;
  height: 132px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11, 32, 51, 0.08);
  background-color: #0B2033;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.trusted-project-card:hover .trusted-project-img-box {
  box-shadow: 0 8px 24px rgba(11, 32, 51, 0.16);
}

.trusted-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.trusted-project-card:hover .trusted-project-img {
  transform: scale(1.05);
}

.trusted-project-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-secondary);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.trusted-project-card:hover .trusted-project-title {
  color: var(--color-primary);
}

/* CTA Card */
.trusted-cta-card {
  background-color: var(--color-primary);
  border-radius: 8px;
  padding: 1.25rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  height: 132px;
  box-shadow: 0 4px 14px rgba(164, 58, 18, 0.28);
  transition: all 0.28s ease;
}

.trusted-cta-card:hover {
  background-color: var(--color-primary-hover);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(164, 58, 18, 0.42);
  text-decoration: none;
}

.trusted-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-cta-icon svg {
  width: 44px;
  height: 44px;
  color: #ffffff;
}

.trusted-cta-text {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trusted-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

.trusted-cta-card:hover .trusted-cta-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Clients Section
   ========================================================================== */

.clients-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--bg-card-alt);
  border-top: 1px solid #E2E8F0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

@media (max-width: 1199.98px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.client-logo-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.1);
  border-color: var(--color-primary);
}

.client-logo-img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo-card:hover .client-logo-img {
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .client-logo-card {
    height: 115px;
    padding: 0.75rem 0.9rem;
  }
  .client-logo-img {
    max-height: 72px;
  }
}

@media (max-width: 767.98px) {
  .client-logo-card {
    height: 100px;
    padding: 0.65rem 0.75rem;
  }
  .client-logo-img {
    max-height: 62px;
  }
}

@media (max-width: 480px) {
  .client-logo-card {
    height: 92px;
    padding: 0.5rem 0.65rem;
  }
  .client-logo-img {
    max-height: 54px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.terotech-footer {
  background-color: var(--color-secondary);
  color: #cbd5e1;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  margin-top: auto;
}

/* Footer Brand */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-brand-logo {
  height: 66px;
  width: 66px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-brand:hover .footer-brand-logo {
  transform: scale(1.05);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

/*.footer-brand-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #E25822;*/ /* Vivid Rust highlight on dark navy */
  /*letter-spacing: 0.035em;
  line-height: 0.95;
  font-family: var(--font-heading);
  transition: color 0.2s ease;
}*/

.footer-brand-title {
  font-size: 1.1rem; 
  color: #E25822;
  letter-spacing: 0.035em;
  line-height: 0.95; 
  font-family: var(--font-heading);
  transition: color 0.2s ease;
}


.footer-brand:hover .footer-brand-title {
  color: #F97316;
}

.footer-brand-subtitle {
  font-size: 0.68rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-top: 3px;
  white-space: nowrap;
}

.footer-brand-tagline {
  font-size: 0.76rem;
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.35;
  margin-top: 5px;
  letter-spacing: 0.01em;
}

.terotech-footer h5 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.terotech-footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.terotech-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terotech-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

/* ==========================================================================
   Smooth Entrance Animations & Scroll Reveal
   ========================================================================== */

/* Initial hidden state for animated elements */
.reveal,
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal,
.reveal-up {
  transform: translateY(24px);
}

.reveal-fade {
  transform: none;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Revealed active state */
.reveal.is-revealed,
.reveal-fade.is-revealed,
.reveal-up.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-scale.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Stagger delay utility classes */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }
.delay-8 { transition-delay: 0.64s; }

/* Micro-interaction for hover lift */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Accessibility: Disable animations if user requests reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-fade,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Project Enquiry CTA Banner & Related Services
   ========================================================================== */

.project-enquiry-banner {
  background: linear-gradient(135deg, #071928 0%, #0B2033 100%);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-enquiry-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.project-enquiry-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.project-enquiry-icon-circle {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background-color: #E25822;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.project-enquiry-title {
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading, sans-serif);
}

.project-enquiry-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.btn-enquire-now {
  background-color: #E25822;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: none;
}

.btn-enquire-now:hover,
.btn-enquire-now:focus {
  background-color: #c84615;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 88, 34, 0.4);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .project-enquiry-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-enquire-now {
    width: 100%;
    justify-content: center;
  }
}

.related-services-section {
  background-color: #ffffff;
  padding: 3.5rem 0 4.5rem 0;
}

.related-services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-services-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: #E25822;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading, sans-serif);
  display: block;
  margin-bottom: 0.35rem;
}

.related-services-line {
  width: 38px;
  height: 3px;
  background-color: #E25822;
  border-radius: 2px;
}

.related-explore-link {
  color: #E25822 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.related-explore-link:hover,
.related-explore-link:focus {
  color: #c84615 !important;
  gap: 0.65rem;
  text-decoration: none;
}

/* Slider Track & Scrollbar */
.services-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #E25822 #f1f5f9;
}

.services-slider-track::-webkit-scrollbar {
  height: 6px;
}

.services-slider-track::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.services-slider-track::-webkit-scrollbar-thumb {
  background: #E25822;
  border-radius: 4px;
}

.services-slider-track::-webkit-scrollbar-thumb:hover {
  background: #c84615;
}

.services-slider-item {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  max-width: calc((100% - 2.5rem) / 3);
  min-width: 0;
  display: flex;
}

.services-slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #E25822;
  background-color: #ffffff;
  color: #E25822;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.services-slider-btn:hover {
  background-color: #E25822;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(226, 88, 34, 0.3);
}

.related-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none !important;
  color: inherit !important;
}

.related-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
  text-decoration: none !important;
  color: inherit !important;
}

.related-service-thumb-wrap {
  width: 95px;
  height: 95px;
  min-width: 95px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8fafc;
  flex-shrink: 0;
}

.related-service-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-service-card:hover .related-service-thumb {
  transform: scale(1.05);
}

.related-service-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  height: 100%;
}

.related-service-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0B2033;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  font-family: var(--font-heading, sans-serif);
  transition: color 0.2s ease;
}

.related-service-card:hover .related-service-title {
  color: #E25822;
}

.related-service-desc {
  font-size: 0.83rem;
  color: #64748b;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-service-link {
  color: #E25822;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.related-service-card:hover .related-service-link {
  gap: 0.55rem;
}

@media (max-width: 991.98px) {
  .services-slider-item {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 575.98px) {
  .services-slider-track {
    gap: 0.75rem;
  }
  .services-slider-item {
    flex: 0 0 calc((100% - 0.75rem) / 2);
    max-width: calc((100% - 0.75rem) / 2);
  }
  .related-service-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
    gap: 0.5rem;
  }
  .related-service-thumb-wrap {
    width: 100%;
    height: 95px;
    min-width: 100%;
  }
  .related-service-title {
    font-size: 0.85rem;
  }
  .related-service-desc {
    display: none;
  }
}

/* ==========================================================================
   Infrastructure Page & Machinery & Equipment Styles
   ========================================================================== */

.infra-overview-section {
  padding: 3.5rem 0 4rem;
  background-color: #FFFFFF;
}

.infra-section-tag {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #E25822;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.infra-section-divider {
  width: 50px;
  height: 3.5px;
  background-color: #E25822;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* Our Strength Metrics Grid */
.strength-metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.strength-metric-card {
  background: #FFFFFF;
  border: 1px solid #DCE6F1;
  border-radius: 8px;
  padding: 0.85rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 1px 4px rgba(11, 32, 51, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.strength-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.strength-metric-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.strength-metric-icon svg {
  width: 100%;
  height: 100%;
  max-width: 34px;
  max-height: 34px;
}

.strength-metric-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.strength-metric-number {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #004b87;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.strength-metric-label {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  color: #004b87;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* Machinery Cards Grid */
.machinery-grid-row-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.machinery-grid-row-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.machinery-card {
  background: #FFFFFF;
  border: 1px solid #DCE6F1;
  border-radius: 10px;
  /*padding: 1rem 0.85rem 1.15rem;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 200px;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.machinery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.machinery-card-media {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 6px;
}

.machinery-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.machinery-card-img.full-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.machinery-card-img.icon-fit {
  max-height: 75px;
  max-width: 85%;
  object-fit: contain;
}

.machinery-card:hover .machinery-card-img {
  transform: scale(1.04);
}

.machinery-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.machinery-card-stat {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #E25822;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.machinery-card-label {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  color: #004b87;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.machinery-card-label.sub {
  font-size: 0.72rem;
  color: #004b87;
  font-weight: 700;
  margin-top: 0.2rem;
}

.machinery-card-title-badge {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.86rem;
  font-weight: 800;
  color: #004b87;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* Capabilities & Reach */
.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.capability-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background-color: #E25822;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.capability-text {
  font-size: 0.93rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 0;
}

.reach-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.reach-map-wrapper {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-map-img {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
}

/* Associates */
.associate-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.associate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.associate-logo-box {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.associate-logo-img {
  max-height: 100%;
  max-width: 85%;
  object-fit: contain;
}

.associate-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 0;
}

/* Responsive Breakpoints for Infrastructure Page & Machinery Grid */
@media (max-width: 1199.98px) {
  .strength-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 2rem;
  }
  .machinery-grid-row-1 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .machinery-grid-row-2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .machinery-card-stat {
    font-size: 1.3rem;
  }
  .machinery-card-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 991.98px) {
  .machinery-grid-row-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .machinery-grid-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .strength-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .strength-metric-card {
    padding: 0.75rem 0.65rem;
    gap: 0.55rem;
  }
  .strength-metric-icon {
    width: 30px;
    height: 30px;
  }
  .strength-metric-number {
    font-size: 1.2rem;
  }
  .strength-metric-label {
    font-size: 0.64rem;
    line-height: 1.25;
  }
}

@media (max-width: 575.98px) {
  .machinery-grid-row-1,
  .machinery-grid-row-2 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .machinery-card {
    min-height: auto;
    padding: 1rem;
  }
  .machinery-card-media {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .strength-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .strength-metric-card {
    padding: 0.65rem 0.45rem;
    gap: 0.45rem;
    border-radius: 7px;
  }
  .strength-metric-icon {
    width: 26px;
    height: 26px;
  }
  .strength-metric-number {
    font-size: 1.1rem;
  }
  .strength-metric-label {
    font-size: 0.6rem;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 340px) {
  .strength-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .strength-metric-card {
    padding: 0.65rem 0.75rem;
  }
}

/* ==========================================================================
   Downloads Page Styles
   ========================================================================== */

.downloads-section {
  padding: 3.5rem 0 5rem;
  background-color: #F8FAFC;
}

/* Spotlight / Featured Catalogue Hero Card */
.download-spotlight-card {
  background: #FFFFFF;
  border: 1px solid #DCE6F1;
  border-left: 5px solid #E25822;
  border-radius: 12px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(11, 32, 51, 0.06);
  margin-bottom: 3.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-spotlight-card:hover {
  box-shadow: 0 8px 30px rgba(11, 32, 51, 0.1);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FDF4F0;
  color: #E25822;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.spotlight-badge-dot {
  width: 8px;
  height: 8px;
  background: #E25822;
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.spotlight-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0B2033;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.spotlight-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.spotlight-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}

.spotlight-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.spotlight-meta-item strong {
  color: #0B2033;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-download-primary {
  background: #E25822;
  color: #FFFFFF !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  border: 2px solid #E25822;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(226, 88, 34, 0.25);
  text-decoration: none;
}

.btn-download-primary:hover {
  background: #C44312;
  border-color: #C44312;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 88, 34, 0.35);
}

.btn-download-outline {
  background: #FFFFFF;
  color: #004b87 !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  border: 2px solid #DCE6F1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-download-outline:hover {
  background: #F0F7FF;
  border-color: #004b87;
  color: #004b87 !important;
  transform: translateY(-2px);
}

/* Spotlight Visual Box */
.spotlight-visual-box {
  background: linear-gradient(135deg, #0B2033 0%, #1A3B5C 100%);
  border-radius: 10px;
  padding: 2.25rem 1.5rem;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 32, 51, 0.2);
}

.spotlight-visual-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.spotlight-doc-icon {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #E25822;
}

.spotlight-doc-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.spotlight-doc-pill {
  display: inline-block;
  background: #E25822;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Section Header for Downloads Subcategories */
.downloads-category-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0B2033;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.downloads-category-divider {
  width: 45px;
  height: 3px;
  background: #E25822;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Download Item Cards Grid */
.download-resource-card {
  background: #FFFFFF;
  border: 1px solid #DCE6F1;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 2px 8px rgba(11, 32, 51, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.download-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 32, 51, 0.08);
  border-color: #cbd5e1;
}

.download-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-type-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #FDF4F0;
  color: #E25822;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-file-badge {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.7rem;
  font-weight: 800;
  background: #F1F5F9;
  color: #475569;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.download-card-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0B2033;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.download-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.download-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-card-size {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

.download-action-btn {
  background: #FDF4F0;
  color: #E25822 !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-action-btn:hover {
  background: #E25822;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

/* Custom Request CTA Card */
.downloads-cta-box {
  background: linear-gradient(135deg, #0B2033 0%, #17344F 100%);
  border-radius: 12px;
  padding: 2.75rem 2.25rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 32, 51, 0.15);
  margin-top: 3.5rem;
}

.downloads-cta-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.downloads-cta-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.downloads-cta-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 0;
}