/* ============================================================
   service-pages.css
   Shared stylesheet for inner/service pages (header, footer,
   page banner, service content, CTA, FAQ accordion, buttons).
   Extracted from custom.css and decoupled from homepage-only
   sections (hero slider, homepage about/gallery/testimonials/
   blog/ticker blocks) so this page no longer loads unused CSS.
   ============================================================ */

:root {
	--primary-color			: #0B1F33;
	--secondary-color		: #d8dbdd;
	--text-color			: #153C33B3;
	--accent-color			: #0F766E;
	--white-color			: #FFFFFF;
	--divider-color			: #FFFFFF26;
	--dark-divider-color	: #153C331A;
	--error-color			: rgb(230, 87, 87);
	--accent-font			: "Archivo", sans-serif;
	--default-font			: "DM Sans", sans-serif;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin :0;
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

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

.row > * {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--white-color);
	background: var(--accent-color);
	text-transform: capitalize;
	padding: 18px 55px 18px 20px;
	border-radius: 99px;
	border: none;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--primary-color);
	background-image: url("../images/arrow-white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
	background-color: var(--accent-color);
}

.btn-default::after { 
	content: "";
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 102%;
	border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	width: 106%;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 30px;
}

.section-title h3 {
	display: inline-block;
	font-size: 14px;
    font-weight: 700;
	line-height: 1em;
    text-transform: capitalize;
	background-color: var(--secondary-color);
    color: var(--accent-color);
	border-radius: 99px;
	padding: 10px 20px;
    margin-bottom: 20px;
}

.section-title h1 {
	font-size: 57px;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 54px;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}

