/* =========================================================
   Pacific Diagnostics Limited — Custom Stylesheet
   Colors extracted from PDF designs:
     Primary Navy  : #111886
     Bright Blue   : #1B28D2
     Orange Accent : #FF6600
     Dark Footer   : #180E3B
     Off-white     : #FBFBFB
     Light Gray    : #D8D9D8
   ========================================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --navy:       #111886;
  --blue:       #1B28D2;
  --orange:     #FF6600;
  --dark-footer:#180E3B;
  --white:      #FFFFFF;
  --off-white:  #FBFBFB;
  --gray-light: #D8D9D8;
  --gray-mid:   #BFC0BF;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  --transition: 0.3s ease;
  --shadow:     0 4px 20px rgba(17,24,134,0.12);
  --shadow-lg:  0 8px 40px rgba(17,24,134,0.18);
  --radius:     8px;
  --radius-lg:  16px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ----- Preloader ----- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.preloader-logo .brand-text {
  color: var(--white); font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700; letter-spacing: 1px;
}
.preloader-logo .brand-sub { color: var(--gray-light); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; }
.preloader-spinner {
  width: 48px; height: 48px; border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--orange); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- Top Bar ----- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--orange); }
.top-bar .contact-info { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar .contact-info span { display: flex; align-items: center; gap: 6px; }
.top-bar .social-links { display: flex; gap: 12px; align-items: center; }
.top-bar .social-links a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  transition: background var(--transition), color var(--transition);
}
.top-bar .social-links a:hover { background: var(--orange); color: white; }

/* ----- Navbar ----- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  padding: 0;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(17,24,134,0.13);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,24,134,0.07);
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: padding 0.3s ease;
}
.navbar.scrolled .container { padding: 7px 20px; }
.navbar-brand { display: flex; align-items: center; }
.navbar-logo {
  height: 56px; width: auto;
  display: block; object-fit: contain;
  transition: height 0.3s ease;
}
.navbar.scrolled .navbar-logo { height: 40px; }

/* ----- Currency Selector ----- */
.currency-wrap { position: relative; display: flex; align-items: center; }
.currency-btn {
  display: flex; align-items: center; gap: 5px;
  background: transparent;
  border: 1.5px solid rgba(17,24,134,0.2);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 0.78rem; font-weight: 700;
  font-family: var(--font-body);
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.currency-btn:hover { border-color: var(--navy); color: var(--navy); background: rgba(17,24,134,0.04); }
.currency-btn .chev { font-size: 0.55rem; opacity: 0.6; transition: transform 0.2s; }
.currency-btn.open .chev { transform: rotate(180deg); }
.currency-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  min-width: 210px;
  z-index: 500;
  overflow: hidden;
  animation: dropIn 0.15s ease;
}
.currency-dropdown.open { display: block; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.currency-item {
  padding: 9px 14px;
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 9px;
  color: var(--text-dark);
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.currency-item:last-child { border-bottom: none; }
.currency-item:hover { background: var(--off-white); }
.currency-item.active { background: rgba(17,24,134,0.06); color: var(--navy); font-weight: 700; }
.currency-item .ci-code { font-weight: 800; min-width: 36px; color: var(--navy); }
.currency-item .ci-name { color: var(--text-mid); font-size: 0.76rem; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li { position: relative; }
.nav-links li > a {
  padding: 8px 14px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
}
.nav-links li > a:hover,
.nav-links li > a.active { color: var(--navy); background: rgba(17,24,134,0.06); }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border-top: 3px solid var(--navy);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 0.84rem; font-weight: 500;
  color: var(--text-mid);
  border-radius: 0;
}
.nav-links .dropdown-menu li a:hover { color: var(--navy); background: rgba(17,24,134,0.05); padding-left: 24px; }
.nav-links .dropdown-menu li a i { color: var(--orange); font-size: 0.75rem; }

.btn-quote {
  background: var(--orange); color: white !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,102,0,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.btn-quote:hover {
  background: #e65c00 !important; color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,102,0,0.45) !important;
}
.btn-login {
  background: transparent !important;
  color: var(--navy) !important;
  border: 2px solid var(--navy) !important;
  padding: 7px 18px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition), transform var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.btn-login:hover {
  background: var(--navy) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--dark-footer);
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-overlay.open { display: flex; }
.nav-overlay .mobile-nav-link {
  display: block; color: rgba(255,255,255,0.85);
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding var(--transition);
}
.nav-overlay .mobile-nav-link:hover { color: var(--orange); padding-left: 12px; }
.nav-overlay .mobile-sub { padding-left: 20px; }
.nav-overlay .mobile-sub .mobile-nav-link { font-size: 1rem; color: rgba(255,255,255,0.6); }
.nav-overlay .mobile-sub .mobile-nav-link:hover { color: var(--orange); }
.nav-overlay .mobile-quote {
  display: inline-block; margin-top: 28px;
  background: var(--orange); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-align: center;
}

/* ----- Container ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ----- Section Utilities ----- */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: white; }
.section-dark { background: var(--dark-footer); color: white; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.section-header.light h2 { color: white; }
.section-header p {
  max-width: 600px; margin: 16px auto 0;
  color: var(--text-mid); font-size: 1rem;
}
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  border-radius: 2px; margin: 18px auto 0;
}
.section-header.left { text-align: left; }
.section-header.left .section-divider { margin-left: 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.5px;
  cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--navy); color: white;
  box-shadow: 0 4px 14px rgba(17,24,134,0.3);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(17,24,134,0.4); }

.btn-orange {
  background: var(--orange); color: white;
  box-shadow: 0 4px 14px rgba(255,102,0,0.35);
}
.btn-orange:hover { background: #e65c00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,0.45); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: white; color: var(--navy); }

.btn-text {
  background: none; color: var(--navy); padding: 0;
  font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 0; box-shadow: none;
}
.btn-text:hover { color: var(--orange); gap: 12px; }

/* ----- Hero ----- */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
  background: transparent;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgb(24 14 59 / 0%) 0%, rgb(24 14 59 / 0%) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,102,0,0.15); border: 1px solid rgba(255,102,0,0.3);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; color: white; line-height: 1.18;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  margin-bottom: 36px; max-width: 560px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Testimonial Banner */
.testimonial-banner {
  background: white; padding: 28px 0;
  border-top: 4px solid var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.testimonial-banner .container {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.testimonial-banner .quote-icon {
  font-size: 3rem; color: var(--orange); line-height: 1; flex-shrink: 0;
}
.testimonial-banner blockquote {
  font-style: italic; color: var(--text-mid); font-size: 0.95rem;
  flex: 1;
}
.testimonial-banner cite {
  display: block; margin-top: 6px;
  font-style: normal; font-weight: 700; color: var(--navy); font-size: 0.85rem;
}

/* ----- Stats Bar ----- */
.stats-bar {
  background: var(--navy);
  padding: 36px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-icon {
  font-size: 1.7rem; color: var(--orange); margin-bottom: 8px;
}
.stat-item h3 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: white; line-height: 1;
  margin-bottom: 6px;
}
.stat-item p { color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 500; line-height: 1.4; }

/* ----- About Section ----- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-text .overline {
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.about-text h2 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--navy); line-height: 1.3; margin-bottom: 20px;
}
.about-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }
.about-text .partner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(17,24,134,0.06); border: 1px solid rgba(17,24,134,0.15);
  border-radius: var(--radius); padding: 12px 16px;
  margin: 16px 0 28px;
}
.about-text .partner-badge i { color: var(--navy); font-size: 1.1rem; }
.about-text .partner-badge span { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

.about-image-wrap {
  position: relative;
}
.about-image-wrap .img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap .experience-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--orange); color: white;
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(255,102,0,0.35);
  text-align: center;
}
.about-image-wrap .experience-badge .num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1;
}
.about-image-wrap .experience-badge .label {
  font-size: 0.78rem; font-weight: 600; opacity: 0.9; margin-top: 4px;
}

/* ----- Image Placeholder ----- */
.img-placeholder {
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--navy);
  font-size: 0.8rem; font-weight: 600;
  text-align: center;
  min-height: 280px;
  border-radius: var(--radius);
}
.img-placeholder i { font-size: 2.5rem; opacity: 0.4; }
.img-placeholder span { opacity: 0.6; }

/* ----- Cards ----- */
.card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }
.card-img { position: relative; overflow: hidden; }
.card-img img, .card-img .img-placeholder { width: 100%; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--navy);
  margin-bottom: 8px; line-height: 1.4;
}
.card-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ----- Swiper Carousels ----- */
.swiper { padding-bottom: 52px !important; }
.swiper-pagination-bullet { background: var(--gray-mid); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--navy); }
.swiper-button-next, .swiper-button-prev {
  color: var(--navy) !important;
  background: white;
  width: 44px !important; height: 44px !important;
  border-radius: 50%; box-shadow: var(--shadow);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 14px !important; font-weight: 900;
}

