/*
Theme Name: Shubham Healthcare
Author: Shubham Healthcare
Description: Custom responsive corporate pharmaceutical manufacturing theme.
Version: 1.0
*/

:root {
	--deep: #064E3B;
	--green: #0F7A4D;
	--accent: #2E9B68;
	--soft: #F5F8F6;
	--text: #14231D;
	--muted: #66736D;
	--white: #FFFFFF;
	--border: #DDE8E2;
	--container: 1240px;
	--shadow: 0 20px 50px rgba(6, 78, 59, 0.10);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", Arial, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.sh-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.sh-header-inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.sh-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.sh-brand img {
	width: 178px;
	height: auto;
	max-height: 58px;
	object-fit: contain;
}

.sh-brand .custom-logo {
	width: 178px;
	height: auto;
	max-height: 58px;
	object-fit: contain;
}

.sh-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}

.sh-nav ul {
	display: flex;
	align-items: center;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sh-nav li {
	margin: 0;
	padding: 0;
}

.sh-nav a {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	transition: color .25s ease;
}

.sh-nav a:hover {
	color: var(--green);
}

.sh-enquiry,
.sh-enquiry-mobile {
	background: var(--deep);
	color: var(--white) !important;
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 800 !important;
	transition: transform .25s ease, background .25s ease;
}

.sh-enquiry:hover,
.sh-enquiry-mobile:hover {
	background: var(--green);
	transform: translateY(-2px);
}

.sh-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: 12px;
	padding: 10px;
	cursor: pointer;
}

.sh-menu-toggle span:not(.sr-only) {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--deep);
	margin: 4px auto;
}

.sh-mobile-nav {
	display: none;
	background: var(--white);
	border-top: 1px solid var(--border);
	padding: 18px 0 24px;
}

.sh-mobile-nav.is-open {
	display: block;
}

.sh-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sh-mobile-nav li {
	border-bottom: 1px solid var(--border);
}

.sh-mobile-nav a {
	display: block;
	padding: 14px 0;
	font-weight: 700;
}

.sh-mobile-nav .sh-enquiry-mobile {
	text-align: center;
	margin-top: 16px;
	padding: 13px 20px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* =========================
   HERO
========================= */

.sh-hero {
	position: relative;
	min-height: min(720px, calc(100vh - 76px));
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--deep);
}

.sh-hero-media,
.sh-hero-media img,
.sh-hero-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.sh-hero-media img {
	object-fit: cover;
	object-position: center;
}

.sh-hero-placeholder {
	background:
		linear-gradient(
			135deg,
			#064E3B 0%,
			#0F7A4D 55%,
			#2E9B68 100%
		);
}

.sh-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(3, 35, 26, .82) 0%,
			rgba(3, 35, 26, .62) 42%,
			rgba(3, 35, 26, .18) 100%
		);
}

.sh-hero-content {
	position: relative;
	z-index: 2;
	padding-top: 90px;
	padding-bottom: 90px;
	color: var(--white);
	max-width: 1240px;
}

.sh-eyebrow,
.sh-kicker {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sh-eyebrow {
	color: #B8E7D0;
	margin-bottom: 16px;
}

.sh-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1.02;
	letter-spacing: -.045em;
	font-weight: 800;
}

.sh-hero p {
	max-width: 650px;
	margin: 25px 0 0;
	font-size: clamp(16px, 2vw, 20px);
	color: rgba(255, 255, 255, .88);
}

.sh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 21px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	transition:
		transform .25s ease,
		background .25s ease,
		border-color .25s ease;
}

.sh-btn:hover {
	transform: translateY(-2px);
}

.sh-btn-primary {
	background: var(--white);
	color: var(--deep);
}

.sh-btn-primary:hover {
	background: #E8F5EE;
}

.sh-btn-secondary {
	border: 1px solid rgba(255,255,255,.5);
	color: var(--white);
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(8px);
}

.sh-btn-secondary:hover {
	background: rgba(255,255,255,.16);
}

.sh-btn-dark {
	background: var(--deep);
	color: var(--white);
}

.sh-btn-dark:hover {
	background: var(--green);
}


/* =========================
   GENERAL SECTIONS
========================= */

.sh-section {
	padding: 100px 0;
}

.sh-section-soft {
	background: var(--soft);
}

.sh-kicker {
	color: var(--green);
	margin-bottom: 12px;
}

.sh-section h2,
.sh-intro h2,
.sh-quality h2,
.sh-cta h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -.035em;
	font-weight: 800;
}

.sh-section-head {
	max-width: 760px;
	margin-bottom: 45px;
}

.sh-section-head p {
	color: var(--muted);
	font-size: 17px;
	margin: 18px 0 0;
}


/* =========================
   ABOUT
========================= */

.sh-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
	gap: 80px;
	align-items: center;
}

.sh-intro p {
	color: var(--muted);
	font-size: 16px;
}

.sh-checks {
	list-style: none;
	margin: 26px 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.sh-checks li {
	position: relative;
	padding-left: 28px;
	font-weight: 700;
}

.sh-checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--green);
	font-weight: 900;
}

.sh-image-frame {
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--shadow);
	background: #E6F2EC;
}

.sh-image-frame img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.sh-image-placeholder {
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	color: var(--green);
	font-weight: 800;
}


/* =========================
   CATEGORY / CARDS
========================= */

