/* App-Tech Engineers - Industrial Design System & CSS Root Variables */
:root {
  --primary-navy: #0C2340;
  --secondary-navy: #07172B;
  --navy-blue: #0F3866;
  --brand-blue: #0056B3;
  --accent-orange: #ED5B2D;
  --accent-orange-hover: #D8481B;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-surface: #FFFFFF;
  --card-border: #E2E8F0;
  --border-active: #ED5B2D;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Script font style for "Driven by Your Growth" */
.font-script {
  font-family: var(--font-script), cursive;
  font-size: 2rem;
  color: #FFFFFF;
  font-style: italic;
  font-weight: 700;
}

/* Custom Buttons */
.btn-orange {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  border: none;
  transition: all 0.25s ease;
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(237, 91, 45, 0.35);
  transform: translateY(-1px);
}

.btn-navy {
  background-color: var(--navy-blue);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  border: none;
  transition: all 0.25s ease;
}

.btn-navy:hover {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-outline-custom {
  background-color: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid #CBD5E1;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-outline-custom:hover {
  background-color: #F1F5F9;
  color: var(--primary-navy);
  border-color: #94A3B8;
}

/* Navbar & Mega Menu Styling */
.topbar {
  background-color: var(--primary-navy);
  font-size: 0.85rem;
}

.main-header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Brand Logo Classes */
.header-brand-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}

.header-logo-img {
  height: 56px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.header-logo-img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .header-logo-img {
    height: 46px;
    max-width: 190px;
  }
}

.footer-logo-wrapper {
  background-color: #FFFFFF;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.navbar .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--brand-blue) !important;
}

/* ========================================================
   Modern Corporate Mega Menu Styling
   ======================================================== */
.mega-menu-dropdown {
  position: static !important;
}

.mega-menu-content {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  border: none;
  border-top: 3px solid #ED5B2D;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 25px 50px -12px rgba(12, 35, 64, 0.2);
  background-color: #FFFFFF;
  padding: 1.75rem 2rem;
}

@media (min-width: 992px) {
  .dropdown:hover .mega-menu-content {
    display: block;
    animation: megaMenuSlide 0.22s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
}

@keyframes megaMenuSlide {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-col-header {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0056B3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  margin-bottom: 0.85rem;
  border-bottom: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
}

.mega-product-block {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #F1F5F9;
}

.mega-product-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mega-product-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0C2340;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-product-title:hover {
  background-color: #F0F6FC;
  color: #0056B3;
}

.mega-product-arrow {
  font-size: 1rem;
  color: #94A3B8;
  transition: all 0.2s ease;
}

.mega-product-title:hover .mega-product-arrow {
  color: #ED5B2D;
  transform: translateX(3px);
}

.mega-brand-list {
  padding-left: 0.5rem;
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-brand-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  transition: all 0.18s ease;
}

.mega-brand-item:hover {
  color: #ED5B2D;
  background-color: #FFF5F2;
  padding-left: 0.75rem;
  font-weight: 600;
}

.mega-brand-bullet {
  font-size: 0.65rem;
  color: #94A3B8;
  transition: all 0.18s ease;
}

.mega-brand-item:hover .mega-brand-bullet {
  color: #ED5B2D;
}

.mega-feature-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0056B3;
  background-color: #EBF3FA;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.25rem;
  margin-left: 0.5rem;
}

.mega-action-card {
  background: linear-gradient(145deg, #0C2340 0%, #0056B3 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ========================================================
   Mobile Navigation & Offcanvas/Collapse Styling (< 992px)
   ======================================================== */
@media (max-width: 991.98px) {
  .navbar-toggler {
    padding: 0.45rem 0.65rem;
    font-size: 1.15rem;
    border-radius: 8px;
    border: 1.5px solid #CBD5E1 !important;
    background-color: #F8FAFC;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .navbar-toggler:hover,
  .navbar-toggler:focus {
    background-color: #F1F5F9;
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 3px rgba(237, 91, 45, 0.2) !important;
    outline: none;
  }

  .navbar-collapse {
    background-color: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 16px 36px -6px rgba(12, 35, 64, 0.15);
    border: 1px solid #E2E8F0;
    margin-top: 0.75rem;
    padding: 1.25rem 1.15rem;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #F1F5F9;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0.5rem !important;
    font-size: 0.98rem;
    font-weight: 600;
    color: #0C2340;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--brand-orange) !important;
  }

  /* Mobile Products Accordion Dropdown */
  #mobileProductsDropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item.dropdown.d-lg-none .dropdown-menu {
    border: 1px solid #E2E8F0;
    background-color: #F8FAFC;
    border-radius: 10px;
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
    padding: 0.6rem 0.8rem;
  }

  .nav-item.dropdown.d-lg-none .dropdown-item {
    padding: 0.45rem 0.6rem;
    font-size: 0.88rem;
    border-radius: 6px;
    transition: background-color 0.15s ease;
  }

  .nav-item.dropdown.d-lg-none .dropdown-item:hover {
    background-color: #EEF2F6;
    color: var(--brand-blue);
  }
}


.homepage-hero {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.88) 0%, rgba(7, 23, 43, 0.92) 100%), 
              url('assets/other/page-header.png') center/cover no-repeat;
  min-height: 540px;
  display: flex;
  align-items: center;
}

/* Hero Banner Exact Replica Styling from reference crop */
.hero-exact-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  background: url('/assets/other/bg_banner.png') center right / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3.5rem 0;
}

.hero-exact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, 
    rgba(240, 246, 252, 0.98) 0%, 
    rgba(240, 246, 252, 0.94) 42%, 
    rgba(240, 246, 252, 0.55) 65%, 
    rgba(240, 246, 252, 0) 85%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-exact-overlay {
    background: rgba(240, 246, 252, 0.94);
  }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title-main {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.12;
  color: #0B2545;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title-main span.blue-highlight {
  color: #0056B3;
}

.hero-subdescription {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.btn-hero-navy {
  background-color: #072B54;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(7, 43, 84, 0.2);
  display: inline-flex;
  align-items: center;
}

.btn-hero-navy:hover {
  background-color: #0C2340;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 43, 84, 0.3);
}

.btn-hero-outline {
  background-color: #FFFFFF;
  color: #072B54;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: 1.5px solid #94A3B8;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
}

.btn-hero-outline:hover {
  background-color: #F8FAFC;
  border-color: #072B54;
  color: #072B54;
  transform: translateY(-2px);
}

.script-driven-growth {
  font-family: 'Caveat', cursive;
  font-size: 3.2rem;
  color: #0C2340;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
  transform: rotate(-5deg);
  display: inline-block;
}


/* Product Cards Grid in Homepage */
.product-card-item {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.product-card-item:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 10px 25px rgba(12, 35, 64, 0.1);
  transform: translateY(-4px);
}

.product-card-item.active-card {
  border: 2px solid var(--accent-orange);
  box-shadow: 0 10px 25px rgba(237, 91, 45, 0.15);
}

.product-card-img {
  height: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.arrow-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F1F5F9;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.product-card-item:hover .arrow-circle-btn,
.product-card-item.active-card .arrow-circle-btn {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

/* Feature/Why Choose Us Box */
.feature-box-card {
  background-color: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
  transition: all 0.25s ease;
}

.feature-box-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: var(--brand-blue);
}

.feature-box-icon {
  font-size: 2rem;
  color: var(--primary-navy);
  line-height: 1;
}

/* Brand Card Styling */
.brand-card-item {
  background-color: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text-dark);
}

.brand-card-item:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.08);
  transform: translateY(-2px);
}

