/* ==========================================================================
   Dansy Labs Private Limited — Core Stylesheet
   Design system: Molecular Precision
   ========================================================================== */

:root {
  /* Brand palette (client-specified) */
  --dl-primary: #00A86B;
  --dl-primary-dark: #007a4f;
  --dl-secondary: #0B3D91;
  --dl-accent: #7ED957;
  --dl-bg: #F8FCFB;
  --dl-text: #1F2937;
  --dl-card: #FFFFFF;

  /* Derived tones */
  --dl-text-soft: #5B6674;
  --dl-border: rgba(31, 41, 55, 0.08);
  --dl-glass-bg: rgba(255, 255, 255, 0.65);
  --dl-glass-border: rgba(255, 255, 255, 0.35);
  --dl-shadow-soft: 0 10px 40px rgba(11, 61, 145, 0.08);
  --dl-shadow-lift: 0 20px 60px rgba(11, 61, 145, 0.16);
  --dl-gradient-brand: linear-gradient(135deg, var(--dl-primary) 0%, var(--dl-secondary) 100%);
  --dl-gradient-soft: linear-gradient(180deg, rgba(0,168,107,0.06) 0%, rgba(248,252,251,0) 60%);

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii & motion */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dl-text);
  background-color: var(--dl-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dl-secondary);
  letter-spacing: -0.02em;
}

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

img { max-width: 100%; }

::selection { background: var(--dl-accent); color: #05341f; }

:focus-visible {
  outline: 3px solid var(--dl-accent);
  outline-offset: 2px;
}

.text-primary-brand { color: var(--dl-primary) !important; }
.text-secondary-brand { color: var(--dl-secondary) !important; }
.bg-brand-light { background-color: var(--dl-bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dl-primary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--dl-accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--dl-text-soft);
  max-width: 640px;
  font-size: 1.05rem;
}

.section-pad { padding: 110px 0; }
@media (max-width: 767.98px) { .section-pad { padding: 70px 0; } }

/* ---------- Molecular background motif (signature element) ---------- */
.molecule-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.molecule-field svg { width: 100%; height: 100%; }

.molecule-node {
  fill: var(--dl-primary);
  opacity: 0.35;
}

.molecule-link {
  stroke: var(--dl-secondary);
  stroke-width: 1;
  opacity: 0.15;
}

@keyframes driftSlow {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(14px, -18px); }
  100% { transform: translate(0, 0); }
}

.molecule-drift { animation: driftSlow 14s ease-in-out infinite; }
.molecule-drift-rev { animation: driftSlow 18s ease-in-out infinite reverse; }

/* ---------- Navbar ---------- */
.dl-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.dl-navbar.scrolled {
  padding: 12px 0;
  background: rgba(248, 252, 251, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 30px rgba(11, 61, 145, 0.08);
}

.dl-navbar .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dl-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-navbar .navbar-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--dl-gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--dl-shadow-soft);
}

.brand-mark-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.dl-navbar .navbar-brand .brand-name span { color: var(--dl-primary); }

.dl-navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dl-text);
  margin: 0 6px;
  padding: 8px 4px !important;
  position: relative;
}

.dl-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--dl-gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.dl-navbar .nav-link:hover::after,
.dl-navbar .nav-link.active::after { transform: scaleX(1); }

.dl-navbar .nav-link.active { color: var(--dl-primary); }