.sh-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sh-category {
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.sh-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(6, 78, 59, .10);
	border-color: #B9DCCB;
}

.sh-category h3 {
	margin: 0;
	font-size: 21px;
	line-height: 1.2;
}

.sh-category p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.sh-category-link {
	display: block;
}

.sh-link {
	display: inline-block;
	margin-top: 22px;
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
}


/* =========================
   QUALITY
========================= */

.sh-quality-section {
	background: var(--deep);
	color: var(--white);
}

.sh-quality {
	padding: 70px;
	border-radius: 30px;
	background:
		linear-gradient(
			135deg,
			#064E3B,
			#0B6246
		);
	box-shadow: 0 25px 70px rgba(6, 78, 59, .20);
}

.sh-quality .sh-kicker {
	color: #A8E7C7;
}

.sh-quality p {
	max-width: 760px;
	color: rgba(255,255,255,.78);
	font-size: 16px;
}

.sh-quality-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 38px;
}

.sh-quality-item {
	padding: 24px;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 18px;
	background: rgba(255,255,255,.06);
}

.sh-quality-item strong {
	display: block;
	font-size: 16px;
	margin-bottom: 8px;
}

.sh-quality-item span {
	display: block;
	color: rgba(255,255,255,.70);
	font-size: 14px;
}


/* =========================
   CTA
========================= */

.sh-cta {
	padding: 70px;
	border-radius: 30px;
	background: var(--deep);
	color: var(--white);
	text-align: center;
}

.sh-cta .sh-kicker {
	color: #A8E7C7;
}

.sh-cta h2 {
	max-width: 800px;
	margin-inline: auto;
}

.sh-cta p {
	max-width: 650px;
	margin: 18px auto 0;
	color: rgba(255,255,255,.76);
}

.sh-cta .sh-actions {
	justify-content: center;
}


/* =========================
   FOOTER
========================= */

.sh-footer {
	background: #032D22;
	color: var(--white);
	padding: 60px 0 25px;
}

.sh-footer-inner {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 50px;
}

.sh-footer h3 {
	margin: 0 0 15px;
	font-size: 17px;
}

.sh-footer p,
.sh-footer a {
	color: rgba(255,255,255,.70);
	font-size: 14px;
}

.sh-footer a:hover {
	color: var(--white);
}

.sh-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.sh-footer-bottom {
	margin-top: 45px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.55);
	font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

	.sh-nav {
		display: none;
	}

	.sh-menu-toggle {
		display: block;
	}

	.sh-intro {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.sh-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sh-quality-grid {
		grid-template-columns: 1fr;
	}

	.sh-footer-inner {
		grid-template-columns: 1fr 1fr;
	}

}


@media (max-width: 700px) {

	.container {
		width: min(var(--container), calc(100% - 28px));
	}

	.sh-header-inner {
		min-height: 68px;
	}

	.sh-brand img,
	.sh-brand .custom-logo {
		width: 145px;
		max-height: 50px;
	}

	.sh-hero {
		min-height: 650px;
	}

	.sh-hero-media img {
		object-position: 58% center;
	}

	.sh-hero-overlay {
		background:
			linear-gradient(
				180deg,
				rgba(3,35,26,.40),
				rgba(3,35,26,.88)
			);
	}

	.sh-hero-content {
		padding-top: 110px;
		padding-bottom: 55px;
		align-self: flex-end;
	}

	.sh-hero h1 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.sh-hero p {
		font-size: 15px;
	}

	.sh-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.sh-btn {
		width: 100%;
	}

	.sh-section {
		padding: 65px 0;
	}

	.sh-section h2,
	.sh-intro h2,
	.sh-quality h2,
	.sh-cta h2 {
		font-size: 34px;
	}

	.sh-section-head {
		margin-bottom: 30px;
	}

	.sh-category-grid {
		grid-template-columns: 1fr;
	}

	.sh-category {
		padding: 24px;
	}

	.sh-quality,
	.sh-cta {
		padding: 38px 24px;
		border-radius: 22px;
	}

	.sh-footer {
		padding-top: 45px;
	}

	.sh-footer-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sh-footer-bottom {
		margin-top: 30px;
	}

}


@media (min-width: 701px) and (max-width: 1100px) {

	.sh-hero h1 {
		font-size: 58px;
	}

	.sh-intro {
		gap: 45px;
	}

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

}
/* =========================================================
   SHUBHAM HEALTHCARE - HEADER & LOGO FIX
   ========================================================= */

.sh-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
}

.sh-header-inner {
    min-height: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sh-brand,
.sh-brand.custom-logo-link {
    display: flex;
    align-items: center;
    width: auto;
    height: 56px;
    max-width: 220px;
}

.sh-brand img,
.sh-brand .custom-logo,
.sh-brand.custom-logo-link img {
    display: block;
    width: auto !important;
    max-width: 180px !important;
    height: auto !important;
    max-height: 52px !important;
    object-fit: contain;
}

/* Desktop navigation */
.sh-nav {
    display: flex;
    align-items: center;
}

/* Mobile menu button */
.sh-menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
}