/* CTA Banner Footer - Exact Replica */
.cta-banner-navy {
  background: linear-gradient(90deg, rgba(7, 29, 61, 0.94) 0%, rgba(7, 29, 61, 0.90) 100%), url('assets/other/page-header.png') center center / cover no-repeat;
  color: #FFFFFF;
  padding: 2.75rem 0;
  position: relative;
}

.cta-banner-divider {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

@media (max-width: 991px) {
  .cta-banner-divider {
    display: none;
  }
}

.cta-btn-exact {
  background-color: #ED5B2D;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(237, 91, 45, 0.3);
}

.cta-btn-exact:hover {
  background-color: #D84A1C;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(237, 91, 45, 0.4);
}

.cta-contact-icon-box {
  font-size: 1.6rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.1rem;
}

.cta-contact-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}

.cta-contact-val:hover {
  color: #ED5B2D;
}


/* Product Section Exact Replica Styling from reference crop */
.product-row-exact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

@media (max-width: 1199px) {
  .product-row-exact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

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

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

.product-exact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.product-exact-card.active-orange {
  border: 2px solid #F05A28;
  box-shadow: 0 8px 20px rgba(240, 90, 40, 0.12);
}

.product-exact-card:hover {
  border-color: #F05A28;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(12, 35, 64, 0.08);
}

.product-exact-img {
  width: 100%;
  /* height: 130px; */
  object-fit: contain;
  margin-bottom: 0.85rem;
  background-color: #F8FAFC;
  border-radius: 8px;
  /* padding: 0.5rem; */
  transition: transform 0.25s ease;
}

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

.product-exact-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.product-exact-subtitle {
  font-size: 0.76rem;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 1rem;
  min-height: 38px;
}

.product-exact-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #EDF2F7;
  color: #0B2545;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.product-exact-card.active-orange .product-exact-arrow,
.product-exact-card:hover .product-exact-arrow {
  background-color: #072B54;
  color: #FFFFFF;
}

/* About Us Section Exact Replica Styling from reference crop */
.about-exact-building-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-exact-building-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
}

