@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ================================================
   DESIGN TOKENS
   Charcoal : #0e1e2e  (headings, footer bg, icons)
   Navy     : #0150b9  (CTA buttons, hover, accents)
   White    : #FFFFFF  (page background, card bg)
   Body text: #4a5568  (paragraph / muted text)
================================================ */
:root {
  --white:        #FFFFFF;
  --charcoal:     #0e1e2e;
  --navy:         #0150b9;
  --navy-hover:   #0143a0;
  --light-gray:   #f4f6fb;
  --border-color: #e2e8f0;
  --text-body:    #4a5568;
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   all 0.3s ease-in-out;
}

/* ================================================
   BASE
================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.25;
}

p { font-family: var(--font-body); color: var(--text-body); }

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

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

/* ================================================
   UTILITIES
================================================ */
.text-navy    { color: var(--navy)     !important; }
.bg-navy      { background-color: var(--navy)     !important; }
.text-charcoal{ color: var(--charcoal) !important; }
.bg-charcoal  { background-color: var(--charcoal) !important; }

.section-padding { padding: 80px 0; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ================================================
   BUTTONS  — Navy CTA
================================================ */
.btn-primary-custom {
  background-color: var(--navy);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background-color: var(--navy-hover);
  border-color: var(--navy-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 80, 185, 0.35);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--navy);
  padding: 12px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 80, 185, 0.25);
}

/* ================================================
   NAVBAR
================================================ */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(14, 30, 46, 0.06);
  transition: var(--transition);
  padding: 16px 0;
}

.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  animation: slideDown 0.45s ease-in-out;
  box-shadow: 0 4px 20px rgba(14, 30, 46, 0.12);
  padding: 10px 0;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--charcoal) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--navy); }

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal) !important;
  margin: 0 8px;
  padding: 6px 2px;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--navy) !important; }

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--navy);
  bottom: 0;
  left: 0;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::before,
.nav-link.active::before { width: 100%; }

/* Dropdown Hover & Caret Styling */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.dropdown-toggle::after {
  transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(14, 30, 46, 0.1);
  border-radius: 8px;
  padding: 8px 0;
}
.dropdown-item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 10px 20px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background-color: rgba(1, 80, 185, 0.06);
  color: var(--navy);
}

/* ================================================
   HERO SECTION  — white background, charcoal heading
================================================ */
/* ================================================
   HERO SECTION  — Premium Corporate Blue Layout
 ================================================ */
.hero-section {
  padding: 230px 0 140px;
  background-color: #091c33;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.32; /* subtle yet clearly visible transparency for the background industrial roller */
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(9, 28, 51, 0.88) 0%, rgba(1, 59, 134, 0.76) 50%, rgba(1, 80, 185, 0.65) 100%); */
  background: linear-gradient(135deg, rgba(9, 28, 51, 0.352) 0%, rgba(31, 44, 60, 0.264) 50%, rgba(61, 61, 61, 0.242) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(to right, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Bullet list of checkmarks */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.hero-bullets li {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
}

.hero-bullets li i {
  color: #38bdf8; /* Cyber-cyan checkmark */
  font-size: 1.15rem;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Premium Buttons inside Hero */
.btn-hero-primary {
  background-color: var(--white);
  color: var(--navy) !important;
  padding: 13px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--white);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.btn-hero-primary:hover {
  background-color: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 80, 185, 0.35);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-hero-outline:hover {
  background-color: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Image Wrap & Hover Glow */
.hero-img-wrap {
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  line-height: 0;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 28, 51, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-img-wrap:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 30px 65px rgba(56, 189, 248, 0.15);
}

.hero-banner-img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-wrap:hover .hero-banner-img {
  transform: scale(1.04);
}

/* keep old placeholder usable for other pages */
.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
  border: 2px dashed var(--border-color);
}
.hero-image-placeholder i {
  font-size: 3rem;
  margin-bottom: 12px;
  color: #cbd5e1;
}

/* ================================================
   CARDS  — white bg, charcoal text, navy hover border
================================================ */
.custom-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(14, 30, 46, 0.06);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.custom-card:hover {
  transform: translateY(-8px);
  border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(1, 80, 185, 0.12);
}

/* card headings — charcoal */
.custom-card h4,
.custom-card h5 {
  color: var(--charcoal);
  font-family: var(--font-heading);
}
/* card body text — standard body color */
.custom-card p {
  font-family: var(--font-body);
  color: var(--text-body);
}

/* card icon — charcoal tint bg, charcoal icon; navy on hover */
.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(14, 30, 46, 0.07);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.custom-card:hover .card-icon {
  background: var(--navy);
  color: var(--white);
}

/* ================================================
   PRODUCT CARDS
================================================ */
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(14, 30, 46, 0.06);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(1, 80, 185, 0.12);
}

.product-img-placeholder {
  width: 100%;
  height: 250px;
  background-color: var(--light-gray);
  display: block;
  color: #94a3b8;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.product-img-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #cbd5e1;
}
.product-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-content { padding: 25px; }

.product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.product-content p {
  font-family: var(--font-body);
  color: var(--text-body);
  font-size: 0.95rem;
}
.product-content a {
  font-family: var(--font-body);
  color: var(--navy);
  font-weight: 600;
}
.product-content a:hover { color: var(--navy-hover); }

/* ================================================
   CTA BANNER  — navy background
================================================ */
.cta-banner {
  background-color: var(--navy);
  padding: 70px 0;
  color: var(--white);
}
.cta-banner h2 {
  color: var(--white);
  font-family: var(--font-heading);
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}

/* ================================================
   FOOTER  — charcoal (#0e1e2e) bg, white text, navy highlights
================================================ */
.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 80px 0 20px;
  margin-top: auto;
  flex-shrink: 0;
}

/* brand heading inside footer */
.footer h3 {
  font-family: var(--font-heading);
  color: var(--white);
}
.footer h3 span { color: var(--navy); }

.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--navy);    /* navy highlight underline */
  border-radius: 2px;
}

