:root {
  --color-primary: #1d4ed8;        /* medium blue */
  --color-primary-light: #60a5fa;  /* light blue */
  --color-accent: #f97316;         /* soft orange accent */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fb;
  --color-text: #333333;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.26s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: 
    radial-gradient(circle at 0% 0%, rgba(219, 234, 254, 0.5), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(199, 210, 254, 0.4), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(191, 219, 254, 0.3), transparent 60%),
    radial-gradient(circle at 25% 50%, rgba(219, 234, 254, 0.35), transparent 45%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #374151;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

p {
  color: #4b5563;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-content {
  padding-top: 3.5rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-cta {
  padding-bottom: 0;
  margin-bottom: 4rem;
}

.section:not(.section-alt):not(.hero):not(.section-cta)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(219, 234, 254, 0.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(199, 210, 254, 0.2), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(191, 219, 254, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section:not(.section-alt):not(.hero):not(.section-cta) > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: 
    radial-gradient(circle at 20% 30%, rgba(219, 234, 254, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(199, 210, 254, 0.35), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(191, 219, 254, 0.25), transparent 60%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #eef2f6 100%);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(219, 234, 254, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.section-page-header {
  padding-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}

.section-page-header .eyebrow {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.section-page-header h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-page-header .lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.section-header {
  text-align: center;
  max-width: 640px;
}

.section-header p {
  color: #6b7280;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #111827;
}

h1 {
  font-size: clamp(2.1rem, 2.6vw, 2.8rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
}

.lead {
  margin-top: 0.5rem;
  color: #4b5563;
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-primary-light);
  font-weight: 600;
}

.badge {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  background: rgba(14, 116, 144, 0.08);
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3);
}

/* Hero section specific button styles */
.hero .btn-primary {
  background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6, #60a5fa);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.4);
  position: relative;
  overflow: hidden;
}

.hero .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease-out;
}

.hero .btn-primary:hover::before {
  left: 100%;
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa, #93c5fd);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.5);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-primary);
  border-color: rgba(15, 23, 42, 0.15);
}

.btn-outline:hover {
  border-color: var(--color-primary-light);
  background: #e5edff;
  transform: translateY(-1px);
}

/* Hero section specific outline button */
.hero .btn-outline {
  background: #ffffff;
  color: #1f2937;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero .btn-outline:hover {
  background: #f9fafb;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(15, 23, 42, 0.08);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(180%);
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 219, 254, 0.5), transparent 70%),
    radial-gradient(circle at 100% 0%, rgba(219, 234, 254, 0.4), transparent 70%),
    radial-gradient(circle at 50% 0%, rgba(199, 210, 254, 0.25), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
  color: #111827;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05),
              0 1px 4px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(37, 99, 235, 0.5), rgba(59, 130, 246, 0.4), transparent);
  opacity: 0.6;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.3s ease-out;
  position: relative;
  z-index: 1;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 38px;
  width: auto;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.25));
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: #0f172a;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.93rem;
  color: #4b5563;
  position: relative;
  padding: 0.45rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  letter-spacing: 0.01em;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #22c55e);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: -1;
}

.nav-link:hover {
  color: #1d4ed8;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: #1d4ed8;
  font-weight: 600;
}

.nav-link.active::after {
  opacity: 0;
}

.nav-link.active::before {
  width: 90%;
  height: 3px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease-out;
  z-index: 10;
}

.nav-toggle:hover {
  background: rgba(37, 99, 235, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: #374151;
  transition: all var(--transition-fast);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle:hover span {
  background: #1d4ed8;
}

.site-nav.open {
  display: block;
}

.hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 6.2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/Final_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.2), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.15), transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-text-centered {
  text-align: center;
  color: #f8fafc;
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-text-centered h1 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-text-centered .lead {
  color: #f1f5f9;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}

/* Hero orbit styles removed - no longer needed */

.cards-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
  align-items: stretch;
}

.cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card {
  background: linear-gradient(145deg, #ffffff, #f3f4ff);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), translate var(--transition-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.feature-card p,
.industry-card p {
  color: #6b7280;
}

.industry-card,
.product-card {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Professional Industry Card Styles */
.industry-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  transition: opacity 0.4s ease-out, filter 0.4s ease-out;
  z-index: 1;
  filter: blur(0px);
}

.industry-card:hover .industry-card-hover-image {
  opacity: 1;
  filter: blur(2px);
}

.industry-card-hover-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
  z-index: 1;
}


.industry-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.3s ease-out;
  z-index: 2;
  display: none;
}

.industry-card-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem 2rem;
  background: #ffffff;
  transition: background 0.3s ease-out;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 100%;
}

.industry-card:hover .industry-card-content {
  background: transparent;
}

.industry-card:hover h3 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.industry-card:hover p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.industry-card:hover .industry-link {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.industry-card:hover .badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.industry-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.industry-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.industry-card p {
  color: #4b5563;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-height: 0;
}

.industry-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  transition: border-color 0.3s ease-out;
  flex-shrink: 0;
}

.industry-link {
  color: #374151;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease-out;
}

.industry-link svg {
  transition: transform 0.2s ease-out;
}

.industry-link:hover {
  color: #1d4ed8;
}

.industry-link:hover svg {
  transform: translateX(4px);
}

/* Textile Industry Card */
.industry-textile .industry-card-accent {
  background: #22c55e;
}

.industry-textile:hover {
  border-color: #d1fae5;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.12);
  transform: translateY(-4px);
}

.industry-textile:hover .industry-card-accent {
  width: 0;
  display: none;
}

.badge-textile {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

/* Plastic Industry Card */
.industry-plastic .industry-card-accent {
  background: #f59e0b;
}

.industry-plastic:hover {
  border-color: #fef3c7;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
  transform: translateY(-4px);
}

.industry-plastic:hover .industry-card-accent {
  width: 0;
  display: none;
}

.badge-plastic {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

/* Color Industry Card */
.industry-color .industry-card-accent {
  background: #a855f7;
}

.industry-color:hover {
  border-color: #f3e8ff;
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.12);
  transform: translateY(-4px);
}

.industry-color:hover .industry-card-accent {
  width: 0;
  display: none;
}

.badge-color {
  background: #faf5ff;
  color: #7c3aed;
  border: 1px solid #e9d5ff;
}

/* Industry Card Hover Images */
.industry-textile .industry-card-hover-image {
  background-image: url('../assets/Hoverimage1.png');
}

.industry-plastic .industry-card-hover-image {
  background-image: url('../assets/Hoverimage2.png');
}

.industry-color .industry-card-hover-image {
  background-image: url('../assets/Hoverimage3.png');
}

.industry-card:hover .industry-card-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* Feature card image styles */
.feature-card-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease-out;
}

.feature-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.feature-card:hover .feature-card-image::before {
  opacity: 1;
}

.feature-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}

