@import url('bootstrap.min.css');
@import url('animate.min.css');
@import url('fancybox.css');
@import url('font-awesome.min.css');
@import url('fonts.css');
@import url('swiper-bundle.min.css');
@import url('custom.css');
:root{
	/* Font */
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;

	/* Text */
    --font-size-base: 1rem;
    --body-font-weight: 400;
	--body-font-weight-bold: 500;
    --heading-font-weight: 600;
	--heading-font-weight-extra: 700;
    --body-line-height: 1.7;
    --heading-line-height: 1.2;

	/* Primary Colors */
	--color-blue-dark: #0078A7;
	--color-blue: #259BCA;
	--color-green: #96BE54;
	--color-brown: #9F6B39;

	/* Primary text */
	--text-main: #222222;
	--text-sub: #333333;
	--text-muted: #838383;
	--text-light: #e6e6e6;
	--text-white: #ffffff;

	/* Light Background Colors */
	--color-blue-dark-bg:color-mix(in srgb, var(--color-blue-dark) 5%, transparent);
	--color-blue-bg:color-mix(in srgb, var(--color-blue) 5%, transparent);
	--color-green-bg:color-mix(in srgb, var(--color-green) 10%, transparent);
	--color-brown-bg:color-mix(in srgb, var(--color-brown) 10%, transparent);


	/* Gradient Colors */
	--color-gradient:linear-gradient(70deg, var(--color-green), var(--color-blue), var(--color-blue-dark));
	--color-gradient-overlay:linear-gradient(120deg, var(--color-green), var(--color-blue-overlay), var(--color-blue-dark));
}

/*-------COLORS----------- */
.gradient-bg{
	background: var(--color-gradient);
}
.gradient-txt {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--color-green) 10%,
    var(--color-blue) 60%,
    var(--color-blue-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.color-blue{
	color: var(--color-blue);
}
.color-green{
	color: var(--color-green);
}
.color-brown{
	color: var(--color-brown);
}
.color-muted{
	color: var(--text-muted);
}
.bg-blue{
	background: var(--color-blue);
}
.bg-green{
	background: var(--color-green);
}
.bg-brown{
	background: var(--color-brown);
}

/*=============================
	03. DEFAULT STYLE
===============================*/
body {
	font-family: var(--body-font);
	font-weight: var(--body-font-weight);
	font-size: var(--font-size-base);
	line-height: var(--body-line-height);
	color: var(--text-main);
	font-style: normal;
}
h1{
	font-family: var(--heading-font);
	color: var(--heading-font-color);
	margin-top: 0px;
	margin-bottom: .7rem;
	font-style: normal;
	line-height: var(--heading-line-height);
	font-weight: var(--heading-font-weight-extra);
}
h2,h3,h4,h5,h6 {
	font-family: var(--heading-font);
	color: var(--heading-font-color);
	margin-top: 0px;
	margin-bottom: .7rem;
	font-style: normal;
	line-height: var(--heading-line-height);
	font-weight: var(--heading-font-weight);
}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
	color: inherit;
	text-decoration: none;
	transition: all .3s ease-out;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover{
	color: var(--color-blue) !important;
	transition: all .3s ease-in;
}
h1 {
	font-size: clamp(2.1rem, 2.5vw + 1rem, 2.8rem);
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}
.small-head{
	font-size: .8rem;
	color: var(--text-muted);
	font-weight: 400;
	display: block;
}
.small{
	font-size: .9rem;
	color: var(--color-blue);
	font-weight: 500;
	display: block;
	padding-bottom: 8px;
}
p {
	font-size: var(--font-size-base);
	font-weight: var(--body-font-weight);
	line-height: var(--body-line-height);
	color: var(--text-sub);
	margin-bottom: 15px;
}
a{
	text-decoration: none;
	transition: all .3s ease-out !important;
}
strong,
.fw-bold{
  font-weight: 600 !important;
}
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
img[loading="lazy"].visible {
    opacity: 1;
}
.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}
.text-justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}
.preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    border: 1px solid rgba(37, 155, 202, 1);
    border-top: 20px solid var(--color-blue);
    border-radius: 60%;
    width: 160px;
    height: 160px;
    animation: spin 1s linear infinite;
    position:absolute;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  /* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    --bs-gutter-x: 30px;
}
.row.g-0 {
	--bs-gutter-x: 0;
}
.gutter-y-30 {
  	--bs-gutter-y: 30px;
}

a[data-bs-toggle="modal"]:focus,
a[data-bs-toggle="modal"]:focus-visible,
a[data-bs-toggle="modal"]:focus:not(:focus-visible),
.btn:focus,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/*=============================
	02. BUTTON
===============================*/
.btn {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: var(--body-font-weight-bold);
  color: var(--text-white);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease-out;
  box-shadow: 0px 0px 24px -6px rgba(16, 150, 210, 0.8);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: var(--btn-hover-color, rgba(255,255,255,0.05));
  z-index: 0;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
  border-radius: 8px;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(51,212,255,0.4) 0%,
    rgba(51,212,255,0.6) 50%,
    rgba(51,212,255,0.4) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 8px;
  opacity: 0;
}
.btn:hover::before,
.btn:focus::before {
  width: 100%;
}

.btn:hover::after,
.btn:focus::after {
  animation: center-sheen 0.5s ease-in-out forwards;
}