/* ----- Services Grid ----- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--orange);
}
.service-card .service-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: rgba(17,24,134,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); color: white; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ----- Products Grid ----- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ----- Quote Section ----- */
.quote-section { background: var(--off-white); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.quote-steps { display: flex; flex-direction: column; gap: 0; }
.quote-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--gray-light);
  position: relative;
}
.quote-step:last-child { border-bottom: none; }
.quote-step .step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
}
.quote-step h4 {
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.quote-step p { font-size: 0.88rem; color: var(--text-mid); }

.quote-form-wrap {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.quote-form-wrap h3 {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.quote-form-wrap p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 24px; }

/* ----- Forms ----- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-dark);
  background: white; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17,24,134,0.08);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-mid); }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--navy); }
.form-success {
  display: none; background: #e8f5e9; border: 1.5px solid #a5d6a7;
  border-radius: var(--radius); padding: 16px; color: #2e7d32;
  font-size: 0.9rem; margin-top: 12px;
}

/* ----- Newsletter Strip ----- */
.newsletter-strip { background: var(--navy); padding: 52px 0; }
.newsletter-strip .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.newsletter-strip h3 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: white;
}
.newsletter-strip p { color: rgba(255,255,255,0.7); margin-top: 4px; font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0; max-width: 420px; flex: 1; }
.newsletter-form input {
  flex: 1; padding: 12px 18px;
  border: none; border-radius: 50px 0 0 50px;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.newsletter-form button {
  padding: 12px 24px;
  background: var(--orange); color: white;
  border: none; border-radius: 0 50px 50px 0;
  font-family: var(--font-head); font-weight: 700;
  cursor: pointer; font-size: 0.85rem;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #e65c00; }

/* ----- Page Hero ----- */
.page-hero {
  background: linear-gradient(135deg, var(--dark-footer) 0%, var(--navy) 100%);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  color: white; margin-bottom: 12px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange); font-weight: 600; }

/* ----- About Sub-Navigation ----- */
.about-subnav {
  background: #fff;
  border-bottom: 2px solid var(--gray-light);
  position: sticky;
  top: 73px;
  z-index: 99;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}
.about-subnav.subnav-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}
.about-subnav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  position: relative;
}
.about-subnav a {
  display: flex; align-items: center; gap: 8px;
  padding: 18px 24px;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--text-mid); white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}