.about-exact-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #072B54;
  color: #FFFFFF;
  padding: 1.5rem 1.75rem;
  border-radius: 12px 0 12px 0;
  border-left: 4px solid #ED5B2D;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  min-width: 210px;
  z-index: 2;
}

.about-exact-badge .badge-label-trusted {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.about-exact-badge .badge-label-since {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.about-exact-badge .badge-label-years {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.about-exact-badge .badge-label-sub {
  font-size: 0.8rem;
  color: #CBD5E1;
}

.about-values-col {
  border-left: 1px solid #E2E8F0;
  padding-left: 2rem;
}

@media (max-width: 991px) {
  .about-values-col {
    border-left: none;
    border-top: 1px solid #E2E8F0;
    padding-left: 0;
    padding-top: 2rem;
  }
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
}

.about-value-item:last-child {
  border-bottom: none;
}

.about-value-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #F1F5F9;
  color: #072B54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Industries We Serve Exact Replica Styling from reference crop */
.industry-row-exact {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.65rem;
}

@media (max-width: 1399px) {
  .industry-row-exact {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-row-exact {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-exact-card {
  position: relative;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-exact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.industry-exact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 0.65rem;
}

.industry-exact-label {
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Slick Brands Slider Replica Styling from reference crop */
.brand-slide-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  margin: 0.5rem 0.5rem;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #0F172A;
  transition: all 0.25s ease;
  min-height: 140px;
}

.brand-slide-card:hover {
  border-color: #0056B3;
  box-shadow: 0 8px 22px rgba(12, 35, 64, 0.08);
  transform: translateY(-3px);
}

.brand-slide-logo {
  width: 100%;
  max-width: 140px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.brand-slide-logo-img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

.brand-slide-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 0.25rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.brand-slide-verified {
  font-size: 0.73rem;
  font-weight: 600;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  white-space: nowrap;
}

/* Testimonials Section Exact Replica Styling from reference crop */
.testimonial-slick-slider {
  min-width: 0; /* Prevents flex overflow in bootstrap */
}

.testimonial-slick-slider .slick-track {
  display: flex !important;
}

.testimonial-slick-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.testimonial-slick-slider .slick-slide > div {
  width: 100%;
  display: flex;
}

.testimonial-exact-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 250px;
}

.testimonial-left-content {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 65%;
  min-width: 0;
}

.testimonial-right-portrait {
  flex: 0 0 35%;
  max-width: 35%;
  position: relative;
  background-color: #E2E8F0;
}

@media (max-width: 767px) {
  .testimonial-left-content {
    flex: 1 1 100%;
    padding: 1.5rem;
  }
  .testimonial-right-portrait {
    display: none;
  }
}

.testimonial-quote-symbol {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0056B3;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-exact-quote {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.testimonial-avatar-mini {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 0.1rem;
}

.testimonial-author-title {
  font-size: 0.76rem;
  color: #64748B;
  margin-bottom: 0;
}

.testimonial-portrait-lg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #EEF2F6;
  color: #0B2545;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-arrow-btn:hover {
  background-color: #072B54;
  color: #FFFFFF;
}

/* Slick Dots Custom Styling */
.testimonial-slick-slider .slick-dots {
  position: static;
  margin-top: 1.25rem;
  display: flex !important;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}

.testimonial-slick-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.testimonial-slick-slider .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background-color: #CBD5E1;
  border: none;
  font-size: 0;
  transition: all 0.2s ease;
}

.testimonial-slick-slider .slick-dots li.slick-active button {
  background-color: #0056B3;
  width: 24px;
  border-radius: 10px;
}

/* Footer Exact Replica Styling */
.main-footer-exact {
  background-color: #0B192C;
  color: #94A3B8;
  font-size: 0.88rem;
  padding-top: 3.5rem;
}

.footer-col-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .footer-col-divider {
    border-right: none;
    padding-right: 0.75rem;
  }
}

.footer-exact-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-exact-text {
  color: #94A3B8;
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background-color: #0056B3;
  color: #FFFFFF;
}

.footer-exact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-exact-links li {
  margin-bottom: 0.65rem;
}

.footer-exact-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-exact-links a:hover {
  color: #FFFFFF;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: #94A3B8;
  font-size: 0.86rem;
}

.footer-contact-icon {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: #94A3B8;
}

.footer-bottom-bar a {
  color: #94A3B8;
  text-decoration: none;
}

.footer-bottom-bar a:hover {
  color: #FFFFFF;
}

/* Topbar Social Icons Styling */
.topbar-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.topbar-social-icon:hover {
  background-color: #ED5B2D;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Page Header & About Banner Component */
.page-header,
.about-hero-banner {
  background-color: #071D3D;
  background: linear-gradient(90deg, rgba(7, 29, 61, 0.95) 0%, rgba(7, 29, 61, 0.82) 48%, rgba(7, 29, 61, 0.35) 100%), url('assets/other/page-header.png') center right / cover no-repeat;
  color: #FFFFFF;
  padding: 4rem 0 3.5rem 0;
  position: relative;
}

.stat-box-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  margin-top: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .stat-box-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-box-icon {
  font-size: 1.5rem;
  color: #0056B3;
  margin-bottom: 0.35rem;
}

.stat-box-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B2545;
  line-height: 1.2;
}

.stat-box-lbl {
  font-size: 0.76rem;
  color: #64748B;
  margin-bottom: 0;
}

.vision-card-exact {
  background-color: #F0F5FA;
  border: 1px solid #DBEFEF;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  height: 100%;
}

.mission-card-exact {
  background-color: #FFF8F0;
  border: 1px solid #FDE6D2;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  height: 100%;
}

.values-grid-exact {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.85rem;
}

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

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

.values-exact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.35rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
}

.values-exact-card:hover {
  border-color: #0056B3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.08);
}

.values-exact-icon {
  font-size: 2rem;
  color: #0056B3;
  margin-bottom: 0.75rem;
}

.values-exact-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.values-exact-desc {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 0;
}

.winning-together-banner {
  background: linear-gradient(90deg, rgba(7, 29, 61, 0.94) 0%, rgba(7, 29, 61, 0.88) 100%), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
  color: #FFFFFF;
  padding: 3.5rem 0;
  position: relative;
}

/* Stat Box Row for About Page */
.stat-box-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.stat-box-item {
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-right: 1px solid #EDF2F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-box-item:last-child {
  border-right: none;
}

.stat-box-icon {
  font-size: 1.75rem;
  color: #0056B3;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.stat-box-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0C2340;
  line-height: 1.2;
}

.stat-box-lbl {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 0.15rem;
}

@media (max-width: 576px) {
  .stat-box-row-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-box-item {
    border-right: none;
    border-bottom: 1px solid #EDF2F7;
    padding-bottom: 0.75rem;
  }
}

/* ========================================================
   Contact Us Page Exact Layout & Styling
   ======================================================== */

/* 4 Feature Badges Strip */
.contact-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  height: 100%;
}

.contact-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 35, 64, 0.06);
  border-color: #CBD5E1;
}

.contact-feature-icon {
  font-size: 1.85rem;
  color: #072B54;
  line-height: 1;
  flex-shrink: 0;
}

.contact-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.contact-feature-sub {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Contact Form Inputs */
.contact-form-control {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #1E293B;
  transition: all 0.2s ease;
}

.contact-form-control:focus {
  background-color: #FFFFFF;
  border-color: #0056B3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  color: #0F172A;
  outline: none;
}

.contact-form-control::placeholder {
  color: #94A3B8;
  font-size: 0.86rem;
}

.btn-contact-navy {
  background-color: #072B54;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-contact-navy:hover {
  background-color: #0056B3;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 43, 84, 0.25);
}

/* Our Office & Building Column */
.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.office-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #EBF3FA;
  color: #0056B3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.office-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.25rem;
}

.office-info-text {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.office-info-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0056B3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.office-info-link:hover {
  color: #ED5B2D;
  gap: 0.55rem;
}

/* Building Card with Navy Banner */
.contact-building-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-building-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contact-building-banner {
  background-color: #072B54;
  color: #FFFFFF;
  padding: 1.5rem 1.25rem;
  margin-top: auto;
}

.contact-building-banner h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.contact-building-banner p {
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 0.75rem;
}

.contact-building-accent {
  width: 32px;
  height: 3px;
  background-color: #ED5B2D;
  border-radius: 2px;
}

/* Map Section & Floating Card */
.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background-color: #E2E8F0;
}

.contact-map-card {
  position: absolute;
  top: 30px;
  left: 60px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
  max-width: 300px;
  z-index: 5;
}

@media (max-width: 768px) {
  .contact-map-card {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    margin: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
}

/* Social & Quotation Bottom Section */
.social-connect-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  height: 100%;
}

.social-connect-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.08);
  border-color: #CBD5E1;
}