.footer p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact i {
  color: var(--navy);   /* navy icon highlight */
  margin-right: 14px;
  margin-top: 4px;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Social icons in footer */
.footer a.text-white:hover {
  color: var(--navy) !important;
  transform: scale(1.15);
  display: inline-block;
}

/* ================================================
   FLOATING BUTTONS
================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-float {
  position: fixed;
  bottom: 170px;
  right: 24px;
  background-color: var(--navy);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: var(--transition);
}
.call-float:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 6px 20px rgba(1, 80, 185, 0.4);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--navy);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background-color: var(--navy-hover);
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================
   ANIMATIONS
================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   STATS COUNTER
================================================ */
.stat-card { text-align: center; padding: 30px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.stat-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ================================================
   PAGE HEADER (inner pages)  — charcoal bg, white text
================================================ */
.page-header {
  padding: 120px 0 90px;
  background-color: var(--charcoal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 30, 46, 0.7), rgba(14, 30, 46, 0.8));
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.page-header p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================
   TABLE
================================================ */
.table-custom {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(14, 30, 46, 0.06);
}
.table-custom th {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  border: none;
  padding: 14px 18px;
}
.table-custom td {
  font-family: var(--font-body);
  color: var(--text-body);
  padding: 13px 18px;
  vertical-align: middle;
  border-color: var(--border-color);
}

/* ================================================
   EXPERTISE & TRUST SECTION
================================================ */
.expertise-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: #091c33;
}

.expertise-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
}

.expertise-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 28, 51, 0.94) 0%, rgba(1, 59, 134, 0.345) 50%, rgba(9, 28, 51, 0.049) 100%);
  z-index: 2;
  pointer-events: none;
}

.expertise-section .container {
  position: relative;
  z-index: 3;
}

.text-cyan {
  color: #38bdf8 !important;
  letter-spacing: 1px;
}

.expertise-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 20px;
}

.expertise-desc {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
}

.expertise-tags {
  max-width: 900px;
  margin: 0 auto;
}

.expertise-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.expertise-tag i {
  color: #38bdf8;
  font-size: 0.85rem;
  transition: transform 0.4s ease;
}

.expertise-tag:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.1);
}

.expertise-tag:hover i {
  transform: rotate(45deg);
}

/* ================================================
   INDUSTRIES WE SERVE SECTION
================================================ */
.bg-light-gray-custom {
  background-color: #f8fafc;
}

.max-w-700 {
  max-width: 700px;
}

.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-icon-wrap {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}

.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 750;
  margin-bottom: 0;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.industry-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.industry-roller-badge {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: all 0.3s ease;
}

