/* ============================================
   OLYX PHARMA — GLOBAL STYLESHEET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap');

    /* <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap" rel="stylesheet"> */
:root {
  --navy:        #0D2B5E;
  --navy-dark:   #071A3A;
  --navy-mid:    #163566;
  --teal:        #00A878;
  --teal-light:  #1DC99A;
  --green:       #5FD068;
  --white:       #ffffff;
  --off-white:   #F4F7FC;
  --gray-light:  #E8EDF6;
  --gray-mid:    #6B7A99;
  --gray-text:   #374151;
  --border:      #DDE4EF;
  --shadow-sm:   0 2px 12px rgba(13,43,94,.06);
  --shadow-md:   0 8px 32px rgba(13,43,94,.10);
  --shadow-lg:   0 20px 60px rgba(13,43,94,.14);
  --radius:      10px;
  --radius-lg:   16px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'DM Sans',sans-serif; color:var(--gray-text); background:#fff; line-height:1.6; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition:color .2s; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family:'Syne',sans-serif; color:var(--navy); line-height:1.15; }
h1 { font-size:clamp(32px,5vw,56px); font-weight:800; }
h2 { font-size:clamp(26px,4vw,44px); font-weight:800; }
h3 { font-size:clamp(18px,2.5vw,24px); font-weight:700; }
h4 { font-size:18px; font-weight:700; }
p  { line-height:1.85; }

/* ---- LAYOUT ---- */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section    { padding:100px 0; }
.section-sm { padding:60px 0; }
.section-xs { padding:40px 0; }

/* ---- SECTION LABELS ---- */
.section-label {
  font-family:'Syne',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:3.5px; color:var(--teal); text-transform:uppercase;
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.section-label::before { content:''; width:28px; height:2px; background:var(--teal); flex-shrink:0; }
.section-title { margin-bottom:18px; }
.section-title span { color:var(--teal); }
.section-desc { font-size:16px; line-height:1.85; color:var(--gray-mid); }

/* ---- BUTTONS ---- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:14px;
  letter-spacing:.4px; border-radius:5px; transition:all .25s; cursor:pointer; border:2px solid transparent;
}
.btn-primary  { background:var(--teal); color:#fff; padding:13px 32px; }
.btn-primary:hover  { background:var(--teal-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,168,120,.3); }
.btn-navy     { background:var(--navy); color:#fff; padding:13px 32px; }
.btn-navy:hover     { background:var(--navy-mid); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline-teal { border-color:var(--teal); color:var(--teal); padding:11px 28px; }
.btn-outline-teal:hover { background:var(--teal); color:#fff; }
.btn-outline-white { border-color:rgba(255,255,255,.5); color:#fff; padding:11px 28px; }
.btn-outline-white:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.btn-white    { background:#fff; color:var(--teal); padding:13px 36px; }
.btn-white:hover    { background:var(--navy); color:#fff; }

/* ---- TOPBAR ---- */
.topbar { background:var(--navy-dark); padding:9px 0; }
.topbar-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar a,.topbar span { color:rgba(255,255,255,.65); font-size:13px; transition:color .2s; }
.topbar a:hover { color:var(--teal-light); }
.topbar-left,.topbar-right { display:flex; gap:20px; align-items:center; }
.topbar-divider { color:rgba(255,255,255,.2) !important; }

/* ---- NAVBAR ---- */
.navbar {
  background:#fff; position:sticky; top:0; z-index:999;
  box-shadow:0 2px 24px rgba(13,43,94,.09);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:82px; }
.logo { display:flex; align-items:center; }
.logo img { height: 96px; width:auto; object-fit:contain; }
.nav-menu { display:flex; gap:0; align-items:center; }
.nav-menu > li { position:relative; }
.nav-menu > li > a {
  display:block; padding:0 18px; height:82px; line-height:82px;
  font-family:'Syne',sans-serif; font-weight:600; font-size:14px; color:var(--navy);
  position:relative; white-space:nowrap;
}
.nav-menu > li > a::after {
  content:''; position:absolute; bottom:0; left:18px; right:18px; height:3px;
  background:var(--teal); transform:scaleX(0); transition:transform .3s; border-radius:2px 2px 0 0;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform:scaleX(1); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color:var(--teal); }

/* Dropdown */
.has-dropdown { position:relative; }
.dropdown {
  position:absolute; top:100%; left:0; min-width:220px;
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-lg);
  border:1px solid var(--border); padding:8px 0;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:all .25s;
}
.has-dropdown:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a {
  display:block; padding:10px 20px; font-size:14px; color:var(--gray-text);
  border-left:3px solid transparent; transition:all .2s;
}
.dropdown a:hover { background:var(--off-white); color:var(--teal); border-left-color:var(--teal); }
.dropdown-arrow { font-size:10px; margin-left:4px; opacity:.6; }

.nav-cta { margin-left:16px; }

/* ---- PAGE HEADER ---- */
.page-header {
  background:var(--navy); padding:72px 0 60px;
  position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 80% 50%, rgba(0,168,120,.12) 0%, transparent 55%);
}
.page-header::after {
  content:''; position:absolute; right:-60px; top:-60px;
  width:400px; height:400px; border-radius:50%;
  border:60px solid rgba(255,255,255,.025);
}
.page-header-inner { position:relative; z-index:2; }
.page-header h1 { color:#fff; font-size:clamp(28px,4.5vw,50px); }
.page-header p { color:rgba(255,255,255,.65); font-size:16px; margin-top:10px; max-width:600px; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:13px; margin-top:14px; }
.breadcrumb a { color:var(--teal-light); }
.breadcrumb span { color:rgba(255,255,255,.35); }
.breadcrumb-sep { color:rgba(255,255,255,.2); }

/* ---- HERO ---- */
.hero {
  background:var(--navy-dark); min-height:unset;
  display:flex; align-items:center; position:relative; overflow:hidden;
}
/* .hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 75% 40%, rgba(0,168,120,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 90%, rgba(0,40,100,.6) 0%, transparent 50%);
} */

.hero::before {
  display: none;
}
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:2; }
.hero-tag { font-size:11px; font-weight:700; letter-spacing:4px; color:var(--teal-light); text-transform:uppercase; display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.hero-tag::before { content:''; width:36px; height:2px; background:var(--teal-light); }
.hero h1 { color:#fff; margin-bottom:22px; }
.hero h1 span { color:var(--teal-light); }
.hero-desc { color:rgba(255,255,255,.68); font-size:17px; line-height:1.85; margin-bottom:36px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-visual { display:flex; flex-direction:column; gap:14px; }
.hero-badges { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.hero-badge {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:22px 20px; text-align:center;
}
.hero-badge-icon { font-size:28px; margin-bottom:8px; }
.hero-badge-num { font-family:'Syne',sans-serif; font-size:22px; font-weight:800; color:#fff; }
.hero-badge-label { font-size:12px; color:rgba(255,255,255,.5); margin-top:3px; }
.hero-badge-wide {
  background:var(--teal); border-radius:var(--radius-lg); padding:22px 28px;
  display:flex; align-items:center; gap:18px;
}
.hero-badge-wide-icon { font-size:36px; }
.hero-badge-wide-text h4 { color:#fff; font-size:15px; font-weight:700; margin-bottom:3px; }
.hero-badge-wide-text p { color:rgba(255,255,255,.75); font-size:13px; }

/* ---- STATS BAR ---- */
.stats-bar { background:var(--navy); padding:44px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-divider { border-right:1px solid rgba(255,255,255,.1); }
.stat-num { font-family:'Syne',sans-serif; font-size:40px; font-weight:800; color:#fff; line-height:1; }
.stat-num sup { font-size:20px; }
.stat-num span { color:var(--teal-light); }
.stat-label { font-size:12px; color:rgba(255,255,255,.5); margin-top:8px; letter-spacing:.5px; }

/* ---- CHECK LIST ---- */
.check-list { list-style:none; margin:20px 0; }
.check-list li {
  display:flex; align-items:flex-start; gap:12px;
  padding:9px 0; border-bottom:1px solid var(--border); font-size:15px;
}
.check-list li:last-child { border-bottom:none; }
.check-list .chk {
  width:22px; height:22px; border-radius:50%; background:var(--teal);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;
}
.check-list .chk svg { width:11px; height:11px; fill:none; stroke:#fff; stroke-width:2.5; stroke-linecap:round; }

/* ---- ABOUT VISUAL BOX ---- */
.about-img-box {
  position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:460px;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display:flex; align-items:center; justify-content:center;
}
.about-img-box img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; opacity:.7; }
.about-img-inner { text-align:center; color:rgba(255,255,255,.2); position:relative; z-index:2; padding:40px; }
.about-img-inner svg { width:100px; height:100px; margin:0 auto 16px; }
.cert-badge {
  position:absolute; bottom:28px; right:-10px; z-index:3;
  background:var(--teal); color:#fff; padding:18px 22px;
  border-radius:var(--radius); font-family:'Syne',sans-serif; font-weight:800;
  font-size:14px; text-align:center; line-height:1.4;
  box-shadow:0 10px 36px rgba(0,168,120,.4);
}

/* ---- WE DO / SERVICE CARDS ---- */
.wwd-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.wwd-card {
  background:#fff; border-radius:var(--radius); padding:36px 28px;
  border-bottom:4px solid transparent; box-shadow:var(--shadow-sm); transition:all .3s;
}
.wwd-card:hover { border-bottom-color:var(--teal); transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,168,120,.12); }
.wwd-icon { width:58px; height:58px; border-radius:var(--radius); background:rgba(0,168,120,.1); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.wwd-icon svg { width:26px; height:26px; fill:none; stroke:var(--teal); stroke-width:1.8; stroke-linecap:round; }
.wwd-card h3 { font-size:18px; margin-bottom:10px; }
.wwd-card p  { font-size:14px; color:var(--gray-mid); line-height:1.85; }

/* ---- PRODUCT CARDS (catalog) ---- */
.products-filter { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn {
  padding:8px 22px; border:2px solid var(--border); border-radius:30px;
  font-family:'Syne',sans-serif; font-weight:600; font-size:13px;
  color:var(--gray-mid); background:#fff; cursor:pointer; transition:all .2s;
}
.filter-btn.active,.filter-btn:hover { border-color:var(--teal); color:var(--teal); background:rgba(0,168,120,.05); }

.s-tab { padding:10px 28px; border:2px solid var(--border); border-radius:30px; font-family:'Syne',sans-serif; font-weight:700; font-size:13px; color:var(--gray-mid); cursor:pointer; transition:all .2s; background:#fff; margin-right:10px; }
.s-tab.active { border-color:var(--teal); color:var(--teal); background:rgba(0,168,120,.05); }
.strength-panel { display:none; }
.strength-panel.active { display:block; }
/* here i did change */
.s-tab {
  padding:10px 28px; border:2px solid var(--border);
  border-radius:30px; font-family:'Syne',sans-serif;
  font-weight:700; font-size:13px; color:var(--gray-mid);
  cursor:pointer; transition:all .2s; background:#fff; margin-right:10px;
}
.s-tab.active { border-color:var(--teal); color:var(--teal); background:rgba(0,168,120,.05); }
.strength-panel { display:none; }
.strength-panel.active { display:block; }

.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.prod-card { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; background:#fff; transition:all .3s; }
.prod-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.prod-card-head { background:var(--navy); padding:28px 24px; }
.prod-card-head .cat { font-size:11px; color:var(--teal-light); font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:8px; }
.prod-card-head h3 { color:#fff; font-size:17px; font-weight:800; line-height:1.3; }
.prod-card-head .dose { color:rgba(255,255,255,.55); font-size:13px; margin-top:6px; }
.prod-card-body { padding:22px 24px; }
.prod-card-body p { font-size:14px; color:var(--gray-mid); line-height:1.85; margin-bottom:16px; }
.prod-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:20px; }
.prod-tag { background:var(--off-white); color:var(--navy); font-size:11px; font-weight:600; padding:5px 12px; border-radius:20px; }
.prod-tag-green { background:rgba(0,168,120,.1); color:var(--teal); }

/* ---- PRODUCT DETAIL PAGE ---- */
.prod-detail-header { background:var(--navy); padding:50px 0; }
.prod-detail-header .cat-label { font-size:11px; letter-spacing:3px; color:var(--teal-light); font-weight:700; text-transform:uppercase; margin-bottom:10px; }
.prod-detail-header h1 { color:#fff; }
.prod-detail-header .dose-line { color:rgba(255,255,255,.6); font-size:16px; margin-top:8px; }
.prod-detail-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:60px; align-items:start; padding:70px 0; }
.prod-detail-section { margin-bottom:36px; }
.prod-detail-section h3 { font-size:20px; margin-bottom:14px; padding-bottom:10px; border-bottom:2px solid var(--gray-light); }
.prod-detail-section p { font-size:15px; color:var(--gray-mid); line-height:1.9; }
.formulation-box { background:var(--navy); border-radius:var(--radius-lg); padding:32px; }
.formulation-box h4 { color:#fff; font-size:15px; font-weight:700; margin-bottom:22px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,.12); }
.formulation-row { display:flex; justify-content:space-between; gap:16px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:14px; }
.formulation-row:last-child { border-bottom:none; }
.formulation-row .label { color:rgba(255,255,255,.5); flex-shrink:0; }
.formulation-row .value { color:#fff; font-weight:600; text-align:right; }
.stock-box { background:var(--off-white); border-left:4px solid var(--teal); border-radius:0 var(--radius) var(--radius) 0; padding:20px 22px; margin-top:22px; }
.stock-box h5 { font-size:14px; font-weight:700; margin-bottom:6px; }
.stock-box p { font-size:13px; color:var(--gray-mid); line-height:1.8; }

/* ---- FAQ ACCORDION ---- */
.faq-wrap { max-width:840px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; cursor:pointer; gap:16px;
  font-family:'Syne',sans-serif; font-weight:700; font-size:16px; color:var(--navy);
}
.faq-toggle { width:32px; height:32px; border-radius:50%; border:2px solid var(--teal); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .25s; }
.faq-toggle svg { width:14px; transition:transform .3s; stroke:var(--teal); fill:none; stroke-width:2; stroke-linecap:round; }
.faq-q.open .faq-toggle { background:var(--teal); }
.faq-q.open .faq-toggle svg { stroke:#fff; transform:rotate(180deg); }
.faq-a { font-size:15px; line-height:1.9; color:var(--gray-mid); max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s; }
.faq-a.open { max-height:500px; padding-bottom:22px; }

/* ---- CAREERS ---- */
.careers-perks { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:60px; }
.perk-card { background:var(--off-white); border-radius:var(--radius); padding:30px; border-left:4px solid var(--teal); }
.perk-card h3 { font-size:17px; margin-bottom:10px; }
.perk-card p { font-size:14px; color:var(--gray-mid); line-height:1.85; }
.jobs-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.job-card { border:1px solid var(--border); border-radius:var(--radius); padding:28px 26px; transition:all .3s; }
.job-card:hover { box-shadow:var(--shadow-md); border-color:var(--teal); }
.job-type { font-size:11px; font-weight:700; letter-spacing:2px; color:var(--teal); text-transform:uppercase; margin-bottom:10px; }
.job-card h3 { font-size:19px; margin-bottom:10px; }
.job-card p { font-size:14px; color:var(--gray-mid); line-height:1.85; margin-bottom:18px; }
.job-meta { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.job-badge { background:var(--off-white); color:var(--navy); font-size:12px; font-weight:600; padding:5px 14px; border-radius:20px; }
.apply-link { color:var(--teal); font-family:'Syne',sans-serif; font-weight:700; font-size:14px; display:inline-flex; align-items:center; gap:6px; }
.apply-link:hover { color:var(--navy); }
.internship-banner { background:var(--navy); border-radius:var(--radius-lg); padding:40px; margin-bottom:60px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; }
.internship-banner h3 { color:#fff; font-size:22px; margin-bottom:8px; }
.internship-banner p { color:rgba(255,255,255,.6); font-size:15px; max-width:560px; }

/* ---- CONTACT ---- */
.contact-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:70px; }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-input, .form-textarea, .form-select {
  width:100%; padding:13px 16px; border:1.5px solid var(--border);
  border-radius:6px; font-size:14px; font-family:'DM Sans',sans-serif;
  color:var(--navy); outline:none; transition:border-color .2s; background:#fff;
}
.form-input:focus, .form-textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(0,168,120,.08); }
.form-textarea { height:140px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }
.contact-info-card { background:var(--navy); border-radius:var(--radius-lg); padding:40px; }
.contact-info-card h3 { color:#fff; font-size:20px; font-weight:800; margin-bottom:28px; }
.cinfo-item { display:flex; gap:16px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,.08); }
.cinfo-item:last-of-type { border-bottom:none; padding-bottom:0; margin-bottom:0; }
.cinfo-icon { width:44px; height:44px; border-radius:8px; background:rgba(0,168,120,.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cinfo-icon svg { width:20px; height:20px; stroke:var(--teal-light); fill:none; stroke-width:1.8; stroke-linecap:round; }
.cinfo-label { color:rgba(255,255,255,.45); font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.cinfo-val { color:#fff; font-size:15px; line-height:1.6; }
.cinfo-val a { color:#fff; }
.cinfo-val a:hover { color:var(--teal-light); }

/* ---- PARTNERS ---- */
.partners-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.benefit-item { display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--border); }
.benefit-item:last-child { border-bottom:none; }
.benefit-icon { width:46px; height:46px; border-radius:50%; background:rgba(0,168,120,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.benefit-icon svg { width:22px; height:22px; stroke:var(--teal); fill:none; stroke-width:1.8; stroke-linecap:round; }
.benefit-item h4 { font-size:15px; margin-bottom:5px; }
.benefit-item p { font-size:14px; color:var(--gray-mid); line-height:1.8; }
.partner-form-box { background:var(--navy); border-radius:var(--radius-lg); padding:44px; }
.partner-form-box h3 { color:#fff; font-size:22px; margin-bottom:10px; }
.partner-form-box p { color:rgba(255,255,255,.6); font-size:15px; margin-bottom:28px; line-height:1.8; }
.dark-input {
  width:100%; padding:13px 16px; border-radius:6px;
  border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.07);
  color:#fff; font-size:14px; font-family:'DM Sans',sans-serif; outline:none;
  margin-bottom:14px; transition:border-color .2s;
}
.dark-input::placeholder { color:rgba(255,255,255,.35); }
.dark-input:focus { border-color:var(--teal-light); }

/* ---- QUALITY CARDS ---- */
.quality-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:50px; }
.quality-card { background:var(--off-white); border-radius:var(--radius); padding:34px 28px; border-top:4px solid var(--teal); }
.quality-card h3 { font-size:18px; margin-bottom:14px; }
.quality-card ul { list-style:none; }
.quality-card ul li { padding:8px 0; border-bottom:1px solid var(--border); font-size:14px; color:var(--gray-mid); display:flex; gap:10px; align-items:flex-start; line-height:1.7; }
.quality-card ul li:last-child { border-bottom:none; }
.quality-card ul li::before { content:'→'; color:var(--teal); font-weight:700; flex-shrink:0; }

/* ---- CTA BANNER ---- */
.cta-banner { background:var(--teal); padding:72px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-inner h2 { color:#fff; max-width:580px; }
.cta-inner p { color:rgba(255,255,255,.8); font-size:16px; margin-top:8px; }

/* ---- FOOTER ---- */
footer { background:var(--navy-dark); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:50px; padding-bottom:50px; }
.footer-brand .logo img { height:44px; filter:brightness(0) invert(1); margin-bottom:18px; }
.footer-brand p { color:rgba(255,255,255,.45); font-size:14px; line-height:1.9; margin-bottom:20px; max-width:280px; }
.footer-col h5 { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:#fff; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; }
.footer-col ul li { margin-bottom:11px; }
.footer-col ul li a { color:rgba(255,255,255,.45); font-size:14px; }
.footer-col ul li a:hover { color:var(--teal-light); }
.footer-contact-item { color:rgba(255,255,255,.45); font-size:13.5px; margin-bottom:13px; line-height:1.6; }
.footer-contact-item strong { display:block; color:rgba(255,255,255,.7); font-size:12px; margin-bottom:2px; letter-spacing:.5px; }
.footer-contact-item a { color:rgba(255,255,255,.45); }
.footer-contact-item a:hover { color:var(--teal-light); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07); padding:22px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom p,.footer-bottom a { color:rgba(255,255,255,.3); font-size:13px; }
.footer-bottom a:hover { color:var(--teal-light); }

/* ---- MISC ---- */
.bg-off { background:var(--off-white); }
.bg-navy-dark { background:var(--navy-dark); }
.text-center { text-align:center; }
.mt-8 { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mb-8 { margin-bottom:8px; }
.mb-50 { margin-bottom:50px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.fda-badge { display:inline-flex; align-items:center; gap:10px; background:rgba(0,168,120,.1); border:1px solid rgba(0,168,120,.3); border-radius:30px; padding:8px 20px; font-size:13px; font-weight:600; color:var(--teal); margin-top:12px; }

/* ---- MOBILE NAV ---- */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:24px; height:2px; background:var(--navy); border-radius:2px; transition:all .3s; display:block; }
.mobile-menu { display:none; }

/* ---- RESPONSIVE ---- */
@media (max-width:960px) {
  .hero-grid,.two-col,.partners-grid,.contact-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .wwd-grid { grid-template-columns:1fr 1fr; }
  .products-grid { grid-template-columns:1fr 1fr; }
  .quality-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .jobs-grid { grid-template-columns:1fr; }
  .careers-perks { grid-template-columns:1fr; }
  .prod-detail-grid { grid-template-columns:1fr; }
}
@media (max-width:680px) {
  .products-grid { grid-template-columns:1fr; }
  .wwd-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .nav-menu,.nav-cta,.topbar-right { display:none; }
  .hamburger { display:flex; }
  .topbar-left { flex-wrap:wrap; gap:6px; }
}

/* ============================================
   MAIN SLIDER — from olyx theme
   (laboix vars mapped to site vars)
   ============================================ */

.main-slider-one { position: relative; }

.main-slider-one__carousel { position: relative; width: 100%; }

.main-slider-one__carousel .owl-dots {
  display: flex; gap: 10px;
  position: absolute; bottom: 66px; left: 19.45%;
}
.main-slider-one__carousel .owl-dots .owl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
}
.main-slider-one__carousel .owl-dots .owl-dot.active,
.main-slider-one__carousel .owl-dots .owl-dot:hover {
  background-color: var(--teal);
}

.main-slider-one__item {
  background-color: var(--navy-dark);
  position: relative; z-index: 3;
  padding-top: 60px; padding-bottom: 60px;
}
@media (max-width: 1800px) {
  .main-slider-one__item { padding-top: 60px; padding-bottom: 60px; }
}
@media (max-width: 1199px) {
  .main-slider-one__item { padding-top: 50px; padding-bottom: 50px; }
}
@media (max-width: 991px) {
  .main-slider-one__item { padding-top: 40px; padding-bottom: 40px; }
}

.main-slider-one__bg {
  position: absolute; width: 100%; top: 0; left: 0; height: 100%;
  background-repeat: no-repeat; background-position: center right;
  background-size: cover;
  opacity: 1; z-index: 2;
  pointer-events: none;
}

.main-slider-one__bg::before {
  content: ""; position: absolute;
  left: 0; top: 0; height: 100%; width: 65%;
  z-index: 1;
  background: linear-gradient(to right, var(--navy-dark) 50%, transparent 100%);
}

.main-slider-one__bg::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 193.000000"><g transform="translate(0.000000,193.000000) scale(0.050000,-0.050000)"><path d="M0 1930 l0 -1930 2990 0 c1645 0 2990 4 2990 8 0 5 -337 320 -748 700 l-748 691 293 284 c161 156 319 308 350 338 l57 53 -846 893 -845 893 -1746 0 -1747 0 0 -1930z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 193.000000"><g transform="translate(0.000000,193.000000) scale(0.050000,-0.050000)"><path d="M0 1930 l0 -1930 2990 0 c1645 0 2990 4 2990 8 0 5 -337 320 -748 700 l-748 691 293 284 c161 156 319 308 350 338 l57 53 -846 893 -845 893 -1746 0 -1747 0 0 -1930z"/></g></svg>');
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: top center; mask-position: top center;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  background: var(--teal);
  opacity: 0.25;
  pointer-events: none;
}

.main-slider-one .active .main-slider-one__bg { opacity: 1; }

/* .main-slider-one__bg::before {
  position: absolute; left: 0; top: 0; height: 100%; width: 79%; content: "";
  z-index: -2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 185.000000"><g transform="translate(0.000000,185.000000) scale(0.050000,-0.050000)"><path d="M0 1850 l0 -1850 2993 0 2993 0 -37 41 c-21 23 -341 322 -713 664 -372 343 -676 630 -676 637 0 8 148 157 329 331 l329 317 -810 855 -809 855 -1800 0 -1799 0 0 -1850z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 185.000000"><g transform="translate(0.000000,185.000000) scale(0.050000,-0.050000)"><path d="M0 1850 l0 -1850 2993 0 2993 0 -37 41 c-21 23 -341 322 -713 664 -372 343 -676 630 -676 637 0 8 148 157 329 331 l329 317 -810 855 -809 855 -1800 0 -1799 0 0 -1850z"/></g></svg>');
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: top center; mask-position: top center;
  -webkit-mask-size: auto; mask-size: auto;
  background: linear-gradient(180deg, var(--teal) 0%, rgba(0,168,120,0) 100%);
}
@media (max-width: 1400px) { .main-slider-one__bg::before { width: 100%; height: 100%; } }
@media (max-width: 991px) { .main-slider-one__bg::before { display: none; } } */

/* .main-slider-one__bg::after {
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 193.000000"><g transform="translate(0.000000,193.000000) scale(0.050000,-0.050000)"><path d="M0 1930 l0 -1930 2990 0 c1645 0 2990 4 2990 8 0 5 -337 320 -748 700 l-748 691 293 284 c161 156 319 308 350 338 l57 53 -846 893 -845 893 -1746 0 -1747 0 0 -1930z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 193.000000"><g transform="translate(0.000000,193.000000) scale(0.050000,-0.050000)"><path d="M0 1930 l0 -1930 2990 0 c1645 0 2990 4 2990 8 0 5 -337 320 -748 700 l-748 691 293 284 c161 156 319 308 350 338 l57 53 -846 893 -845 893 -1746 0 -1747 0 0 -1930z"/></g></svg>');
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: top center; mask-position: top center;
  -webkit-mask-size: auto; mask-size: auto;
  position: absolute; left: 0; top: 0; width: 75%; height: 101%; z-index: 2;
  background-color: var(--navy-dark);
}
@media (max-width: 1400px) { .main-slider-one__bg::after { width: 95%; height: 100%; } }
@media (max-width: 991px) { .main-slider-one__bg::after { display: none; } } */

.main-slider-one__bg::after {
  display: none;
}

.main-slider-one__content { position: relative; display: inline-block; z-index: 3; }

.main-slider-one__sub-title {
  color: var(--teal-light);
  font-family: 'Lexend', sans-serif;
  font-size: 18px; font-weight: 500; line-height: normal;
  text-align: left; margin: -7px 0 10px;
  transition: transform 600ms ease, opacity 600ms ease;
  transform: translateY(0px);
  opacity: 1;
}

.main-slider-one__title {
  color: #fff;
  display: inline-block; overflow: hidden;
  margin: 0 0 17px; opacity: 1;
  font-size: 52px; font-weight: 600;
  line-height: 114.286%; letter-spacing: -1.5px;
  text-shadow: 0 0 1px currentColor;
  transition: transform 600ms ease, opacity 600ms ease;
  transform: translateX(0px);
}
@media (max-width: 1199px) { .main-slider-one__title { font-size: 60px; } }
@media (max-width: 991px)  { .main-slider-one__title { font-size: 50px; } }
@media (max-width: 767px)  { .main-slider-one__title { font-size: 40px; } }

/* .main-slider-one__title::after {
  content: ""; width: 101%; height: 100%;
  position: absolute; top: 0; left: 100%;
  background: currentColor;
  transition: 0.5s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3; transform: translateX(-100%); transition-delay: 1s;
} */

/* .main-slider-one__title::after {
  display: none;
} */

.main-slider-one__btn {
  position: relative; z-index: 5; overflow: hidden; opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform-origin: bottom; transition: all 600ms ease;
}

/* laboix-btn mapped to site style */
.laboix-btn {
  display: inline-block; vertical-align: middle;
  border: none; outline: none !important;
  background-color: var(--teal); color: #fff;
  font-family: 'Lexend', sans-serif;
  padding: 19px 41.5px; transition: 500ms;
  font-size: 16px; font-weight: 600; line-height: 112.5%;
  position: relative; overflow: hidden; text-align: center; z-index: 1;
}
.laboix-btn::before {
  content: ""; height: 0; width: 0;
  background-color: var(--navy-dark); border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transition: all 0.5s ease-in-out; z-index: -1;
}
.laboix-btn:hover { color: #fff; }
.laboix-btn:hover::before { height: 400px; width: 200%; top: -70%; left: -50%; }

.main-slider-one__shape { position: absolute; }
.main-slider-one__shape--one {
  bottom: 0%; left: 0%;
  transition: all 1500ms ease;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: left; opacity: 0;
}
@media (max-width: 1199px) { .main-slider-one__shape--one { display: none; } }

.main-slider-one__shape--two {
  top: 0%; left: 0%;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom; opacity: 0; transition: all 1500ms ease;
}

@keyframes scale3 {
  0%   { transform: scale(0.9); }
  50%  { transform: scale(1); }
  100% { transform: scale(0.9); }
}

.main-slider-one__shape--three {
  bottom: 0; right: 0;
  transition: all 1500ms ease;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: right; opacity: 0;
}
@media (max-width: 991px) { .main-slider-one__shape--three { display: none; } }

.main-slider-one__shape--fore {
  top: 0; left: 0;
  transition: all 1500ms ease;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: left; opacity: 0;
}
@media (max-width: 1199px) { .main-slider-one__shape--fore { display: none; } }

/* Active slide animations */
.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1; transform: translateY(0); transition-delay: 200ms;
}
.main-slider-one .active .main-slider-one__bg {
  opacity: 1;
}
.main-slider-one .active .main-slider-one__shape--two {
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transition-delay: 1700ms;
  animation: scale3 6s ease-in-out infinite; opacity: 1;
}
.main-slider-one .active .main-slider-one__shape--one,
.main-slider-one .active .main-slider-one__shape--fore {
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms; opacity: 1;
}
.main-slider-one .active .main-slider-one__shape--three {
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
  animation: topAni 4s ease-in-out infinite; opacity: 1;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1; transform: translateX(0); transition-delay: 300ms;
}
/* .main-slider-one .active .main-slider-one__title::after {
  transform: translateX(1%); transition-delay: 200ms;
} */

/* .main-slider-one .active .main-slider-one__title::after {
  display: none;
} */
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 400ms;
}

/* ============================================
   HERO ENHANCEMENTS — gaps, shapes, image, hexagons
   ============================================ */

/* Fix gap: remove any margin/padding around the section */
.hero.main-slider-one {
  margin: 0;
  padding: 0;
  display: block;
}

/* Inner grid: text left, image right */
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 5;
  min-height: unset;
  padding: 20px 0;
}

/* ---- HEXAGON BENZENE RING BACKGROUND PATTERN ---- */
.hero-hex-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpolygon points='60,2 113,28 113,76 60,102 7,76 7,28' fill='none' stroke='%2300A878' stroke-width='1.5'/%3E%3Cline x1='60' y1='2' x2='60' y2='30' stroke='%2300A878' stroke-width='1'/%3E%3Cline x1='113' y1='28' x2='88' y2='43' stroke='%2300A878' stroke-width='1'/%3E%3Cline x1='113' y1='76' x2='88' y2='61' stroke='%2300A878' stroke-width='1'/%3E%3Cline x1='60' y1='102' x2='60' y2='74' stroke='%2300A878' stroke-width='1'/%3E%3Cline x1='7' y1='76' x2='32' y2='61' stroke='%2300A878' stroke-width='1'/%3E%3Cline x1='7' y1='28' x2='32' y2='43' stroke='%2300A878' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 104px;
}

/* ---- GREEN TRIANGLE SHAPES (bottom-left) ---- */
.hero-triangles {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-tri {
  position: absolute;
  background: var(--teal);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.hero-tri--large {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: 0;
  background: var(--teal);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.hero-tri--small {
  width: 110px;
  height: 110px;
  bottom: 0;
  left: 130px;
  background: #00c48c;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%);
}

/* ---- DARK NAVY HEXAGONS (top-right) ---- */
.hero-dark-hexagons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  width: 200px;
  height: 100%;
}

.hero-hex {
  position: absolute;
  background: var(--navy-mid);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-hex--1 { width: 72px; height: 80px; top: 10px;  right: 20px;  opacity: .85; }
.hero-hex--2 { width: 90px; height: 100px; top: 70px; right: -10px; opacity: .75; }
.hero-hex--3 { width: 72px; height: 80px; top: 155px; right: 55px;  opacity: .80; }
.hero-hex--4 { width: 60px; height: 68px; top: 220px; right: 5px;   opacity: .65; }
.hero-hex--5 { width: 72px; height: 80px; top: 270px; right: -15px; opacity: .55; }

/* ---- DIAGONAL IMAGE PLACEHOLDER (right side) ---- */
.hero-img-placeholder {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.hero-img-inner {
  width: 95%;
  height: 420px;
  position: relative;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  border-radius: 4px;
}

.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slide 1 — pull focus to equipment area */
.hero-img-slide1 {
  object-position: center 70%;
}

/* Slide 2 — pull focus to equipment area */
.hero-img-slide2 {
  object-position: center 80%;
}

/* ---- OWL DOTS — below Get Started button ---- */
.main-slider-one__carousel .owl-dots {
  position: absolute;
  z-index: 10;
  display: flex;
  gap: 10px;
  /* Position it below the Get Started button — left-aligned with text */
  bottom: 28px;
  left: calc(50% - 576px + 24px); /* mirrors container left edge */
}

@media (max-width: 1248px) {
  .main-slider-one__carousel .owl-dots {
    left: 24px;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-inner-grid {
    grid-template-columns: 1fr;
  }
  .hero-dark-hexagons {
    display: none;
  }
}

/* Prevent about-img-inner styles bleeding into hero */
.hero-img-placeholder .about-img-inner { display: none; }
.hero-img-inner p { display: none; }

/* Fast fade out for outgoing slide */
.owl-animated-out {
  animation-duration: 300ms !important;
}

/* Incoming slide text appears immediately */
.owl-animated-in {
  animation-duration: 300ms !important;
}

.page-header {
  background:var(--navy); padding:72px 0 60px;
  position:relative; overflow:hidden;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to right, rgba(7,26,58,0.92) 40%, rgba(7,26,58,0.65) 100%);
  z-index: 1;
}
.page-header-inner { position:relative; z-index:2; }

.about-mission-bg {
  position: relative;
  background-image: url(assets/images/about-3.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-mission-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 247, 252, 0.82);
  z-index: 0;
}
.about-mission-bg .container {
  position: relative;
  z-index: 1;
}

.quality-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(0,168,120,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.quality-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--teal);
}

/* ---- PRODUCT CARD IMAGE HEADER ---- */
.prod-card-head {
  position: relative;
  overflow: hidden;
  min-height: 130px;
}
.prod-card-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 58, 0.55);
  z-index: 1;
}
.prod-card-head-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-card-head-bg {
  transform: scale(1.05);
}
.prod-card-head .cat,
.prod-card-head h3,
.prod-card-head .dose {
  position: relative;
  z-index: 2;
}

/* ---- PRODUCT DETAIL HEADER IMAGE ---- */
.prod-detail-header {
  position: relative;
  background-size: cover;
  background-position: center;
}
.prod-detail-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 58, 0.72);
  z-index: 1;
}
.prod-detail-header .container {
  position: relative;
  z-index: 2;
}

/* Partners bottom section overlay */
.section.bg-off[style*="partners-bg"] {
  isolation: isolate;
}
.section.bg-off[style*="partners-bg"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 247, 252, 0.78);
  z-index: 0;
}
.section.bg-off[style*="partners-bg"] .container {
  position: relative;
  z-index: 1;
}

/* Tech page css */
.facility-strip {
  padding: 60px 0 70px;
  background: #f4f7fb;
}
.facility-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: end;
}
.facility-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,40,100,0.10);
}
.facility-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.facility-img-center img {
  height: 290px;
}
.facility-img-wrap:hover img {
  transform: scale(1.04);
}
.facility-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(10,30,60,0.72));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 700px) {
  .facility-strip-grid { grid-template-columns: 1fr; }
  .facility-img-center img, .facility-img-wrap img { height: 200px; }
}

.wwd-card {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.wwd-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.72);
  z-index: 0;
}
.wwd-card:has(.wwd-card-bg-overlay) .wwd-icon,
.wwd-card:has(.wwd-card-bg-overlay) h3,
.wwd-card:has(.wwd-card-bg-overlay) p {
  position: relative;
  z-index: 1;
  color: #fff;
}
.wwd-card:has(.wwd-card-bg-overlay) .wwd-icon svg {
  stroke: #fff;
}

/* Facility page - quality cards with bg images */
.quality-card:has(.wwd-card-bg-overlay) {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.quality-card:has(.wwd-card-bg-overlay) .wwd-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 45, 0.78);
  z-index: 0;
}
.quality-card:has(.wwd-card-bg-overlay) h3,
.quality-card:has(.wwd-card-bg-overlay) ul,
.quality-card:has(.wwd-card-bg-overlay) li {
  position: relative;
  z-index: 1;
  color: #fff;
}
.quality-card:has(.wwd-card-bg-overlay) li {
  color: rgba(255,255,255,0.88);
}
.about-img-inner {
  width: 100%;
  height: 100%;
  min-height: 380px;
  padding: 0 !important;
  overflow: hidden;
}
.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Contact page animations */
.contact-grid > div {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}
.contact-grid > div:nth-child(2) {
  animation-delay: 0.15s;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  transform: scale(1.01);
  transition: all 0.2s ease;
}
.cinfo-item {
  transition: transform 0.2s ease;
}
.cinfo-item:hover {
  transform: translateX(4px);
}