/* ============================================================
   SUPRABHA JEJURI PLANT ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ DESIGN SYSTEM
   Brahm Group | HPDC & Precision Machining
   ============================================================ */

/* Google Fonts imported in header.php */

/* ---- CSS CUSTOM PROPERTIES ---- */
/* Palette inspired by brahmcorp.com ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â dark premium corporate */
:root {
  --primary: #269dc8;
  /* new primary blue ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â navbar, buttons header */
  --secondary: #1e7ca0;
  /* slightly darker blue ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â dark sections, gradients */
  --accent: #7fb8ce;
  /* soft blue accent */
  --light: #f0f7f9;
  /* very pale blue surface */
  --amber: #C9A84C;
  /* keeping Brahm gold accent */
  --amber-dark: #A07830;
  --charcoal: #1a2b33;
  /* dark blue-grey for text */
  --white: #FFFFFF;
  --gray-100: #f8fbfe;
  --gray-200: #e1ecf2;
  --gray-500: #5b727d;
  --border-color: rgba(255, 255, 255, 0.15);

  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Parkinsans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(38, 157, 200, 0.12);
  --shadow-md: 0 6px 24px rgba(38, 157, 200, 0.18);
  --shadow-lg: 0 16px 48px rgba(38, 157, 200, 0.25);

  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.3s ease;

  /* Custom Scaling Variables for Fluid Typography */
  --scaling-factor: 100vw;
  --scrollbar-width: 0px;
  /* Can be refined via JS */
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: max(22px, min(48px, max(0.5px, 0.0317712 * (var(--scaling-factor) - var(--scrollbar-width)))));
}

h2 {
  font-size: max(22px, min(48px, max(0.5px, 0.0317712 * (var(--scaling-factor) - var(--scrollbar-width)))));
}

h3 {
  font-size: 2.1rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--amber);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #0D0D0D;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1050;
  position: relative;
}

.topbar a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar a:hover {
  color: var(--amber);
}

.topbar .topbar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  align-items: center;
}

.topbar .topbar-contact i {
  color: var(--amber);
  font-size: 0.85rem;
}

.topbar .topbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar .topbar-social a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: background var(--transition), color var(--transition);
}

.topbar .topbar-social a:hover {
  background: var(--amber);
  color: var(--charcoal) !important;
  border-color: var(--amber);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  transition: background var(--transition), box-shadow var(--transition);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.navbar-main.scrolled {
  background: #111111;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.navbar-brand .brand-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0em;
  line-height: 1.15;
}

.navbar-brand .brand-logo span {
  color: var(--amber);
}

.navbar-brand .brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.navbar-main .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--amber) !important;
  background: rgba(245, 166, 35, 0.08);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Offcanvas sidebar */
.offcanvas-nav {
  background: var(--primary) !important;
  width: 280px !important;
}

.offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-nav .nav-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.75rem 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-nav .nav-link:hover {
  color: var(--amber) !important;
  background: rgba(245, 166, 35, 0.08);
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 750px;
  min-height: 750px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-carousel .carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-carousel .carousel-caption-custom .container {
  padding-top: 50px;
}

.hero-carousel .slide-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-carousel .slide-line {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--accent));
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero-carousel .slide-title {
  font-family: var(--font-heading);
  font-size: max(22px, min(48px, max(0.5px, 0.0317712 * (var(--scaling-factor) - var(--scrollbar-width)))));
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-carousel .slide-title .accent {
  color: var(--amber);
}

.hero-carousel .slide-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 10;
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  opacity: 0.85;
  transition: all var(--transition);
  margin: 0 16px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: var(--amber);
  border-color: var(--amber);
  opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Indicators */
.hero-carousel .carousel-indicators {
  z-index: 10;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  margin: 0 5px;
  transition: background var(--transition), transform var(--transition);
}

.hero-carousel .carousel-indicators .active {
  background: var(--amber);
  transform: scale(1.3);
}

/* Legacy hero sections (inner pages) */
.hero-section {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-about {
  background-image: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?w=1800&q=85');
  min-height: 40vh;
}

.hero-facility {
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1800&q=85');
  min-height: 40vh;
}

.hero-products {
  background-image: url('https://images.unsplash.com/photo-1567789884554-0b844b597180?w=1800&q=85');
  min-height: 40vh;
}

.hero-network {
  background-image: url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1800&q=85');
  min-height: 40vh;
}

.hero-contact {
  background-image: url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?w=1800&q=85');
  min-height: 35vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-title {
  font-size: max(22px, min(48px, max(0.5px, 0.0317712 * (var(--scaling-factor) - var(--scrollbar-width)))));
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-line {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--accent));
  border-radius: 4px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--charcoal) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.50);
  filter: brightness(1.08);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius);
  background: transparent;
  transition: all var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-solid {
  background: var(--secondary);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.72rem 2rem;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-primary-solid:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-navy {
  background: #112B50;
  color: var(--white);
}

.section-light {
  background: var(--gray-100);
  color: var(--charcoal);
}

.section-white {
  background: var(--white);
  color: var(--charcoal);
}

.section-accent-bg {
  background: var(--light);
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: max(22px, min(38px, max(0.5px, 0.025 * (var(--scaling-factor) - var(--scrollbar-width)))));
  /* Slightly scaled for sections */
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-title.dark {
  color: var(--primary);
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.72);
}

.divider-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--secondary));
  border-radius: 4px;
  margin: 0.75rem 0 1.5rem;
}

