.hero-slider {
	position: relative;
	height: 100vh;
	min-height: 700px;
}

.hero-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	height: 100vh;
	min-height: 700px;
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	height: 100vh;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--white);
	max-width: 800px;
}

.hero-title {
	font-size: 60px;
	margin-bottom: 20px;
	color: var(--white);
	text-transform: capitalize;
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 30px;
	color: var(--white);
}

.hero-btns .btn {
	margin-right: 15px;
	margin-bottom: 15px;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--white);
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--accent-color);
	color: var(--text-dark);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
	font-weight: bold;
}

.hero-slider .swiper-pagination {
	bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--white);
	opacity: 1;
	margin: 0 8px !important;
	transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transform: scale(1.2);
}

.scroll-down {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
}

.scroll-link {
	display: inline-block;
	color: var(--white);
	transition: var(--transition);
}

.scroll-text {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
}

.scroll-link i {
	font-size: 20px;
	animation: bounce 2s infinite;
}

@keyframes bounce {

0%,
20%,
50%,
80%,
100% {
	transform: translateY(0);
}

40% {
	transform: translateY(-10px);
}

60% {
	transform: translateY(-5px);
}
}

@media (max-width: 1399px) {
.hero-title {
	font-size: 54px;
}
}

@media (max-width: 1199px) {
.hero-title {
	font-size: 50px;
}
}

@media (max-width: 991px) {
.hero-title {
	font-size: 42px;
}

.hero-subtitle {
	font-size: 18px;
}
}

@media (max-width: 767px) {
.hero-slider,
.hero-slider .swiper-slide,
.hero-content {
	min-height: 600px;
}

.hero-title {
	font-size: 36px;
}
}

@media (max-width: 575px) {
.hero-slider,
.hero-slider .swiper-slide,
.hero-content {
	min-height: 500px;
}

.hero-title {
	font-size: 30px;
}

.hero-subtitle {
	font-size: 16px;
}

.hero-btns .btn {
display: block;
	width: 100%;
	margin-right: 0;
	margin-bottom: 15px;
}
}
:root {
--primary-color: #1E1E1E;
--secondary-color: #5A3D22;
--accent-color: #C68A4A;
--text-dark: #141414;
--text-medium: #404040;
--text-light: #6A6A6A;
--light-bg: #F9F3EE;
--dark-bg: #1E1E1E;
--white: #FFFFFF;
--black: #000000;
--btn-light: #C68A4A;
--btn-light-hover: #A6703A;
--btn-dark: #5A3D22;
--btn-dark-hover: #3F2A17;
--primary-font: 'Poppins', sans-serif;
--secondary-font: 'Montserrat', sans-serif;
--section-padding: 100px 0;
--section-padding-md: 70px 0;
--section-padding-sm: 50px 0;
--transition: all 0.3s ease-in-out;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--secondary-font);
	color: var(--text-dark);
	font-weight: 700;
	line-height: 1.3;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	transition: var(--transition);
	border: none;
	font-size: 15px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	letter-spacing: 0.5px;
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(198, 138, 74, 0.6);
}

.btn-secondary {
	background-color: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(198, 138, 74, 0.5);
}

.container {
width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
.container {
	max-width: 540px;
}
}

@media (min-width: 768px) {
.container {
	max-width: 720px;
}
}

@media (min-width: 992px) {
.container {
	max-width: 960px;
}
}

@media (min-width: 1200px) {
.container {
	max-width: 1140px;
}
}

@media (min-width: 1400px) {
.container {
	max-width: 1320px;
}
}

@media (min-width: 1920px) {
.container {
	max-width: 1600px;
}
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.hero-slider {
	position: relative;
	height: auto;
	min-height: 650px;
	overflow: hidden;
}

.hero-slider .swiper-slide {
	position: relative;
	height: auto;
	min-height: 650px;
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size:cover;
	background-attachment:fixed;
	background-position: center;
	z-index: 1;
	transition: transform 6s ease-in-out;
}

.swiper-slide-active .slide-bg {
	transform: scale(1.04);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	height: auto;
	min-height: 800px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--white);
	max-width: 800px;
}

.hero-title {
	font-size: 68px;
	font-weight: 800;
	margin-bottom: 20px;
	text-transform: capitalize;
	letter-spacing: 1px;
	opacity: 0;
	transform: translateY(40px);
	transition: var(--transition);
}

.hero-subtitle {
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 500;
	opacity: 0;
	transform: translateY(40px);
	transition: var(--transition);
	transition-delay: 0.2s;
}

