/*
Theme Name: Alpha Care
Theme URI: http://alphacare.com/
Author: Isabel
Author URI: http://alphacare.com/
Description: A simple theme for Alpha Care
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alphacare
*/

@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
}

:root {
	--primary-blue: #5a89a8;
	--primary-fade: #8fb9e0;
	--primary-dark: #444444;
	--primary-light: rgb(159, 175, 179);
	--max-wrap: 1400px;
 }

body {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	color: var(--primary-dark);
	font-size: 18px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;   
}

ul {
	padding: 0px 0px 20px 5px;
 }

 ul li > ul {
	padding: 0;
 }

 ul li > ul li {
	line-height: 2rem;
 }

 li {
	font-size: 1.3rem;
margin-left: 0px;
/* margin-bottom: 10px; */
line-height: 3.2rem;
padding-left: 0px;
list-style-type:none;
 }

 .BambooHR-ATS-board {
	padding: 1rem 2rem;
	width: 80%;
	margin: 1rem auto;
	border: 1px solid #cfd7e0;
	border-radius: 10px;
 }

 .BambooHR-ATS-Department-Header {
	display: none;
 }

 .BambooHR-ATS-board h2 {
	font-size: 1.8rem !important;
	font-family: "Noto Sans", sans-serif;
 }

 .BambooHR-ATS-Jobs-List {
	padding: 0px 20px 20px 0px !important;
 }

 .BambooHR-ATS-Jobs-Item {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans", sans-serif;
 }

 .BambooHR-ATS-Jobs-Item a {
	font-size: 1.3rem !important;
	font-weight: 400 !important;
	text-decoration: none;
	color: #3182ce;
 }

 .BambooHR-ATS-Jobs-Item a:hover {
	color:#67b1f7;
 }

 
 strong {
	font-size: 1.4rem;
	/* display: block; */
	margin-bottom: 0px;
	color: var(--primary-dark);
 }

 li strong {
	font-size: 1.3rem;
 }


.logo {
	/* max-width: 80px;  */
	height: auto;
	vertical-align: middle;
	margin-right: 20px;
}

b {
	font-size: 1.1rem;
}

.site-header, .site-footer {
	text-align: center;
	margin: 0 auto;
}

.site-description  {
	margin: 0;
	font-size: 1.1em;
	color: var(--primary-blue);
	margin-top: 0px;
	text-decoration: none;
	letter-spacing: 0px;
}

.site-header-wrapper {
	background-color: #ececec; 
	padding: 0; 
	display: flex;
	align-items: center;
}

.site-header {
	display: flex; 
	justify-content: space-between; 
	padding: 10px 0px 0; 
	width: 100%; 
	max-width: 1450px;
}

.site-branding {
	display: flex; 
	width: auto;
	align-items: center;
}

.header-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.site-branding .logo {
	height: 80px; 
	width: auto;
}


.main-navigation {
	display: flex;
	justify-content: flex-end;
	align-items: center;
 }
 
 #primary-menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 10px;
 }
 
 /* TOP-LEVEL MENU ITEMS */
 #primary-menu > li {
	position: relative;
	display: inline-block;
 }
 
 /* TOP-LEVEL LINKS */
 #primary-menu > li > a {
	display: block;
	text-decoration: none;
	color: var(--primary-blue);
	padding: 20px 20px;
	line-height: 2rem;
	transition: color 0.3s ease;
 }
 
 #primary-menu > li > a:hover {
	color: var(--primary-dark);
 }

 #primary-menu ul,
#primary-menu li {
  margin: 0;
  padding: 0;
}
 
#primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: white;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
	opacity: 0;
	transform: translateY(10px);
	visibility: visible;
	transition: all 0.3s ease;
	width: max-content;
	min-width: 150px;
	text-align: left;
 }
 
 #primary-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
 }
 
 #primary-menu .sub-menu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
 }
 
 #primary-menu .sub-menu li a {
	display: block;
	padding: 15px 30px;
	text-decoration: none;
	color: var(--primary-blue);
	white-space: nowrap;
	width: 100%;
	transition: background-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box; 
 }
 
 #primary-menu .sub-menu li a:hover {
	background-color: var(--primary-blue);
	color: #fff;
 }

 .slideshow-container {
	position: relative;
	width: 100%;
	height: 650px;
	overflow: hidden;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.active {
	opacity: 1;
}
 
 
#content.site-content {
	width: 80%;
	max-width: var(--max-wrap);
	margin: 0 auto;
	padding: 40px 0 80px 0;
}