.about-subnav a:hover  { color: var(--navy); }
.about-subnav a.active { color: var(--navy); }
.about-subnav a i { color: var(--orange); font-size: 0.8rem; }

/* Animated sliding indicator — replaces the static border-bottom active line */
.subnav-slider {
  position: absolute;
  bottom: -2px;              /* sit on the border-bottom of the nav */
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  pointer-events: none;
  opacity: 0;                /* hidden until JS positions it */
  transition: left  0.3s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}

/* ----- Global text overflow prevention ----- */
h1, h2, h3, h4, h5, h6, p, li, a, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

/* ----- Sidebar Layout (inner pages) ----- */
.sidebar-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }

/* Experience highlight grid (who-we-are) */
.exp-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin: 40px 0;
  align-items: center;
}
.sidebar-nav { position: sticky; top: 140px; }
.sidebar-nav h4 {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  color: var(--text-mid); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-light);
}
.sidebar-nav ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.sidebar-nav ul li a:hover { color: var(--navy); background: rgba(17,24,134,0.05); }
.sidebar-nav ul li a.active {
  color: var(--navy); background: rgba(17,24,134,0.08);
  font-weight: 700;
}
.sidebar-nav ul li a .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-mid); flex-shrink: 0;
}
.sidebar-nav ul li a.active .dot { background: var(--orange); }

/* ----- Why Choose Us Checklist ----- */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.55;
}
.checklist li i {
  color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}

/* ----- Testimonials ----- */
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-card .stars { color: var(--orange); font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: italic; color: var(--text-mid); font-size: 0.98rem;
  line-height: 1.8; margin-bottom: 24px;
}
.testimonial-card .avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(17,24,134,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.4rem; color: var(--navy);
}
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--navy); display: block; }
.testimonial-card .cite-role { font-size: 0.8rem; color: var(--text-mid); margin-top: 2px; }