.btn-brand {
  background: var(--dl-gradient-brand);
  color: #fff !important;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 100px;
  box-shadow: var(--dl-shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-brand:hover {
  transform: translateY(-3px);
  box-shadow: var(--dl-shadow-lift);
  color: #fff !important;
}

.btn-outline-brand {
  background: transparent;
  border: 1.5px solid var(--dl-secondary);
  color: var(--dl-secondary) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.btn-outline-brand:hover {
  background: var(--dl-secondary);
  color: #fff !important;
  transform: translateY(-3px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease-out);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.24); color:#fff !important; transform: translateY(-3px); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  background: var(--dl-gradient-brand);
  overflow: hidden;
  color: #fff;
}

.page-hero .breadcrumb-dl {
  font-family: var(--font-display);
  font-size: 0.85rem;
  opacity: 0.85;
}
.page-hero .breadcrumb-dl a { color: #fff; opacity: 0.75; }
.page-hero .breadcrumb-dl a:hover { opacity: 1; }

.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; }

/* ---------- Home Hero ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #F8FCFB 0%, #eef8f3 55%, #e7f3fb 100%);
  overflow: hidden;
  padding-top: 120px;
}

.home-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dl-glass-bg);
  border: 1px solid var(--dl-glass-border);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dl-secondary);
  box-shadow: var(--dl-shadow-soft);
  margin-bottom: 26px;
}

.home-hero .hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dl-primary);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.18);
}

.home-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.home-hero h1 .accent-underline {
  position: relative;
  color: var(--dl-primary);
  white-space: nowrap;
}

.home-hero h1 .accent-underline svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
  height: 14px;
}

.home-hero .lead-text {
  font-size: 1.12rem;
  color: var(--dl-text-soft);
  max-width: 540px;
  margin: 22px 0 36px;
}

.hero-stats-row {
  display: flex;
  gap: 34px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stats-row .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--dl-secondary);
}
.hero-stats-row .stat-label {
  font-size: 0.8rem;
  color: var(--dl-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual — molecule / capsule composition */
.hero-visual {
  position: relative;
  height: 560px;
}

.hero-orbit {
  position: absolute;
  border: 1.5px dashed rgba(11,61,145,0.18);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-orbit.o1 { width: 420px; height: 420px; }
.hero-orbit.o2 { width: 300px; height: 300px; }

.hero-core-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  background: var(--dl-glass-bg);
  border: 1px solid var(--dl-glass-border);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--dl-shadow-lift);
  padding: 26px 22px;
  text-align: center;
}
.hero-core-card i { font-size: 2rem; color: var(--dl-primary); margin-bottom: 10px; }
.hero-core-card .core-title { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--dl-secondary); }

.floating-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--dl-shadow-soft);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dl-secondary);
}
.floating-chip i { color: var(--dl-primary); font-size: 1.1rem; }
.chip-1 { top: 6%; left: 2%; animation: driftSlow 9s ease-in-out infinite; }
.chip-2 { bottom: 10%; left: 8%; animation: driftSlow 11s ease-in-out infinite reverse; }
.chip-3 { top: 12%; right: 0%; animation: driftSlow 10s ease-in-out infinite; }
.chip-4 { bottom: 4%; right: 6%; animation: driftSlow 13s ease-in-out infinite reverse; }

/* ---------- Cards ---------- */
.dl-card {
  background: var(--dl-card);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  height: 100%;
}
.dl-card:hover { transform: translateY(-8px); box-shadow: var(--dl-shadow-lift); }

.dl-card .icon-box {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,168,107,0.12), rgba(11,61,145,0.10));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--dl-primary);
  transition: all 0.4s var(--ease-out);
}
.dl-card:hover .icon-box { background: var(--dl-gradient-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }

.dl-card h4 { font-size: 1.18rem; margin-bottom: 12px; }
.dl-card p { color: var(--dl-text-soft); font-size: 0.96rem; margin-bottom: 0; }

/* Why choose us */
.feature-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dl-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .feature-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--dl-bg);
  border: 1px solid var(--dl-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dl-primary);
  font-size: 1.15rem;
}
.feature-row h5 { font-size: 1.02rem; margin-bottom: 4px; }
.feature-row p { color: var(--dl-text-soft); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Stats counter band ---------- */
.stats-band {
  background: var(--dl-gradient-brand);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.stats-band .stat-item { text-align: center; color: #fff; }
.stats-band .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.stats-band .stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}

/* ---------- Product cards ---------- */
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border);
  transition: all 0.4s var(--ease-out);
  height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--dl-shadow-lift); }