.contact-content {
	display: flex;
}

.contact-info {
	background-color: var(--primary-blue);
	color: #ffffff;
	padding: 25px 25px 0px 25px;
	border-radius: 15px;
	flex-grow: 1;
}

.contact-right {
	flex-grow: 2;
	padding: 0px 15px 0px 35px;
}

.scale-img {
	width: 400px;
	height: 300px;
	object-fit: contain;
 }


.image-text-wrapper {
	display: flex;
	align-items: center; 
	gap: 50px;
	padding: 10px 0 60px;
 }
 
 .career-image {
	width: 480px;
	height: auto;
	box-shadow: -10px 10px 0 rgba(62, 132, 172, 0.712);
 }

.entry-title {
	font-size: 1.5em;
}

.entry-content {
	font-size: 1em;
	line-height: 1.6;
}

p {
	font-size: 1.3rem;
	line-height: 2.7rem;
	margin-bottom: 20px;
}

.blk {
	color: var(--primary-blue);
}

.fa-phone {
	margin-right: 10px;
}

.number {
	font-size: 2em;
	font-weight: bold;
	text-align: right;
	margin-bottom: 15px;
}

.home-bg {
	background: #E4F2F5;
}

.slide-heading {
	background: #3CB99A;
	color: #FFF;
	padding: 2em 0;
	font-size: 1.5em;
}

section {
	padding: 50px 0 95px 0;
}

.centered {
	text-align: center;
	display: flex;
	justify-content: center;
}

.slideshow-wrap {
	position: relative;
	box-shadow: inset 0 -20px 20px -10px rgba(0, 0, 0, 1);
	/* border: 10px solid #000; */
	/* padding-bottom: 10px; */
}
 
.slideshow-text {
	font-size: 4.7rem;
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.637);
	z-index: 9;
}

h2 {
	color: var(--primary-dark);
	font-size: 2.5rem;
	padding-bottom: 1rem;
}

h3 {
	font-size: 1.5rem;
	padding: 20px 0 5px 0;
}

.entry-content h3 {
	color: #637da0;
	font-size: 1.8rem;
}

h4 {
	font-size: 1.3rem;
	padding: 0px 0;
}

h2.entry-title {
	color: #4872a1;
}

.white {
	color: #FFF;
}

.contact-title h2 {
	font-size: 1.9rem;
}

.quality-approval div img {
	max-width: 900px;
	height: auto; 
	width: auto;
	display: block;
	padding: 30px 0;
}

.healthcare-services-bg {
	background-color: var(--primary-blue);
}