/* ----- Achievements ----- */
/* Awards trophy row */
.awards-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.award-item {
  text-align: center;
  padding: 8px 4px;
}
.award-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 120px;
  margin-bottom: 16px;
}
.award-icon {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}
.award-item:hover .award-icon { transform: translateY(-6px); }
.award-title {
  font-family: var(--font-head);
  font-size: 0.755rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  margin-bottom: 10px;
}
.award-desc {
  font-size: 0.681rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0;
}

/* Light background variant — used on our-achievements.html */
.awards-row--light .award-title {
  color: var(--navy);
}
.awards-row--light .award-desc {
  color: var(--text-mid);
}

.achievement-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.achievement-card {
  background: var(--navy); color: white;
  border-radius: var(--radius-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition);
}
.achievement-card:hover { transform: translateY(-6px); }
.achievement-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,102,0,0.12);
}
.achievement-card .badge-label {
  display: inline-block;
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
  text-transform: uppercase;
}
.achievement-card h3 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  line-height: 1.3; position: relative; z-index: 1;
}
.achievement-card p { margin-top: 10px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.achievement-card .icon {
  font-size: 3rem; color: rgba(255,255,255,0.12);
  position: absolute; bottom: 20px; right: 24px;
}

/* ----- Siemens Stats ----- */
.siemens-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 36px 0; }
.siemens-stat {
  background: white; border-radius: var(--radius);
  padding: 24px; text-align: center; box-shadow: var(--shadow);
  border-top: 3px solid var(--navy);
}
.siemens-stat h3 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--navy);
}
.siemens-stat p { font-size: 0.85rem; color: var(--text-mid); margin-top: 6px; }

/* ----- Services Detail ----- */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 60px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-image { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }
.service-detail-text .service-number {
  font-family: var(--font-head); font-size: 4rem; font-weight: 900;
  color: rgba(17,24,134,0.08); line-height: 1; margin-bottom: -8px;
}
.service-detail-text h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.service-detail-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }

/* ----- Pricing Table ----- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--navy);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card .popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 0 0 0 var(--radius-lg);
  letter-spacing: 1px;
}
.pricing-header { background: var(--navy); padding: 28px 24px; text-align: center; }
.pricing-card.featured .pricing-header { background: var(--dark-footer); }
.pricing-header h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: white; }
.pricing-header p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 6px; }
.pricing-features { padding: 24px; }
.pricing-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--off-white);
  font-size: 0.88rem; color: var(--text-mid);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 0.9rem; flex-shrink: 0; }
.pricing-features li i.yes { color: #22c55e; }
.pricing-features li i.no { color: var(--gray-mid); }
.pricing-footer { padding: 0 24px 28px; text-align: center; }
.pricing-footer .btn { width: 100%; justify-content: center; }

/* ----- Contact ----- */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.contact-info-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card .icon-circle {
  width: 56px; height: 56px; background: rgba(17,24,134,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); margin: 0 auto 14px;
}
.contact-info-card h4 {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  color: var(--text-mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.contact-info-card a, .contact-info-card p {
  font-size: 0.88rem; color: var(--navy); font-weight: 600; line-height: 1.55;
}
.contact-info-card a:hover { color: var(--orange); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: none; }

/* ----- CTA Strip ----- */
.cta-strip { background: var(--orange); padding: 52px 0; text-align: center; }
.cta-strip h2 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  color: white; margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1rem; }

/* ----- Footer ----- */
.footer { background: var(--dark-footer); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { height: 52px; width: auto; display: block; object-fit: contain; margin-bottom: 4px; }
.footer-brand p { margin-top: 16px; font-size: 0.875rem; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition), gap var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); gap: 12px; }
.footer-col ul li a i { font-size: 0.7rem; color: var(--orange); }
.footer-contact li { display: flex; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.footer-contact li i { color: var(--orange); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--orange); }

/* ----- Floating Buttons ----- */
.float-wrap {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 12px 20px 12px 16px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); color: white; }
.whatsapp-btn i { font-size: 1.2rem; }
.back-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--orange); transform: translateY(-2px); }

/* ----- Cookie Banner ----- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--dark-footer); color: rgba(255,255,255,0.8);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; flex: 1; }
.cookie-banner a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  background: var(--orange); color: white; border: none;
  padding: 8px 20px; border-radius: 50px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem; cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: #e65c00; }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px; border-radius: 50px; font-family: var(--font-head);
  font-size: 0.82rem; cursor: pointer; transition: all var(--transition);
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ----- 404 ----- */
.error-page {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
}
.error-page .error-code {
  font-family: var(--font-head); font-size: 7rem; font-weight: 900;
  color: var(--navy); line-height: 1; opacity: 0.15;
}
.error-page h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.error-page p { color: var(--text-mid); margin: 12px 0 28px; }