/* Mobile */
@media (max-width: 767px) {

    .sh-header-inner {
        min-height: 68px;
        height: 68px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .sh-brand,
    .sh-brand.custom-logo-link {
        height: 48px;
        max-width: 175px;
    }

    .sh-brand img,
    .sh-brand .custom-logo,
    .sh-brand.custom-logo-link img {
        max-width: 165px !important;
        max-height: 44px !important;
    }

    .sh-menu-toggle {
        width: 44px;
        height: 44px;
    }
}
/* =========================================================
   SHUBHAM HEALTHCARE - FIXED HEADER
   Prevent logo from increasing header height
   ========================================================= */

.sh-header {
    position: relative !important;
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    background: #ffffff !important;
    z-index: 1000;
}

.sh-header-inner {
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    overflow: hidden !important;
}

/* Logo wrapper */
.sh-brand,
.sh-brand.custom-logo-link {
    display: flex !important;
    align-items: center !important;

    width: auto !important;
    height: 56px !important;
    max-height: 56px !important;

    overflow: hidden !important;
}

/* Actual logo */
.sh-brand img,
.sh-brand img.custom-logo,
.sh-brand .custom-logo,
.sh-brand.custom-logo-link img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 180px !important;
    max-height: 52px !important;

    object-fit: contain !important;
}

