/* =============================================
   AARMAN AUTOMATION - MAIN STYLESHEET
   ============================================= */

@import url('variables.css');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--text-medium);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-title.white,
.section-subtitle.white,
.section-label.white {
  color: var(--text-white);
}

.section-subtitle.white {
  color: var(--text-white-muted);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

.btn-dark {
  background: var(--color-primary-dark);
  color: var(--text-white);
}

.btn-dark:hover {
  background: var(--color-primary);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--bg-dark-2);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-tagline {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-bar-tagline svg {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-contact a:hover {
  color: #ffffff;
}

.top-bar-contact a svg {
  width: 13px;
  height: 13px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ---- Navbar ---- */
.navbar {
  background: var(--bg-white);
  height: var(--navbar-height);
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0.04em;
}

.nav-logo-tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  height: 100%;
  min-height: var(--navbar-height);
  line-height: 1.2;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--color-accent);
  transition: all var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: var(--space-4);
  right: var(--space-4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

  .nav-actions .btn {
    padding: 0.65rem 1.35rem;
    min-width: auto;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
  }

.hamburger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger span + span {
  margin-top: 6px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--total-header);
  position: relative;
  overflow: hidden;
  max-height: 960px;
}

.hero-content {
  background: var(--bg-dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-12) var(--space-16) 0;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--color-primary) 100%);
  z-index: -1;
}

.hero-content .container-left {
  max-width: 640px;
  margin-left: auto;
  padding-left: var(--space-12);
  padding-right: var(--space-8);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(26, 86, 219, 0.15);
  border: 1px solid rgba(26, 86, 219, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-5);
}

.hero-eyebrow span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7eb3ff;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.hero-title span {
  color: var(--color-accent);
  position: relative;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--text-white-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero-cnc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-side img {
  display: none;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-dark-2) 0%, transparent 30%);
  z-index: 1;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.stat-item {
  background: var(--bg-white);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-6);
  transition: background var(--transition-fast);
}

.stat-item:hover {
  background: var(--bg-light);
}

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

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

.stat-content {}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.stat-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1px;
}

/* ---- Services Section ---- */
.services-section {
  padding: var(--space-20) 0;
  background: var(--bg-white);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: stretch;
}

.services-main {}