.product-card .product-media {
  height: 190px;
  background: var(--dl-gradient-soft), linear-gradient(135deg, #e8f6ef, #eaf1fb);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .product-media i { font-size: 3.2rem; color: var(--dl-secondary); opacity: 0.85; transition: transform 0.5s var(--ease-out); }
.product-card:hover .product-media i { transform: scale(1.15) rotate(-4deg); }
.product-card .product-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  font-size: 0.7rem; font-weight: 700;
  color: var(--dl-primary);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card .product-body { padding: 26px 24px; }
.product-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.product-card p { color: var(--dl-text-soft); font-size: 0.9rem; }
.product-card .product-link { font-weight: 600; font-size: 0.85rem; color: var(--dl-secondary); display: inline-flex; align-items: center; gap: 6px; }
.product-card .product-link i { font-size: 0.75rem; transition: transform 0.3s var(--ease-out); }
.product-card:hover .product-link i { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border);
  margin: 10px;
}
.testimonial-card .quote-mark { font-size: 2.6rem; color: var(--dl-accent); font-family: Georgia, serif; line-height: 0.6; }
.testimonial-card p { font-size: 1.02rem; color: var(--dl-text); margin: 18px 0 26px; }
.testimonial-card .author-name { font-family: var(--font-display); font-weight: 600; color: var(--dl-secondary); }
.testimonial-card .author-role { font-size: 0.82rem; color: var(--dl-text-soft); }
.testimonial-card .avatar-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--dl-gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700;
}

/* ---------- News cards ---------- */
.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border);
  height: 100%;
  transition: all 0.4s var(--ease-out);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--dl-shadow-lift); }
.news-card .news-media {
  height: 190px;
  background: linear-gradient(135deg, var(--dl-secondary), var(--dl-primary));
  position: relative;
  display: flex; align-items: flex-end; padding: 18px;
}
.news-card .news-date {
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dl-secondary);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}
.news-card .news-body { padding: 24px; }
.news-card .news-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dl-primary); }
.news-card h5 { font-size: 1.05rem; margin: 10px 0; }
.news-card .news-meta { font-size: 0.8rem; color: var(--dl-text-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dl-secondary);
  padding: 64px 50px;
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); }

/* ---------- Footer ---------- */
.dl-footer {
  background: #06264F;
  color: rgba(255,255,255,0.75);
  padding: 90px 0 0;
  position: relative;
}
.dl-footer h5 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 22px;
}
.dl-footer .footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dl-footer p, .dl-footer li { font-size: 0.92rem; }
.dl-footer ul { list-style: none; padding: 0; }
.dl-footer ul li { margin-bottom: 12px; }
.dl-footer ul li a { color: rgba(255,255,255,0.7); transition: all 0.25s; }
.dl-footer ul li a:hover { color: var(--dl-accent); padding-left: 4px; }
.dl-footer .social-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.3s var(--ease-out);
}
.dl-footer .social-icon:hover { background: var(--dl-primary); transform: translateY(-4px); }
.dl-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 26px 0;
  font-size: 0.85rem;
}
.dl-footer .contact-line { display: flex; gap: 12px; margin-bottom: 16px; }
.dl-footer .contact-line i { color: var(--dl-accent); margin-top: 4px; }
.newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 100px 0 0 100px;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }

/* ---------- Timeline (About page) ---------- */
.dl-timeline { position: relative; padding-left: 40px; }
.dl-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--dl-primary), var(--dl-secondary));
}
.timeline-item { position: relative; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--dl-primary);
}
.timeline-item .year { font-family: var(--font-display); font-weight: 700; color: var(--dl-primary); font-size: 1.1rem; }
.timeline-item h5 { margin: 6px 0; }
.timeline-item p { color: var(--dl-text-soft); margin-bottom: 0; }

/* ---------- Value cards ---------- */
.value-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--dl-border);
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dl-secondary);
  box-shadow: var(--dl-shadow-soft);
}
.value-pill i { color: var(--dl-primary); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 140px; height: 140px; border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--dl-gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  box-shadow: var(--dl-shadow-soft);
  border: 4px solid #fff;
}
.team-card h5 { margin-bottom: 2px; }
.team-card .team-role { font-size: 0.85rem; color: var(--dl-primary); font-weight: 600; }