.hero-btns {
	opacity: 0;
	transform: translateY(40px);
	transition: var(--transition);
	transition-delay: 0.4s;
}

.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-btns {
	opacity: 1;
	transform: translateY(0);
}

.hero-btns .btn {
	margin-right: 15px;
	margin-bottom: 15px;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--white);
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--accent-color);
	color: var(--text-dark);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
}

.hero-slider .swiper-pagination {
	bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: transparent;
	border: 2px solid var(--white);
	opacity: 1;
	margin: 0 8px !important;
	transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	width: 30px;
	border-radius: 15px;
}

.scroll-down {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
}

.scroll-link {
	color: var(--white);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.scroll-link i {
	font-size: 20px;
	animation: bounce 2s infinite;
}

.section-header {
	margin-bottom: 60px;
	text-align: center;
}

.section-title {
	font-size: 44px;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-title::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	max-width: 500px;
	margin: 0 auto;
}

.about-section {
	padding: var(--section-padding);
}

.about-content {
	padding-left: 30px;
}

.about-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
	letter-spacing: 0.3px;
}

.about-content p {
	margin-bottom: 15px;
	color: var(--text-medium);
	font-size: 15px;
}

.about-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
	transition: var(--transition);
}

.about-img:hover img {
	transform: scale(1.03);
}

.counter-section {
	padding: 60px 0;
	background: linear-gradient(rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.7)),
	url('/wp-content/themes/backbonemedicity/assets/img/backbone/doctor-with-healthcare-staff-in-hospital.webp')
	top/cover no-repeat;
	background-attachment: fixed;
	color: var(--white);
}

.counter-section .section-title,
.counter-section .section-subtitle {
	color: var(--white);
}

.counter-item {
text-align: center;
	padding: 15px;
}

.counter-number {
	font-size: 42px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 10px;
	font-family: var(--secondary-font);
}

.counter-text {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.inspiration-section {
	padding: var(--section-padding);
	background: var(--white);
}

.inspiration-content {
	display: flex;
	align-items: center;
	gap: 40px;
	background: var(--light-bg);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.inspiration-img {
	flex: 0 0 20%;
	max-width: 20%;
	position: relative;
}

.inspiration-img::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px solid var(--accent-color);
	border-radius: 15px;
	z-index: -1;
}

.inspiration-img img {
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.inspiration-img:hover img {
	transform: scale(1.03);
}

.inspiration-text {
	flex: 0 0 80%;
	max-width: 80%;
	padding: 0 20px;
}

.inspiration-text h2 {
	font-size: 32px;
	margin-bottom: 15px;
	letter-spacing: 0.3px;
}

.inspiration-text p {
	margin-bottom: 15px;
	color: var(--text-medium);
	font-size: 15px;
}

.highlight-name {
	color: var(--accent-color);
	position: relative;
	display: inline-block;
	padding-bottom: 2px;
	transition: var(--transition);
}

.highlight-name::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--accent-color);
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease-in-out;
}

.highlight-name:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

@media (max-width: 1399px) {
.hero-title {
	font-size: 60px;
}

.section-title {
	font-size: 40px;
}
}

@media (max-width: 1199px) {
.hero-title {
	font-size: 52px;
}

.hero-subtitle {
	font-size: 20px;
}

.inspiration-content {
	gap: 25px;
}

.inspiration-img {
	flex: 0 0 30% !important;
	max-width: 30%;
}

.inspiration-text {
	flex: 0 0 70% !important;
	max-width: 70%;
}

.about-content {
	padding-left: 15px;
}
}

@media (max-width: 991px) {
.hero-title {
	font-size: 44px;
}

.inspiration-text {
	padding: 0 0px;
}

.section-title {
	font-size: 36px;
	text-align: center;
}
.inspiration-content {
flex-direction: column;
	gap: 25px;
}
.inspiration-img,
.inspiration-text {
	flex: 0 0 100% !important;
	max-width: 100%;
}

.about-content {
	padding-left: 0;
}

.counter-number {
	font-size: 38px;
}
}

@media (max-width: 767px) {
.hero-slider,
.hero-slider .swiper-slide,
.hero-content {
	min-height: 600px;
}

.hero-title {
	font-size: 36px;
}

.section-padding {
	padding: var(--section-padding-sm);
}

.counter-number {
	font-size: 34px;
}

.inspiration-content {
	padding: 20px;
}
}