.topbar {
	padding: 12px 0;
	background-color: var(--primary-color);
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

.navbar {
	padding: 0px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper > ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 14px 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
	content: "";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn .btn-default::before {
    background-image: url(../images/icon-phone.svg);
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.export-doctor-box .icon-box {
	margin-right: 10px;
}

.export-doctor-box .icon-box img {
	max-width: 48px;
	border-radius: 50%;
}

.service-cta-item .icon-box {
	margin: 0 auto;
	margin-bottom: 20px;
}

.service-cta-item:hover .service-cta-btn .btn-default:after {
	width: 100%;
}

.service-cta-item:hover .service-cta-btn .btn-default:before {
	background-color: var(--accent-color);
}

.solution-counter-item .icon-box {
	margin-right: 10px;
}

.solution-counter-item .icon-box img {
	max-width: 48px;
}

.why-choose-item .icon-box {
	background-color: var(--white-color);
	height: 52px;
	width: 52px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.why-choose-item .icon-box::before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 10px;
    background-color: var(--primary-color);
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	position: relative;
	z-index: 1;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-box-2 .why-choose-item .icon-box {
	margin-right: 0;
	margin-left: 20px;
}

.why-choose-box-2 .why-choose-item .icon-box::before {
	background-color: var(--secondary-color);
}

.why-choose-box-2 .why-choose-item:hover .icon-box img {
    filter: brightness(1) invert(0);
}

.main-footer {
	padding: 100px 0 0;
	background: var(--primary-color);
}

.footer-logo {
	margin-bottom: 30px;
}

.about-footer-content {
	margin-bottom: 30px;
}

.about-footer-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-flex;
	margin-right: 20px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a i {
	color: var(--white-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
	color: var(--accent-color);
}

.about-working-hour h3,
.about-service-list h3,
.footer-contact h3 {
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.about-service-list {
	margin-left: 55px;
}

.about-service-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-service-list ul li {
	text-transform: capitalize;
	margin-bottom: 20px;
}

.about-service-list ul li:last-child {
	margin-bottom: 0;
}

.about-service-list ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.about-service-list ul li:hover a {
	color: var(--accent-color);
}

.footer-contact-details .footer-info-box {
	position: relative;
	padding-left: 30px;
    margin-bottom: 30px;
}

.footer-contact-details .footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: -2px;
	left: 0;
}

.footer-info-box .icon-box img {
	max-width: 20px;
}

.footer-info-box-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-copyright {
	border-top: 1px solid var(--divider-color);
	padding: 40px 0;
	margin-top: 40px;
}

.page-header {
	padding: 100px 0;
	background: var(--secondary-color);
}

.page-header-box h1 {
	color: var(--primary-color);
	font-size: 57px;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 20px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-family: var(--accent-font);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.mission-vision .section-title {
	position: relative;
	z-index: 1;
	text-align: center;
}

.our-mva-item .icon-box {
	position: relative;
	background: var(--secondary-color);
	border-radius: 10px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
	z-index: 1;
}

.our-mva-item .icon-box:before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background-color: var(--white-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
}

.our-mva-item:hover .icon-box:before {
	top: 0;
}

.our-mva-item .icon-box img {
	position: relative;
	z-index: 1;
	max-width: 30px;
}

.cta-info-content .icon-box {
	background: var(--secondary-color);
	border-radius: 10px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.cta-info-content .icon-box img {
	max-width: 30px;
}

.cta-info-content .cta-content {
	width: calc(100% - 68px);
}

.cta-info-content .cta-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.cta-info-content .cta-content p {
	color: var(--primary-color);
	opacity: 70%;
	margin: 0;
}

.quality-treatment-content .section-title h3 {
	background: var(--white-color);
}

.therapy-process .section-title {
	text-align: center;
}

.therapy-process-item .icon-box {
	position: relative;
	height: 100px;
	width: 100px;
	border-radius: 100%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.therapy-process .col-lg-3:nth-child(even) .therapy-process-item .icon-box:before {
	position: absolute;
	display: block;
	content: "";
	background: url("../images/icon-right-down-arrow.svg") no-repeat right center;
    top: 50%;
    right: 0;
    width: 135px;
    height: 23px;
    background-size: 100% auto;
    transform: translate(175px, -50%);
	z-index: 2;
}

.therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../images/icon-right-up-arrow.svg") no-repeat right center;
    top: 50%;
    right: 0;
    width: 135px;
    height: 23px;
    background-size: 100% auto;
    transform: translate(175px, -50%);
	z-index: 2;
}

.therapy-process .col-lg-3:nth-last-child(1) .therapy-process-item .icon-box:before {
	display: none;
}

.therapy-process-item .icon-box img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 100%;
}

.page-service-single {
	padding: 100px 0;
}

.service-featured-img {
	margin-bottom: 30px;
}

.service-featured-img img {
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry h2 {
	font-size: 54px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-entry h3 {
	font-size: 32px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-entry p {
	margin-bottom: 30px;
}

.service-entry ul {
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 30px;
}

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 35px;
}

.service-entry ul li:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	border-radius: 30px;
	aspect-ratio: 1/0.68;
	object-fit: cover;
}

.service-sidebar {
	position: sticky;
	top: 20px;
	margin-left: 10px;
}

.service-catagery-list,
.opening-hour-section {
	margin-bottom: 40px;
}

.service-catagery-list,
.opening-hour-section,
.sidebar-cta-box {
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 30px;
}

.service-catagery-list h3,
.opening-hour-section h3 {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 35px;
}

.service-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.service-catagery-list ul li:before {
	position: absolute;
	content: "";
	background: url("../images/arrow-white.svg") no-repeat center center;
	background-color: var(--primary-color);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover:before {
	background-color: var(--accent-color);
}

.service-catagery-list ul li a {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--accent-color);
}

.opening-hour-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hour-section ul li {
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.opening-hour-section ul li:last-child {
	margin-bottom: 0;
}

.sidebar-cta-box {
	text-align: center;
}

.sidebar-cta-box .icon-box {
	background: var(--secondary-color);
	border-radius: 10px;
	height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 30px;
}

.sidebar-cta-box .cta-content {
	margin-bottom: 40px;
	text-align: center;
}

.sidebar-cta-box .cta-content h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content p {
	margin: 0;
}

.sidebar-cta-box .cta-appointment-btn {
	text-align: center;
}

.page-team-single .row {
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
}

.winning-awards-box .row .col-6 {
	padding: 0;
}

.contact-info-item .icon-box {
	background: var(--secondary-color);
	border-radius: 10px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-info-item .icon-box img {
	max-width: 30px;
}

.book-appointment-form .section-title {
	text-align: center;
}

@media only screen and (max-width: 1024px) {
  .navbar {
        padding: 0px 0px;
    }
  .main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px) {
  .responsive-menu,
    .navbar-toggle {
        display: block;
    }
  .section-title {
		margin-bottom: 20px;
	}
  .section-title h1,
	.section-title h2 {
		font-size: 44px;
	}
  .section-title p {
		margin-top: 20px;
	}
  .why-choose-box-2 .why-choose-item .icon-box {
		margin-right: 20px;
		margin-left: 0px;
	}
  .main-footer {
		padding: 50px 0 0;
	}
  .footer-logo {
		margin-bottom: 20px;
	}
  .about-footer-content {
		margin-bottom: 20px;
	}
  .about-footer {
		margin-bottom: 30px;
	}
  .about-working-hour,
	.about-service-list {
		margin-left: 0;
	}
  .about-working-hour h3,
	.about-service-list h3,
	.footer-contact h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
  .footer-contact-details .footer-info-box {
		margin-bottom: 20px;
	}
  .footer-copyright {
		padding: 30px 0;
		margin-top: 30px;
	}
  .page-header {
		padding: 50px 0;
	}
  .page-header-box h1 {
		font-size: 44px;
		margin-bottom: 15px;
	}
  .cta-info-content .icon-box {
		margin-right: 0;
		margin-bottom: 20px;
	}
  .cta-info-content .cta-content {
		width: 100%;
	}
  .therapy-process-item .icon-box {
		margin-bottom: 20px;
	}
  .therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box:before {
		transform: translate(210px, -50%);
	}
  .therapy-process .col-lg-3:nth-last-child(odd) .therapy-process-item .icon-box:before {
		display: none;
	}
  .page-service-single {
		padding: 50px 0;
	}
  .service-featured-img {
		margin-bottom: 20px;
	}
  .service-entry h3 {
		font-size: 28px;
		margin-bottom: 20px;
	}
  .service-entry p {
		margin-bottom: 20px;
	}
  .service-entry ul {
		margin-bottom: 20px;
		gap: 15px;
	}
  .service-entry ul li {
		width: calc(50% - 7.5px);
		padding-left: 30px;
	}
  .service-sidebar {
		margin-left: 0px;
	}
  .service-catagery-list,
	.opening-hour-section,
	.sidebar-cta-box {
		padding: 20px;
	}
  .service-catagery-list,
	.opening-hour-section {
		margin-bottom: 30px;
	}
  .service-catagery-list h3,
	.opening-hour-section h3 {
		margin-bottom: 20px;
	}
  .service-catagery-list ul li {
		padding-left: 30px;
	}
  .service-catagery-list ul li:before {
		height: 20px;
		width: 20px;
		top: 4px;
	}
  .service-catagery-list ul li a {
		font-size: 16px;
	}
  .sidebar-cta-box .icon-box {
		margin-bottom: 20px;
	}
  .sidebar-cta-box .cta-content {
		margin-bottom: 20px;
	}
  .sidebar-cta-box .cta-content h3 {
		font-size: 24px;
	}
  .page-team-single .row {
		border-radius: 40px 40px 30px 30px;
	}
}

@media only screen and (max-width: 767px) {
  .btn-default {
		padding: 15px 55px 15px 15px;
	}
  .btn-default::before {
		width: 32px;
		height: 32px;
	}
  .section-title {
		text-align: center;
		margin-bottom: 20px;
	}
  .section-title h1 {
		font-size: 30px;
	}
  .section-title h2 {
		font-size: 26px;
	}
  .section-title p {
		margin-top: 20px;
	}
  .why-choose-item .icon-box {
		background-color: var(--white-color);
		height: 52px;
		width: 52px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 10px;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}
  .about-working-hour,
	.about-service-list {
		margin-bottom: 30px;
	}
  .about-service-list ul li {
		margin-bottom: 15px;
	}
  .footer-contact-details .footer-info-box {
		margin-bottom: 15px;
	}
  .footer-copyright {
		text-align: center;
		padding: 20px 0;
		margin-top: 30px;
	}
  .page-header-box h1 {
		font-size: 30px;
	}
  .cta-info-content .cta-content h3 {
		font-size: 18px;
	}
  .therapy-process-item .icon-box {
		width: 80px;
		height: 80px;
	}
  .therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box:before {
		display: none;
	}
  .service-entry h3 {
		font-size: 24px;
	}
  .service-entry ul li {
		width: 100%;
	}
  .service-catagery-list, .opening-hour-section {
		margin-bottom: 20px;
	}
  .sidebar-cta-box .cta-content h3 {
		font-size: 20px;
	}
}

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

.faq-section .accordion-item {
    border:1px solid #e5e5e5;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-section .accordion-button {
    font-size:18px;
    font-weight:600;
    padding:20px 25px;
    box-shadow:none;
}

.faq-section .accordion-button:not(.collapsed) {
    background:#0d2c54;
    color:#fff;
}

.faq-section .accordion-body {
    font-size:16px;
    line-height:1.8;
    color:#555;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #E53935;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.contact-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.whatsapp:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.call:hover {
  box-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
}

.instagram:hover {
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.6);
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.contact-btn {
  animation: floatY 3s ease-in-out infinite;
}

.call {
  animation-delay: 1s;
}

.instagram {
  animation-delay: 2s;
}

.cta-section {
    padding:25px 0;
}

.cta-box {
    background:#0c2748;
    border-radius:25px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.cta-box::before {
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-120px;
    right:-80px;
}

.cta-box::after {
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(24,171,123,.15);
    bottom:-70px;
    left:-60px;
}

.cta-content {
    position:relative;
    z-index:2;
}

.cta-content .section-tag {
    display:inline-block;
    color:#18ab7b;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.cta-content h2 {
    color:#fff;
    margin-bottom:20px;
}

.cta-content p {
    color:rgba(255,255,255,.8);
    margin-bottom:0;
    max-width:700px;
}

.cta-box .btn-default {
    margin-right:15px;
}

.btn-outline {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border:2px solid rgba(255,255,255,.25);
    border-radius:50px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover {
    background:#fff;
    color:#0c2748;
    border-color:#fff;
}

@media (max-width:991px) {
  .cta-box {
        padding:50px 35px;
        text-align:center;
    }
  .cta-box .btn-default {
        margin-right:0;
        margin-bottom:15px;
    }
  .btn-outline,
    .btn-default {
        width:100%;
    }
}

.cta-box .row {
    align-items: center;
    min-height: 320px;
}

.cta-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-box .col-lg-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-title p,
.service-body p,
.cta-content p,
.accordion-body {
	font-weight: 600;
}

/* ===========================
   Top CTA Bar
=========================== */

.topbar-contact-info ul,
.topbar-social-links ul{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

.topbar-contact-info ul{
    gap:30px;
}

.topbar-contact-info ul li{
    display:flex;
    align-items:center;
}

.topbar-contact-info ul li a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.topbar-contact-info ul li a:hover{
    color:var(--accent-color);
}

.topbar-contact-info ul li img{
    width:18px;
    height:18px;
}

.topbar-social-links{
    display:flex;
    justify-content:flex-end;
}

.topbar-social-links ul li{
    margin-left:15px;
}

.topbar-social-links ul li a{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
    transition:.3s;
}

.topbar-social-links ul li a:hover{
    background:var(--accent-color);
    border-color:var(--accent-color);
}

@media(max-width:991px){
    .topbar-contact-info ul{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .topbar-social-links{
        justify-content:center;
        margin-top:10px;
    }
}

/* ===========================
Footer Copyright
=========================== */

.footer-copyright{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:50px;
    padding:25px 0;
}

.footer-copyright-text{
    text-align:center;
}

.footer-copyright-text p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.7;
}

.footer-copyright-text a{
    color:var(--accent-color);
    transition:.3s;
}

.footer-copyright-text a:hover{
    color:#fff;
}

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

.ed-hero{
    padding:90px 0;
    background:#f7fbfa;
}

.ed-hero-content h1{
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-tag{
    display:inline-block;
    background:#d8dbdd;
    color:var(--accent-color);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-description{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    color:#5b6d6b;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 28px;
    border:2px solid var(--accent-color);
    border-radius:60px;
    color:var(--accent-color);
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:var(--accent-color);
    color:#fff;
}

.hero-highlight-grid{
    display:grid;
    gap:20px;
}

.hero-highlight-card{
    background:#fff;
    padding:28px;
    border-radius:20px;
    border:1px solid rgba(0,0,0,.08);
    transition:.35s;
}

.hero-highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.hero-icon{
    font-size:34px;
    margin-bottom:18px;
}

.hero-highlight-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.hero-highlight-card p{
    margin:0;
    line-height:1.8;
    color:#667676;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .ed-hero{
        padding:70px 0;
    }

    .ed-hero-content{
        text-align:center;
        margin-bottom:50px;
    }

    .ed-hero-content h1{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media(max-width:767px){

    .ed-hero{
        padding:55px 0;
    }

    .ed-hero-content h1{
        font-size:32px;
    }

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

    .hero-highlight-card{
        padding:22px;
    }

    .hero-highlight-card h3{
        font-size:20px;
    }

}

/* ===============================
   Service Content Section
================================== */

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

.ed-content{
    max-width:900px;
    margin:0 auto;
}

.ed-content h2{
    font-size:42px;
    line-height:1.25;
    margin-bottom:30px;
    color:var(--primary-color);
}

.ed-content p{
    font-size:17px;
    line-height:1.9;
    color:var(--text-color);
    margin-bottom:24px;
}

.ed-content p:last-child{
    margin-bottom:0;
}

@media (max-width:991px){

    .ed-section{
        padding:60px 0;
    }

    .ed-content h2{
        font-size:34px;
    }

}

@media (max-width:767px){

    .ed-section{
        padding:50px 0;
    }

    .ed-content{
        max-width:100%;
    }

    .ed-content h2{
        font-size:28px;
        margin-bottom:20px;
    }

    .ed-content p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:20px;
    }

}

.service-section{
    padding:90px 0;
	background-color: #f7fbfa;
}

.service-content{
    max-width:950px;
    margin:auto;
}

.service-content h2{
    font-size:44px;
    margin-bottom:25px;
}

.service-content p{
    line-height:1.9;
    margin-bottom:25px;
}

.symptoms-box{
    background:#f8fbfb;
    border:1px solid #dce9e8;
    border-left:5px solid var(--accent-color);
    border-radius:18px;
    padding:35px;
    margin:40px 0;
}

.symptoms-box h4{
    font-size:22px;
    margin-bottom:25px;
}

.symptoms-list{
    margin:0;
    padding:0;
    list-style:none;
}

.symptoms-list li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    line-height:1.8;
}

.symptoms-list li:last-child{
    margin-bottom:0;
}

.symptoms-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

@media(max-width:767px){

    .service-section{
        padding:60px 0;
    }

    .service-content h2{
        font-size:30px;
    }

    .symptoms-box{
        padding:25px;
    }

}

/* =====================================
   Causes Table
===================================== */

.cause-table-wrapper{
    margin:40px 0;
    overflow-x:auto;
}

.cause-table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #e3eceb;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
}

.cause-table thead{
    background:var(--primary-color);
}

.cause-table th{
    color:#fff;
    padding:18px 24px;
    text-align:left;
    font-size:18px;
    font-weight:600;
}

.cause-table td{
    padding:22px 24px;
    border-top:1px solid #e8eeee;
    vertical-align:top;
    line-height:1.8;
}

.cause-table tbody tr:nth-child(even){
    background:#f8fbfb;
}

.cause-table td:first-child{
    width:220px;
    color:var(--primary-color);
    font-weight:600;
}

@media(max-width:767px){

    .cause-table th,
    .cause-table td{
        padding:16px;
        font-size:15px;
    }

    .cause-table td:first-child{
        width:140px;
    }

}

/* ===================================
   Common Service Sections
=================================== */

.service-section-white{
    padding:90px 0;
    background:#ffffff;
}

.service-section-light{
    padding:90px 0;
    background:#f7fbfa;
}

/* Responsive */

@media (max-width:991px){

    .service-section-white,
    .service-section-light{
        padding:70px 0;
    }

}

@media (max-width:767px){

    .service-section-white,
    .service-section-light{
        padding:50px 0;
    }

}

/*======================================
    Diagnosis Steps
=======================================*/

.diagnosis-steps{
    margin:40px 0;
}

.diagnosis-step{
    display:flex;
    gap:30px;
    padding:30px 0;
    border-bottom:1px solid #e6eceb;
}

.diagnosis-step:first-child{
    border-top:1px solid #e6eceb;
}

.step-number{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--accent-font);
}

.step-content{
    flex:1;
}

.step-content h3{
    font-size:26px;
    margin-bottom:15px;
    line-height:1.3;
}

.step-content p{
    margin-bottom:0;
}

@media (max-width:767px){

    .diagnosis-step{
        gap:20px;
        padding:25px 0;
    }

    .step-number{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:18px;
    }

    .step-content h3{
        font-size:22px;
    }

}

/*======================================
    Treatment Options
======================================*/

.treatment-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:40px 0;
}

.treatment-option{
    background:#ffffff;
    border:1px solid #e6eceb;
    border-radius:18px;
    padding:30px;
    transition:all .3s ease;
}

.treatment-option:hover{
    border-color:var(--accent-color);
    transform:translateY(-4px);
}

.treatment-option h3{
    font-size:24px;
    line-height:1.35;
    margin-bottom:18px;
    color:var(--primary-color);
}

.treatment-option p{
    margin-bottom:0;
    line-height:1.8;
}

@media (max-width:991px){

    .treatment-options{
        grid-template-columns:1fr;
        gap:20px;
    }

    .treatment-option{
        padding:25px;
    }

}

@media (max-width:767px){

    .treatment-options{
        margin:30px 0;
    }

    .treatment-option h3{
        font-size:21px;
    }

}


/*====================================
    Treatment Cards
====================================*/

.treatment-options-row{
    margin:40px 0;
}

.treatment-card{
    background:#fff;
    border:1px solid #e5eceb;
    border-radius:18px;
    padding:30px 25px;
    transition:all .3s ease;
}

.treatment-card:hover{
    border-color:var(--accent-color);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transform:translateY(-5px);
}

.treatment-card h3{
    font-size:22px;
    line-height:1.35;
    margin-bottom:18px;
    color:var(--primary-color);
}

.treatment-card p{
    margin-bottom:0;
    line-height:1.8;
}

@media(max-width:991px){

    .treatment-card{
        padding:25px;
    }

}

@media(max-width:767px){

    .treatment-options-row{
        margin:30px 0;
    }

    .treatment-card h3{
        font-size:20px;
    }

}

/*====================================
    Doctor Checklist
====================================*/

.doctor-checklist{
    background:#ffffff;
    border:1px solid #e5eceb;
    border-left:5px solid var(--accent-color);
    border-radius:18px;
    padding:35px;
    margin:40px 0;
}

.doctor-checklist h3{
    font-size:24px;
    margin-bottom:25px;
    color:var(--primary-color);
}

.doctor-list{
    list-style:none;
    padding:0;
    margin:0;
}

.doctor-list li{
    position:relative;
    padding-left:36px;
    margin-bottom:18px;
    line-height:1.8;
}

.doctor-list li:last-child{
    margin-bottom:0;
}

.doctor-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:767px){

    .doctor-checklist{
        padding:25px;
        margin:30px 0;
    }

    .doctor-checklist h3{
        font-size:21px;
        margin-bottom:20px;
    }

    .doctor-list li{
        padding-left:32px;
        margin-bottom:15px;
    }

}

/*====================================
    ED Info Box
====================================*/

.ed-info-box{
    position:relative;
    margin:40px 0;
    padding:35px 35px 35px 45px;
    background:#f7fbfa;
    border:1px solid #e4eceb;
    border-left:6px solid var(--accent-color);
    border-radius:18px;
}

.ed-info-box p{
    margin:0;
    font-size:18px;
    line-height:1.9;
    color:var(--primary-color);
}

@media(max-width:767px){

    .ed-info-box{
        margin:30px 0;
        padding:25px 25px 25px 30px;
    }

    .ed-info-box p{
        font-size:16px;
    }

}

/*====================================
    Benefits Grid
====================================*/

.benefits-row{
    margin:40px 0;
}

.benefit-item{
    position:relative;
    height:100%;
    background:#ffffff;
    border:1px solid #e5eceb;
    border-radius:16px;
    padding:30px 25px 30px 65px;
    transition:.3s ease;
}

.benefit-item:hover{
    border-color:var(--accent-color);
    transform:translateY(-4px);
}

.benefit-item::before{
    content:"✓";
    position:absolute;
    top:30px;
    left:25px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
}

.benefit-item h3{
    margin:0;
    font-size:22px;
    line-height:1.6;
    color:var(--primary-color);
}

@media(max-width:767px){

    .benefits-row{
        margin:30px 0;
    }

    .benefit-item{
        padding:22px 20px 22px 58px;
    }

    .benefit-item::before{
        top:22px;
        left:20px;
    }

    .benefit-item h3{
        font-size:19px;
    }

}

/*====================================
    Why Choose Skafos
====================================*/

.why-skafos-box{
    background:#f7fbfa;
    border:1px solid #e5eceb;
    border-radius:18px;
    padding:35px;
}

.why-skafos-box h3{
    font-size:26px;
    margin-bottom:25px;
    color:var(--primary-color);
}

.why-skafos-list{
    list-style:none;
    padding:0;
    margin:0;
}

.why-skafos-list li{
    position:relative;
    padding:14px 0 14px 38px;
    border-bottom:1px solid #e5eceb;
    line-height:1.7;
}

.why-skafos-list li:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.why-skafos-list li:first-child{
    padding-top:0;
}

.why-skafos-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:14px;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--accent-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

.why-skafos-list li:first-child::before{
    top:0;
}

@media(max-width:991px){

    .why-skafos-box{
        margin-top:15px;
    }

}

@media(max-width:767px){

    .why-skafos-box{
        padding:25px;
    }

    .why-skafos-box h3{
        font-size:22px;
    }

}

.ed-hero{
    padding:100px 0;
    background:#f7fbfa;
}

.ed-hero-content{
    max-width:900px;
    margin:0 auto;
}

.ed-hero-content h1{
    font-size:68px;
    line-height:1.08;
    margin:30px 0;
}

.hero-description{
    max-width:820px;
    margin:0 auto 40px;
    font-size:22px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.hero-description,
.service-content,
.treatment p{
    font-weight:600;
}

/*====================================
    Service Trust Section
====================================*/

.service-trust-section{
    padding:0 0 30px;
    margin-top:-30px;
}

.trust-card{
    background:#fff;
    border:1px solid #e8eceb;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-6px);
    border-color:var(--accent-color);
}

.trust-icon{
    margin-bottom:25px;
}

.trust-icon img{
    width:42px;
}

.trust-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.trust-card p{
    margin:0;
    line-height:1.8;
}

@media(max-width:991px){

    .service-trust-section{
        margin-top:0;
        padding:20px 0;
    }

}

@media(max-width:767px){

    .service-trust-section{
        padding:16px 0;
    }

    .trust-card{
        padding:28px;
    }

    .trust-card h3{
        font-size:24px;
    }

}

.service-section-white,
.service-section-light{
    padding:80px 0;
}

.btn-default{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:20px 60px 20px 40px; /* extra space only for the arrow */
}

/* ============================================
   DROPDOWN MENU CSS (Our Treatments)
   Paste into custom.css AND service-pages.css
   ============================================ */

.main-menu ul li.submenu {
	position: relative;
}

.main-menu ul li.submenu > a {
	display: inline-flex;
	align-items: center;
}

.main-menu ul li.submenu > a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 13px;
	margin-left: 8px;
	transition: transform 0.3s ease-in-out;
}

.main-menu ul li.submenu:hover > a:after {
	transform: rotate(180deg);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	width: 260px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	text-align: left;
	background-color: var(--primary-color);
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(11, 31, 51, 0.18);
	transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.main-menu ul li.submenu:hover > ul {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
	position: relative;
}

.main-menu ul ul li a {
	display: block;
	color: var(--white-color) !important;
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 500;
	padding: 10px 22px !important;
	text-transform: capitalize;
	white-space: normal;
	line-height: 1.4em;
	transition: all 0.25s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--white-color) !important;
	background-color: var(--accent-color);
	padding-left: 26px !important;
}

.main-menu ul ul li:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Nested submenu (if ever added) */
.main-menu ul ul ul {
	top: 0;
	left: 100%;
	margin-left: 6px;
}