.social-connect-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.social-connect-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0C2340;
  line-height: 1.3;
}

.quote-cta-box {
  background-color: #F0F6FC;
  border: 1px solid #D0E1FD;
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-quote-pill {
  background-color: #FFE7DF;
  color: #ED5B2D;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(237, 91, 45, 0.2);
  transition: all 0.2s ease;
}

.btn-quote-pill:hover {
  background-color: #ED5B2D;
  color: #FFFFFF;
  border-color: #ED5B2D;
}

/* ========================================================
   Product Detail Page Exact Layout & Styling
   ======================================================== */

.product-sidebar-sticky {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.product-sidebar-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.85rem;
}

.product-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-sidebar-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.84rem;
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all 0.2s ease;
}

.product-sidebar-link:hover {
  background-color: #F8FAFC;
  color: #0056B3;
}

.product-sidebar-link.active {
  background-color: #EBF3FA;
  color: #0C2340;
  font-weight: 700;
  border-left-color: #ED5B2D;
}

.btn-sidebar-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #072B54;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  margin-top: 1.25rem;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-sidebar-enquire:hover {
  background-color: #0056B3;
  color: #FFFFFF;
}

/* Applications Card */
.applications-card-exact {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.applications-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.applications-item {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

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

/* Channel Partner Section Header */
.channel-partners-heading-wrap {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.channel-partners-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0056B3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.channel-partners-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0C2340;
  margin-bottom: 0.5rem;
}

.channel-partners-accent {
  width: 45px;
  height: 3px;
  background-color: #ED5B2D;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Brand Product Cards */
.brand-product-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  scroll-margin-top: 100px;
}

.brand-product-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 18px rgba(12, 35, 64, 0.06);
}

.brand-anchor-tag {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #F8FAFC;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #EDF2F7;
}

.brand-anchor-tag:hover {
  color: #0056B3;
}

.brand-logo-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
}