/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 767px) {

    .sh-header {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
    }

    .sh-header-inner {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;

        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .sh-brand,
    .sh-brand.custom-logo-link {
        height: 48px !important;
        max-height: 48px !important;
        max-width: 170px !important;
    }

    .sh-brand img,
    .sh-brand img.custom-logo,
    .sh-brand .custom-logo,
    .sh-brand.custom-logo-link img {
        max-width: 165px !important;
        max-height: 44px !important;
    }
}
/* =========================================================
   SHUBHAM HEALTHCARE
   DEFINITIVE HEADER / LOGO SIZE FIX
   ========================================================= */

/* Header itself */
header.sh-header {
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* Header inner container */
header.sh-header .sh-header-inner {
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    overflow: hidden !important;
}

/* Logo wrapper */
header.sh-header .sh-brand {
    display: flex !important;
    align-items: center !important;

    width: auto !important;
    height: 56px !important;
    max-height: 56px !important;

    padding: 0 !important;
    margin: 0 !important;

    overflow: hidden !important;
}

/* WordPress logo link */
header.sh-header .sh-brand .custom-logo-link {
    display: flex !important;
    align-items: center !important;

    width: auto !important;
    height: 56px !important;
    max-height: 56px !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* Actual logo image */
header.sh-header .sh-brand .custom-logo {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 180px !important;
    max-height: 52px !important;

    padding: 0 !important;
    margin: 0 !important;

    object-fit: contain !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    header.sh-header {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
    }

    header.sh-header .sh-header-inner {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    header.sh-header .sh-brand {
        height: 48px !important;
        max-height: 48px !important;
    }

    header.sh-header .sh-brand .custom-logo-link {
        height: 48px !important;
        max-height: 48px !important;
    }

    header.sh-header .sh-brand .custom-logo {
        max-width: 165px !important;
        max-height: 44px !important;
    }
}
/* =========================================================
   SHUBHAM HEALTHCARE
   FINAL HEADER CONTROL
   ========================================================= */

.sh-header {
    width: 100%;
    height: 76px;
    min-height: 76px;
    max-height: 76px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    position: relative;
    z-index: 9999;
    overflow: visible;
}

.sh-header-inner {
    width: 100%;
    max-width: 1240px;
    height: 76px;
    min-height: 76px;
    max-height: 76px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

/* LOGO LINK */
.sh-brand {
    width: 180px;
    height: 55px;
    min-width: 180px;
    max-width: 180px;

    display: flex;
    align-items: center;

    padding: 0;
    margin: 0;

    text-decoration: none;
    overflow: hidden;
}

/* LOGO IMAGE */
.sh-brand img {
    display: block !important;

    width: 180px !important;
    height: 55px !important;

    min-width: 180px !important;
    max-width: 180px !important;

    min-height: 55px !important;
    max-height: 55px !important;

    object-fit: contain !important;
    object-position: left center !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* DESKTOP NAV */
.sh-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.sh-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sh-nav li {
    margin: 0;
    padding: 0;
}

.sh-nav a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #064e3b;
}

/* MENU BUTTON */
.sh-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 8px;
    margin: 0;

    border: 1px solid #d6e8e1;
    border-radius: 12px;
    background: #ffffff;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.sh-menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #064e3b;
}

/* MOBILE */
@media (max-width: 767px) {

    .sh-header {
        height: 68px;
        min-height: 68px;
        max-height: 68px;
    }

    .sh-header-inner {
        height: 68px;
        min-height: 68px;
        max-height: 68px;

        padding: 0 16px;
    }

    .sh-brand {
        width: 165px;
        height: 48px;

        min-width: 165px;
        max-width: 165px;
    }

    .sh-brand img {
        width: 165px !important;
        height: 48px !important;

        min-width: 165px !important;
        max-width: 165px !important;

        min-height: 48px !important;
        max-height: 48px !important;
    }

    .sh-nav {
        display: none;
    }

    .sh-menu-toggle {
        display: flex;
    }
}

/* SCREEN-READER TEXT */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* =========================================================
   SHUBHAM HEALTHCARE — PREMIUM ABOUT PAGE
   ========================================================= */

.sh-about-page{
    background:#fff;
    overflow:hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.sh-about-hero{
    position:relative;
    min-height:680px;
    display:flex;
    align-items:flex-end;
    background:#073d2f;
    overflow:hidden;
}

.sh-about-hero-media{
    position:absolute;
    inset:0;
}

.sh-about-hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.sh-about-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(3,32,24,.94) 0%,
            rgba(3,32,24,.72) 38%,
            rgba(3,32,24,.25) 75%,
            rgba(3,32,24,.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3,32,24,.75) 0%,
            transparent 60%
        );
}

.sh-about-hero-content{
    position:relative;
    z-index:2;
    width:100%;
    padding-top:150px;
    padding-bottom:90px;
}

.sh-about-label{
    font-size:12px;
    line-height:1;
    font-weight:800;
    letter-spacing:2.2px;
    color:#A8E7C7;
}

.sh-dark-label{
    color:#0F7A4D;
}

.sh-about-hero h1{
    max-width:900px;
    margin:22px 0 24px;
    color:#fff;
    font-size:clamp(48px,7vw,88px);
    line-height:.98;
    letter-spacing:-4px;
    font-weight:800;
}

.sh-about-hero h1 span{
    display:block;
    color:#A8E7C7;
}

.sh-about-hero p{
    max-width:690px;
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:19px;
    line-height:1.7;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.sh-about-introduction{
    padding:125px 0;
    background:#fff;
}

.sh-about-intro-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:100px;
    align-items:start;
}

.sh-about-intro-title h2{
    max-width:560px;
    margin:25px 0 0;
    color:#10231c;
    font-size:clamp(40px,4.5vw,66px);
    line-height:1.04;
    letter-spacing:-3px;
    font-weight:800;
}

.sh-about-intro-title h2 em{
    color:#0F7A4D;
    font-style:normal;
}

.sh-about-intro-copy{
    max-width:680px;
    padding-top:8px;
}

.sh-about-intro-copy p{
    margin:0 0 25px;
    color:#596861;
    font-size:16px;
    line-height:1.9;
}

.sh-about-intro-copy .sh-lead{
    margin-bottom:32px;
    color:#263a32;
    font-size:21px;
    line-height:1.65;
    font-weight:500;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.sh-about-statement{
    padding:120px 0;
    background:#064E3B;
    color:#fff;
}

.sh-about-statement-inner{
    max-width:1000px;
}

.sh-about-statement h2{
    max-width:900px;
    margin:24px 0 30px;
    font-size:clamp(40px,5.5vw,72px);
    line-height:1.02;
    letter-spacing:-3px;
    font-weight:800;
}

.sh-about-statement p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:17px;
    line-height:1.8;
}


/* =========================================================
   MANUFACTURING PROCESS
   ========================================================= */

.sh-about-process{
    padding:125px 0;
    background:#F5F8F6;
}

.sh-about-section-heading{
    max-width:800px;
}

.sh-about-section-heading h2{
    max-width:750px;
    margin:22px 0 20px;
    color:#10231c;
    font-size:clamp(40px,5vw,66px);
    line-height:1.02;
    letter-spacing:-3px;
    font-weight:800;
}

.sh-about-section-heading p{
    max-width:680px;
    margin:0;
    color:#66736D;
    font-size:17px;
    line-height:1.75;
}

.sh-process-list{
    margin-top:70px;
    border-top:1px solid #CBDAD2;
}

.sh-process-row{
    display:grid;
    grid-template-columns:90px 270px 1fr;
    gap:35px;
    align-items:start;
    padding:34px 0;
    border-bottom:1px solid #CBDAD2;
}

.sh-process-number{
    color:#0F7A4D;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.sh-process-title{
    color:#10231c;
    font-size:23px;
    line-height:1.25;
    font-weight:800;
}

.sh-process-text{
    max-width:650px;
    color:#66736D;
    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   FACILITY
   ========================================================= */

.sh-about-facility{
    padding:130px 0;
    background:#fff;
}

.sh-about-facility-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:90px;
    align-items:center;
}

.sh-about-facility-image{
    position:relative;
    min-height:620px;
    overflow:hidden;
    border-radius:4px;
    background:#e8f0eb;
}

.sh-about-facility-image::after{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(255,255,255,.45);
    pointer-events:none;
}

.sh-about-facility-image img{
    width:100%;
    height:100%;
    min-height:620px;
    object-fit:cover;
}

.sh-about-facility-content{
    max-width:620px;
}

.sh-about-facility-content h2{
    margin:24px 0 28px;
    color:#10231c;
    font-size:clamp(38px,4.2vw,60px);
    line-height:1.04;
    letter-spacing:-2.5px;
    font-weight:800;
}

.sh-about-facility-content p{
    margin:0 0 22px;
    color:#66736D;
    font-size:16px;
    line-height:1.85;
}


/* =========================================================
   QUALITY
   ========================================================= */

.sh-about-quality{
    padding:125px 0;
    background:#10231c;
    color:#fff;
}

.sh-about-quality-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:110px;
    align-items:start;
}

.sh-about-quality h2{
    max-width:570px;
    margin:25px 0 0;
    color:#fff;
    font-size:clamp(42px,5vw,68px);
    line-height:1.02;
    letter-spacing:-3px;
    font-weight:800;
}

.sh-about-quality-grid > div:last-child{
    padding-top:8px;
}

.sh-about-quality p{
    margin:0 0 24px;
    color:rgba(255,255,255,.62);
    font-size:16px;
    line-height:1.85;
}

.sh-about-quality .sh-quality-lead{
    color:rgba(255,255,255,.84);
    font-size:20px;
    line-height:1.7;
}


/* =========================================================
   PORTFOLIO
   ========================================================= */

.sh-about-portfolio{
    padding:125px 0;
    background:#fff;
}

.sh-about-portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:65px;
    border-top:1px solid #DDE8E2;
    border-left:1px solid #DDE8E2;
}

.sh-about-portfolio-grid > div{
    min-height:170px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border-right:1px solid #DDE8E2;
    border-bottom:1px solid #DDE8E2;
    transition:background .25s ease;
}

.sh-about-portfolio-grid > div:hover{
    background:#F5F8F6;
}

.sh-about-portfolio-grid strong{
    color:#10231c;
    font-size:22px;
    font-weight:800;
}

.sh-about-portfolio-grid span{
    color:#718078;
    font-size:14px;
    line-height:1.5;
}


/* =========================================================
   LOCATION
   ========================================================= */

.sh-about-location{
    padding:120px 0;
    background:#F5F8F6;
}

.sh-about-location-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:90px;
    align-items:center;
}