@keyframes center-sheen {
  0% {
    width: 0%;
    opacity: 1;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.btn span {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}
.btn:hover span {
  color: var(--text-white);
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0px 0px 32px -4px rgba(82, 66, 138, 0.9);
  color: white;
}
.btn img{
	filter: brightness(0) invert(1);
}

 /*-------- Button-Colors ------------*/
.btn-blue {
  background: var(--color-blue) !important;
  --btn-hover-color: var(--color-green);
}
.btn-brown {
  background: var(--color-brown);
  --btn-hover-color: var(--color-brown);
}
.btn-green {
  background: var(--color-green);
  --btn-hover-color: var(--color-brown);
}

/*=============================
	03. SCROLL ANIMATE
===============================*/

/* -------- scroll-animate -------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1.2s ease;
  will-change: transform, opacity;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -------- scroll-item -------- */
.scroll-item {
  opacity: 0;
  transform: translateY(25px) rotateX(4deg);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1.3s ease;
  transition-delay: var(--delay, 0s);
  transform-origin: top center;
  will-change: transform, opacity;
}

.scroll-item.active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}


/*--------Image Glow------*/
.image-anim{
	position: relative;
	overflow: hidden;
}
.image-anim:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anim:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/*=============================
	03. HEADER SECTION
===============================*/

.header-top{
	font-size: .9rem;
	font-weight: var(--body-font-weight);
	padding: 10px 0px;
	border-bottom: 1px solid var(--text-light);
	color: var(--color-secondary);
}
.header-top .flip-text {
  display: inline-block;
  perspective: 800px;
  height: 1.5em;
  overflow: hidden;
  position: relative;
  font-weight: var(--body-font-weight);
  line-height: 1.5em;
}

.header-top .flip-text span {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform-origin: bottom center;
  backface-visibility: hidden;
  opacity: 0;
  transform: rotateX(90deg);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.header-main{
	padding: 24px 0px 18px;
}
.header-logo img{
	width:350px;
}
.header-right{
	display: flex;
  	align-items: center;
  	gap: 32px;
	justify-content: flex-end;
	text-align: right;
}
.header-contact{
	display: flex;
  	align-items: center;
  	gap: 10px;
	text-align: left;
}
.header-contact img{
	width: 36px;
	padding-top: 5px;
}
.header-contact a{
	font-size: 1.2rem;
	color: var(--color-blue);
	font-weight: var(--heading-font-weight);
	line-height: 1;
}
.social-icons{
	display: flex;
  	align-items: center;
  	gap: 12px;
}
.social-icons .btn{
	padding: 5px 10px;
	width: 45px;
    height: 45px;
}
.social-icons .btn img{
	width: 24px;
	filter: brightness(0) invert(1);
}
.header-section .header-top-canvas{
	height: 200px !important;
	background: var(--color-gradient);
}
.appointment-offcanvas{
	width: 500px !important;
}
.offcanvas-title{
	color: var(--color-blue);
}
.appointment-form{
	padding: 0px 15px 25px;
}
.header-section .header-top-canvas .form-control {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--color-green);
  font-size: 30px;
  font-weight: var(--font-weight-regular, 400);
  color: var(--text-white);
  outline: none;
  box-shadow: none;
  text-align: left;
}
button{
	box-shadow:none !important;
}
.appointment-offcanvas .form-control{
	height: 52px;
	border-radius: none !important;
	box-shadow: 0px 0px 15px -1px rgba(82,66,138,0.15);
	color: var(--text-main);
	font-size: 16px;
	font-weight: var(--body-font-weight-bold);
}
.appointment-offcanvas label{
	font-size: 14px;
	padding-left: 8px;
	margin: 0px;
	color: var(--text-muted);
	font-weight: 400;
}
.appointment-form-logo{
	padding-top: 30px;
}
.header-section .header-top-canvas .form-control::placeholder{
	color: var(--text-white);;
	opacity: .5;
}
@media (max-width: 1199.98px) {
	.header-logo img{
		padding-top: 8px;
	width:300px;
	}
}
@media (max-width: 991.98px){
	.header-top{
		text-align: center;
	}
	.header-section .header-logo{
        padding: 0px 0px 10px;
        text-align: center;
        margin: auto;
    }
	.header-right{
		display: none;
	}
	.header-top-right{
		display: none;
	}
	.header-logo img{
	padding-top: 0px;
	width:350px;
	}
}

/*==============================
	04. HOME BANNER
===============================*/

.banner-slider .carousel-item{
	position: relative;
	z-index: 1;
}
.banner-slider .carousel-item img{
	width: 100%;
}
.banner-slider .slider-content{
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 30%;
	z-index:1;
	max-width: 40%;
}
.banner-slider .slider-content small{
	animation: drop-in 3s ease 400ms backwards;
	font-size: 16px;
	font-weight: 500;
	color: rgb(127, 65, 5);
}
.banner-slider .slider-content h2{
	font-weight: var(--heading-font-weight);
	font-size: clamp(1.5rem, 5vw, 3rem);
	line-height: 1.2;
	animation: drop-in 1s ease 200ms backwards;
	color: var(--color-blue);
	padding-top: 2px;
}
.banner-slider .slider-content p{
	animation: 2s lineUp ease-out;
	font-weight: 500;
}
.banner-slider .slider-content .btn{
	animation: 3s lineUp ease-out;
}
@keyframes drop-in {
	from {
	 opacity: 0;
	 transform: translateY(-100px);
	}
	to {
	 opacity: 1;
	 transform: translate(0px);
	}
   }
@keyframes lineUp {
	 0% {
	   opacity: 0;
	   transform: translateY(80%);
	 }
	 20% {
	   opacity: 0;
	 }
	 50% {
	   opacity: 1;
	   transform: translateY(0%);
	 }
	 100% {
	   opacity: 1;
	   transform: translateY(0%);
	 }
   }
@media (max-width: 992px) {
.banner-slider .carousel-item .carousel-img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.banner-slider .carousel-item .carousel-img picture,
.banner-slider .carousel-item .carousel-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
	/* banner title - small devices */
    .banner-slider .slider-content{
    all: unset;
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 90%;
    max-width: 85%;
    overflow: auto;
    text-align: center;
    padding: 20px 20px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

	}
    .banner-slider .slider-content p{
      max-height: 100px;
      overflow: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .banner-slider .slider-content p::-webkit-scrollbar {
      display: none;
    }
}
/*=============================
	05. NAVIGATION
===============================*/

.nav-menu-main{
	height: 55px;
}
.menu-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between; /* pushes items to opposite sides */
	padding-top: 0px;
}
.navbar-wrap {
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: space-between;

}
.navbar-wrap ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}
.navbar-wrap ul li {
    list-style: none;
	display: block;
	position: relative;
}
.navbar-wrap ul li a {
	font-size: 16px;
	font-weight: var(--body-font-weight-bold);
	text-transform: capitalize;
	color: var(--text-white);;
	padding: 10px 25px;
	display: block;
	line-height: 1;
	position: relative;
	z-index: 1;
}
@media (max-width: 1199.98px) {
	.navbar-wrap ul li a{
		padding: 10px 11px;
	}
}
.navbar-wrap > ul > li.active > a,
.navbar-wrap > ul > li:hover > a {
	color: var(--text-light);
}
.navbar-wrap > ul > li.menu-item-has-children > a::after {
	content: "\f107";
	font-weight: 700;
	font-family: "FontAwesome";
	color: var(--color-light-yellow);
	margin-left: 8px;
	transition: all 0.3s ease-out 0s;
}
.navbar-wrap > ul > li.menu-item-has-children:hover > a::after,
.navbar-wrap > ul > li.menu-item-has-children.active > a::after {
	color: var(--color-light-yellow);
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.header-action > ul li {
	position: relative;
	margin-left: 25px;
}
.header-action ul li:first-child {
	margin-left: 0;
}
.header-action ul li a {
	color: var(--text-white);
	font-size: 14px;
}
.header-action ul li.header-search {
	line-height: 0;
}
.header-action ul li.header-search a {
	color: #334770;
	font-size: 22px;
	line-height: 0;
	transition: all 0.3s ease-out 0s;
}
.header-action ul li.header-search a:hover {
	color: var(--color-light-yellow);
}
.header-action .header-btn .btn {
	color: var(--text-white);
	font-size: 15px;
	padding: 16px 33px;
	border: 2px solid transparent;
}
.header-action .header-btn .btn::before {
	display: none;
}
.header-action .header-btn .btn:hover {
	background: transparent;
	border-color: var(--color-light-yellow);
	color: var(--color-light-yellow);
}
.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 260px;
    border: 1px solid #f5f5f5;
    background: var(--text-white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0px;
    padding: 10px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
	margin-top: 10px;
	max-height: 520px;
	overflow: auto;
}
.navbar-wrap ul li .sub-menu .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
}
.navbar-wrap ul li .sub-menu li {
	margin-left: 0;
	text-align: left;
	display: block;
}
.navbar-wrap ul li .sub-menu li a {
	padding: 9px 15px 9px 15px;
	line-height: 1.6;
    font-size: 16px;
	font-weight: 500;
	color: var(--text-main);
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar-wrap ul li .sub-menu li a::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--color-green);
    transition: .3s ease-in-out;
}
.navbar-wrap ul li .sub-menu > li.active > a,
.navbar-wrap ul li .sub-menu li a:hover {
    color: var(--color-green);
}
.navbar-wrap ul li .sub-menu > li.active > a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
    width: 10px;
}
.navbar-wrap ul li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.sticky-menu {
	position: fixed;
	left: 0;
	margin: auto;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 0px 0px 0px;
	background: var(--color-gradient);
	-webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	border-radius: 0;
}
.nav-appointment-btn{
	background: var(--color-green) !important;
	color: var(--text-white);
	font-weight: 600;
	border-radius: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 55px!important;
	padding: 10px 20px;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

.nav-appointment-btn:hover {
	background: var(--color-blue-dark) !important;
}
/*=============================
	06. Mobile Menu
===============================*/

.nav-outer .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	display: none;
	color: var(--text-white);
	margin-right: 30px;
	top: 15px;
}
.mobile-nav-link{
	display: none;
}
.nav-logo{
	padding:18px 15px 15px !important;
}
.nav-logo img {
	width: 180px;
}
.mobile-menu-title{
	background: var(--text-white);
}
.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 320px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	z-index: 99;
	border-radius: 0px;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
	-o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.mobile-menu .navbar-collapse {
	display: block !important;
}
.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
}
.mobile-menu-visible {
	overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
	-webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .navigation li.current>a:before {
	height: 100%;
}
.menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	opacity: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
}
.mobile-menu-visible .menu-backdrop {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--text-white);
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}
.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
}
.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 20px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}
.mobile-menu .navigation ul {
	padding: 0;
	margin: 0;
}
.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 13px 60px 13px 25px;
    font-size: 16px;
    font-weight: var(--body-font-weight);
    color: var(--tg-heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.mobile-menu .navigation li ul li > a {
	font-size: 16px;
	margin-left: 20px;
	text-transform: capitalize;
}
.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}
.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}
.mobile-menu .navigation li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li ul li> a{
  color: var(--text-muted);
}
.mobile-menu .navigation li ul li> a:before {
	content: '-';
	position: absolute;
	left: 8px;
  font-weight: 600;
  color: var(--color-blue);
	top: 30%;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #292b37;
	background: var(--tg-gray);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color: var(--tg-primary-color);
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
	display: none;
}
.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 10px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 12px 10px;
}
.mobile-menu .social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: relative;
	line-height: 32px;
	font-size: 20px;
	background: var(--color-brown);
	color: var(--text-white);
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	border-radius: 50px;
}
.mobile-menu .social-links li a:hover {
	border-color: var(--color-blue);
	background: var(--color-green);
	color: var(--text-main);
}
.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 27px;
	cursor: pointer;
	line-height: 1;
	color: var(--tg-secondary-color);
	display: none;
	margin-top: 6px;
	padding: 5px 10px;
	border: none;
}
.sm-display{
	display: none !important;
}
.lg-display{
		display: block !important;
}
@media (max-width: 991.98px) {
	.sticky-menu {
		padding: 10px 0px 8px !important;
	}
	.nav-appointment-btn{
		display: none;
	}
    .menu-area {
        padding: 12px 0;
    }
	.main-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    .menu-area .mobile-nav-toggler {
        display: block !important;
        margin-top: -6px !important;
    }
    .sticky-menu {
        padding: 10px 0px 0px;
    }
    .navbar-wrap ul li .sub-menu{
        max-height: inherit;
    }
	.mobile-nav-link{
        display: block !important;
        font-size: 10px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        color: var(--text-white);
    }
	.mobile-nav-link a{
        color: var(--color-white);
    }
	.mobile-nav-link img{
        padding-bottom: 2px;
    }
	.appointment-offcanvas{
        width: 100%;
    }
    .menu-outer{
        margin: 0px;
    }
    .angledown{
        font-size: 28px;
        font-weight: 600;
        padding-top: 2px;
        margin-right: 10px;
    }
	.dropdown-btn .angledown {
    	transition: transform 0.3s ease;
	}
	.menu-item-has-children.open > a {
		color: var(--color-blue) !important;
	}
	.menu-item-has-children.open .dropdown-btn .angledown {
		transform: rotate(180deg);
		color: var(--color-blue);
	}
	.menu-item-has-children .sub-menu li a:hover {
		color: var(--color-blue); /* or any color you want */
	}
	.menu-item-has-children .sub-menu li a:hover {
		color: var(--color-blue);
		transition: all 0.3s ease;
	}
	.sm-display{
		display: block !important;
	}
	.lg-display{
		display: none !important;
	}
}
/*=============================
	07. HOME PAGE
===============================*/