.brand-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0C2340;
  margin-bottom: 0.4rem;
}

.brand-card-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.brand-website-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0056B3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.brand-website-link:hover {
  color: #ED5B2D;
  gap: 0.5rem;
}

.brand-products-heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.65rem;
}

.brand-product-item {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.brand-motor-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

/* Need Help Choosing Motor Banner */
.help-choosing-box {
  background-color: #F0F6FC;
  border: 1px solid #D0E1FD;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .help-choosing-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.help-choosing-icon {
  font-size: 2.25rem;
  color: #0056B3;
  line-height: 1;
}

.help-choosing-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.15rem;
}

.help-choosing-sub {
  font-size: 0.84rem;
  color: #64748B;
  margin-bottom: 0;
}

.btn-help-orange {
  background-color: #ED5B2D;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: none;
  transition: all 0.2s ease;
}

.btn-help-orange:hover {
  background-color: #072B54;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ========================================================
   Sidebar Action Cards (Need Help & Download Brochure)
   ======================================================== */
.sidebar-action-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-top: 1.25rem;
}

.sidebar-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #EBF3FA;
  color: #0056B3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.sidebar-action-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.35rem;
}

.sidebar-action-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.btn-sidebar-orange {
  background-color: #ED5B2D;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-sidebar-orange:hover {
  background-color: #072B54;
  color: #FFFFFF;
}