.healthcare-services {
	max-width: var(--max-wrap);
	margin: 0 auto;
	padding: 10px 0px;
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.service-card {
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card h3 {
	color: #2a4365;
	font-size: 1.4rem;
	margin-bottom: 0px;
	padding: 5px 0;
	font-weight: 700;
	text-align: center;
}

.service-card p {
	font-size: 1.2rem;
	color: #4a5568;
	line-height: 1.6;
	margin-bottom: 20px;
}

.read-more {
	display: flex;
	align-self: flex-end;
	color: #3182ce;
	font-weight: 600;
	text-decoration: none;
}

.read-more:hover {
	color: #00a028;
}

.main-info-bg {
	background-color: #AED7DF;
}

.content {
	/* max-width: 1200px; */
	margin: 0 auto;
	padding: 0;	
	color: #333;
	line-height: 1.5em;
	display: flex;
}



.fcolumn {
	flex-direction: column;
}

.main-info {
	display: flex;
}

.title-info {
	color: #222;
	padding-bottom: 1rem;
}

.left-info {
	font-size: 1.3rem;
	width: 65%;
	line-height: 2.6rem;
	
}

.left-info p,  .left-info h2,.left-info ul li {
	text-shadow: -1px 1px 0 rgb(255, 255, 255);
}

.left-info ul li {
	list-style: none;
}

.tagline {
	font-size: 2rem;
	font-weight: 700;
	color: #2a4365;
	margin-bottom: 30px;
	line-height: 1.3;
}

.tagline span {
	color: #3182ce;
}

.service-description {
	margin-bottom: 30px;
	font-size: 1.2rem;
}

.note {
	font-style: italic;
	margin: 25px 0;
	padding-left: 20px;
	/* border-left: 3px solid #3182ce; */
	color: #555;
}

.left-info .note {
	font-size: 1.3rem;
	font-weight: 600;
}

.phone-cta {
	/* text-align: center; */
	margin-top: 40px;
}

.phone-cta a {
	display: inline-block;
	background-color: #f19203;
	color: white;
	padding: 15px 50px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phone-cta a:hover {
	background-color: #2c5282;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.right-image {
	float: right;       
	margin-left: 40px;  
	max-width: 320px;   
	height: auto;     
	align-self: flex-start;  
	border: 10px solid white;
 }

/* Careers Section */
.careers-section {
	background: #AED7DF;
	/* background-color: #AED7DF; */
}

.container {
	max-width: var(--max-wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	/* text-align: center; */
	color: #2a4365;
	font-size: 2.5rem;
	/* margin-bottom: 60px; */
	text-transform: uppercase;
	font-weight: 800;
	text-shadow: -1px 1px 2px rgb(255, 255, 255);
}

.career-container {
	display: flex;
}

.career-grid {
	display: flex;
	flex-direction: column;
	margin-left:  3rem;
}

.career-card {
	text-align: left;
	/* background: #fff; */
	border-radius: 0px;
	padding: 0px;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
	transition: all 0.3s ease;
	/* border-top: 4px solid #3182ce; */
}


.career-card h4 {
	color: #2c5282;
	font-size: 1.5rem;
	/* margin-bottom: 15px; */
	font-weight: 700;
}

.career-grid p {
	color: #4a5568;
	line-height: 2;
	margin-bottom: 25px;
}

.learn-more-btn {
	font-size: 1.3rem;
	align-self: flex-start;
	background: #08a363;
	color: white;
	padding: .6rem 4rem;
	border-radius: 5px;
	text-decoration: none;
	/* font-weight: 600; */
	transition: all 0.3s ease;
	box-shadow: -3px 3px #fff;
}

.learn-more-btn:hover {
	background: #05bd2c;
	transform: translateY(-2px);
}

/* bay area map  */
.baymap {
	background-image: url('images/sf-bayarea-alphacare-homehealth.jpg'); 
	padding-top: 100px; 
	background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}



.left-info strong {
	display:inline;
}

/* Client Reviews Section */
.client-reviews-bg {
	background-color: var(--primary-blue);
}

.shadow {
	text-shadow: -1px 1px 2px #000;
}

section div {
	max-width: 1300px;
	margin: 0 auto;
}

.review-grid {
	display: flex;
	/* grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); */
	gap: 30px;

 }
 
 .review-card {
	display: flex;
	/* width: ; */
	flex-direction: column;
	background: #fff;
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	/* height: 80%; */
	min-height: 400px;
 }
 
 .review-card:hover {
	transform: translateY(-5px);
 }
 
 .review-card blockquote {
	display: flex;
	flex-direction: column;
	height: 100%;
 }
 
 .review-card blockquote p {
	font-size: 1.2rem;
	line-height: 1.9rem;
	margin: 15px 0 25px 0;
	flex-grow: 1; 
	font-style: oblique;
 }
 
 .review-by {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto; 
 }
 
 .bottom-aligned {
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
 }

 .bottom-aligned strong {
	font-size: 1.1rem;
 }

/* insurances */

.insurance-bg {
	background-color: #FFF;
	padding-top: 20px;
	padding-bottom:20px;
}

.image-grid {
	display: grid;
	gap: 30px;
	padding: 10px;
	justify-content: center;
}

.image-grid img {
	width: auto;
	max-width: 180px;
	height: 70px;
	object-fit: contain;
}

.nems-logo {
	width: 100px;
	max-height: 80px;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	/* gap: 2rem; */
	padding: 0;
	list-style: none;
	/* margin: 1rem 0; */
	margin-bottom: 20px;
 }

 .service-list li strong {
	font-size: 1.4rem;
 }
 
 .service-list li {
	background: #fafbfd;
	border: 1px solid #edeff1; 
	padding: 13px 60px 25px 25px;
	margin: 10px 20px 10px 0;
	border-radius: 8px;
	line-height: 1.6;
 }

.site-footer {
	background-color: #395377;
	width: 100%;
	color: #fff;
	padding: 50px 0 0px 0;
}

footer {
	color: white;
	padding: 40px 0;
	line-height: 1.6;
}

.footer-container {
	max-width: var(--max-wrap);
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.footer-section h3 {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: #3182ce;
}

.footer-section p, .footer-section a, .footer-section strong {
	color: #ffffff;
	margin-bottom: 0px;
	display: block;
	text-decoration: none;
	transition: color 0.3s;
	text-align: left;
}

.footer-section a:hover {
	color: #9ed8aa;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.footer-links a {
	white-space: nowrap;
}

.footer-links li a {
	line-height: 180%;
	padding: 0;
	margin: 0;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #4a5568;
	color: #a0aec0;
	font-size: 0.9rem;
}

.social-row {
	display: flex;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
 }

 .social-row a {
	color: #ffffff; 
	font-size: 3rem;
	transition: color 0.3s ease;
 }

 .page-content a{
color: var(--primary-blue)
 }
 
 .social-row a:hover {
	color: var(--primary-fade); 
 }


 /* FAQ */
 .image-text-section {
	display: flex;
	margin-top: 20px;
	padding-top: 30px;
 }

.image-block img {
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	height: auto;
}

.image-block-illus img {
	max-width: 100%;
	height: auto;
}

.right-block {
	flex: 1;
	min-width: 280px;
	margin-left: 30px;
}

.faq-item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
	padding: 10px 0;
	position: relative;
 }
 
 .faq-item input {
	display: none;
 }
 
 .faq-question {
	font-size: 1.3rem;
	display: block;
	font-weight: 600;
	cursor: pointer;
	padding-right: 30px;
	position: relative;
 }
 
 .faq-question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 24px;
	line-height: 1;
	transition: transform 0.3s ease;
 }
 
 .faq-item input:checked + .faq-question::after {
	content: "−";
 }
 
 .faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
 }
 
 .faq-item input:checked + .faq-question + .faq-answer {
	max-height: 500px; 
	padding: 10px 0;
 }

 .faq-item input:checked + .faq-question + .faq-answer {
	max-height: 500px; 
	margin-top: 10px;
	opacity: 1;
 }

 .faq-toggle-btn {
	background-color: #f7f7f7;
	color: var(--primary-blue);
	padding: 10px 20px;
	font-weight: 600;
	border: 1px solid var(--primary-fade);
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: background 0.3s ease;
	font-size: 1.1rem;
 }
 
 .faq-toggle-btn:hover {
	background-color: #daf2ff;
 }
 

.color-background {
	background-color: var(--primary-blue);
	padding: 30px 40px 20px 40px;
	color: #FFF;
	border-radius: 20px;
}

.color-border {
	background-color: #4882B8;
	/* border: solid 5px var(--primary-blue); */
	padding: 3% 10%;
	color: #FFF;

	border-radius: 20px;
	margin: 2em 0;

	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 2rem;
}

.color-border div {
	display: flex;
	gap: 1rem;
}

.color-background h2, .color-border h2 {
	color: #FFF;
	padding-bottom: 10px;
	border-bottom: 3px dotted #FFF;
	margin-bottom: 15px;
}

.color-background p {
	line-height: 2.4rem;
}

/* +++++++++++++++++++++++++++ */
 /* Career page  */
/* +++++++++++++++++++++++++++ */
.services-bg {
	background-color: #c2cedb;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-wrap);
  margin: 0 auto;
}

.four-cat {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-wrap);
  margin: 0 auto;
  padding-bottom: 3rem;
}

.career-box .fa-solid {
	font-size: 2.5rem;
}

 .career-box {
	background-color: #f8fafc;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
 }

 
 .career-box:nth-child(2n) {
	background-color: #ebf3fa;
 }
 
 .career-box:hover {
	transform: translateY(-5px);
	opacity: .9;
 }
 
 .career-box h3 {
	color: #575757;
	font-size: 1.2rem;
	margin: 1rem 0 .2rem 0;
	padding: 0px 0;
	font-weight: 600;
 }

 .four-cat .career-box h3 {
	color: #FFF;
 }
 
 .career-box a,  .career-box p {
	font-size: 1.05rem;
	color: #3f3f3f;
	line-height: 1.8rem;
	text-decoration: none;
 }

 .four-cat .career-box {
	/* border: 2px solid #7b90aa; */
	background-color: #6497c7;
	color: #fff;
 }

 .four-cat .career-box p {
	color: #fff;
	line-height: 135%;
 }

 .center-btn {
	margin: 0 auto;
 }

 .center-btn a {
	margin: .7rem;
	padding: 1rem 3rem;
 }

 /* +++++++++++++++++++++++++++ */
 /* contact us form */
/* +++++++++++++++++++++++++++ */

.form-wrapper {
	margin: 60px 0;
}

 .contact-form {
	max-width: 500px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
 }
 
 .contact-form input,
 .contact-form textarea {
	width: 90%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
 }
 
 .contact-form button {
	padding: 12px;
	background-color: #5a89a8;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
 }
 
 .contact-form button:hover {
	background-color: #426d89;
 }
 
 .success {
	color: green;
	font-weight: bold;
	text-align: center;
	padding: 20px;
 }
 
 .error {
	color: red;
	font-weight: bold;
 }

 .two-part {
	display: flex;
 }

 .title-part {
	display: flex;
	flex-grow: 1; 
	text-align: center; 
	margin-right: 50px;
	justify-content: center;
	align-items: center;
 }

 .content-part {
	width: 100%; flex-grow: 3;
 }

 /* HIDE toggle button on desktop */

.menu-toggle {
	display: none;
 }

 .submenu-toggle {
	display: none; /* hidden by default */
	background: none;
	border: none;
	font-size: 1.2rem;
	margin-left: auto;
	padding: 10px;
	cursor: pointer;
 }

 /* posts */
 .post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 0;
}