/* Feature card content */
.feature-card-content {
  padding: 2.2rem 2rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  transition: background 0.3s ease-out;
}

.feature-card-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s ease-out;
}

.feature-card-content p {
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
  font-size: 0.98rem;
  transition: color 0.3s ease-out;
}

.feature-card:hover .feature-card-image {
  transform: scale(1.08);
}

.feature-card:hover .feature-card-content {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card:hover .feature-card-content h3 {
  color: #1d4ed8;
}

/* Box-specific images */
.box1 .feature-card-image {
  background-image: url('../assets/Box1.png');
}

.box2 .feature-card-image {
  background-image: url('../assets/Box2.png');
}

.box3 .feature-card-image {
  background-image: url('../assets/Box3.png');
}

.section-cta {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
  margin-bottom: 4rem;
}

.section-cta .cta-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 4rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  color: #f9fafb;
  box-shadow: 0 32px 100px rgba(37, 99, 235, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  max-width: 1200px;
  margin-inline: auto;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.section-cta .cta-strip:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 120px rgba(37, 99, 235, 0.45),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

/* Background Effects */
.cta-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 32px;
  z-index: 0;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: ctaPulse 4s ease-in-out infinite;
}

.cta-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.4);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.cta-glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(147, 197, 253, 0.35);
  bottom: -80px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
  animation: ctaPatternMove 20s linear infinite;
}