.section-space-top{
	padding-top: clamp(5rem, 10vw, 6.5rem);
}
.section-space-bottom{
	padding-bottom: clamp(5rem, 10vw, 7rem);
}
.home-about-right p{
	text-align: justify;
}
.home-about-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.home-about-images {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.home-about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.main-img {
  width: 100%;
}
.overlay-img {
  position: absolute;
  bottom:-10px;
  right: 0;
  width: 65%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}
.overlay-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .overlay-img {
    width: 60%;
    bottom: -10px;
    right: -10px;
  }
}
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); } /* move slightly up */
  100% { transform: translateY(0); }
}
.float-img {
  animation: floatUpDown 4s ease-in-out infinite;
}
.home-branches {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin-bottom: 32px;
}
.home-branch {
	flex: 1;
	min-width: 300px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-branch-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}
.home-branch-icon {
	width: 50px;
	height: 50px;
	padding: 13px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-branch-icon img {
	width: 30px;
	height: auto;
}
.home-branch-content h6,
.home-branch-content p {
	margin: 0;
}
.home-branch-content p {
	padding-top: 5px;
	font-size: 0.88rem;
	line-height: 1.6;
  text-align: left;
}
.home-branch-content h6 {
	font-size: 1rem;
}
.page-head{
	width: 40%;
	text-align: center;
	margin: auto;
	margin-bottom: 2px;
	font-weight: var(--heading-font-weight-extra);
}
@media (max-width: 992px) {
	.home-branches {
		flex-direction: column;
		align-items: stretch;
	}
	.page-head{
	width: 90%;
	}
}
.swiper-slide{
	padding: 30px 15px;
}
.home-doctor-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 30px 0px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 98%;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.doctor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.doctor-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0px 0px 5px;
}
.doctor-title,
.doctor-specialty {
  color: #666;
  font-size: 0.9rem;
  margin: 0px 0;
}
.doctor-branch-barka {
  display: inline-block;
  background: var(--color-green-bg);
  color: var(--color-green);
  font-size: 0.7rem;
  font-weight: var(--body-font-weight-bold);
  padding: 4px 10px;
  border-radius: 30px;
  margin: 10px 0;
}
.doctor-branch-sohar {
  display: inline-block;
  background: var(--color-brown-bg);
  color: var(--color-brown);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 30px;
  margin: 8px 0;
}
.doctor-link {
  display:block;
  color: var(--color-blue);
  font-weight: var(--heading-font-weight);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
  padding-top: 2px;
}
.doctor-link:hover {
  color: var(--color-green);
}
.home-wellness {
  background: linear-gradient(90deg, var(--color-blue-dark), var(--color-blue), var(--color-green));
  color: var(--text-white);
  padding: 50px 5% 0;
  overflow: visible;
}
.home-wellness-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 2rem;
}
.home-wellness .text {
  flex: 1 1 45%;
  max-width: 50%;
  margin-bottom: 3rem;
}
.home-wellness h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: var(--heading-font-weight);
  margin-bottom: 1rem;
}
.home-wellness p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-white);
}
.home-wellness .image {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.home-wellness .image img {
  width: 100%;
  max-width: 600px;
  position: relative;
  bottom: -70px; /* overlap effect */
}
@media (max-width: 992px) {
  .home-wellness {
      padding-top: 50px;
      text-align: center;
  }
  .home-wellness .text {
    max-width: 100%;
    margin-bottom: -50px;
  }
  .home-wellness-content {
    flex-direction: column;
  }

  .home-wellness .image {
    justify-content: center;
  }

  .home-wellness .image img {
    max-width: 100%;
  bottom: -50px;
  }
  .wellness-heading br{
    display: none !important;
  }
  .home-wellness a.btn {
      margin: .2rem auto;
      width: fit-content;
  }
  .home-wellness-content p br{
  display: none;
}
}
.home-speciality-main {
  background: linear-gradient(to bottom, #F0F7FF 0%, #FFFFFF 100%);
}
.home-speciality-list{
	margin-top: 20px;
}
.home-speciality-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-speciality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.home-speciality-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.home-speciality-card .icon img {
  width: 34px;
  height: 34px;
}
.home-speciality-card h5 {
	font-weight: var(--body-font-weight-bold);
  	margin-bottom: 0.5rem;
  	color: #000;
}
.home-speciality-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ================================ HOME SERVICE SECTION ========================================== */

.services-section {
  position: relative;
  display: grid;
  grid-template-columns: 33% 27% 46%;
  align-items: center;
  background: #f1f8fc;
  border-radius: 24px;
  padding: 1.8rem 3rem;
  padding-bottom: 0;
  gap: 0.5rem;
  overflow: visible;
  z-index: 1;
}
.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text .section-subtitle {
  color: #0077b6;
  font-weight: 600;
}

.service-text .section-title {
  font-weight: var(--heading-font-weight);
  color: #111;
  margin-bottom: .5rem;
  line-height: 1.2;
  justify-content: center;
}

.service-text .section-description {
  color: #555;
  max-width: 420px;
  line-height: 1.6;
}

/* ===== Center Column (Doctor Image) ===== */
.service-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  margin-bottom: -6rem; /* 👈 reduce bottom gap but keep overlap */
}
.doctor-image {
  transform: translateY(-25%);
  max-width: 320px;
  height: auto;
  object-fit: contain;
  z-index: 3;
}

/* ===== Right Column (Service List) ===== */
.service-list {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  left: -18%;
  z-index: 4;
}

.service-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.75rem .2rem;
  margin: 0;
  padding: 0;
  text-align: left;
}