/* Unordered lists */
.post-content ul {
  list-style: none;
}

.post-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  line-height: 1.9;
  /* font-size: 18px; */
}

/* Custom medical-style checkmark */
.post-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #0a7cff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
}

/* Fix numbered list alignment */
.post-content ol {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.post-content ol li {
  display: flex;
  align-items: center; 
  gap: 14px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.5;
}

/* Number circle */
.post-content ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;

  min-width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1e73e8;
  color: white;
  font-weight: 600;
  font-size: 16px;

  border-radius: 50%;

  flex-shrink: 0;
}

/* Reset counter */
.post-content ol {
  counter-reset: step-counter;
}

/* Headings spacing */
.post-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 26px;
  color: #111;
}

.post-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
  color: #222;
}

/* Callout box styling */
.post-content div[style*="border"] {
  background: #f8fbff !important;
  border: 1px solid #d6e8ff !important;
  border-radius: 12px !important;
}

/* Optional hover effect */
.post-content ul li:hover::before,
.post-content ol li:hover::before {
  background-color: #005fcc;
  transition: 0.2s;
}

@media (max-width: 1390px) {
	.site-header {
		flex-direction: column;
		align-items: center;
	}

	.site-description {
		display: none;
	}

	.quality-approval div img {
		max-width: 100%;
	}

	.site-branding .logo {
		flex-direction: column;
		/* align-items: flex-start; */
		height: 80px;
		padding-bottom: 10px;
		/* width: 50%; */
	}

	.menu-toggle {
		display: block;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 999;
		background-color: white;
		border: none;
		font-size: 1.5rem;
		padding: 10px 15px;
		border-radius: 6px;
		cursor: pointer;
	}

	.nems-logo {
		/* width: 30px; */
		max-height: 60px;
	}

	.service-list {
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	}

	.header-right {
		font-size: .6rem;
	}

	.site-branding .logo {
		flex-direction: column;
		height: 60px;
		padding-bottom: 10px;
	}

	.site-description {
		display: none;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		width: 80%;
		max-width: 330px;
		height: 100vh;
		background-color: white;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 60px;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		z-index: 998;
		justify-content: flex-start;
	}

	.main-navigation.active {
		transform: translateX(0);
	}

	#primary-menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	#primary-menu>li>a {
		padding: 15px 20px;
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	#primary-menu .sub-menu {
		position: static;
		/* background: #ecf1f3; */
		display: none;
	}

	#primary-menu li.open>.sub-menu {
		display: block;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
	}

	#primary-menu .sub-menu li a {
		padding-left: 40px;
		color: #8a8a8a;
	}

	.slideshow-container {
		height: 370px;
	}

	.slideshow-text {
		font-size: 3rem;
	}


	section {
		padding: 1rem 0;
	}


	section div {
		max-width: 100%;
	}

	.career-container {
		flex-direction: column;
		/* justify-content: center;
		align-items: center; */
		text-align: center;
	}

	.right-image {
		float: none;
		max-width: 65%;
		align-self: center;
	}

 .career-image {
	object-fit: cover;
	height: 300px;
	width: 90%;
	margin-bottom: 0px;
	background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
} 

	.image-text-wrapper {
		flex-direction: column;
	}

	.career-grid {
		margin-left: 0;
	}

	.learn-more-btn {
		align-self: center;
	}

	.baymap {
		padding-top: 30px;
	}

	.main-info {
		flex-direction: column;
	}

	.left-info {
		width: 85%;
	}

	.review-grid {
		gap: 10px;
		margin: 10px;
	}

	.BambooHR-ATS-board {
		padding: 1rem;
		width: 90%;
	}

	#content.site-content {
		width: 90%;
	}
}