.sh-about-location h2{
    margin:22px 0 20px;
    color:#10231c;
    font-size:clamp(42px,5vw,68px);
    line-height:1;
    letter-spacing:-3px;
    font-weight:800;
}

.sh-about-location p{
    max-width:620px;
    color:#66736D;
    font-size:17px;
    line-height:1.8;
}

.sh-about-address{
    max-width:620px;
    margin-top:32px;
    padding-top:25px;
    border-top:1px solid #CBDAD2;
}

.sh-about-address span{
    display:block;
    margin-bottom:10px;
    color:#0F7A4D;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.8px;
}

.sh-about-address strong{
    display:block;
    color:#263a32;
    font-size:17px;
    line-height:1.7;
}

.sh-about-location-mark{
    min-height:360px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#064E3B;
    color:#fff;
}

.sh-about-location-mark span{
    font-size:35px;
    font-weight:800;
    letter-spacing:2px;
}

.sh-about-location-mark strong{
    color:#A8E7C7;
    font-size:18px;
    letter-spacing:4px;
}

.sh-about-location-mark small{
    margin-top:30px;
    color:rgba(255,255,255,.55);
    font-size:12px;
    letter-spacing:1px;
}


/* =========================================================
   CLOSING CTA
   ========================================================= */

.sh-about-closing{
    padding:130px 0;
    background:#fff;
}

.sh-about-closing-inner{
    max-width:1000px;
}

.sh-about-closing h2{
    max-width:850px;
    margin:25px 0;
    color:#10231c;
    font-size:clamp(42px,5.5vw,75px);
    line-height:1;
    letter-spacing:-3.5px;
    font-weight:800;
}

.sh-about-closing p{
    max-width:680px;
    margin:0 0 35px;
    color:#66736D;
    font-size:17px;
    line-height:1.8;
}

.sh-about-closing .sh-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1000px){

    .sh-about-intro-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .sh-about-facility-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .sh-about-facility-image,
    .sh-about-facility-image img{
        min-height:520px;
    }

    .sh-about-quality-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .sh-about-location-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

    .sh-about-hero{
        min-height:650px;
    }

    .sh-about-hero-content{
        padding-top:120px;
        padding-bottom:65px;
    }

    .sh-about-hero h1{
        margin-top:18px;
        font-size:46px;
        letter-spacing:-2.5px;
    }

    .sh-about-hero p{
        font-size:16px;
        line-height:1.65;
    }


    .sh-about-introduction,
    .sh-about-process,
    .sh-about-facility,
    .sh-about-quality,
    .sh-about-portfolio,
    .sh-about-location,
    .sh-about-closing{
        padding:80px 0;
    }

    .sh-about-intro-title h2{
        font-size:40px;
        letter-spacing:-2px;
    }

    .sh-about-intro-copy .sh-lead{
        font-size:19px;
    }


    .sh-about-statement{
        padding:80px 0;
    }

    .sh-about-statement h2{
        font-size:42px;
        letter-spacing:-2px;
    }

    .sh-about-statement p{
        font-size:16px;
    }


    .sh-about-section-heading h2{
        font-size:40px;
        letter-spacing:-2px;
    }

    .sh-process-list{
        margin-top:45px;
    }

    .sh-process-row{
        grid-template-columns:45px 1fr;
        gap:15px;
        padding:27px 0;
    }

    .sh-process-number{
        grid-row:1 / span 2;
    }

    .sh-process-title{
        font-size:20px;
    }

    .sh-process-text{
        grid-column:2;
        font-size:14px;
    }


    .sh-about-facility-image,
    .sh-about-facility-image img{
        min-height:390px;
    }

    .sh-about-facility-content h2{
        font-size:39px;
        letter-spacing:-2px;
    }


    .sh-about-quality h2{
        font-size:42px;
        letter-spacing:-2px;
    }

    .sh-about-quality .sh-quality-lead{
        font-size:18px;
    }


    .sh-about-portfolio-grid{
        grid-template-columns:1fr;
        margin-top:45px;
    }

    .sh-about-portfolio-grid > div{
        min-height:135px;
    }


    .sh-about-location h2{
        font-size:43px;
        letter-spacing:-2px;
    }

    .sh-about-location-mark{
        min-height:260px;
    }


    .sh-about-closing h2{
        font-size:44px;
        letter-spacing:-2px;
    }

    .sh-about-closing p{
        font-size:16px;
    }

    .sh-about-closing .sh-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .sh-about-closing .sh-btn{
        text-align:center;
    }

}
/* =========================================================
   ABOUT PAGE — FINAL ALIGNMENT & CTA POLISH
========================================================= */