.service-list li {
  font-size: 1rem;
  color: #222;
  padding-left: .5rem;
  position: relative;
  font-weight: var(--body-font-weight-bold);
}
.check-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  mask: url('../images/icons/tick.svg') no-repeat center;
  background-color: #0077b6;
  margin-right: 0.5rem;
}
@media (max-width: 1200px) {
    .services-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        display: block;
    }
	.service-text .section-title{
		padding: 0px 20px;
	}
    .service-text .section-description {
        color: #555;
        max-width: 100%;
        line-height: 1.6;
    }
    .service-list {
        background: #fff;
        border-radius: 16px;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        position: relative;
        left: 0;
        z-index: 4;
    }
    .doctor-image {
        transform: none;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin: 1.5rem auto;
    }
}
@media (max-width: 992px) {
	.service-list {
		margin-top: 1.5rem;
		width: 100%;
		padding: 1.5rem;
	}
}
@media (max-width: 767.98px) {
	.service-list ul {
		text-align: left;
		grid-template-columns: 1fr;
	}
}

/* ====== HOME NEWS SECTION ====== */

.news-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin-top: 22px;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.news-content {
	padding: 30px;
}

.news-title {
	font-weight: 600;
	color: #111;
	margin-bottom: 16px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-description {
	font-size: .95rem;
	color: var(--text-muted);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.contact-section {
      color: #fff;
	  padding: 40px 0px 0px;
}
.border-right{
	border-right: 1px solid rgba(255, 255, 255, 1) !important;
}
.contact-item {
	display: flex;
	align-items: center;
	justify-items: center;
	gap: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.contact-icon {
	width: 60px;
	height: 60px;
	background-color: #ffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-icon i {
	font-size: 28px;
	color: #2ca8c2;
}

.contact-details h5 {
	font-size: 1rem;
	margin-bottom: 6px;
	font-weight: var(--body-font-weight-bold);
}
.contact-details p {
	margin: 0;
	font-size: 1.1rem;
	font-weight: var(--body-font-weight-bold) !important;
	line-height: 1.6;
	color: var(--text-white);
}
.contact-details a{
	color: var(--text-white);
  	text-decoration: none;
  	transition: color 0.3s ease;
}
.contact-details a:hover {
  color:var(--color-green);
}

.contact-details span {
	font-weight: 400;
	opacity: 0.8;
	font-size: 0.95rem;
}

@media (max-width: 992px) {
.border-right {
	border-right: none !important;
	}
}
/*=============================
	07. FOOTER SECTION
===============================*/
.footer-main{
	background: #F2F7FD;
	padding-top: 50px;
}
.footer-about{
	padding-top: 30px;
	padding-bottom: 20px;
	text-align: left;
}
.footer-main .footer-about p{
	padding-top: 20px;
}
.footer-main .footer-about span{
	font-size: 14px;
}
.footer-main .footer-column{
	margin-top: 20px;
}
.footer-main .footer-column h5{
	color: var(--text-main);
	font-weight: var(--body-font-weight-bold);
}
.footer-main .footer-column h6{
	margin-bottom: 2px;
}
.footer-main .footer-column ul{
	list-style: none;
	padding: 0px 0px 0px;
}
.footer-main .footer-column ul li{
	padding-top: 6px;
	font-weight: var(--body-font-weight);
}
.footer-main .footer-column ul li a{
	color: var(--text-main);
}
.footer-main .footer-column ul li :hover{
	color: var(--color-green);
}
.footer-main .footer-column p a{
	color: var(--heading-font-color);
}
.footer-main .footer-link{
	text-align: right;
	padding-top: 10px;
}
.footer-main .footer-link ul{
	padding-top: 10px;
	list-style: none;
}
.footer-main .footer-link li{
	display: inline;
	padding-right: 10px;
	font-size: .9rem;
}
.footer-main .footer-link li a{
	color: var(--text-muted);
}
.footer-main .footer-link li :hover{
	color: var(--color-green);
}
.footer-main .border-bottom{
	border-bottom: 1px solid var(--text-main);
	padding-bottom: 20px;
}
.footer-border-top{
	border-top: 3px solid var(--color-blue-dark);
	padding-bottom: 20px;
}
.home-appointment-form select option {
	color: #333  !important;
	font-weight: 600 !important;
	padding: 10px !important;
	margin: 5px 0;
}
.footer-column .footer-location {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-location .footer-address {
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
.footer-column br{
	display: none;
}
.footer-about{
	padding-top: 0px;
	text-align: left;
}
.footer-main .footer-link ul{
	padding-top: 10px;
}
.footer-column .footer-location {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
  }
.footer-location .footer-address {
    width: 50%;
    padding-right: 20px;
  }
}
/*======================
	INSIDE BANNER
========================*/
.inside-banner {
  position: relative;
  width: 100%;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: background-position;
}
@media (max-width: 992px) {
  .inside-banner {
    background-size: 150%;
	height: 100px;
  }
}
.inside-banner-content {
  width: 100%;
  max-width: 100%;
  padding-left: 25px;
  text-align: left;
  margin: 0;
}
.inside-banner-content h1{
	font-size: clamp(1rem, 2vw + 1rem, 1.6rem) !important;
    color: var(--color-blue);
    margin-bottom: 5px;
	font-weight: var(--heading-font-weight);
}
.inside-banner-content h1 span{
	display: flex;
	font-size: 10px;
	font-weight: 400;
	color: var(--text-muted);
}
.breadcrumb{
    font-size: 14px;
}
.breadcrumb-item a{
    color: var(--color-blue);
    font-weight: 500;
}
.breadcrumb .active{
    color: var(--text-muted);
}

/*======================
	DOCTORS PAGE
========================*/
.doctors-nav {
    margin-top: 20px;
    text-align: left;
}

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

.doctors-nav li {
    display: inline-block;
    margin: 0 10px;
}

/* Base button style */
.doctors-nav .btn {
    padding: 10px 25px;
}
.doctor-profile {
  padding: 50px 0;
}
.doctor-profile .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.doctor-profile .doctor-img{
  text-align: right;
}
.doctor-profile .doctor-img img {
  max-width: 100%;
  border-radius: 10px;
}
.doctor-profile .doctor-info {
  padding: 20px 40px;
}
.doctor-profile .doctor-info h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.doctor-profile .doctor-info p {
  margin: 0 0 5px 0;
  color: #777;
}
.doctor-profile .doctor-description {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-top: 20px;
}
.doctor-profile .doctor-description strong {
  color: #1fa6d6;
}
/* Responsive */
@media (max-width: 992px) {
	.doctors-nav {
		text-align: center;
	}
	.doctor-profile .doctor-img{
		text-align: center;
	}
	.doctor-profile .row {
		flex-direction: column;
    	text-align: center;
	}
	.doctor-profile .doctor-info {
    	padding: 20px;
  	}
}

/* ===== SPECIALITY LIST AND DETAILS ===== */

.speciality-list-card {
  width: 98%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin: 20px auto;
  transition: transform 0.2s ease;
}
.speciality-list-card:hover {
  transform: translateY(-4px);
}
.speciality-list-img {
  width: 100%;
  height: 220px;
  max-height: 220px;
  object-fit: cover;
}
.speciality-list-content {
  padding: 20px 12px 30px;
}
.speciality-list-title {
  font-size: 1.2rem;
  font-weight: var(--body-font-weight-bold);
  margin: 10px 0 10px;
  color: #000;
}
.speciality-list-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.speciality-list-link {
  color: var(--color-blue);
  font-weight: 500;
  text-decoration: none;
}
.speciality-list-link:hover {
  color: var(--color-green);
}
.speciality-details{
    margin-top: 50px;
}
.speciality-details h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.speciality-details .speciality-list {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
}
.speciality-details .list-title {
    font-size: 18px;
    font-weight: var(--body-font-weight-bold);
    color: var(--color-blue);
	  margin-top: 20px;
    margin-bottom: 15px;
	  padding-left: 15px;
}
.speciality-details .speciality-details-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.speciality-details .speciality-details-sidebar li {
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 16px;
}
.speciality-details .speciality-details-sidebar li:hover {
    background: var(--color-blue-bg);
    color: var(--color-blue);
}
.speciality-details .speciality-details-sidebar li a {
  display: block;
  padding: 14px 25px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}
.speciality-details .speciality-img {
  width: 100%;
  border-radius: 10px;
  max-height: 390px;
  object-fit: cover;
  overflow: hidden;
}

.speciality-details-carousel{
	padding:25px;
}
.inside-page-header h2{
	margin-top: 30px;
	font-size: clamp(1rem, 2rem + 1vw, 1.8rem) !important;
    color: var(--color-blue);
    margin-bottom: 12px;
	font-weight: var(--heading-font-weight);
}
.inside-page-header h2 span{
	display: flex;
	font-size: 14px;
	font-weight: 400;
	color: var(--text-muted);
}

/* ===== TEXT EDITOR ===== */

.text-editor{
	all: unset;
	width: 100%;
    max-width: 100%;
    font-family: var(--body-font) !important;
}
.text-editor h1,
.text-editor h2{
	color: var(--color-blue);
	margin-top: 20px;
}
.text-editor h3,
.text-editor h4{
	color: var(--color-brown);
}
.text-editor h5 {
	color: var(--color-green);
}
.text-editor h1,
.text-editor h2,
.text-editor h3,
.text-editor h4,
.text-editor h5{
	margin-bottom: 5px;
}
.text-editor ul{
	list-style: none;
	padding: 0px 5px;
}
.text-editor li{
	padding-top: 12px;
}
.text-editor li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  mask: url('../images/icons/tick.svg') no-repeat center;
  background-color: #0077b6;
  margin-right: 0.5rem;
}

/* ===== WELLNESS PACKAGE ===== */
.health-checkup-packages-list{
  margin-top: 40px;
}
.health-checkup-packages-list .package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
  border-radius: 12px;
  margin-bottom: 20px;
}

.health-checkup-packages-list .package-card img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

.health-checkup-packages-list .package-card .pkg-list-title {
  flex: 1;
  font-weight:var(--body-font-weight-bold);
  color: #000;
  margin-left: 15px;
  font-size: 16px;
  line-height: 1.3;
}

.health-checkup-packages-list .package-card .call-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.health-checkup-packages-list .package-card .call-icon img {
  width: 35px;
  height: 35px;
  padding: 5px;
}
.checkup-details-contact{
  background: var(--color-blue);
  border-radius: 40px;
  text-align: center;
  padding:60px 30px;
}
.checkup-details-contact .checkup-details-text{
  display: inline-block;
  font-size: 30px;
  font-weight: var(--heading-font-weight);
  line-height: 1.3;
  color: var(--text-white);
  padding-bottom: 30px;
}
.checkup-details-contact img{
  text-align: center;
  width: 60px;
  padding-bottom: 20px;
}
.checkup-details-contact a{
  font-size: 1.2rem;
}
@media (max-width: 992px) {
  .health-checkup-packages-list .package-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
  }
  .checkup-details-contact{
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* ===== PROMOTIONS ===== */

.promotion {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.promotion img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  border-radius: 12px;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
.image-gallery-item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  border-radius: 12px;
}
.promotion a {
  display: block;
  overflow: hidden;
}
.promotion-item h3{
  color: var(--color-blue-dark);
  font-size: 20px;
  font-weight: var(--body-font-weight-bold);
  padding-top: 20px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promotion-item p{
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .9rem;
  color: var(--text-sub);
}
.promotion-item .promotion-btn{
  color: var(--color-blue);
  font-weight: var(--body-font-weight-bold);
}
.promotion-item .promotion-btn::after {
  content: "→"; /* external link arrow symbol */
  font-size: 1em;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
  padding-left: 6px;
}

.promotion-item .promotion-btn:hover {
  color: var(--color-green);
}
@media (max-width: 992px) {
  .promotion,
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== IMAGE AND VIDEO GALLERY ===== */
.gallery-types{
    margin-top: 40px;
}
.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 0px;
}
.gallery-thumb .thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-thumb {
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-thumb small,
.gallery-thumb h3{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}
.gallery-thumb small {
  top: 40%;
  font-size: 0.85rem;
  opacity: 0.9;
}
.gallery-thumb h3 {
  top: 45%;
  font-size: clamp(1rem, 2rem + 1vw, 1.2rem);
  font-weight: 600;
  padding-top: 8px;
}
.gallery-thumb .ytb-ico{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100px;
    height: 100px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}
.gallery-thumb:hover .thumb-img {
  transform: scale(1.05);
}
.gallery-thumb:hover .ytb-ico {
  opacity: 1;
  transform: scale(1.1);
}
.gallery-thumb:hover::after {
  background: rgba(0, 0, 0, 0.5);
}
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .video-popup-content {
    aspect-ratio: 9 / 16;
  }
}
.video-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-popup-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.insurance-partners {
  padding-top: 30px;
}
.insurance-logo-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 60px;
  width: 100%;
  align-items: center;
  justify-items: center;
}
.insurance-logo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  object-fit:contain;
  overflow: hidden;
}
@media (max-width: 992px) {
    .insurance-logo-list {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 20px;
    }
}
.news-list{
    margin-top: 20px;
}



.contact-main{
    margin-top: 60px;
    margin-bottom: 40px;
}
.contact-left {
  display: block;
  justify-content: start;
  padding: 10px 40px;
}
.contact-left h2 {
  font-weight: var(--heading-font-weight);
  margin-bottom: 5px;
  padding-top: 30px;
}
.contact-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;

}
.contact-left img{
    border-radius: 20px;
}
.location {
  margin-bottom: 40px;
}
.location h4 {
  font-size: 22px;
  font-weight: 600;
    margin-top: 20px;
  margin-bottom: 5px;
  padding-left: 10px;
  color: var(--color-blue);
}
.location address {
  font-size: 15px;
  color: #333;
  font-style: normal;
  margin-bottom: 10px;
  display: block;
  padding-left: 10px;
}
.map-box {
  background: #d9d9d9;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #000;
  border-radius: 20px;
  overflow: hidden;
}
.contact-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.contact-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2ca5e0;
    margin-bottom: 4px;
    padding-top: 20px;
    padding-left: 20px;
}
.contact-card p{
    font-size: 14px;
    padding-left: 20px;
    padding-bottom: 10px;
}
.contact-message{
    height: 150px !important;
}
/* Responsive */
@media (max-width: 992px) {
  .contact-main{
    margin-top: 40px;
  }
  .contact-left {
    padding: 10px 30px;
  }
  .contact-card {
    margin-bottom: 30px;
  }
  .contact-left h2 {
    padding-top: 10px;
  }
}
.director-img{
  margin-bottom: 20px;
}
.director-img img{
  display: block;
  justify-content: center;
  width: 100%;
  object-fit: cover;
}
.director-msg p{
  margin-bottom: 0px;
  padding: 10px 12px;
}
.director-msg span{
  display: block;
  padding: 0px 12px;
}
.director-msg .director-name{
  font-weight: var(--heading-font-weight);
  margin: 0px;
  padding: 0px 12px;
}
.vision-mission{
  margin: 20px 0px 80px;
}
.vision-mission .col-lg-6{
  margin-top: 40px;
}
.vision-mission-column{
  height: 100%;
  text-align: justify;
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-mission-column img{
  width: 80px;
  padding-bottom: 10px;
}
.vision-mission-column h4{
  color: var(--color-blue);
}
.about-branch-location{
  background: #d9d9d9;
  width: 100%;
  height: 350px;
  font-weight: 600;
  color: #000;
  border-radius: 20px;
  overflow: hidden;
}


.modal-header{
  border: none;
}
.modal-content {
    border-radius: 16px;
}
.modal-body > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 10px 0;
}
.call-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  padding: 20px 0px;
  margin-bottom: 0px;
}
.call-card:hover {
  transform: translateY(-2px);
}
.call-card h5 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  color: var(--color-blue);
}
.call-card img,
.call-card svg {
  width: 55px;
  height: 50px;
}
.call-popup .modal-sm{
    width: 20%;
    margin: auto;
  }