@media (min-width: 800px) {
	.image-grid {
		display: flex;
		justify-content: space-evenly;
		align-items: center;
	}


}

/* @media (min-width: 1200px) {
	.image-grid {
		grid-template-columns: repeat(7, 1fr);
	}
} */


@media (max-width: 480px) {
	.careers-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 1.8rem;
	}
}


@media screen and (max-width: 768px) {
	.review-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.client-reviews {
		padding: 40px 15px;
	}

	.tagline {
		font-size: 1.7rem;
	}

	.service-description {
		font-size: 1rem;
	}

	.service-cards {
		grid-template-columns: 1fr;
	}

	.review-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
		margin-top: 10px;
	}

	.career-grid {
		grid-template-columns: 1fr;
	}

	.career-card {
		padding: 25px;
	}




}


/* MOBILE STYLES */
@media (max-width: 768px) {
	.healthcare-services {
		/* max-width: 90%; */
		padding: 5px 5px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	.service-cards {
		display: flex;
		flex-direction: column;
		justify-content: center;
		/* width: 80%; */
		margin: 0;
		/* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px; */
	}

	.service-card {
		flex-direction: column;
		justify-content: center;
		width: 78%;
	}


	.slideshow-container {
		height: 260px;
	}

	.slideshow-text {
		font-size: 2rem;
	}



	.image-grid {
		display: flex;
		flex-wrap: wrap;
	}

	.image-grid img {
		max-height: 40px;
		max-width: 130px;
	}

	.quality-approval div img {
		max-width: 100%;
	}



	.career-grid {
		margin-left: 0;
	}



	.footer-section p,
	.footer-section a,
	.footer-section strong {
		text-align: center;
	}

	h2 {
		font-size: 1.7rem;
	}

	p {
		font-size: 1.2rem;
		line-height: 1.8rem;
	}

	.contact-title h2 {
		font-size: 1.6rem;
	}



	.faq-top {
		flex-direction: column;
	}

	.services {
		width: 90%;
	}

	.contact-content {
		flex-direction: column-reverse;
	}

	.contact-right {
		padding: 0;
	}

	.contact-info {
		padding: 15px 15px 0px 15px;
	}


	.two-part {
		flex-direction: column;
		text-align: left;
	}

	.title-part h2 {
		text-align: left;
		font-size: 1.4rem;
	}

	.right-block {
		min-width: 200px;
		margin-left: 0;
	}

	.image-text-section {
		flex-direction: column-reverse;
	}

	.BambooHR-ATS-Location {
		display: none;
	}


}