/* ============================================================
   QUICK FACTS BAR
   ============================================================ */
.facts-bar {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.facts-bar::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");
}

.fact-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.fact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.fact-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

.fact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  margin: auto;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--amber);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.about-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.about-usp-list li:last-child {
  border-bottom: none;
}

.about-usp-list li i {
  color: var(--amber);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(38, 157, 200, 0.08), rgba(30, 124, 160, 0.06));
  border: 2px solid rgba(38, 157, 200, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--secondary);
}

.service-card:hover .service-icon i {
  color: var(--white) !important;
}

.service-card h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card .service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), gap var(--transition);
}

.service-card:hover .service-link {
  color: var(--amber);
  gap: 10px;
}

/* ============================================================
   PRODUCTS - IMAGE CARDS
   ============================================================ */
.product-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.product-img-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-card .pcard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-img-card:hover .pcard-img {
  transform: scale(1.06);
}

.product-img-card .pcard-body {
  background: var(--white);
  padding: 1.2rem 1.25rem;
}

.product-img-card .pcard-icon-top {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  transition: transform 0.5s ease;
}

.product-img-card:hover .pcard-icon-top {
  transform: scale(1.06);
}

.product-img-card h6 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.product-img-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.product-img-card .pcard-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-img-card:hover .pcard-link {
  color: var(--amber);
}

/* Legacy product card (keep for products.php) */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 2.5rem 1.5rem;
  font-size: 3.5rem;
  line-height: 1;
}

.product-card-body {
  padding: 1.25rem 1rem;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.product-card-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1.5px solid rgba(245, 166, 35, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-color: var(--amber);
}

.why-card:hover .why-icon i {
  color: var(--charcoal) !important;
}

.why-card h6 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   PARTNER BRANDS
   ============================================================ */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.brand-logo-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 28px;
  min-width: 140px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.brand-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.brand-logo-box .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.brand-logo-box .brand-cat {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  z-index: 0;
}

.testimonial-card .testimonial-body {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card .testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.1rem;
}

.testimonial-card .testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 166, 35, 0.35);
}

.card-solid {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-solid:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-primary {
  background: var(--primary);
  border: 1px solid rgba(123, 164, 208, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13, 36, 64, 0.4);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}

.card-icon-wrap.blue {
  background: linear-gradient(135deg, rgba(46, 94, 153, 0.15), rgba(46, 94, 153, 0.05));
  border-color: rgba(46, 94, 153, 0.25);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   SPECS TABLE
   ============================================================ */
.specs-table {
  border-collapse: collapse;
  width: 100%;
}

.specs-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.1rem;
  text-align: left;
}

.specs-table td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) td {
  background: var(--gray-100);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--primary);
}

.specs-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.location-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.location-flag {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.location-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.location-city {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card-body {
  padding: 1.5rem 1.75rem;
}

.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.stat-icon {
  color: var(--amber);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.stat-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.stat-text strong {
  color: var(--white);
}

/* ============================================================
   CERTIFICATION BADGES
   ============================================================ */
.cert-badge {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.04));
  border: 2px solid rgba(245, 166, 35, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.2);
}

.cert-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.cert-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  display: block;
}

.cert-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--secondary) 0%, var(--primary) 60%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
  pointer-events: none;
}

.cta-banner::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(123, 164, 208, 0.08);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-top: 0.6rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
  color: var(--white);
  outline: none;
}

.contact-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* Contact info cards */
.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: transform var(--transition), border-color var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.3);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.06));
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-info-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.2rem;
}

.contact-info-value a {
  color: var(--accent);
}