.services-header {
  margin-bottom: var(--space-10);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.service-card {
  background: var(--bg-white);
  padding: var(--space-6);
  transition: all var(--transition-base);
  cursor: default;
}

.service-card:hover {
  background: var(--bg-light);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.service-card-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

.services-promo {
  background: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.services-promo-img {
  flex: 1;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.services-promo-content {
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  position: relative;
  z-index: 2;
}

.services-promo-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

/* ---- Major Customers ---- */
.major-customers {
  padding: var(--space-20) 0;
  background: var(--bg-white);
}

.major-customers .section-header {
  margin-bottom: var(--space-10);
}

.customer-marquee {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  padding: var(--space-5) 0;
  margin-bottom: var(--space-10);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 18s linear infinite;
}

.customer-logo {
  flex: 0 0 auto;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .customer-logo img {
    width: auto;
    max-width: 100%;
    height: 80px;
}

.customer-logo img:hover {
  opacity: 1;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.customer-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.customer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.customer-card p {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.customer-card strong {
  display: block;
  font-size: var(--text-base);
  color: var(--text-dark);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- Features Bar ---- */
.features-bar {
  background: var(--color-primary-dark);
  padding: var(--space-8) 0;
}

/* ---- Who We Are ---- */
.who-we-are {
  padding: var(--space-20) 0;
  background: #f8f9ff;
}

.section-header-center {
  text-align: center;
  margin-bottom: var(--space-10);
}

.who-we-are-body {
  display: grid;
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are-text {
  line-height: 1.9;
  font-size: var(--text-lg);
  color: var(--text-medium);
  margin: 0 auto;
  max-width: 780px;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.feature-pill {
  background: #ffffff;
  border: 1px solid rgba(15, 52, 112, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 18px 60px rgba(13, 45, 110, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 80px rgba(13, 45, 110, 0.1);
}

.feature-pill strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  color: var(--text-dark);
}

.feature-pill span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are {
    padding: var(--space-16) 0;
  }

  .who-we-are-text {
    font-size: 1rem;
  }
}

.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item {
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-6);
  transition: background var(--transition-fast);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-content {}

.feature-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.feature-desc {
  font-size: var(--text-xs);
  color: var(--text-white-dim);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--color-primary) 100%);
  padding: var(--space-20) 0 var(--space-16);
  margin-top: var(--total-header);
  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.02'%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: 2;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.page-hero-eyebrow span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-eyebrow span.sep {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero-eyebrow span.current {
  color: var(--color-accent);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: var(--text-lg);
  color: var(--text-white-muted);
  max-width: 560px;
}

/* ---- Section padding ---- */
.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-dark {
  background: var(--bg-dark-2);
  color: var(--text-white);
}

.section-dark .section-title {
  color: var(--text-white);
}

.section-dark .section-subtitle {
  color: var(--text-white-muted);
}

.section-light {
  background: var(--bg-light);
}

/* ---- Card Grid Layouts ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

/* ---- Info Card ---- */
.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.info-card:hover .info-card-icon {
  background: var(--color-accent);
  color: white;
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-3);
}

.info-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dark card variant */
.info-card.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.info-card.dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(26, 86, 219, 0.5);
}

.info-card.dark h3 {
  color: var(--text-white);
}

.info-card.dark p {
  color: var(--text-white-muted);
}

.info-card.dark .info-card-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #7eb3ff;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
}

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

.timeline-dot {
  position: absolute;
  left: -2.25rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.timeline-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Process Steps ---- */
.process-step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding: var(--space-8);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  margin-bottom: var(--space-4);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.process-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-white);
}

.process-step-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.process-step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Team Card ---- */
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

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

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background: var(--bg-light-2);
}

.team-card-body {
  padding: var(--space-5) var(--space-6);
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
}

.team-card-role {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  margin-top: 3px;
}

/* ---- Certification Badge ---- */
.cert-badge {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-badge-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-2);
  border-radius: 50%;
  color: var(--color-primary);
}

.cert-badge-icon svg {
  width: 40px;
  height: 40px;
}

.cert-badge h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.cert-badge p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Contact Card ---- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-light-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-1);
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--color-accent);
}

/* ---- Form ---- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

/* ---- Machinery Carousel ---- */
.machinery-carousel-section {
  padding: 120px 0;
}

.machinery-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.carousel-track {
  position: relative;
  min-height: 780px;
  touch-action: pan-y;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.machinery-carousel.is-ready .carousel-track {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.carousel-slide {
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.carousel-slide.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.carousel-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(0, 71, 171, 0.14);
  box-shadow: 0 24px 70px rgba(13, 45, 110, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.carousel-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(13, 45, 110, 0.16);
}

.carousel-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
  will-change: transform;
}

.carousel-image-card:hover img {
  transform: scale(1.05);
}

.carousel-copy {
  padding: var(--space-10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(13, 45, 110, 0.08);
  backdrop-filter: blur(18px);
}

.carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0047AB;
  margin-bottom: var(--space-4);
}

.carousel-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.4vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: var(--space-5);
  color: var(--text-dark);
}

.carousel-copy p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 40rem;
}

.carousel-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.carousel-spec-grid dt {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.carousel-spec-grid dd {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-8);
}

.feature-badges span {
  display: inline-flex;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(0, 71, 171, 0.08);
  color: #0047AB;
  font-size: 0.8rem;
  font-weight: 700;
}

.carousel-controls {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.carousel-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(13, 45, 110, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  color: #0047AB;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  background: #f8fbff;
  box-shadow: 0 16px 36px rgba(13, 45, 110, 0.12);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 45, 110, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dot.active {
  background: #0047AB;
  transform: scale(1.2);
}

.carousel-dot:focus-visible {
  outline: 2px solid #0047AB;
  outline-offset: 3px;
}

.carousel-copy .btn-primary {
  min-width: 220px;
  border-radius: 999px;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark-2);
  color: var(--text-white-muted);
}

.footer-top {
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-white-dim);
  line-height: 1.7;
  margin: var(--space-4) 0 var(--space-6);
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.footer-logo-tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-orange);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-white-dim);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--color-accent);
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: var(--text-sm);
  color: var(--text-white-dim);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--text-white);
}