@keyframes ctaPatternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.cta-text-section {
  flex: 1;
  max-width: 600px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.section-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  color: #1e40af;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease-out;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary svg {
  transition: transform 0.3s ease-out;
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-secondary svg {
  transition: transform 0.3s ease-out;
}

.cta-btn-secondary:hover svg {
  transform: translateX(4px);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
}

.chip:hover {
  transform: translateY(-1px);
}

.chip-active {
  background: linear-gradient(135deg, #0b1f3b, #1d4ed8);
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card h2 {
  margin-bottom: 0.4rem;
}

.product-card p {
  color: #6b7280;
}

.product-card .product-details-btn {
  margin-top: 1.1rem;
}

.product-details-content {
  display: none;
}

.product-list {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.product-list li + li {
  margin-top: 0.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-highlight {
  background: linear-gradient(145deg, #0f172a, #020617);
  color: #e5e7eb;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 16% 12%, #38bdf83f, transparent 55%),
    radial-gradient(circle at 80% 88%, #a855f73f, transparent 55%);
  opacity: 0.9;
}

.about-highlight h3,
.about-highlight p,
.about-highlight ul {
  position: relative;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checklist li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  margin-top: 0.05rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.section-timeline .timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.75rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  opacity: 0.5;
}

.timeline-step {
  position: relative;
  padding-top: 1.6rem;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 0.8rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.25);
}

.timeline-step:nth-child(2) .timeline-dot {
  background: #a855f7;
  box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.25);
}

.timeline-step:nth-child(3) .timeline-dot {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-card,
.contact-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover,
.contact-info:hover {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.contact-card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-card-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.contact-card-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  margin-top: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #ffffff;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(148, 163, 184, 0.5);
}

.form-helper {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0 0 0.8rem;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 0.7rem;
}

.form-status--success {
  color: #15803d;
}

.form-status--error {
  color: #b91c1c;
}

.contact-info-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-info-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.contact-info-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-wrapper {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.contact-detail-value:hover {
  color: #2563eb;
}

.contact-social {
  margin-top: 1.3rem;
}

.contact-map {
  margin-top: 1.4rem;
}

.map-image-wrapper {
  position: relative;
  margin-top: 0.7rem;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-image-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
}

.map-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.map-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Modern Contact Page with Dark Background */
.contact-hero-section {
  position: relative;
  min-height: 100vh;
  padding: 6rem 0 6rem;
  background: #1a1a1a;
  overflow: hidden;
  margin-bottom: 0;
}

.page-contact main {
  padding-bottom: 0;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/Hero_2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contact-hero-content h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-hero-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
  word-spacing: 0.05em;
}

.contact-main-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon-circle {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon-circle svg {
  width: 24px;
  height: 24px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-value {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
}

.contact-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #2563eb;
}

.contact-form-modern {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.contact-form-modern h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.form-field-modern {
  margin-bottom: 1.5rem;
}

.form-field-modern input,
.form-field-modern textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: inherit;
  color: #111827;
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-field-modern input::placeholder,
.form-field-modern textarea::placeholder {
  color: #9ca3af;
}

.form-field-modern input:focus,
.form-field-modern textarea:focus {
  outline: none;
  border-bottom-color: #2563eb;
}

.form-field-modern textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-send {
  width: 100%;
  padding: 1rem 2rem;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-send:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-send:active {
  transform: translateY(0);
}

@media (max-width: 968px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-hero-section {
    padding: 4rem 0 6rem;
  }
}

.map-circle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
}

.map-circle--one {
  top: 30%;
  left: 24%;
}

.map-circle--two {
  top: 50%;
  right: 22%;
  background: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.9);
}

.map-circle--three {
  bottom: 25%;
  left: 55%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.site-footer {
  background: 
    radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.8), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(30, 41, 59, 0.7), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(2, 6, 23, 0.9), transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #020617 100%);
  color: #e5e7eb;
  padding: 4rem 0 1.6rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.page-contact .site-footer {
  margin-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), rgba(59, 130, 246, 0.5), rgba(37, 99, 235, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) repeat(2, minmax(0, 1.2fr));
  gap: 3rem;
  align-items: flex-start;
}

.logo-footer img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(191, 219, 254, 0.8));
  transition: transform 0.3s ease-out;
}

.logo-footer:hover img {
  transform: scale(1.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.logo-footer {
  display: inline-block;
  transition: transform 0.3s ease-out;
}

.logo-footer:hover {
  transform: translateY(-2px);
}

.footer-tagline {
  margin-top: 0.8rem;
  margin-left: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.9rem;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.2s ease-out;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -1.2rem;
  opacity: 0;
  transition: all 0.2s ease-out;
  color: #60a5fa;
}

.footer-links a:hover {
  color: #60a5fa;
  padding-left: 1.2rem;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact p {
  margin: 0.2rem 0;
  color: #e2e8f0;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #60a5fa;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.55) !important;
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal-overlay.is-open {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.product-modal-overlay:not(.is-open) .product-modal {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

.product-modal {
  width: min(700px, 85vw);
  max-width: 85vw;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 32px 100px rgba(15, 23, 42, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  margin: auto;
  overflow: visible;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal-overlay.is-open .product-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.product-modal-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.product-modal-body p {
  margin-top: 0;
}

.product-modal-body .product-list {
  margin-top: 0.7rem;
}

.pigment-modal-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pigment-modal-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.pigment-modal-details .product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pigment-modal-details .product-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: fadeInLeft 0.5s ease-out both;
}

.pigment-modal-details .product-list li:nth-child(1) { animation-delay: 0.3s; }
.pigment-modal-details .product-list li:nth-child(2) { animation-delay: 0.35s; }
.pigment-modal-details .product-list li:nth-child(3) { animation-delay: 0.4s; }
.pigment-modal-details .product-list li:nth-child(4) { animation-delay: 0.45s; }
.pigment-modal-details .product-list li:nth-child(5) { animation-delay: 0.5s; }

.pigment-modal-details .product-list li:last-child {
  border-bottom: none;
}

.pigment-modal-details .product-list li strong {
  color: #374151;
  font-weight: 600;
  min-width: 100px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.pigment-modal-details .product-list li:not(:has(strong)) {
  color: #6b7280;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pigment-modal-image {
  width: 100%;
  height: 100%;
  max-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  position: relative;
  animation: fadeInRight 0.5s ease-out 0.25s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pigment-modal-image::before {
  display: none;
}

.pigment-modal-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pigment-modal-image:hover img {
  transform: scale(1.05);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(148, 163, 184, 0.1);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  z-index: 10;
}

.product-modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.page-transition {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.page-transition.page-transition--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-on-load {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.map-circle {
  animation: pulseSoft 3.4s ease-in-out infinite;
}

.map-circle--two {
  animation-delay: 0.6s;
}

.map-circle--three {
  animation-delay: 1.1s;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 5.5rem;
    min-height: 500px;
  }

  .hero-text-centered {
    padding: 1.5rem 0;
  }

  .hero-text-centered h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  .hero-text-centered .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 2rem;
    gap: 1rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-cta .cta-strip {
    border-radius: 24px;
    padding: 2.5rem 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta-text-section {
    max-width: 100%;
  }

  .section-cta h2 {
    font-size: 1.8rem;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.2rem;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .site-nav .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    border-radius: 8px;
  }

  .site-nav .nav-link:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
  }

  .site-nav .nav-link.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
  }

  .cards-grid,
  .cards-grid--three,
  .product-grid,
  .mission-vision,
  .section-timeline .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-page-header {
    padding-top: 4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3rem 0;
  }

  .hero-text-centered {
    padding: 1rem 0;
  }

  .hero-text-centered h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 0.9rem;
  }

  .hero-text-centered .lead {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 1.8rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding-inline: 1.1rem;
  }

  .section-cta .cta-strip {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .section-cta h2 {
    font-size: 1.5rem;
  }

  .section-cta p {
    font-size: 0.95rem;
  }

  .cta-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero {
    min-height: 450px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-text-centered {
    padding: 0.5rem 0;
  }
}

/* Modern About Us Page Styles - Creative Hero Image Layout */

/* Creative Split Hero Section */
.about-hero-creative {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
}

.hero-image-left {
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-hero-1 {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.3) 0%,
    rgba(168, 85, 247, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content-overlay {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-content-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero-content-inner {
  max-width: 600px;
  margin-left: 2rem;
}

.hero-content-inner .eyebrow {
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-content-inner h1 {
  margin-bottom: 1.5rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-content-inner .lead {
  color: #4b5563;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* About Intro Section */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content {
  padding: 2rem 0;
}

.section-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.about-intro-content h2 {
  margin-bottom: 1.5rem;
  color: #111827;
  font-size: 2rem;
}

.about-intro-content p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.value-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(168, 85, 247, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.pillar-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pillar-text {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.about-intro-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-mask {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.intro-image-mask:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.intro-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-mask-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(37, 99, 235, 0.1) 50%,
    rgba(168, 85, 247, 0.15) 100%
  );
  pointer-events: none;
}

/* Global Operations Section with Hero_2 */
.global-operations-section {
  padding: 0;
  overflow: hidden;
}

.global-operations-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 600px;
  position: relative;
}

.global-image-container {
  position: relative;
  overflow: hidden;
}

.hero-2-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero-2-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.7) 0%,
    rgba(15, 23, 42, 0.5) 50%,
    rgba(15, 23, 42, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  z-index: 1;
}

.overlay-content {
  color: #ffffff;
}

.overlay-content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Mission Vision Modern */
.mission-vision-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem;
  background: #ffffff;
  align-content: center;
}

.mission-vision-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #a855f7, #22c55e);
}

.mission-card-modern .card-decoration {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.vision-card-modern .card-decoration {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.vision-card-modern .card-icon-wrapper {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(147, 51, 234, 0.05));
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.1);
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.mission-vision-card:hover .card-icon-wrapper {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.vision-card-modern:hover .card-icon-wrapper {
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.mission-vision-card h2 {
  margin-bottom: 1.5rem;
  color: #111827;
  font-size: 1.75rem;
}

.mission-vision-card p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Section Header Modern */
.section-header-modern {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-header-modern h2 {
  margin-bottom: 1rem;
  color: #111827;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Pigment grids and cards on Products page */
.pigment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pigment-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.6s ease-out both;
}

.pigment-card:nth-child(1) { animation-delay: 0.1s; }
.pigment-card:nth-child(2) { animation-delay: 0.15s; }
.pigment-card:nth-child(3) { animation-delay: 0.2s; }
.pigment-card:nth-child(4) { animation-delay: 0.25s; }
.pigment-card:nth-child(5) { animation-delay: 0.3s; }
.pigment-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pigment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #a855f7, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.pigment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15),
              0 0 0 1px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.4);
}

.pigment-card:hover::before {
  transform: scaleX(1);
}

.pigment-card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
}

.pigment-card-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
}

.pigment-card:hover .pigment-card-image-wrapper::after {
  opacity: 1;
}

.pigment-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pigment-card:hover .pigment-card-image-wrapper img {
  transform: scale(1.1);
}

.pigment-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pigment-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
  letter-spacing: -0.01em;
  transition: color 0.3s ease-out;
}

.pigment-card:hover .pigment-card-title {
  color: #2563eb;
}

.pigment-card .pigment-details-btn {
  width: 100%;
  font-size: 0.85rem;
  padding-block: 0.65rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pigment-card .pigment-details-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease-out;
}

.pigment-card .pigment-details-btn:hover::before {
  left: 100%;
}

.pigment-card .pigment-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

@media (max-width: 1024px) {
  .pigment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .pigment-modal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pigment-modal-image {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .pigment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .product-modal {
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: 20px;
  }
  
  .product-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .pigment-modal-content {
    gap: 1.5rem;
  }
}

/* Industry Cards Modern */
.industry-cards-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card-modern {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.industry-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.industry-card-modern:hover::before {
  transform: scaleX(1);
}

.industry-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.industry-icon-wrapper {
  margin-bottom: 1.5rem;
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(168, 85, 247, 0.1));
}

.industry-card-modern h3 {
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.5rem;
}

.industry-card-modern p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.industry-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-tag {
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

/* Industry Stack Cards - Enhanced with Animations */
.industry-expertise-creative {
  margin-top: 3rem;
}

.industry-stack-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.industry-stack-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 0;
  box-shadow: 
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.1);
  border: 2px solid rgba(148, 163, 184, 0.15);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFadeIn 0.6s ease-out forwards;
}

.industry-stack-card:nth-child(1) {
  animation-delay: 0.1s;
}

.industry-stack-card:nth-child(2) {
  animation-delay: 0.2s;
}

.industry-stack-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Top Border */
.industry-stack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #a855f7, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.industry-stack-textile::before {
  background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
}

.industry-stack-plastic::before {
  background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
}

.industry-stack-coating::before {
  background: linear-gradient(90deg, #a855f7, #9333ea, #7e22ce);
}

/* Animated Background Glow */
.industry-stack-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(168, 85, 247, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(20px);
}

.industry-stack-textile::after {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
}

.industry-stack-plastic::after {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
}

.industry-stack-coating::after {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.1));
}

.industry-stack-card:hover::before {
  transform: scaleX(1);
}

.industry-stack-card:hover::after {
  opacity: 1;
}

.industry-stack-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 
    0 30px 80px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(37, 99, 235, 0.2),
    0 0 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.industry-stack-textile:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 
    0 30px 80px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(34, 197, 94, 0.2),
    0 0 40px rgba(34, 197, 94, 0.1);
}

.industry-stack-plastic:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 
    0 30px 80px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(245, 158, 11, 0.2),
    0 0 40px rgba(245, 158, 11, 0.1);
}

.industry-stack-coating:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 
    0 30px 80px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(168, 85, 247, 0.2),
    0 0 40px rgba(168, 85, 247, 0.1);
}

.stack-card-inner {
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-stack-card:hover .stack-card-inner {
  transform: translateY(-4px);
}

.stack-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.08);
  line-height: 1;
  font-family: "Poppins", sans-serif;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulseNumber 3s ease-in-out infinite;
}

@keyframes pulseNumber {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.12;
  }
}

.industry-stack-card:hover .stack-number {
  color: rgba(37, 99, 235, 0.2);
  transform: scale(1.1);
  animation: none;
}

.industry-stack-textile .stack-number {
  color: rgba(34, 197, 94, 0.08);
  animation: pulseNumberGreen 3s ease-in-out infinite;
}

@keyframes pulseNumberGreen {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.12;
  }
}

.industry-stack-textile:hover .stack-number {
  color: rgba(34, 197, 94, 0.2);
}

.industry-stack-plastic .stack-number {
  color: rgba(245, 158, 11, 0.08);
  animation: pulseNumberOrange 3s ease-in-out infinite;
}

@keyframes pulseNumberOrange {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.12;
  }
}

.industry-stack-plastic:hover .stack-number {
  color: rgba(245, 158, 11, 0.2);
}

.industry-stack-coating .stack-number {
  color: rgba(168, 85, 247, 0.08);
  animation: pulseNumberPurple 3s ease-in-out infinite;
}

@keyframes pulseNumberPurple {
  0%, 100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.12;
  }
}

.industry-stack-coating:hover .stack-number {
  color: rgba(168, 85, 247, 0.2);
}

.stack-icon-bg {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.industry-stack-textile .stack-icon-bg {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(16, 185, 129, 0.05));
  border-color: rgba(22, 163, 74, 0.15);
}

.industry-stack-plastic .stack-icon-bg {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(245, 158, 11, 0.05));
  border-color: rgba(217, 119, 6, 0.15);
}

.industry-stack-coating .stack-icon-bg {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(168, 85, 247, 0.05));
  border-color: rgba(147, 51, 234, 0.15);
}

.industry-stack-card:hover .stack-icon-bg {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.25);
}

.industry-stack-textile:hover .stack-icon-bg {
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.25);
}

.industry-stack-plastic:hover .stack-icon-bg {
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.25);
}

.industry-stack-coating:hover .stack-icon-bg {
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.25);
}

.stack-icon-svg {
  width: 32px;
  height: 32px;
  color: #2563eb;
  transition: transform 0.3s ease, color 0.3s ease;
}

.industry-stack-textile .stack-icon-svg {
  color: #16a34a;
}

.industry-stack-plastic .stack-icon-svg {
  color: #d97706;
}

.industry-stack-coating .stack-icon-svg {
  color: #9333ea;
}

.industry-stack-card:hover .stack-icon-svg {
  transform: scale(1.05);
}

.stack-content {
  position: relative;
  z-index: 1;
}

.stack-content h3 {
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
}

.industry-stack-card:hover .stack-content h3 {
  color: var(--color-primary);
  transform: translateX(4px);
}

.industry-stack-textile:hover .stack-content h3 {
  color: #16a34a;
}

.industry-stack-plastic:hover .stack-content h3 {
  color: #d97706;
}

.industry-stack-coating:hover .stack-content h3 {
  color: #9333ea;
}

.stack-content p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.stack-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stack-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stack-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.stack-tag:hover::before {
  left: 100%;
}

.industry-stack-textile .stack-tag {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.06));
  border-color: rgba(34, 197, 94, 0.15);
}