/* Closing CTA */

.sh-about-closing-inner{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.sh-about-closing-inner .sh-about-label{
    text-align:center;
}

.sh-about-closing h2{
    margin-left:auto;
    margin-right:auto;
}

.sh-about-closing p{
    margin-left:auto;
    margin-right:auto;
}

.sh-about-closing .sh-actions{
    justify-content:center;
    align-items:center;
}


/* Better button proportions */

.sh-about-closing .sh-btn{
    min-width:210px;
    text-align:center;
    justify-content:center;
}


/* Process section alignment */

.sh-process-row{
    transition:background .2s ease;
}

.sh-process-row:hover{
    background:rgba(15,122,77,.035);
}


/* Portfolio alignment */

.sh-about-portfolio-grid > div{
    position:relative;
}

.sh-about-portfolio-grid > div::after{
    content:"→";
    position:absolute;
    right:28px;
    top:28px;
    color:#0F7A4D;
    font-size:18px;
    font-weight:700;
    opacity:.55;
}


/* Location alignment */

.sh-about-location-grid{
    align-items:center;
}


/* Facility image polish */

.sh-about-facility-image{
    box-shadow:0 25px 70px rgba(6,78,59,.10);
}


/* Mobile CTA */

@media(max-width:767px){

    .sh-about-closing-inner{
        text-align:center;
    }

    .sh-about-closing .sh-actions{
        width:100%;
        justify-content:center;
        align-items:stretch;
    }

    .sh-about-closing .sh-btn{
        width:100%;
        min-width:0;
    }

    .sh-about-portfolio-grid > div::after{
        right:22px;
        top:22px;
    }

}
/* =========================================================
   ABOUT FACILITY — PREMIUM BACKGROUND
========================================================= */

.sh-about-facility{
    position:relative;
    background:#064E3B;
    overflow:hidden;
}

.sh-about-facility::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-250px;
    top:-220px;
    border-radius:50%;
    background:rgba(168,231,199,.08);
    pointer-events:none;
}

.sh-about-facility::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-280px;
    bottom:-250px;
    border-radius:50%;
    background:rgba(15,122,77,.25);
    pointer-events:none;
}

.sh-about-facility .container{
    position:relative;
    z-index:2;
}

.sh-about-facility-content .sh-about-label{
    color:#A8E7C7;
}

.sh-about-facility-content h2{
    color:#fff;
}

.sh-about-facility-content p{
    color:rgba(255,255,255,.72);
}

.sh-about-facility-image{
    box-shadow:0 30px 80px rgba(0,0,0,.28);
}
/* =========================================================
   SHUBHAM HEALTHCARE — SOLID COLOR ABOUT PAGE
   PREMIUM CORPORATE SYSTEM
========================================================= */

.sh-about-page{
    background:#fff;
    overflow:hidden;
}


/* =========================================================
   01 — HERO
========================================================= */

.sh-about-solid-hero{
    position:relative;
    background:#064E3B;
    color:#fff;
    min-height:620px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.sh-about-solid-hero::before{
    content:"";
    position:absolute;
    width:620px;
    height:620px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:50%;
    right:-280px;
    top:-260px;
}

.sh-about-solid-hero::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border:1px solid rgba(168,231,199,.12);
    border-radius:50%;
    left:-190px;
    bottom:-210px;
}

.sh-about-hero-inner{
    position:relative;
    z-index:2;
    padding-top:100px;
    padding-bottom:100px;
}

.sh-about-hero-label,
.sh-about-label{
    color:#2E9B68;
    font-size:12px;
    font-weight:800;
    letter-spacing:2.2px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.sh-about-solid-hero .sh-about-hero-label{
    color:#A8E7C7;
}

.sh-about-solid-hero h1{
    max-width:900px;
    margin:0;
    color:#fff;
    font-size:clamp(48px,7vw,88px);
    line-height:1.02;
    letter-spacing:-3.5px;
    font-weight:800;
}

.sh-about-solid-hero h1 span{
    display:block;
    color:#A8E7C7;
}

.sh-about-solid-hero p{
    max-width:650px;
    margin:34px 0 0;
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.8;
}


/* =========================================================
   02 — WHO WE ARE
========================================================= */

.sh-about-who{
    background:#FAF8ED;
    padding:130px 0;
}

.sh-about-who-grid{
    display:grid;
    grid-template-columns:120px minmax(0,760px);
    gap:70px;
    align-items:start;
}

.sh-about-section-number{
    color:#0F7A4D;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    padding-top:9px;
}

.sh-about-who-content{
    max-width:800px;
}

.sh-about-who-content h2{
    margin:0 0 34px;
    color:#14231D;
    font-size:clamp(38px,5vw,62px);
    line-height:1.08;
    letter-spacing:-2.2px;
}

.sh-about-who-content p{
    max-width:760px;
    margin:0 0 22px;
    color:#59665F;
    font-size:17px;
    line-height:1.9;
}


/* =========================================================
   03 — MANUFACTURING PHILOSOPHY
========================================================= */

.sh-about-philosophy{
    position:relative;
    background:#10231C;
    color:#fff;
    padding:150px 0;
    overflow:hidden;
}

.sh-about-philosophy::after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-260px;
    bottom:-280px;
    border:1px solid rgba(168,231,199,.12);
    border-radius:50%;
}