.btn-sidebar-outline-blue {
  background-color: #FFFFFF;
  color: #0056B3;
  border: 1px solid #0056B3;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-sidebar-outline-blue:hover {
  background-color: #0056B3;
  color: #FFFFFF;
}

/* ========================================================
   Overview 4 Badges Grid
   ======================================================== */
.overview-feature-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
}

.overview-feature-icon {
  font-size: 1.35rem;
  color: #0056B3;
  flex-shrink: 0;
}

.overview-feature-text {
  font-size: 0.8rem;
  color: #1E293B;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
}

/* ========================================================
   Brand Cards Exact Layout Elements
   ======================================================== */
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  width: 100%;
  padding: 0.25rem;
}

.brand-logo-img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.btn-visit-website {
  border: 1px solid #0056B3;
  color: #0056B3;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
}

.btn-visit-website:hover {
  background-color: #0056B3;
  color: #FFFFFF;
}

.product-range-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0C2340;
  margin-bottom: 0.25rem;
}

.product-range-bar {
  width: 28px;
  height: 3px;
  background-color: #ED5B2D;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.product-range-pill {
  background-color: #F8FAFC;
  border: 1px solid #EDF2F7;
  border-radius: 6px;
  padding: 0.48rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-range-pill:hover {
  background-color: #EBF3FA;
  color: #0056B3;
  border-color: #CBD5E1;
}

.product-range-pill .chevron-icon {
  font-size: 0.7rem;
  color: #0056B3;
  font-weight: bold;
}

.motor-showcase-wrap {
  text-align: center;
}

.motor-showcase-img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.motor-showcase-caption {
  background-color: #F1F7FD;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.25;
}