.contact-info-value a:hover {
  color: var(--amber);
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: #081826;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand span {
  color: var(--amber);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.75rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '\203A';
  color: var(--amber);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-item i {
  color: var(--amber);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-item a:hover {
  color: var(--amber);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--charcoal) !important;
  border-color: var(--amber);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.25rem 0;
  margin-top: 50px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  color: var(--amber);
}

/* ============================================================
   MACHINE SPECS / PERIPHERAL / EQUIPMENT (facility.php)
   ============================================================ */
.machine-spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.machine-spec-card:hover {
  transform: translateX(4px);
  border-left-color: var(--accent);
}

.machine-tonnage {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.machine-type {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.machine-detail {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.3rem;
}

.machine-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.peripheral-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.peripheral-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}

.peripheral-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.peripheral-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  transition: transform var(--transition), border-color var(--transition);
}

.equipment-item:hover {
  transform: translateX(4px);
  border-color: rgba(123, 164, 208, 0.3);
}

.equipment-num {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.equipment-name {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.callout-box {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.callout-box-icon {
  font-size: 2rem;
  color: var(--amber);
  float: right;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
  will-change: transform, opacity;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  .topbar {
    display: none;
  }

  /* Hidden on mobile */
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }

  .cta-banner {
    padding: 2.5rem 1.75rem;
  }

  .about-img-wrap img {
    height: 300px;
  }

  .hero-carousel .carousel-item {
    min-height: 100svh;
  }
}

/* ============================================================
   CUSTOMERS PAGE SPECIFIC
   ============================================================ */
.hero-customers {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1800&q=85');
}

.customer-logo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.customer-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.customer-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.customer-logo-placeholder i {
  font-size: 2.5rem;
  color: var(--secondary);
  opacity: 0.8;
  transition: all var(--transition);
}

.customer-logo-card:hover .customer-logo-placeholder i {
  color: var(--amber);
  transform: scale(1.1);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

.customer-info {
  margin-top: auto;
}

.customer-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 600;
}

/* ============================================================
   TOOL & DIE MANUFACTURING SECTION
   ============================================================ */
.tool-die-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}

.tool-die-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.machine-img-wrap {
  height: 180px;
  overflow: hidden;
  background: #f0f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.machine-img-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.tool-die-card:hover .machine-img-wrap img {
  transform: scale(1.08);
}

.machine-info {
  padding: 1.25rem 1rem;
}

.machine-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0.5rem;
  font-size: 1.15rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
}

.spec-label {
  color: var(--gray-500);
  font-weight: 500;
}

.spec-value {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

.tool-die-card.conventional-box {
  border: 2px solid var(--secondary);
  padding: 1.25rem 1rem;
}

.conventional-sub-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  margin: 1rem 0 0.75rem;
}

.conventional-sub-title:first-child {
  margin-top: 0;
}

.conventional-full-img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  margin: 0 auto 1.25rem;
  display: block;
  border: 1px solid #eee;
  padding: 5px;
  background: #fff;
  object-fit: contain;
}

.conventional-full-img:last-child {
  margin-bottom: 0;
}
/* ===================== GLOBAL STRATEGY FLOW ===================== */
.strategy-container {
    position: relative;
    padding: 3rem 0;
}

.strategy-group-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.strategy-group-card:hover {
    transform: translateX(10px);
}

.strategy-location-card {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(13, 36, 64, 0.15);
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.strategy-location-card:hover {
    transform: translateY(-8px);
    background: var(--secondary);
}

.strategy-location-card h4 {
    color: var(--amber);
    font-family: var(--font-heading);
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.strategy-list li::before {
    content: 'ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 800;
}

.customer-cluster {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.customer-cluster h4 {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.connector-line {
    position: absolute;
    background: var(--secondary);
    height: 2px;
    z-index: 1;
    opacity: 0.3;
    display: none; /* Hidden on mobile */
}

@media (min-width: 992px) {
    .connector-line { display: block; }
}

/* ===================== GLOBAL STRATEGY REDESIGN ===================== */
.strategy-container { position: relative; padding: 3rem 0; }
.strategy-column { position: relative; }
.strategy-group-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--secondary); margin-bottom: 2rem; transition: all 0.3s ease; text-align: center; }
.strategy-location-card { background: var(--primary); color: #fff; border-radius: 12px; padding: 1.5rem; box-shadow: 0 8px 25px rgba(13, 36, 64, 0.12); margin-bottom: 1.5rem; position: relative; }
.strategy-location-card h5 { color: var(--amber); font-weight: 700; margin-bottom: 0.75rem; }
.customer-cluster { background: var(--white); border-radius: 12px; padding: 1.25rem; box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid var(--gray-200); text-align: center; margin-bottom: 1.5rem; transition: transform 0.3s ease; }
.customer-cluster:hover { transform: scale(1.03); border-color: var(--secondary); }
.strategy-list { list-style: none; padding: 0; margin: 0; }
.strategy-list li { font-size: 0.85rem; padding-left: 1.25rem; position: relative; margin-bottom: 0.5rem; color: rgba(255,255,255,0.8); }
.strategy-list li::before { content: '?'; position: absolute; left: 0; color: var(--amber); font-size: 0.8rem; }
@media (min-width: 992px) {
  .column-line::after { content: '?'; position: absolute; top: 50%; right: -0.5rem; font-size: 2rem; color: var(--secondary); opacity: 0.2; transform: translateY(-50%); }
  .column-line-end::before { content: '?'; position: absolute; top: 50%; left: -1.5rem; font-size: 2rem; color: var(--secondary); opacity: 0.2; transform: translateY(-50%); display: none; }
}