.industry-stack-plastic .stack-tag {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.06));
  border-color: rgba(245, 158, 11, 0.15);
}

.industry-stack-coating .stack-tag {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(147, 51, 234, 0.06));
  border-color: rgba(168, 85, 247, 0.15);
}

.stack-tag:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.industry-stack-textile .stack-tag:hover {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
}

.industry-stack-plastic .stack-tag:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
}

.industry-stack-coating .stack-tag:hover {
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .image-hero-1 {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .hero-content-overlay {
    padding: 3rem 2rem;
    min-height: 500px;
  }

  .hero-content-inner {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .global-operations-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-2-image-wrapper {
    min-height: 400px;
  }

  .mission-vision-modern {
    padding: 2rem;
  }

  .industry-cards-modern,
  .industry-stack-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-hero-creative {
    min-height: auto;
  }

  .hero-split-container {
    min-height: auto;
  }

  .hero-content-overlay {
    padding: 2.5rem 1.5rem;
  }

  .hero-content-inner h1 {
    font-size: 1.8rem;
  }

  .hero-content-inner .lead {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .section-header-modern h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .overlay-content h2 {
    font-size: 1.5rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }

  .image-content-overlay {
    padding: 2rem;
  }

  .pigment-modal-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pigment-modal-image {
    min-height: 200px;
    order: -1;
  }

  .product-modal {
    width: min(95vw, 500px);
    padding: 1.5rem 1.2rem;
  }
}