.industry-roller-badge i {
  font-size: 0.7rem;
  animation: spinSlow 6s linear infinite;
  display: inline-block;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.industry-card:hover {
  transform: translateY(-5px);
}

/* Color Palettes */
/* Textile: Indigo */
.industry-textile .industry-icon-wrap { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.industry-textile:hover { border-color: #6366f1; box-shadow: 0 12px 30px rgba(99, 102, 241, 0.12); }
.industry-textile:hover .industry-icon-wrap { background: #6366f1; color: var(--white); }
.industry-textile:hover h4 { color: #6366f1; }
.industry-textile:hover .industry-roller-badge { background: rgba(99, 102, 241, 0.1); color: #6366f1; }

/* Paper: Forest Green */
.industry-paper .industry-icon-wrap { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.industry-paper:hover { border-color: #22c55e; box-shadow: 0 12px 30px rgba(34, 197, 94, 0.12); }
.industry-paper:hover .industry-icon-wrap { background: #22c55e; color: var(--white); }
.industry-paper:hover h4 { color: #22c55e; }
.industry-paper:hover .industry-roller-badge { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

/* Printing: Gold */
.industry-printing .industry-icon-wrap { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.industry-printing:hover { border-color: #eab308; box-shadow: 0 12px 30px rgba(234, 179, 8, 0.12); }
.industry-printing:hover .industry-icon-wrap { background: #eab308; color: var(--white); }
.industry-printing:hover h4 { color: #eab308; }
.industry-printing:hover .industry-roller-badge { background: rgba(234, 179, 8, 0.1); color: #eab308; }

/* Packaging: Ruby Red */
.industry-packaging .industry-icon-wrap { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.industry-packaging:hover { border-color: #ef4444; box-shadow: 0 12px 30px rgba(239, 68, 68, 0.12); }
.industry-packaging:hover .industry-icon-wrap { background: #ef4444; color: var(--white); }
.industry-packaging:hover h4 { color: #ef4444; }
.industry-packaging:hover .industry-roller-badge { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* Converting: Amethyst */
.industry-converting .industry-icon-wrap { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.industry-converting:hover { border-color: #a855f7; box-shadow: 0 12px 30px rgba(168, 85, 247, 0.12); }
.industry-converting:hover .industry-icon-wrap { background: #a855f7; color: var(--white); }
.industry-converting:hover h4 { color: #a855f7; }
.industry-converting:hover .industry-roller-badge { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

/* Steel: Cyber Blue */
.industry-steel .industry-icon-wrap { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.industry-steel:hover { border-color: #0ea5e9; box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12); }
.industry-steel:hover .industry-icon-wrap { background: #0ea5e9; color: var(--white); }
.industry-steel:hover h4 { color: #0ea5e9; }
.industry-steel:hover .industry-roller-badge { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

/* Plastic: Turquoise */
.industry-plastic .industry-icon-wrap { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.industry-plastic:hover { border-color: #14b8a6; box-shadow: 0 12px 30px rgba(20, 184, 166, 0.12); }
.industry-plastic:hover .industry-icon-wrap { background: #14b8a6; color: var(--white); }
.industry-plastic:hover h4 { color: #14b8a6; }
.industry-plastic:hover .industry-roller-badge { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }

/* Laminating: Sunset Orange */
.industry-laminating .industry-icon-wrap { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.industry-laminating:hover { border-color: #f97316; box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12); }
.industry-laminating:hover .industry-icon-wrap { background: #f97316; color: var(--white); }
.industry-laminating:hover h4 { color: #f97316; }
.industry-laminating:hover .industry-roller-badge { background: rgba(249, 115, 22, 0.1); color: #f97316; }

/* ================================================
   MANUFACTURING PROCESS TIMELINE
================================================ */
.workflow-row {
  position: relative;
}

@media (min-width: 992px) {
  .workflow-row::before {
    content: '';
    position: absolute;
    top: 87px; /* Account for Bootstrap column gutter padding + icon center */
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, #cbd5e1 0px, #cbd5e1 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }
}

.workflow-step-col {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .workflow-step-col:not(:last-child) .workflow-icon-wrap {
    position: relative;
  }
  .workflow-step-col:not(:last-child) .workflow-icon-wrap::after {
    content: '\f105'; /* FontAwesome right angle icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -5px; /* Shift up by 1px to perfectly match FontAwesome font-metric baseline */
    line-height: 1; /* Eliminates icon padding */
    right: -65px; /* Center precisely in the gap between the circles */
    font-size: 1.2rem;
    color: #94a3b8;
    z-index: 3;
    transition: all 0.3s ease;
  }
  .workflow-step-col:hover .workflow-icon-wrap::after {
    color: var(--cyan);
    transform: translateY(-50%) translateX(4px);
  }
}

.workflow-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: auto;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.workflow-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  border: 2px solid #cbd5e1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white);
}

.workflow-step-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* Hover effects */
.workflow-card:hover .workflow-icon-wrap {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(1, 80, 185, 0.15);
}

.workflow-card:hover .workflow-step-title {
  color: var(--navy);
}

.workflow-card:hover .workflow-num {
  color: var(--cyan);
}