.footer-bottom {
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: var(--text-sm);
  color: var(--text-white-dim);
}

.footer-copy a {
  color: var(--color-accent);
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-12) 0;
}

/* ---- Tag/Badge ---- */
.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--bg-light-2);
  color: var(--color-primary);
}

/* ---- Two-column split ---- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split-layout.reverse> :first-child {
  order: 2;
}

.split-layout.reverse> :last-child {
  order: 1;
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Industries Grid ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.industry-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: var(--bg-light-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.industry-card:hover .industry-card-icon {
  background: var(--color-primary);
  color: white;
}

.industry-card-icon svg {
  width: 30px;
  height: 30px;
}

.industry-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 30, 74, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}

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

.gallery-item-overlay span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::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");
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: var(--text-lg);
  color: var(--text-white-muted);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---- About intro split ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-intro-content .section-title {
  margin-bottom: var(--space-5);
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-light-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
}

.about-feature-text h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Quality Process ---- */
.quality-steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
}

.quality-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-primary));
  z-index: 0;
}

.quality-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
}

.quality-step-num {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.quality-step h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.quality-step p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---- Map ---- */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Utility ---- */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.w-full {
  width: 100%;
}

/* ---- Custom Desktop Cursor ---- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
}

.cursor-inner {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outer {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

.custom-cursor.hovering .cursor-inner {
  width: 0;
  height: 0;
}

.custom-cursor.hovering .cursor-outer {
  width: 48px;
  height: 48px;
  background-color: rgba(26, 86, 219, 0.08);
  border-color: var(--color-accent);
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 220px;
  /* Adjust as needed */
  height: auto;
}
.rotary-section{
    padding:100px 0;
}

.rotary-layout{
    display:grid;
    grid-template-columns:280px 1fr 280px;
    gap:40px;
    align-items:center;
}

.rotary-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.35s;
}

.rotary-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.rotary-image{
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.rotary-image img{
    max-width:100%;
    max-height:170px;
    object-fit:contain;
}

.rotary-box h3{
    font-size:22px;
    margin-bottom:10px;
    color:#0f172a;
}

.rotary-box p{
    font-size:16px;
    color:#555;
    margin-bottom:10px;
}

.rotary-box span{
    display:inline-block;
    background:#eaf5ff;
    color:#0056b3;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}

.rotary-center{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid #e5e7eb;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.rotary-center img{
    width:100%;
    display:block;
}

@media(max-width:992px){

.rotary-layout{
grid-template-columns:1fr;
}

.rotary-center{
order:-1;
}

}
/* =========================
   Measuring Section
========================= */

.measurement-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:60px;
}

.measurement-image{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.measurement-image img{
    width:100%;
    display:block;
    object-fit:contain;
}

.measurement-details{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.measurement-details h3{
    margin:0;
    padding:24px 30px;
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    border-bottom:1px solid #e5e7eb;
}

.measurement-table{
    width:100%;
    border-collapse:collapse;
}

.measurement-table td{
    padding:18px 30px;
    border-bottom:1px solid #ececec;
    font-size:16px;
}

.measurement-table tr:last-child td{
    border-bottom:none;
}

.measurement-table td:first-child{
    width:35%;
    font-weight:600;
    color:#64748b;
    background:#f8fafc;
}

.measurement-table td:last-child{
    color:#0f172a;
    font-weight:500;
}


/* Height Gauge */

.height-gauge{
    display:flex;
    align-items:center;
    gap:35px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.height-gauge img{
    width:180px;
    object-fit:contain;
}

.height-gauge h3{
    margin:0 0 15px;
    font-size:26px;
    color:#0f172a;
}

.height-gauge p{
    margin:8px 0;
    font-size:18px;
    color:#475569;
}

.height-gauge strong{
    color:#0056b3;
}


/* Responsive */

@media(max-width:991px){

.measurement-layout{
    grid-template-columns:1fr;
}

.height-gauge{
    flex-direction:column;
    text-align:center;
}

.height-gauge img{
    width:160px;
}

.measurement-table td{
    padding:15px 18px;
}

.measurement-details h3{
    font-size:24px;
}

}