.sh-about-philosophy-inner{
    position:relative;
    z-index:2;
}

.sh-about-philosophy .sh-about-label{
    color:#A8E7C7;
}

.sh-about-philosophy h2{
    max-width:1000px;
    margin:0;
    color:#fff;
    font-size:clamp(42px,6vw,76px);
    line-height:1.05;
    letter-spacing:-3px;
}

.sh-about-philosophy p{
    max-width:680px;
    margin:38px 0 0;
    color:rgba(255,255,255,.66);
    font-size:17px;
    line-height:1.85;
}


/* =========================================================
   04 — HOW WE WORK
========================================================= */

.sh-about-process{
    background:#fff;
    padding:130px 0;
}

.sh-about-process-heading{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:80px;
    align-items:end;
    margin-bottom:70px;
}

.sh-about-process-heading h2{
    max-width:700px;
    margin:0;
    color:#14231D;
    font-size:clamp(40px,5vw,62px);
    line-height:1.08;
    letter-spacing:-2.2px;
}

.sh-about-process-heading > p{
    margin:0;
    color:#68746E;
    font-size:16px;
    line-height:1.8;
}

.sh-process-list{
    border-top:1px solid #DDE8E2;
}

.sh-process-row{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:40px;
    padding:38px 20px;
    border-bottom:1px solid #DDE8E2;
    transition:.25s ease;
}

.sh-process-row:hover{
    background:#F5F8F6;
}

.sh-process-row > span{
    color:#0F7A4D;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
}

.sh-process-row h3{
    margin:0 0 8px;
    color:#14231D;
    font-size:24px;
    font-weight:800;
}

.sh-process-row p{
    max-width:700px;
    margin:0;
    color:#6A756F;
    font-size:15px;
    line-height:1.75;
}


/* =========================================================
   05 — FACILITY
========================================================= */

.sh-about-facility-solid{
    background:#E8F1EC;
    padding:140px 0;
}

.sh-about-facility-inner{
    display:grid;
    grid-template-columns:120px minmax(0,850px);
    gap:70px;
}

.sh-about-facility-inner h2{
    max-width:850px;
    margin:0 0 30px;
    color:#14231D;
    font-size:clamp(40px,5vw,64px);
    line-height:1.06;
    letter-spacing:-2.5px;
}

.sh-about-facility-inner > div:last-child > p{
    max-width:760px;
    margin:0 0 20px;
    color:#58665F;
    font-size:17px;
    line-height:1.85;
}

.sh-about-facility-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
    margin-top:55px;
    border-top:1px solid rgba(6,78,59,.16);
}

.sh-about-facility-points > div{
    padding:28px 25px 28px 0;
    border-bottom:1px solid rgba(6,78,59,.16);
}

.sh-about-facility-points strong{
    display:block;
    color:#064E3B;
    font-size:17px;
    margin-bottom:6px;
}

.sh-about-facility-points span{
    color:#65736B;
    font-size:14px;
}


/* =========================================================
   06 — QUALITY
========================================================= */

.sh-about-quality-solid{
    background:#064E3B;
    color:#fff;
    padding:140px 0;
}

.sh-about-quality-inner{
    max-width:1100px;
}

.sh-about-quality-solid .sh-about-label{
    color:#A8E7C7;
}

.sh-about-quality-solid h2{
    max-width:900px;
    margin:0;
    color:#fff;
    font-size:clamp(42px,5.5vw,70px);
    line-height:1.05;
    letter-spacing:-2.8px;
}

.sh-about-quality-solid > .container > p{
    max-width:720px;
    margin:35px 0 70px;
    color:rgba(255,255,255,.68);
    font-size:17px;
    line-height:1.85;
}

.sh-quality-statements{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid rgba(255,255,255,.16);
}

.sh-quality-statements > div{
    padding:35px 35px 10px 0;
    border-right:1px solid rgba(255,255,255,.16);
}

.sh-quality-statements > div:not(:first-child){
    padding-left:35px;
}

.sh-quality-statements > div:last-child{
    border-right:0;
}

.sh-quality-statements span{
    display:block;
    color:#A8E7C7;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:22px;
}