@media (max-width: 992px) {
  .call-popup .modal-sm{
    width: 70%;
    margin: auto;
  }
}
.promotion-in{
  margin-top: 40px;
  margin-bottom: 40px;
}
.sitemap-column{
  background: var(--color-blue-bg);
  text-align: center;
  font-size: 20px;
  padding: 20px 0px;
  font-weight: var(--body-font-weight-bold);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  margin-top: 30px;
}
.sitemap-column a{
  color: var(--text-main);
}
.sitemap-column:hover {
  transform: translateY(-2px);
  color: var(--color-green);
}

.no-link-pages{
text-align: center;
margin: auto;
}


.no-link-pages h2{
  font-size:120px;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:2px rgba(125,211,252,0.15);
  color:var(--color-blue);
  margin:0 0 8px 0;
  font-weight:800;
  letter-spacing:6px;
  text-align: center;
}


.no-link-pages h5{
  margin:0;
  font-size:18px;
  color:#94a3b8;
  font-weight:600;
  letter-spacing:0.6px
}
.no-link-pages p{
  text-align: center !important;
  margin-top:18px;
  color:var(--text-muted);
  font-size:16px;
  margin-bottom: 40px;
}

.input-error {
  border: 1px solid #F00 !important;
}
.contact-result, .app-result {
  margin-top: 15px;
  font-size: 12px;
}
.contact-result .alert, .app-result .alert {
  margin-bottom: 0px;
}