/* Hamlish Lifesciences — site styles */
:root {
  --primary-dark: #13206b;
  --primary: #1c3aa9;
  --accent-color: #1f78d1;
  --accent-soft: #e9f2fc;
  --secondary-light: #fbfcff;
  --text-color: #333333;
  --light-text-color: #6b7385;
  --border-color: #e7ebf4;
  --shadow-color-light: rgba(19, 32, 107, 0.08);
  --shadow-color-medium: rgba(19, 32, 107, 0.16);
  --header-bg: #0b1447;
  --whatsapp: #25d366;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden;
}
a, h1, h2, h3, h4, h5, .quick { font-family: 'Quicksand', system-ui, sans-serif; }
h1, h2, h3, h4, h5 { margin: 0 0 0.5em; line-height: 1.3; }
p { margin: 0 0 1em; }
a { color: var(--accent-color); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.custom-container { max-width: 1350px; width: 100%; margin: 0 auto; padding: 0 15px; position: relative; z-index: 1; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

/* ---------- Header ---------- */
header#header { background: var(--header-bg); padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25); }
#navbar { width: 90%; margin: 0 auto; }
#navigation { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.home-link { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 10px; padding: 3px 16px 3px 3px; flex-shrink: 0; }
.logo-mark { width: 56px; height: 56px; position: relative; overflow: hidden; border-radius: 8px; }
.logo-mark img { position: absolute; height: 86px; width: auto; max-width: none; left: -18px; top: 0; }
.logo-words { display: flex; flex-direction: column; line-height: 1.05; color: var(--primary-dark); }
.logo-words b { font-family: 'Quicksand', sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: 0.06em; }
.logo-words small { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.34em; color: var(--primary); }
.main-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-menu a { display: block; color: #fff; font-weight: 600; font-size: 15px; padding: 10px 14px; border-radius: 6px; transition: background 0.25s, color 0.25s; }
.main-menu a:hover, .main-menu a.active { background: rgba(255, 255, 255, 0.12); color: #9fd0ff; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Page title bar ---------- */
.page-title-header {
  display: flex; align-items: center; height: 170px; color: #fff;
  background-color: #0b1447;
  background-image: linear-gradient(rgba(6, 12, 45, 0.62), rgba(6, 12, 45, 0.62)), linear-gradient(120deg, #0b1447 0%, #13206b 50%, #1f78d1 100%);
  background-size: cover; background-position: center;
}
.inner-breadcrumb { text-align: center; }
.inner-breadcrumb h1 { font-size: 34px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.b-navigation { color: #cdcccc; }
.b-navigation a { color: #cdcccc; font-weight: 700; }
.b-navigation a:hover { color: #9fd0ff; }

/* ---------- Banner ---------- */
#banner { background: #2b2b2b; line-height: 0; }
#banner .banner-img { width: 100%; height: auto; display: block; }

/* ---------- Generic sections ---------- */
.section-block { padding: 100px 0; position: relative; overflow: hidden; }
.section-block.alt { background-color: var(--secondary-light); }
.section-heading { color: var(--primary-dark); font-weight: 700; font-size: 2.5rem; line-height: 1.3; text-align: center; margin-bottom: 60px; position: relative; padding-bottom: 20px; }
.section-heading::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 120px; height: 7px; background-color: var(--accent-color); border-radius: 4px; }
.section-intro { max-width: 820px; margin: -30px auto 50px; text-align: center; font-size: 1.1rem; color: var(--light-text-color); }

.grid { display: grid; gap: 30px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: center; }
.split.seven-five { grid-template-columns: 7fr 5fr; }
.split.half { grid-template-columns: 1fr 1fr; }

/* feature cards */
.section-feature-cards { padding: 80px 0; background: var(--secondary-light); }
.featured-box { background-color: #fff; border-radius: 18px; padding: 34px 28px; text-align: center; box-shadow: 0 12px 25px var(--shadow-color-light); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s; border: 1px solid var(--border-color); height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.featured-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--primary-dark), var(--accent-color)); transform: translateY(-100%); transition: transform 0.4s; }
.featured-box:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 20px 40px var(--shadow-color-medium); }
.featured-box:hover::before { transform: translateY(0); }
.featured-box i { font-size: 3.2rem; color: var(--primary-dark); margin-bottom: 22px; transition: color 0.4s; }
.featured-box:hover i { color: var(--accent-color); }
.featured-box .feature-title, .featured-box h3 { font-family: 'Quicksand', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.featured-box p { font-size: 1.05rem; color: var(--light-text-color); line-height: 1.7; flex-grow: 1; margin: 0; }

/* welcome */
.welcome-intro { margin-bottom: 70px; text-align: center; }
.welcome-subheading { font-size: 1.3rem; color: var(--light-text-color); margin-bottom: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.welcome-main-title { color: var(--primary-dark); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.2; margin-bottom: 28px; position: relative; display: inline-block; }
.welcome-main-title::after { content: ''; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 100px; height: 6px; background-color: var(--accent-color); border-radius: 3px; }
.main-img { position: relative; padding: 0 0 30px 20px; }
.welcome-img img, .third-party-img img, .choose-img img { width: 100%; border-radius: 18px; box-shadow: 0 15px 30px var(--shadow-color-medium); transition: transform 0.4s ease-in-out; aspect-ratio: 4 / 3; object-fit: cover; background: var(--accent-soft); }
.welcome-img img:hover { transform: scale(1.03) rotate(1deg); }
.third-party-img img:hover { transform: scale(1.03) rotate(-1deg); }
.choose-img img:hover { transform: scale(1.03); }
.experience-box { position: absolute; left: 0; bottom: 0; background: var(--primary-dark); color: #fff; border-radius: 18px; padding: 18px 22px; text-align: center; box-shadow: 0 15px 30px var(--shadow-color-medium); transition: background 0.3s; min-width: 150px; }
.experience-box:hover { background: var(--accent-color); }
.years-count { font-family: 'Quicksand', sans-serif; font-size: 40px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.years-text { font-size: 15px; font-weight: 600; }
.about-txt p, .third-party-txt p { font-size: 1.15rem; line-height: 1.8; color: var(--text-color); margin-bottom: 22px; text-align: justify; }

/* third party */
.third-party-main-title, .choose-main-title { color: var(--primary-dark); font-weight: 700; font-size: 38px; line-height: 1.4; margin-bottom: 35px; position: relative; padding-bottom: 12px; }
.third-party-main-title::after, .choose-main-title::after { content: ''; position: absolute; bottom: 0; width: 80px; height: 5px; background-color: var(--accent-color); border-radius: 2px; }
.third-party-main-title::after { left: 50%; transform: translateX(-50%); }
.choose-main-title::after { left: 0; }
.global-btn { display: inline-block; background-color: var(--primary-dark); color: #fff; border-radius: 10px; padding: 15px 40px; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; box-shadow: 0 8px 15px var(--shadow-color-light); border: 0; cursor: pointer; }
.global-btn:hover { background-color: var(--accent-color); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 20px var(--shadow-color-medium); }
.global-btn.block { display: block; width: 100%; text-align: center; }

/* CTA */
.cta-band { padding: 80px 0; text-align: center; color: #fff; background-color: #13206b; background-image: linear-gradient(rgba(11, 20, 71, 0.72), rgba(11, 20, 71, 0.72)), linear-gradient(120deg, #0b1447, #1f78d1); background-size: cover; background-position: center; background-attachment: fixed; }
.cta-band .section-heading { color: #fff; margin-bottom: 40px; font-size: 2.2rem; }
.cta-band .section-heading::after { background: #fff; }
.btn-cta { background-color: #fff; color: var(--primary-dark); border: 2px solid #fff; padding: 15px 40px; border-radius: 50px; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); display: inline-block; }
.btn-cta:hover { background-color: var(--accent-color); color: #fff; border-color: var(--accent-color); transform: translateY(-5px) scale(1.02); }

/* why choose */
.intro-paragraph { font-size: 1.15rem; line-height: 1.8; color: var(--text-color); margin-bottom: 30px; text-align: justify; }
.feature-detail-card { background: #fff; border-radius: 15px; padding: 28px; margin-bottom: 25px; box-shadow: 0 8px 18px var(--shadow-color-light); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--border-color); display: flex; align-items: flex-start; }
.feature-detail-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px var(--shadow-color-medium); }
.feature-detail-card i { font-size: 2.2rem; color: var(--accent-color); margin-right: 20px; flex-shrink: 0; line-height: 1; width: 44px; text-align: center; }
.feature-detail-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.feature-detail-card p { font-size: 0.98rem; line-height: 1.6; color: var(--light-text-color); margin: 0; }
.choose-cards { margin-top: 30px; column-gap: 30px; row-gap: 0; }

/* product carousel */
.product-carousel { position: relative; padding: 0 10px; }
.product-track { display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 10px 0 20px; }
.product-track::-webkit-scrollbar { display: none; }
.product-track .item { flex: 0 0 25%; scroll-snap-align: start; }
.product-img-wrapper { background: #fff; border-radius: 12px; padding: 15px; margin: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); border: 1px solid #f0f0f0; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.product-img-wrapper:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(31, 120, 209, 0.18); border-color: var(--accent-color); }
.product-img-wrapper img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 8px; }
.product-img-wrapper .cap { text-align: center; font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--primary-dark); margin-top: 10px; font-size: 0.95rem; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid #f0f0f0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; color: var(--primary-dark); transition: all 0.3s; }
.carousel-btn:hover { background: var(--primary-dark); color: #fff; }
.carousel-btn.prev { left: -12px; }
.carousel-btn.next { right: -12px; }

/* advantages */
.advantage-item { background: #fff; border-radius: 15px; padding: 35px; box-shadow: 0 10px 20px var(--shadow-color-light); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--border-color); height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.advantage-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px var(--shadow-color-medium); }
.advantage-item i { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; }
.advantage-title { font-size: 1.45rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.advantage-item p { font-size: 1rem; color: var(--light-text-color); line-height: 1.7; margin: 0; }

/* form + faq */
.section-form .split { grid-template-columns: 5fr 7fr; align-items: stretch; gap: 30px; }
.contact-form-card, .faq-card { background: #fff; padding: 46px; border-radius: 18px; box-shadow: 0 15px 30px var(--shadow-color-medium); height: 100%; border: 1px solid var(--border-color); }
.contact-card-title, .faq-card-title { color: var(--primary-dark); font-weight: 700; font-size: 2.1rem; line-height: 1.4; margin-bottom: 35px; position: relative; padding-bottom: 12px; font-family: 'Quicksand', sans-serif; }
.contact-card-title::after, .faq-card-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--accent-color); border-radius: 2px; }
.faq details { border: 1px solid var(--border-color); margin-bottom: 15px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px var(--shadow-color-light); background: #fff; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 24px; font-family: 'Quicksand', sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--primary-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; background: var(--secondary-light); transition: background 0.3s, color 0.3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; line-height: 1; color: var(--accent-color); flex-shrink: 0; }
.faq details[open] summary::after { content: '\2212'; }
.faq summary:hover { background: var(--accent-soft); color: var(--accent-color); }
.faq .faq-body { padding: 18px 24px; color: var(--light-text-color); border-top: 1px solid var(--border-color); }
.faq .faq-body p { margin: 0; }

.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry-form .full { grid-column: 1 / -1; }
.form-control { width: 100%; border-radius: 10px; border: 1px solid #dde3ee; padding: 14px 18px; font-size: 1rem; font-family: inherit; color: var(--text-color); background: #fff; box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); transition: border-color 0.3s, box-shadow 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 0.2rem rgba(31, 120, 209, 0.2); }
textarea.form-control { min-height: 120px; resize: vertical; }
.submitBtn { width: 100%; padding: 14px; border: 0; border-radius: 10px; background: var(--primary-dark); color: #fff; font-family: 'Quicksand', sans-serif; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: background 0.3s, transform 0.2s; }
.submitBtn:hover { background: var(--accent-color); transform: translateY(-2px); }
.submitBtn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { margin-top: 12px; font-weight: 600; min-height: 1.4em; }
.form-msg.ok { color: #13863f; }
.form-msg.err { color: #c62828; }

/* ---------- Product list page ---------- */
.products-page { padding: 30px 0 70px; }
.product-search { display: flex; justify-content: flex-end; margin: 20px 0 0; }
.product-search input { max-width: 340px; }
.custom-table-td { margin: 30px 0 15px; font-weight: 700; font-size: 20px; font-family: 'Quicksand', sans-serif; color: var(--primary-dark); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; min-width: 680px; background: #fff; }
.table th, .table td { border: 1px solid #dee2e6; padding: 0.75rem; text-align: left; vertical-align: top; }
.table thead th { font-weight: 700; background: #f4f6fb; color: var(--primary-dark); font-family: 'Quicksand', sans-serif; }
.table tbody tr:hover { background: #f8faff; }
.table td:first-child, .table th:first-child { width: 70px; }
.empty-note { text-align: center; padding: 60px 20px; color: var(--light-text-color); font-size: 1.1rem; }

/* ---------- Gallery ---------- */
.gallery-page { padding: 50px 0 80px; }
.gallery-page h2 { text-align: center; color: var(--primary-dark); font-size: 2.2rem; font-weight: 700; margin: 0 0 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; cursor: zoom-in; background: var(--accent-soft); aspect-ratio: 1; border: 0; padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; background: rgba(11, 20, 71, 0.45); opacity: 0; transition: opacity 0.35s; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(5, 8, 25, 0.92); display: flex; align-items: center; justify-content: center; z-index: 3000; padding: 60px 16px; }
.lightbox img { max-height: 82vh; max-width: 92vw; width: auto; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox .lb-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #fff; font-family: 'Quicksand', sans-serif; font-weight: 600; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, 0.12); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- About ---------- */
section#feature-cards { padding: 70px 0; }
.about-heading { text-align: center; color: var(--primary-dark); font-size: 2.3rem; font-weight: 700; margin-bottom: 14px; }
.about-lead { text-align: center; max-width: 860px; margin: 0 auto 50px; font-size: 1.12rem; color: var(--light-text-color); }
.md-card { margin-top: 60px; background: linear-gradient(120deg, #0b1447, #13206b 60%, #1f78d1); color: #fff; border-radius: 22px; padding: 50px; display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; box-shadow: 0 20px 40px var(--shadow-color-medium); }
.md-avatar { width: 200px; height: 200px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--primary-dark); margin: 0 auto; box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15); }
.md-card .md-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.85rem; color: #9fd0ff; margin-bottom: 8px; font-weight: 700; }
.md-card h2 { color: #fff; font-size: 2.1rem; margin-bottom: 18px; }
.md-card blockquote { margin: 0 0 18px; font-size: 1.12rem; line-height: 1.8; color: #e6edff; border-left: 4px solid #9fd0ff; padding-left: 20px; }
.md-card .md-sign { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.15rem; }
.md-card .md-sign span { display: block; font-weight: 500; font-size: 0.95rem; color: #bcd3ff; }

/* ---------- Contact ---------- */
section#contact-us-inner { padding: 60px 0; }
.contact-layout { display: grid; grid-template-columns: 7fr 5fr; gap: 30px; align-items: start; }
.Contact-with-us h2 { color: var(--primary-dark); font-size: 2.2rem; font-weight: 700; margin-bottom: 24px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-email, .contact-no, .contact-address { color: #878787; background: #f5f7fb; padding: 26px 20px; box-shadow: rgba(0, 0, 0, 0.18) 0 3px 8px; transition: transform 0.4s, box-shadow 0.4s; text-align: center; border-radius: 6px; }
.contact-email:hover, .contact-no:hover, .contact-address:hover { transform: translateY(-5px); box-shadow: rgba(19, 32, 107, 0.22) 0 10px 22px; }
.contact-address { grid-column: 1 / -1; }
.contact-cards i { font-size: 50px; color: var(--primary-dark); margin-bottom: 10px; }
.contact-cards .c-label { margin: 0 0 6px; font-size: 1rem; }
.contact-cards h3 { font-size: 20px; color: var(--accent-color); margin: 4px 0; word-break: break-word; }
.contact-cards h3 a { color: inherit; }
.contact-cards h3 a:hover { color: var(--primary-dark); }
.Contact-form { background: var(--primary-dark); padding: 30px; border-radius: 6px; }
.Contact-form h3 { color: #fff; margin: 0 0 18px; font-size: 1.6rem; }
.Contact-form .submitBtn { background: #fff; color: var(--primary-dark); }
.Contact-form .submitBtn:hover { background: var(--accent-color); color: #fff; }
.Contact-form .form-msg.ok { color: #8ef0b0; }
.Contact-form .form-msg.err { color: #ffb4b4; }
.contact-gps { margin-top: 40px; }
.contact-gps iframe { width: 100%; height: 420px; border: 0; border-radius: 6px; display: block; }

/* ---------- Third party manufacturing ---------- */
.step-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 32px 26px; text-align: center; position: relative; box-shadow: 0 10px 20px var(--shadow-color-light); transition: transform 0.3s; height: 100%; }
.step-card:hover { transform: translateY(-8px); }
.step-num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--primary-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Quicksand', sans-serif; font-size: 1.4rem; font-weight: 700; box-shadow: 0 0 0 8px var(--accent-soft); }
.step-card h3 { color: var(--primary-dark); font-size: 1.3rem; }
.step-card p { color: var(--light-text-color); margin: 0; }
.mfg-grid .featured-box i { color: var(--accent-color); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; }
.pill-list li { background: var(--accent-soft); color: var(--primary-dark); border-radius: 50px; padding: 6px 16px; font-weight: 600; font-size: 0.95rem; }

/* ---------- Footer ---------- */
section#footer { background-color: #070d33; background-image: radial-gradient(circle at 15% 20%, rgba(31, 120, 209, 0.25), transparent 40%), radial-gradient(circle at 85% 80%, rgba(28, 58, 169, 0.35), transparent 45%), linear-gradient(135deg, #070d33, #13206b); padding: 80px 0 30px; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 30px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 8px; width: 170px; }
.footer-appear p { margin: 25px 0 0; color: #dbe3ff; text-align: left; }
.useful-links { color: #fff; margin: 6px 0 20px; border-bottom: 2px solid #fff; font-size: 28px; font-family: 'Quicksand', sans-serif; font-weight: 600; padding-bottom: 6px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0 0 10px; }
.footer-links a { color: #fff; font-size: 16px; transition: color 0.3s, padding 0.3s; }
.footer-links a:hover { color: #9fd0ff; padding-left: 6px; }
.footer-links a i { font-size: 0.75rem; margin-right: 8px; color: #9fd0ff; }
.footer-disclaimer { line-height: 1.7; }
.footer-phone { color: #fff; font-size: 16px; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-phone i { margin-top: 5px; color: #9fd0ff; width: 16px; flex-shrink: 0; }
.footer-phone a { color: #fff; }
.footer-phone a:hover { color: #9fd0ff; }
.inner-social-media { display: flex; gap: 10px; margin: 18px 0 0; }
.inner-social-media a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background 0.3s, transform 0.3s; }
.inner-social-media a:hover { background: #fff; color: var(--primary-dark); transform: translateY(-3px); }
.copy-right { background: #fff; text-align: center; margin: 40px 0 0; padding: 13px; border-radius: 30px; color: #222; }
.copy-right p { margin: 0; }

/* ---------- Floating & mobile ---------- */
.wa-fab { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; z-index: 1500; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); transition: transform 0.3s; }
.wa-fab:hover { transform: scale(1.08); color: #fff; }
.wa-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); z-index: -1; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }
#sequence { display: none; }
.modal { position: fixed; inset: 0; background: rgba(5, 8, 25, 0.6); z-index: 2500; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-box { background: #fff; border-radius: 14px; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--border-color); }
.modal-head p { margin: 0; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--primary-dark); }
.modal-head button { background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: #666; }
.modal-body { padding: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
  .nav-toggle { display: block; }
  .main-menu { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--header-bg); padding: 8px 5% 16px; gap: 0; display: none; box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); }
  .main-menu.open { display: flex; }
  .main-menu a { border-bottom: 1px solid rgba(255, 255, 255, 0.08); border-radius: 0; padding: 13px 6px; }
}
@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.seven-five, .split.half, .section-form .split, .contact-layout { grid-template-columns: 1fr; }
  .product-track .item { flex-basis: 33.333%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-appear { grid-column: 1 / -1; }
  .md-card { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .md-card blockquote { border-left: 0; padding-left: 0; }
  .section-block, .section-welcome { padding: 70px 0; }
  .cta-band { background-attachment: scroll; }
}
@media (max-width: 767px) {
  body { padding-bottom: 42px; }
  #navbar { width: 100%; padding: 0 16px; }
  .logo-words b { font-size: 1.1rem; }
  .grid-4, .grid-3, .grid-2, .contact-cards { grid-template-columns: 1fr; }
  .section-heading { font-size: 1.9rem; margin-bottom: 40px; }
  .third-party-main-title, .choose-main-title { font-size: 28px; }
  .contact-card-title, .faq-card-title { font-size: 1.7rem; }
  .contact-form-card, .faq-card { padding: 26px 20px; }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
  .product-track .item { flex-basis: 50%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-title-header { height: 140px; }
  .inner-breadcrumb h1 { font-size: 26px; }
  .about-txt p, .third-party-txt p, .intro-paragraph { text-align: left; }
  #sequence { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1400; background: var(--header-bg); }
  #sequence a, #sequence button { flex: 1; text-align: center; padding: 10px 0; font-size: 15px; color: #fff; font-weight: 600; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.3); background: none; font-family: 'Quicksand', sans-serif; cursor: pointer; }
  #sequence > :last-child { border-right: 0; }
  .wa-fab { bottom: 58px; right: 16px; width: 54px; height: 54px; font-size: 30px; }
}