@media (max-width: 575px) {
.hero-slider,
.hero-slider .swiper-slide,
.hero-content {
	min-height: 500px;
	padding-bottom: 50px;
	text-align: center;
}

.hero-title {
	font-size: 28px;
	margin: 8px;
}

.hero-subtitle {
	font-size: 16px;
	margin: 8px;
}

.hero-btns .btn {
	display: block;
	width: 85%;
	margin: 12px auto;
}

.section-title {
	font-size: 28px;
}

.counter-number {
	font-size: 30px;
}

.inspiration-text h2 {
	font-size: 26px;
	text-align: center;
}
}

.service-benefites-section-area {
	background: var(--white);
}

.cta-section {
	padding: 80px 0;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
	url('/wp-content/themes/backbonemedicity/assets/img/backbone/back-bone-cta-bg.webp') center/cover no-repeat;
	color: var(--white);
	background-attachment: fixed;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-content h2 {
	font-size: 38px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-weight: 700;
	color: white;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.cta-btns .btn {
	margin: 0 10px 10px;
	padding: 14px 35px;
	font-size: 16px;
	transition: var(--transition);
}

.cta-btns .btn-primary {
	animation: pulse 2s infinite;	
}

@keyframes pulse {
0% {
	transform: scale(1);
}

50% {
	transform: scale(1.05);
}

100% {
	transform: scale(1);
}
}

@media (max-width: 991px) {
.cta-content h2 {
	font-size: 32px;
}

.cta-content p {
	font-size: 16px;
	max-width: 500px;
}

.about-section .about-img {
	margin-bottom: 30px;
}

.section-header {
	margin-bottom: 40px;
}
}

@media (max-width: 767px) {
.cta-section {
	padding: var(--section-padding-sm);
}

.cta-content h2 {
	font-size: 28px;
}

.cta-content p {
	font-size: 15px;
}

.cta-btns .btn {
	display: block;
	width: 80%;
	margin: 10px auto;
}
}
@media (max-width: 575px) {
.cta-content h2 {
	font-size: 24px;
	margin-bottom: 10px;
}
.cta-content p {
	font-size: 14px;
	margin-bottom: 20px;
}
.cta-btns .btn {
	width: 90%;
	padding: 12px 30px;
	font-size: 15px;
}
.counter-text {
	font-size: 14px;
}
}
.footer-location a {
	line-height: 30px !important;
}
.footer-number svg,
.footer-location svg,
.footer-email svg {
	margin-right: 5px;
}
.marquee-wrap {
	overflow: hidden !important;
}
.cs_preloader_logo img {
	width: 120px;
	animation: logoPulse 2s ease-in-out infinite;
	transform-origin: center;
}

@keyframes logoPulse {
0% {
	transform: scale(1);
	opacity: 0.6;
}
50% {
	transform: scale(1.2);
	opacity: 1;
}
100% {
	transform: scale(1);
	opacity: 0.6;
}
}
@media (min-width: 1801px) {
	.inspiration-img::after {
		border: none;
	}
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("../fonts/fa-brands-400.woff2") format("woff2"),
       url("../fonts/fa-brands-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap !important;  
}

@font-face {
  font-family: "Font Awesome 5 Regular";
  src: url("../fonts/fa-regular-400.woff2") format("woff2"),
       url("../fonts/fa-regular-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap !important;   
}

@font-face {
  font-family: "Font Awesome 5 Solid";
  src: url("../fonts/fa-solid-900.woff2") format("woff2"),
       url("../fonts/fa-solid-900.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap !important;  
}


.home .doctor-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
}
.home .img1 {
    position: relative; 
}

@media (max-width: 991px) {
   .home .hero-slider,
   .home .hero-slider .swiper-slide,
   .home .hero-content {
        height: 60vh !important; 
        min-height: 0;
        overflow: visible;
    }

  .home  .hero-slider .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

   .home .slide-bg,
   .home .hero-slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: unset; 
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        transform: none; 
    }

   .home .overlay {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
        z-index: 2;
    }

   .home .hero-content {
        max-width: 100%;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

   .home .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
        opacity: 1 !important; 
        transform: none !important; 
    }

   .home .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 1 !important;
        transform: none !important;
    }

   .home .hero-btns {
        opacity: 1 !important;
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

   .home .hero-btns .btn {
        width: 80%; 
        margin: 10px 0;
        padding: 10px 20px;
        font-size: 14px;
    }

   .home .hero-slider .swiper-pagination {
        bottom: 20px;
    }

   .home .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 6px !important;
    }

   .home .hero-slider .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 12px;
    }
	.home .swiper-slide-active .slide-bg {
		background-size: cover;
	}

   .home .swiper-button-next,
   .home .swiper-button-prev {
        display: none; 
    }
}