/* ----- Timeline (Achievements) ----- */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%;
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--orange));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 40px; margin-bottom: 40px; align-items: center;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1; background: white; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
}
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--orange);
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-mid); }
.timeline-empty { flex: 1; }

/* ----- Partner Logos Strip ----- */
.partners-strip { background: var(--off-white); padding: 48px 0; }
.partners-strip h4 {
  text-align: center; font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  color: var(--text-mid); text-transform: uppercase; margin-bottom: 32px;
}
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.5; transition: opacity var(--transition);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--navy);
}
.partner-logo:hover { opacity: 1; }

/* ----- CT Scanner Marquee Slider ----- */
.ct-slider-section {
  margin: 48px 0;
}
.ct-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.ct-main-heading {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
}
.ct-main-heading--light { color: white; }

/* CT Scanner full-width section */
.ct-full-section { padding: 56px 0; overflow: hidden; }
.ct-full-section .container { margin-bottom: 32px; }
.ct-full-section .ct-label { text-align: center; }
.ct-full-section .ct-main-heading { text-align: center; margin-bottom: 0; }

/* Off-white section */
.section-offwhite { background: var(--off-white); }

/* Standalone stats grid */
.ach-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ach-stat-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 12px;
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
}
.ach-stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.ach-stat-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-top: 8px;
}
.ct-row {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 12px;
}
.ct-row:hover .ct-track { animation-play-state: paused; }
.ct-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.ct-track--left {
  animation: ct-scroll-left 40s linear infinite;
}
.ct-track--right {
  animation: ct-scroll-right 40s linear infinite;
}
.ct-slide {
  flex: 0 0 auto;
  width: 127px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ct-slide img {
  width: 127px;
  height: 93px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ct-slide:hover img { transform: scale(1.05); }

@keyframes ct-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ct-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ==========================================================
   RESPONSIVE — Mobile-first, all devices
   ========================================================== */

/* --- Tablet landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 600px; margin: 0 auto; }

  .awards-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-grid { grid-template-columns: 1fr; }

  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
  .sidebar-nav ul { flex-direction: row; flex-wrap: wrap; }

  .exp-highlight-grid { grid-template-columns: 1fr; }

  .siemens-stats { grid-template-columns: repeat(2, 1fr); }

  .service-detail { gap: 36px; }
  .hero-content { padding: 0 12px; }
}

/* --- Tablet portrait / large phones (≤768px) --- */
@media (max-width: 768px) {
  /* Layout */
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }

  /* Typography */
  .section-header h2 { font-size: 1.7rem; }
  .section-header p { font-size: 0.92rem; }

  /* Top bar */
  .top-bar { display: none; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .navbar .container { height: 64px; }
  .navbar-logo { height: 46px; }

  /* Hero */
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 1.85rem; line-height: 1.25; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-tag { font-size: 0.75rem; }
  .hero-scroll { display: none; }

  /* Testimonial banner */
  .testimonial-banner blockquote { font-size: 0.9rem; }
  .testimonial-banner .quote-icon { font-size: 3rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 20px 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item h3 { font-size: 1.7rem; }

  /* About section */
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 100%; }
  .about-image-wrap .experience-badge { bottom: 12px; right: 12px; padding: 12px 16px; }
  .about-image-wrap .experience-badge .num { font-size: 1.6rem; }

  /* Partner badge */
  .partner-badge { font-size: 0.78rem; padding: 10px 14px; }

  /* Projects / cards */
  .card { width: 100%; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Awards row */
  .awards-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .award-icon-wrap { height: 90px; }
  .award-icon { max-height: 80px; }
  .award-title { font-size: 0.69rem; }
  .award-desc { font-size: 0.626rem; }

  /* Achievement cards */
  .achievement-cards { grid-template-columns: 1fr; }

  /* Siemens */
  .siemens-stats { grid-template-columns: repeat(2, 1fr); }

  /* Service detail */
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-image { order: unset; }
  .service-detail.reverse .service-detail-text { order: unset; }
  .service-detail-image img { max-height: 280px; object-fit: cover; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* Forms */
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline */
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; padding-left: 48px; }
  .timeline-dot { position: absolute; left: 12px; }
  .timeline-empty { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-logo { height: 42px; }

  /* Newsletter */
  .newsletter-strip .container { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .newsletter-form input { font-size: 0.85rem; }

  /* Page hero (inner pages) */
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p { font-size: 0.9rem; }

  /* About sub-nav — horizontal scroll on mobile */
  .about-subnav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .about-subnav::-webkit-scrollbar { display: none; }
  .about-subnav .container { gap: 0; flex-wrap: nowrap; justify-content: flex-start; min-width: max-content; padding: 0 18px; }
  .about-subnav a { padding: 12px 14px; font-size: 0.78rem; white-space: nowrap; }

  /* Sidebar nav */
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
  .sidebar-nav ul { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .sidebar-nav ul a { padding: 8px 14px; font-size: 0.8rem; }

  /* Floating elements */
  .float-wrap { bottom: 16px; right: 16px; gap: 8px; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { width: 48px; height: 48px; justify-content: center; padding: 0; border-radius: 50%; }
  .back-top { width: 42px; height: 42px; }
}

/* --- Small phones (≤480px) --- */
@media (max-width: 480px) {
  /* Layout */
  .section { padding: 40px 0; }
  .container { padding: 0 14px; }

  /* Typography */
  .section-header h2 { font-size: 1.45rem; }
  .section-header p { font-size: 0.85rem; }

  /* Navbar */
  .navbar .container { height: 58px; }
  .navbar-logo { height: 40px; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 0.88rem; }
  .hero-btns .btn { font-size: 0.82rem; padding: 11px 18px; }

  /* Stats — single column on very small screens */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 1.5rem; }
  .stat-item p { font-size: 0.75rem; }

  /* Products — 1 column */
  .products-grid { grid-template-columns: 1fr; }

  /* Awards — 2 columns */
  .awards-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .award-icon-wrap { height: 70px; }
  .award-icon { max-height: 64px; }
  .award-title { font-size: 0.644rem; }
  .award-desc { display: none; }
  .ct-slide { width: 98px; }
  .ct-slide img { width: 98px; height: 74px; }
  .ct-main-heading { font-size: 1.4rem; }

  /* Page hero */
  .page-hero { padding: 44px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }

  /* About sub-nav */
  .about-subnav a { padding: 10px 10px; font-size: 0.72rem; }

  /* Contact info */
  .contact-info-grid { grid-template-columns: 1fr; }

  /* Pricing table — horizontal scroll on tiny screens */
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Siemens stats — 1 column */
  .siemens-stats { grid-template-columns: 1fr; }
  .ach-stats-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-col h4 { font-size: 0.92rem; }
  .footer-col li, .footer-contact li { font-size: 0.82rem; }

  /* Experience badge */
  .about-image-wrap .experience-badge { bottom: 8px; right: 8px; padding: 10px 12px; }
  .about-image-wrap .experience-badge .num { font-size: 1.3rem; }
  .about-image-wrap .experience-badge .label { font-size: 0.65rem; }

  /* Testimonial banner */
  .testimonial-banner { padding: 24px 0; }
  .testimonial-banner blockquote { font-size: 0.82rem; }

  /* Swiper navigation buttons */
  .swiper-button-next, .swiper-button-prev { display: none; }
}

/* ============================================================
   Our Clients Section
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.client-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  height: 110px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(17, 24, 134, 0.13);
  border-color: #c8ccee;
}

.client-card img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.client-card-name {
  display: none;
}

/* Lightbox */
.client-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.client-lightbox.active {
  pointer-events: all;
  opacity: 1;
}

.client-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 60, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.client-lb-inner {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 36px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 72px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.85);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-lightbox.active .client-lb-inner {
  transform: scale(1);
}

.client-lb-inner img {
  max-width: 320px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.client-lb-inner p {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  text-align: center;
}

.client-lb-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  transition: color 0.15s;
  padding: 4px 8px;
}

.client-lb-close:hover { color: var(--navy); }

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

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .client-card { height: 90px; padding: 14px 12px; }
  .client-card img { max-height: 58px; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .client-card { height: 80px; padding: 12px 10px; }
  .client-card img { max-height: 48px; }
}

/* --- Very small phones (≤360px) --- */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.28rem; }
  .awards-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:nth-child(odd) { border-right: none; }
  .about-subnav a { font-size: 0.68rem; padding: 10px 8px; }
}

/* ----- Print ----- */
@media print {
  .navbar, .top-bar, .footer, .float-wrap, .cookie-banner,
  .nav-overlay, #preloader { display: none !important; }
  .section { padding: 24px 0; }
}