/* ---------- Accordion (Quality/Services) ---------- */
.dl-accordion .accordion-item {
  border: 1px solid var(--dl-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.dl-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dl-secondary);
  background: #fff;
  padding: 20px 24px;
}
.dl-accordion .accordion-button:not(.collapsed) {
  background: var(--dl-bg);
  color: var(--dl-primary);
  box-shadow: none;
}
.dl-accordion .accordion-button:focus { box-shadow: none; }
.dl-accordion .accordion-body { color: var(--dl-text-soft); padding: 4px 24px 24px; }

/* ---------- Certification badges ---------- */
.cert-badge {
  background: #fff;
  border: 1px solid var(--dl-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--dl-shadow-soft);
  transition: all 0.35s var(--ease-out);
}
.cert-badge:hover { transform: translateY(-6px); box-shadow: var(--dl-shadow-lift); }
.cert-badge i { font-size: 2.1rem; color: var(--dl-primary); margin-bottom: 12px; }
.cert-badge h6 { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--dl-secondary); }

/* ---------- Industry tiles ---------- */
.industry-tile {
  position: relative;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  background: #fff;
  border: 1px solid var(--dl-border);
  box-shadow: var(--dl-shadow-soft);
  height: 100%;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.industry-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--dl-gradient-brand);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 0;
}
.industry-tile:hover::before { opacity: 1; }
.industry-tile > * { position: relative; z-index: 1; }
.industry-tile i { font-size: 2rem; color: var(--dl-primary); transition: color 0.4s; }
.industry-tile:hover i { color: #fff; }
.industry-tile h5 { transition: color 0.4s; }
.industry-tile:hover h5, .industry-tile:hover p { color: #fff; }
.industry-tile p { color: var(--dl-text-soft); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Global network / map ---------- */
.map-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dl-border);
  box-shadow: var(--dl-shadow-soft);
  padding: 30px;
}
.country-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dl-border);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
}
.country-chip:last-child { border-bottom: none; }
.country-chip .region-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dl-primary);
  background: rgba(0,168,107,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- Careers ---------- */
.job-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--dl-border);
  box-shadow: var(--dl-shadow-soft);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.35s var(--ease-out);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--dl-shadow-lift); border-color: var(--dl-primary); }
.job-card h5 { margin-bottom: 6px; }
.job-card .job-meta { font-size: 0.85rem; color: var(--dl-text-soft); display: flex; gap: 16px; flex-wrap: wrap; }
.job-card .job-meta span { display: flex; align-items: center; gap: 6px; }
.benefit-card { text-align: center; padding: 30px 20px; }
.benefit-card i { font-size: 2.2rem; color: var(--dl-primary); margin-bottom: 16px; }

/* ---------- Forms ---------- */
.dl-form .form-control, .dl-form .form-select {
  border: 1.5px solid var(--dl-border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 0.94rem;
  background: #fcfffe;
}
.dl-form .form-control:focus, .dl-form .form-select:focus {
  border-color: var(--dl-primary);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.12);
}
.dl-form label { font-weight: 600; font-size: 0.88rem; color: var(--dl-secondary); margin-bottom: 8px; }

.contact-info-card {
  background: var(--dl-gradient-brand);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  color: #fff;
}
.contact-info-card .contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-card .contact-item:last-child { margin-bottom: 0; }
.contact-info-card .contact-item .ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h6 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; opacity: 0.85; }
.contact-info-card p { color: #fff; margin-bottom: 0; font-weight: 500; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border);
}

/* ---------- Breadcrumb SEO ---------- */
.dl-breadcrumb { background: var(--dl-bg); padding: 18px 0; border-bottom: 1px solid var(--dl-border); }
.dl-breadcrumb ol { margin: 0; font-size: 0.85rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--dl-gradient-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--dl-shadow-lift);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease-out);
  z-index: 999;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Preloader ---------- */
#dl-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dl-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#dl-preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--dl-gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700;
  animation: pulseMark 1.2s ease-in-out infinite;
}
@keyframes pulseMark { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