.sh-quality-statements strong{
    display:block;
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.sh-quality-statements p{
    margin:0;
    color:rgba(255,255,255,.60);
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   07 — PRODUCT PORTFOLIO
========================================================= */

.sh-about-portfolio-solid{
    background:#FAF8ED;
    padding:140px 0;
}

.sh-about-portfolio-heading{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:80px;
    align-items:end;
    margin-bottom:70px;
}

.sh-about-portfolio-heading h2{
    max-width:760px;
    margin:0;
    color:#14231D;
    font-size:clamp(40px,5vw,62px);
    line-height:1.08;
    letter-spacing:-2.3px;
}

.sh-about-portfolio-heading p{
    margin:0;
    color:#68746E;
    font-size:16px;
    line-height:1.8;
}

.sh-about-portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #D8E1DA;
    border-left:1px solid #D8E1DA;
}

.sh-about-portfolio-grid > div{
    position:relative;
    min-height:220px;
    padding:32px;
    border-right:1px solid #D8E1DA;
    border-bottom:1px solid #D8E1DA;
    transition:.25s ease;
}

.sh-about-portfolio-grid > div:hover{
    background:#fff;
}

.sh-about-portfolio-grid span{
    color:#0F7A4D;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
}

.sh-about-portfolio-grid h3{
    margin:45px 0 8px;
    color:#14231D;
    font-size:23px;
}

.sh-about-portfolio-grid p{
    margin:0;
    color:#6B766F;
    font-size:14px;
}


/* =========================================================
   08 — LOCATION
========================================================= */

.sh-about-location-solid{
    background:#fff;
    padding:120px 0;
}

.sh-about-location-inner{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:100px;
    align-items:center;
}

.sh-about-location-inner h2{
    max-width:700px;
    margin:0;
    color:#14231D;
    font-size:clamp(42px,5vw,68px);
    line-height:1.05;
    letter-spacing:-2.5px;
}

.sh-about-location-address{
    padding-left:35px;
    border-left:2px solid #0F7A4D;
}

.sh-about-location-address span{
    color:#064E3B;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
}

.sh-about-location-address p{
    margin:18px 0 0;
    color:#65716B;
    font-size:16px;
    line-height:1.9;
}


/* =========================================================
   09 — CTA
========================================================= */

.sh-about-closing-solid{
    background:#10231C;
    color:#fff;
    padding:145px 0;
    text-align:center;
}

.sh-about-closing-inner{
    max-width:950px;
    margin:auto;
}

.sh-about-closing-solid .sh-about-label{
    color:#A8E7C7;
}

.sh-about-closing-solid h2{
    max-width:900px;
    margin:0 auto;
    color:#fff;
    font-size:clamp(42px,6vw,72px);
    line-height:1.05;
    letter-spacing:-3px;
}

.sh-about-closing-solid p{
    max-width:650px;
    margin:30px auto 40px;
    color:rgba(255,255,255,.65);
    font-size:17px;
    line-height:1.8;
}

.sh-about-closing-solid .sh-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

.sh-about-closing-solid .sh-btn{
    min-width:210px;
    min-height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

    .sh-about-solid-hero{
        min-height:560px;
    }

    .sh-about-who-grid,
    .sh-about-facility-inner{
        grid-template-columns:70px 1fr;
        gap:40px;
    }

    .sh-about-process-heading,
    .sh-about-portfolio-heading{
        grid-template-columns:1fr;
        gap:30px;
    }

    .sh-about-location-inner{
        grid-template-columns:1fr 350px;
        gap:50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    .sh-about-solid-hero{
        min-height:600px;
    }

    .sh-about-hero-inner{
        padding-top:90px;
        padding-bottom:90px;
    }

    .sh-about-solid-hero h1{
        font-size:48px;
        letter-spacing:-2.4px;
    }

    .sh-about-solid-hero p{
        font-size:16px;
        margin-top:28px;
    }

    .sh-about-who,
    .sh-about-process,
    .sh-about-facility-solid,
    .sh-about-quality-solid,
    .sh-about-portfolio-solid{
        padding:90px 0;
    }

    .sh-about-who-grid,
    .sh-about-facility-inner{
        display:block;
    }

    .sh-about-section-number{
        margin-bottom:35px;
    }

    .sh-about-who-content h2,
    .sh-about-facility-inner h2,
    .sh-about-process-heading h2,
    .sh-about-portfolio-heading h2{
        font-size:40px;
        letter-spacing:-1.8px;
    }

    .sh-about-who-content p,
    .sh-about-facility-inner > div:last-child > p{
        font-size:16px;
    }

    .sh-about-philosophy{
        padding:100px 0;
    }

    .sh-about-philosophy h2{
        font-size:42px;
        letter-spacing:-2px;
    }

    .sh-process-row{
        grid-template-columns:45px 1fr;
        gap:20px;
        padding:30px 0;
    }

    .sh-process-row h3{
        font-size:21px;
    }

    .sh-about-facility-points{
        grid-template-columns:1fr;
        margin-top:40px;
    }

    .sh-quality-statements{
        grid-template-columns:1fr;
    }

    .sh-quality-statements > div,
    .sh-quality-statements > div:not(:first-child){
        padding:28px 0;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.16);
    }

    .sh-quality-statements > div:last-child{
        border-bottom:0;
    }

    .sh-about-portfolio-grid{
        grid-template-columns:1fr;
    }

    .sh-about-portfolio-grid > div{
        min-height:190px;
    }

    .sh-about-location-solid{
        padding:90px 0;
    }

    .sh-about-location-inner{
        display:block;
    }

    .sh-about-location-inner h2{
        font-size:42px;
    }

    .sh-about-location-address{
        margin-top:45px;
        padding-left:25px;
    }

    .sh-about-closing-solid{
        padding:100px 0;
    }

    .sh-about-closing-solid h2{
        font-size:42px;
        letter-spacing:-2px;
    }

    .sh-about-closing-solid .sh-actions{
        flex-direction:column;
        width:100%;
    }

    .sh-about-closing-solid .sh-btn{
        width:100%;
    }

}