@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
  margin: 0px;
  padding: 0px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #5BC6D0;
  --secondary-color: #000;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 17px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 60px 0 60px;
  overflow: hidden;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 144px;
  line-height: 1;
}

.heading {
  font-size: 45px;
  line-height: 1;
}

.sub_heading {
  font-size: 34px;
}

.small_heading {
  font-size: 26px;
}

.title {
  font-size: 22px;
}
.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background:#fff;
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 3px 0;
}
.header.stricky-fixed .leftLogo img{
  width: 200px;
}
.header.stricky-fixed .rightMenu ul li a{
  color: #444;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.text_purple{
  color:var(--purple-color)
}
.bgPrimary {
  background: var(--primary-color) !important;
}
.bgTeritary{
   background:#f7f3e3!important ;  
}

.bgSecondary {
  background: var(--secondary-color) !important;
}
.bgPurple {
  background: var(--purple-color) !important;
}
.containerFull {
  max-width: 100
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  width: 100%;
  padding: 5px 0;
}

.leftLogo {
  width: 180px;
}
.leftLogo img {
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btnTheme {
  background: transparent;
  display: inline-block;
  padding: 15px 35px;
  border: none;
  transition: all 0.3s ease-in-out;
  -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;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-weight: 600;
}
.bgGradient{
  background: linear-gradient(45deg, #1f6e75, var(--primary-color)) !important;
}
.btnTheme:after{
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -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;
}
.btnTheme:hover:after{
  width: 100%;
  right: auto;
  left: 0;
}
.hoverWhite:after{
  background: #fff;
}
.hoverWhite:hover{
  color: #000 !important;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  display: inline-block;
  padding: 8px 15px;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.rightMenu ul li a i{
  font-size: 12px; 
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li a:hover{
  color: var(--primary-color);
}
.rightMenu ul li ul{
  position: absolute;
  top:60px;
  left: 0;
  padding:10px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  width: 250px;
  z-index: 9;
}
.rightMenu ul li ul li a{
  padding: 8px 15px;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  display: block;
  width: 100%;
}
.rightMenu ul li:hover ul{
  visibility: visible;
  opacity: 1;
  top:40px;
;
}
.whatsappBg{
  background: #25D366;
}
.whatsAppChat{
  position: fixed;
  bottom: 1px;
  right: 0px;
  z-index: 99;
}
/*.whatsAppChat a{*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  background: #fff;*/
/*  border-radius: 5px;*/
/*  -webkit-border-radius: 5px;*/
/*  -moz-border-radius: 5px;*/
/*  -ms-border-radius: 5px;*/
/*  -o-border-radius: 5px;*/
/*  padding-right: 10px;*/
/*  height: 65px;*/
/*  border:1px solid #e0e0e0;*/
/*  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;*/
/*}*/
.whatsAppChat img{
  width: 80px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  background-color: var(--primary-color);
  z-index: 999;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 75px;
}
/*.animationRotate{*/
/*  animation: rotate 10s linear infinite;*/
/*  -webkit-animation: rotate 10s linear infinite;*/
/*}*/
/*@keyframes rotate{*/
/*  from{*/
/*    transform: rotate(-360deg);*/
/*    -webkit-transform: rotate(-360deg);*/
/*    -moz-transform: rotate(-360deg);*/
/*    -ms-transform: rotate(-360deg);*/
/*    -o-transform: rotate(-360deg);*/
/*  }*/
/*}*/
/*.animationRotateReverse{*/
/*  animation: rotate2 10s linear infinite;*/
/*  -webkit-animation: rotate2 10s linear infinite;*/
/*}*/
/*@keyframes rotate2{*/
/*  from{*/
/*    transform: rotate(360deg);*/
/*    -webkit-transform: rotate(360deg);*/
/*    -moz-transform: rotate(360deg);*/
/*    -ms-transform: rotate(360deg);*/
/*    -o-transform: rotate(360deg);*/
/*}*/
/*}*/
.leftHeader ul{
  display: flex;
  align-items: center;
}
.leftHeader ul li a{
  display: inline-block;
  padding: 8px 15px;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}
.leftHeader ul li a i{
  color: var(--primary-color);
}
.rightHeader ul li a{
  display: inline-block;
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: 600;
  border:1px solid #e0e0e0;
}
.rightHeader ul li a i{
  color: var(--primary-color);
}
.heroSection{
  position: relative;
  background: #DDF0FF;
  min-height: calc(100vh - 90px);
}
.mainHeader{
  margin-top: 5px;
  background:#fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 10px 15px;
}
.mainHero{
  padding: 1rem 0 0rem;
}
.ps-lg-6 {
  padding-left: 7.8rem;
}
.textSmall {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 5rem;
}
.smallIcon {
  position: relative;
  z-index: 1;
}
.smallIcon:after {
  content: "";
  position: absolute;
  bottom: 103px;
  left: 60px;
  width: 180px;
  height: 180px;
  background: url(../images/flower-left.png) no-repeat;
  background-size: cover;
  border-radius: 50%;
  /*animation: rotate 10s linear infinite;*/
  /*-webkit-animation: rotate 10s linear infinite;*/
}
.mainHero{
  position: relative;
  z-index: 1;
}
.mainHero:after{
  content: '';
  position: absolute;
  top: 55%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 100%;

  background: url(../images/bg/plant.png) no-repeat;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: -1;
}
.textLight{
  color: #333;
}
.imgRightHero img{
  max-width: 100%;
  height: 580px;
  border-radius: 250px;
  -webkit-border-radius: 250px;
  -moz-border-radius: 250px;
  -ms-border-radius: 250px;
  -o-border-radius: 250px;
  object-fit: cover;

}
.transformX{
  transform: translateX(150px);
  -webkit-transform: translateX(150px);
  -moz-transform: translateX(150px);
  -ms-transform: translateX(150px);
  -o-transform: translateX(150px);
}
.iconBtn{
  width: 180px;
  height: 180px;
  position: absolute;
  left: -40px;
  bottom: 50px;
  background: url(../images/icon/appointment.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconBtn svg{
  width: 40px;
  fill: #fff;
}
.stricky-fixed .mainHeader{
  box-shadow: none !important;
  padding: 10px 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin: 0;
}
.stricky-fixed .topHeader{
  display: none;
}
.rightAbout{
  height: 100%;
}
.rightAbout img{
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  height: 100%;
  object-fit: cover;
}
.googleReview{
  width: 300px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 15px;
  background: #ffffff;
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.iconGoogle{
  width: 100px;
  margin: 0 auto;
}
.iconGoogle img{
  max-width: 100%;
}
.rightAbout{
  position: relative;
}
.bgLight{
  background: #F7F3E3;
}
.itemServices{
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 35px;
}
.iconServices{
  width:80px;
}
.iconServices img{
  max-width: 100%;
}
.itemServices{
  display: flex;
  column-gap:20px;
  height: 100%;
}
.itemServices p{
  font-size: 16px;
}
.contentServices{
  width: calc(100% - 80px);
}
.bgAction{
  background: url(../images/bg/bg-action.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.hoverEffect{
  transition: all 0.3s ease-in-out;
  -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;
}
.hoverEffect:hover{
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.hoverTextWhite:hover{
  color:#fff !important;
}
.iconSvg{
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  padding: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
}
.iconSvg svg{
  transform: rotate(-45deg);
  fill: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.itemStep:hover .iconSvg{
  background-color: var(--secondary-color);
}
.itemStep:hover h4{
  color: var(--primary-color) !important;
}

.bgBlueLight{
  background: #DDF0FF;
}
.reveal img{
  max-width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.our-testimonials .swiper-wrapper{
	cursor: none;
}

.testimonial-item .testimonial-quote-image{
	margin-bottom: 30px;
}

.testimonial-item .testimonial-quote-image img{
	max-width: 50px;
}

.testimonial-item .testimonial-content{
	margin-bottom: 30px;
}

.testimonial-content p{
	color: #333;
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.testimonial-item .testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 10px;
}

.testimonial-body .author-image img{
	max-width: 64px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 74px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial-body .author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn{
	display: flex;
	align-items: center;
	justify-content: left;
	margin-top: 20px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	border-radius: 6px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 20px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background-color: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat center center;
  background-size: 12px auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(225deg);
}
.testimonial-rating-box{
	position: absolute;
	background: var(--secondary-color);
	border: 6px solid #fff;
	border-radius: 30px;
	right: 20px;
	bottom: -40px;
	padding: 30px;
	max-width: 400px;
}

.rating-counter-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0b142;
}

.rating-counter-item .rating-counter-number{
	min-width: 80px;
	margin-right: 20px;
  font-weight: 700;
}

.rating-counter-item .rating-counter-number h3{
	color: #fff;
	font-size: 44px;
}

.rating-counter-item .rating-counter-content{
	width: calc(100% - 100px);
}

.rating-counter-item .rating-counter-content p{
	color:#fff;
  font-weight: 500;
	margin: 0;
}
.testimonial-image{
  position: relative;
}

.service-rating ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.service-rating ul li{
	color: var(--white-color);
	text-transform: capitalize;
	margin-right: 20px;
}

.service-rating ul li:last-child{
	margin-right: 0;
}

.service-rating ul li i{
    font-size: 14px;
    color: var(--primary-color);
}
.tag{
  background:var(--primary-color);
  color: #fff!important;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 5px 15px;
}
.tag p{
  color: #fff!important;

}
.blogItem h3{
  color:#888;
}
.blogItem ul li{
  color:#666;
  font-size: 14px;
  font-weight: 600;
}
.blogItem:hover h3{
  color: var(--secondary-color);
}
.blogImg img{
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.blogItem{
  border:1px solid #333;
  padding:5px;
  border-radius: 10px;
}
.footer{
  background: #222;
  padding: 40px 0;
}
.telPhone{
  font-size: 20px;
  color: #fff;
  display: inline-block;
  padding: 10px 0px;
  margin-top: 10px;
}
.telPhone i {
  color: var(--primary-color) !important;
  margin-right: 10px;
}
.footerItems ul {
  margin-top: 20px;
}
.footerItems ul li a{
  color: #fff;
  font-size: 16px;
  display: inline-block;
  padding: 8px 0px;
}
.footerItems ul li a:hover{
  color: var(--primary-color);
}
.footerItems ul li a i{
   color: var(--primary-color);
}
.socialFooter ul {
   list-style: none;
   padding: 0;
   margin: 20px 0 0;
}

.socialFooter ul li a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   transition: 0.3s ease;
}

.socialFooter ul li a:hover {
   background: #fff;
   color: #111;
}
.innerPage {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  z-index: 1;
}

.innerPage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.innerText{
  position: absolute;
  top: 50%;
  left: 0;
  color:#000;
  width: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding-top: 90px;
}
.aboutRight{
  overflow: hidden;
  border-radius: 20px; 
}

.aboutRight img{
  max-width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.aboutRight:hover img{
  transform: scale(1.08);
}
.aboutRight2 img{
  max-width: 100%;
  height:500px;
}


.centerImg img{
  max-width: 100%;
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.itemLeftSe svg{
  fill: var(--primary-color);
  width: 34px;
}
.aboutRight.smallIcon::after{
  top: -30px;
  bottom: auto;
  left: -80px;
}
.leftTab ul{
  margin-top: 30px;
}
.leftTab ul li{
  padding: 20px 30px;
  font-weight: 600;
  border-radius: 40px 0px 0 40px;
  -webkit-border-radius: 40px 0px 0 40px;
  -moz-border-radius: 40px 0px 0 40px;
  -ms-border-radius: 40px 0px 0 40px;
  -o-border-radius: 40px 0px 0 40px;
  cursor: pointer;
}
.leftTab ul li.active{
  background: #fff;
  color: var(--primary-color);
}
.rightTab{
  background: #fff;
  padding: 40px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.rightTab p{
  font-size: 14px;
}
.stickyItem{
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  z-index: 9;
}
.overflowInherit{
  overflow: inherit;
}
.tabContent {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.tabContent.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.blogSection .blogImg img{
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.mapWrapper{
   overflow: hidden;
   border-radius: 15px;
}

.mapWrapper iframe{
   display: block;
   border-radius: 15px;
}
.contactForm1 {
  background: var(--primary-color);
  border-radius: 12px;
  padding: 35px;

}
.contactItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.iconBox {
  width: 50px;
  height: 50px;
 background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
    flex-shrink: 0;
}
.iconBox:hover {
 background: var(--secondary-color);
}
.itemForm label {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.itemForm input,
.itemForm textarea {
  width: 100%;
  padding: 15px;
  border: none;
border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
     background-color: #f5f5f5; 
  transition: all 0.3s ease-in-out;

}
.itemForm #message {
    background-color: #f5f5f5; 
    color: #000; 
}
.itemForm input {
  margin: 0 !important;
  color: #222;
}

.itemForm {
  margin-bottom: 20px;
}

.itemForm textarea {
  height: 120px;
}
.quote-icon img {
  width: 30px;
  margin-bottom: 10px;
}
.video-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.video-box:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s;
}
.disclaimerBox {
  padding: 4%;
  border-radius: 12px;
}
.disclaimerList li::marker {
  color: var(--primary-color);
  font-weight: 700;
}

.disclaimerList li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
  font-size: 18px;
}

.disclaimerHighlight {
  background: #fff3cd;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.privacyBox {

  padding: 40px;
  border-radius: 12px;

}

.privacyIntro {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #444;
}

.privacyCard {
  background: #f8faff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
}

.left-panel {
  background: url("../images/about-right.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  color: white;
  min-height: 520px;
}

.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.left-content {
  position: relative;
  z-index: 2;
  border-left: 10px;
  padding: 50px;
}
.login-card {
  border-radius: 10px;
  overflow: hidden;
}

.right-panel {
  position: relative;
  background: #f1f1f1;
}
.custom-font {
  font-size: 17px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
}

.google {
  background: #db4437;
}
.facebook {
  background: #3b5998;
}

.custom-padding-top {
  padding-top: 200px;
}

.form-control {
  background-color: #fff !important;
  border: 1px solid #ddd;
  color: #333;
  height: 55px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.form-control:focus {
  background-color: #fff !important;
  border-color: #59b3b7;
  box-shadow: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #333 !important;
}
.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
}
.faq{
    background:#f7f3e3;
}
.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--primary-color);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.why-ref-box {
   position: relative;
   max-width: 100%;
   height: 650px;
   margin: 0 auto;
   overflow: visible;
}

.why-purple-circle {
   position: absolute;
   left: 70px;
   top: 190px;
   width: 260px;
   height: 260px;
   border-radius: 50%;
   background: var(--primary-color);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   color: #fff;
   z-index: 3;
   box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.why-purple-circle span {
   display: block;
   font-size: 40px;
   line-height: 1.35;
   font-weight: 800;
}

.why-grey-circle {
   position: absolute;
   left: 190px;
   top: 50px;
   width: 550px;
   height: 550px;
   border-radius: 50%;
   background: #eeeeee;
   z-index: 1;
}

.why-grey-content {
   position: absolute;
   left: 190px;
   top: 180px;
   width: 300px;
}

.why-grey-content .heading {
   line-height: 1.18;
   margin: 0;
}

.why-ref-item {
   position: absolute;
   display: flex;
   align-items: center;
   z-index: 5;
}

.item-1 {
   top: 25px;
   left: 590px;
}

.item-2 {
   top: 160px;
   left: 660px;
}

.item-3 {
   top: 275px;
   left: 695px;
}

.item-5 {
   top: 400px;
   left: 660px;
}

.item-4 {
   top: 525px;
   left: 545px;
}

.why-ref-icon {
   width: 90px;
   height: 90px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 38px;
   box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
   flex-shrink: 0;
   position: relative;
   z-index: 6;
}

.icon-purple {
   background: linear-gradient(135deg, #b39af2 0%, #5a31cf 100%);
}

.icon-blue {
   background: linear-gradient(135deg, #8fa2ff 0%, #4266f2 100%);
}

.icon-cyan {
   background: linear-gradient(135deg, #28d4df 0%, #08a4b0 100%);
}

.icon-green {
   background: linear-gradient(135deg, #6dd56a 0%, #159246 100%);
}

.icon-grey {
   background: linear-gradient(135deg, #aaaaaa 0%, #707070 100%);
}

.why-ref-line {
   width: 80px;
   height: 1px;
   background: #bcbcbc;
   margin: 0 15px 0 15px;
   flex-shrink: 0;
}

.why-ref-text {
   width: 610px;
}


.chronic-skin-section {
   padding: 80px 0;
   background: #fff;
   position: relative;
   overflow: hidden;
}

.chronic-skin-section::before {
   content: "";
   position: absolute;
   width: 420px;
   height: 420px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.035);
   top: -170px;
   right: -120px;
   z-index: 0;
}

.chronic-skin-section::after {
   content: "";
   position: absolute;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.025);
   bottom: -120px;
   left: -100px;
   z-index: 0;
}

.chronic-skin-section .containerFull {
   position: relative;
   z-index: 1;
}

.skin-cause-card {
   position: relative;
   height: 100%;
   background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.08);
   border-radius: 24px;
   padding: 34px 30px 30px;
   overflow: hidden;
   transition: 0.3s ease;
}

.skin-cause-card:hover {
   transform: translateY(-6px);
}

.skin-cause-number {
   position: absolute;
   right: 24px;
   top: 18px;
   font-size: 58px;
   line-height: 1;
   font-weight: 800;
   color: rgba(0, 0, 0, 0.06);
   pointer-events: none;
}

.skin-cause-icon {
   width: 72px;
   height: 72px;
   border-radius: 50%;
   background: var(--primary-color);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   margin-bottom: 22px;
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.skin-cause-content h3 span {
   display: inline;
   color: var(--primary-color);
}

.skin-cause-content p {
   margin: 0;
   color: #666;
   line-height: 1.65;
}

.skin-cause-content ul {
   margin: 16px 0 0;
   padding-left: 0;
   list-style: none;
}

.skin-cause-content ul li {
   position: relative;
   color: #222;
   padding-left: 24px;
   margin-bottom: 10px;
}

.skin-cause-content ul li:last-child {
   margin-bottom: 0;
}

.skin-cause-content ul li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 9px;
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: var(--primary-color);
}

.root-treatment-section {

   overflow: hidden;
}


.root-approach-card {
   position: relative;
   background: #fff;
   border-radius: 28px;
   padding: 30px;
   border: 1px solid rgba(0, 0, 0, 0.08);
   box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   height:100%;
   transition: 0.3s ease;
}

.root-approach-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 28px 70px rgba(0, 0, 0, 0.13);
}

.root-approach-card::before {
   content: "";
   position: absolute;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.06);
   right: -70px;
   top: -70px;
}

.featured-card {
   background: var(--primary-color);
   color: #fff;
}

.featured-card:hover {
   transform: translateY(-26px);
}

.root-card-top {
   position: relative;
   z-index: 1;
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 24px;
}

.root-card-number {
   font-size: 58px;
   line-height: 1;
   font-weight: 800;
   color: rgba(0, 0, 0, 0.08);
}

.featured-card .root-card-number {
   color: rgba(255, 255, 255, 0.22);
}

.root-card-icon {
   width: 74px;
   height: 74px;
   border-radius: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--primary-color);
   color: #fff;
   font-size: 30px;
   box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.featured-card .root-card-icon {
   background: #fff;
   color: var(--primary-color);
}

.root-approach-card h3 {
   position: relative;
   z-index: 1;
   margin: 0 0 16px;
}

.featured-card h3 {
   color: #fff;
}

.root-approach-card h3 span {
   display: block;
   color: var(--primary-color);
   margin-top: 4px;
}

.featured-card h3 span {
   color: rgba(255, 255, 255, 0.9);
}

.root-approach-card p {
   position: relative;
   z-index: 1;
   color: #666;
   margin: 0;
}

.featured-card p {
   color: rgba(255, 255, 255, 0.92);
}

.root-example-box {
   position: relative;
   z-index: 1;
   margin-top: 20px;
   padding: 18px;
   border-radius: 18px;
   background: rgba(0, 0, 0, 0.045);
   color: #555;
   line-height: 1.6;
}

.root-example-box strong {
   color: var(--primary-color);
}

.journey-timeline {
   position: relative;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
}

.journey-timeline::before {
   content: "";
   position: absolute;
   left: 14%;
   right: 14%;
   top: 17px;
   height: 2px;
   background: rgba(0, 0, 0, 0.12);
}

.journey-step {
   position: relative;
   z-index: 1;
   text-align: center;
}

.journey-dot {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--primary-color);
   border: 7px solid #fff;
   box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.15);
   margin: 0 auto 22px;
}

.journey-duration {
   display: inline-block;
   padding: 7px 15px;
   border-radius: 50px;
   background: var(--primary-color);
   color: #fff;
   font-weight: 700;
   font-size: 14px;
   margin-bottom: 16px;
}
.remedy-card {
   position: relative;
   height: 100%;
 border-radius: 26px;
   padding: 30px;
   overflow: hidden;
   transition: 0.3s ease;
}
.remedy-card:hover {
   transform: translateY(-6px);
}

.remedy-info {
   position: relative;
   z-index: 1;
}

.remedy-info ul {
   margin: 0;
   padding: 0;
   list-style: none;
}

.remedy-info ul li {
   position: relative;
   color: #222;
   margin-bottom: 14px;
   padding-left: 24px;
}

.remedy-info ul li:last-child {
   margin-bottom: 0;
}

.remedy-info ul li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--primary-color);
}

.remedy-info ul li strong {
   color: #222;
   font-weight: 800;
}

.remedy-featured .remedy-info ul li,
.remedy-featured .remedy-info ul li strong {
   color: rgba(255, 255, 255, 0.94);
}

.remedy-featured .remedy-info ul li::before {
   background: #fff;
}
.eczema-remedy-list {
   margin: 0;
   padding: 0;
   list-style: none;
}

.eczema-remedy-list li {
   position: relative;
   padding-left: 26px;
   margin-bottom: 16px;
   color: #666;
   line-height: 1.65;
}

.eczema-remedy-list li:last-child {
   margin-bottom: 0;
}

.eczema-remedy-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: var(--primary-color);
}

.eczema-remedy-list li strong {
   color: #222;
   font-weight: 800;
}

.eczema-highlight-box {
   background: #f5f5f5;
   padding: 20px;
   border-left: 4px solid var(--primary-color);
   border-radius: 22px;
   color: #000;
}
.acne-alt-section {
   padding: 80px 0;
   background: #fff;
   overflow: hidden;
}

.acne-alt-left {
   height: 100%;
   background: #f8f8f8;
   border-radius: 32px;
   padding: 38px 34px;
   border: 1px solid rgba(0, 0, 0, 0.07);
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.acne-alt-list {
   position: relative;
   padding-left: 18px;
}

.acne-alt-list::before {
   content: "";
   position: absolute;
   left: 38px;
   top: 10px;
   bottom: 10px;
   width: 2px;
   background: rgba(0, 0, 0, 0.12);
}

.acne-alt-item {
   position: relative;
   display: flex;
   gap: 22px;
   margin-bottom: 26px;
}

.acne-alt-item:last-child {
   margin-bottom: 0;
}

.acne-alt-count {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: var(--primary-color);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 800;
   font-size: 14px;
   flex: 0 0 42px;
   position: relative;
   z-index: 2;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.acne-alt-content {
   background: #fff;
   border-radius: 22px;
   padding: 22px 24px;
   border: 1px solid rgba(0, 0, 0, 0.06);
   flex: 1;
   transition: 0.3s ease;
}

.acne-alt-content:hover {
   transform: translateX(6px);
   box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.acne-alt-content h4 {
   font-size: 21px;
   line-height: 1.3;
   font-weight: 800;
   color: #222;
   margin: 0 0 8px;
}

.acne-alt-content h4 span {
   display: block;
   color: var(--primary-color);
   margin-top: 3px;
}

.acne-alt-content p {
   color: #666;
   line-height: 1.6;
   margin: 0;
}

.acne-alt-result {
   position: relative;
   height: 100%;
   min-height: 480px;
   border-radius: 34px;
   padding: 42px 34px;
   background: var(--primary-color);
   color: #fff;
   display: flex;
   flex-direction: column;
   justify-content: center;
   overflow: hidden;
   box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.acne-alt-result::before {
   content: "";
   position: absolute;
   width: 260px;
   height: 260px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   right: -90px;
   top: -90px;
}

.acne-alt-result::after {
   content: "";
   position: absolute;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   left: -70px;
   bottom: -70px;
}

.acne-alt-result-icon {
   position: relative;
   z-index: 1;
   width: 76px;
   height: 76px;
   border-radius: 24px;
   background: #fff;
   color: var(--primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 32px;
   margin-bottom: 26px;
}

.acne-alt-result h3 {
   position: relative;
   z-index: 1;
   color: #fff;
   margin: 0 0 16px;
}

.acne-alt-result p {
   position: relative;
   z-index: 1;
   color: rgba(255, 255, 255, 0.94);
   line-height: 1.75;
   margin: 0;
   font-size: 18px;
}
.bgGrey{
    background:#f1f1f1;
}
.protocolWrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.protocolCard{
    position:relative;
    background:#f1f1f1;
    border-radius:24px;
    padding:35px;
    overflow:hidden;
    transition:0.4s ease;
    border:1px solid #eaeaea;
}

.protocolCard:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.protocolNumber{
    position:absolute;
    top:20px;
    right:25px;
    font-size:70px;
    font-weight:700;
    opacity:0.08;
    line-height:1;
}

.protocolContent ul{
    padding-left:10px;
    margin-top:15px;
}

.protocolContent ul li{
    position:relative;
    list-style:none;
    padding-left:18px;
    margin-bottom:10px;
    color:#555;
}

.protocolContent ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary-color);
}

.cardBlue{
    border-left:6px solid #3b82f6;
}

.cardPurple{
    border-left:6px solid #8b5cf6;
}

.cardGreen{
    border-left:6px solid #84cc16;
}

.cardCyan{
    border-left:6px solid #06b6d4;
}

.cardOrange{
    border-left:6px solid #f97316;
}

.dandruff-remedy-table {
   font-size: 16px;
   line-height: 1.65;
}

.dandruff-remedy-table th {
   font-size: 17px;
   font-weight: 700;
   padding: 18px 20px;
   white-space: nowrap;
}

.dandruff-remedy-table td {
   padding: 18px 20px;
   vertical-align: top;
}

.dandruff-remedy-table td strong {
   font-size: 18px;
   font-weight: 700;
}
.custom-pill-badge {
   font-size: 15px;
   font-weight: 700;
   line-height: 1.25;

}
.pcos-points {
   list-style: disc;
   padding-left: 1.5rem;
}
.servicesMenu ul{
  position: absolute;
  top:60px;
  left: 0;
  padding:20px !important;
  background: #fff;
  border-radius: 15px;

  display: flex !important;
  flex-wrap: wrap;
  gap: 15px;

  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;

  width: 550px !important;
  z-index: 99;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.servicesMenu ul li{
  width: calc(50% - 8px);
}

.servicesMenu ul li a{
  padding: 8px 5px !important;
  border: none !important;
  border-radius: 0 !important;
  display: block;
  width: 100%;
  font-size: 16px !important;
  font-weight: 600;
  background: transparent !important;
  color: #222 !important;
}

.servicesMenu ul li a:hover{
  color: var(--primary-color) !important;
  background: transparent !important;
}
.servicesMenu:hover ul{
  visibility: visible;
  opacity: 1;
  top:40px;
}


.mechanism-card {
   border: 1px solid rgba(0,0,0,0.06);
   background:#f1f1f1;
   transition: 0.3s ease;
}

.mechanism-card:hover {
   transform: translateY(-6px);
}

.mechanism-count {
   width: 54px;
   height: 54px;
   border-radius: 50%;
   background: var(--primary-color);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 18px;
}

.not-enough-card ul {
   padding-left: 20px;
   list-style-type: disc;
}

.not-enough-card li {
   margin-bottom: 10px;
   color: white;
}

.not-enough-card li::marker {
   color: white;
}
.dot-list {
   list-style-type: disc;
   padding-left: 20px;
}

.dot-list li {
   display: list-item;
   margin-bottom: 10px;
}
.rightMenu > ul > li.servicesMenu.active > a,
.rightMenu > ul > li.homeopathyMenu.active > a {
  color: var(--primary-color) !important;
}

.header.stricky-fixed .rightMenu > ul > li.servicesMenu.active > a,
.header.stricky-fixed .rightMenu > ul > li.homeopathyMenu.active > a {
  color: var(--primary-color) !important;
}
.optional {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
}
.whiteHover:after{
   background: #fff;
}

.whiteHover:hover{
   color:#333 !important;
}

    .stat-box {
       height:100%;
      background:#f7f3e3;
       padding:20px;
        border: 1px solid #cfe2e1;
    }

    .stat-icon {
        color: var(--primary-color);
        font-size: 28px;
       
    }
    .stat-box.first {
    border-radius: 10px 0 0 10px;
}


.stat-box.last {
    border-radius: 0 10px 10px 0;
}
.why-us-bg{
    background:#ddf0ff;
}

.reason-card {
    position: relative;
    height: 100%;
    padding: 20px;
    border-radius: 18px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-card:hover {
    transform: translateY(-6px);
}

.reason-icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 30px;
}
.serviceLink {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.serviceLink:hover,
.serviceLink:focus {
    color: inherit;
    text-decoration: none;
}

.hero-image {
        width: 100%;
        height: 570px;
        object-fit: cover;
        border-radius: 58px 0 58px 0;
    }
.info-card {
    position: relative;
    height: 100%;
    padding: 38px 30px;
  border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
}
.info-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color:#fff;
    border-radius: 14px;
    font-size: 27px;
}
.author-letter-circle {
   width: 62px;
   height: 62px;
   margin: 0;
   border-radius: 50%;
   background: #F7F3E3;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid #ffffff;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
   transition: all 0.3s ease;
}

.author-letter-circle span {
   font-size: 28px;
   line-height: 1;
   font-weight: 600;
   color: #333;
   text-transform: uppercase;
}
.benefit-icon i {
   font-size: 28px;
}

.visionMissionBox {
   background: #ffffff;
   padding: 30px;
   border-radius: 24px;
   border: 1px solid #ccc;
   box-shadow: 0 10px 35px rgba(35, 69, 43, 0.06);
   transition: all 0.3s ease;
}

.visionMissionBox:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 48px rgba(35, 69, 43, 0.1);
}

.visionMissionIcon { width: 78px; height: 78px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.visionMissionIcon i {
   font-size: 36px;
color:#fff;
}

.homeopathyWorksBox {
   display: flex;
   align-items: flex-start;
   gap: 24px;
   padding: 32px 28px;
   background-color: #ffffff;
   border: 1px solid #e5ede6;
   border-radius: 22px;
   box-shadow: 0 10px 35px rgba(35, 69, 43, 0.06);
   transition: all 0.3s ease;
}

.homeopathyWorksBox:hover {
   transform: translateY(-4px);
   box-shadow: 0 18px 45px rgba(35, 69, 43, 0.1);
}

.homeopathyWorksIcon {
   width: 68px;
   height: 68px;
   min-width: 68px;
   display: flex;
   background:var(--primary-color);
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

.homeopathyWorksIcon i {
   font-size: 31px;
   color:#fff;
   line-height: 1;
}
.diseaseCard {
   padding: 32px 28px;
   background-color: #ffffff;
   border: 1px solid #e5ede6;
   border-radius: 22px;
   box-shadow: 0 10px 35px rgba(35, 69, 43, 0.05);
   transition: all 0.3s ease;
}

.diseaseCard:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 46px rgba(35, 69, 43, 0.1);
}

.diseaseIcon {
   width: 66px;
   height: 66px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

.diseaseIcon i {
   font-size: 30px;
   line-height: 1;
}

.skinIcon {
   background-color: #fce4ec;
   color: #d63384;
}

.lifestyleIcon {
   background-color: #d1e7dd;
   color: #198754;
}

.endocrineIcon {
   background-color: #cff4fc;
   color: #0aa2c0;
}

.femaleHealthIcon {
   background-color: #f8d7da;
   color: #dc3545;
}

.jointIcon {
   background-color: #fff3cd;
   color: #b78103;
}

.digestiveIcon {
   background-color: #e2e3ff;
   color: #5147c7;
}

.mentalHealthIcon {
   background-color: #e7dcff;
   color: #6f42c1;
}

.paediatricIcon {
   background-color: #dff3ea;
   color: #23824d;
}

.renalIcon {
   background-color: #d9f0ff;
   color: #087ea4;
}

.whyTrustCard {
   padding: 38px 28px;
   background-color: #ffffff;
   border: 1px solid #e5ede6;
   border-radius: 22px;
   box-shadow: 0 10px 35px rgba(35, 69, 43, 0.06);
   transition: all 0.3s ease;
}

.whyTrustCard:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 46px rgba(35, 69, 43, 0.1);
}

.whyTrustIcon {
   width: 72px;
   height: 72px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background:var(--primary-color);
   color:#fff;
}

.whyTrustIcon i {
   font-size: 33px;
   line-height: 1;
}
.testimonial-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  flex: 1;
}

.testimonial-body {
  margin-top: auto;
  padding-top: 24px;
}
.clinicInfoSection {
   position: relative;
}

.clinicInfoItem {
   display: flex;
   align-items: flex-start;
   gap: 15px;
   padding: 22px;
   background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.08);
   border-radius: 20px;
   box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.clinicInfoItem:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.clinicInfoIcon {
   width: 52px;
   height: 52px;
   min-width: 52px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 16px;
   background: var(--primary-color);
   color: #fff;
   font-size: 22px;
}

.clinicInfoItem h3 {
   font-size: 18px;
   font-weight: 700;
   color: #222;
   margin-bottom: 6px;
}

.clinicInfoItem p,
.clinicInfoItem a {
   margin: 0;
   color: #555;
   font-size: 16px;
   line-height: 1.65;
   text-decoration: none;
}

.clinicInfoItem a:hover {
   color: var(--primary-color);
}
.appointmentStepsSection {
   position: relative;
   background: #fff;
}

.appointmentStepCard {
   position: relative;
   padding: 34px 28px;
   background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.08);
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
}

.appointmentStepCard:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

.featuredStepCard {
   background: #f7f3e3;
}

.stepNumber {
   position: absolute;
   right: 22px;
   top: 18px;
   font-size: 62px;
   line-height: 1;
   font-weight: 800;
   color: rgba(0, 0, 0, 0.06);
   pointer-events: none;
}

.appointmentStepIcon {
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 20px;
   background: var(--primary-color);
   color: #fff;
   font-size: 30px;
   margin-bottom: 24px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.appointmentStepCard a {
   color: var(--primary-color);
   font-weight: 700;
   text-decoration: none;
}

.appointmentStepCard a:hover {
   color: var(--secondary-color);
}
.onlineConsultImage {
   width: 100%;
   display: flex;
   justify-content: flex-end;
}

.onlineConsultImage img {
   width: 100%;
   height: 700px;
   object-fit: cover;
   border-radius: 10px;
   display: block;
}
.reachLandmarkBox {
   display: flex;
   align-items: flex-start;
   gap: 18px;
   padding: 26px;
   background: #fff;
   border-radius: 24px;
   border: 1px solid rgba(0, 0, 0, 0.08);
   box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.reachIcon {
   width: 64px;
   height: 64px;
   min-width: 64px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 18px;
   background: var(--primary-color);
   color: #fff;
   font-size: 28px;
}
.reachClinicCard {
   position: relative;
   height: 100%;
   padding: 38px 32px;
   border-radius: 28px;
   background: var(--primary-color);
   color: #fff;
   overflow: hidden;
   box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.reachClinicCard::before {
   content: "";
   position: absolute;
   width: 220px;
   height: 220px;
   right: -80px;
   top: -80px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.14);
}

.reachClinicCard::after {
   content: "";
   position: absolute;
   width: 160px;
   height: 160px;
   left: -60px;
   bottom: -60px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
}

.reachClinicCard > * {
   position: relative;
   z-index: 1;
}

.reachCardIcon {
   width: 72px;
   height: 72px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 22px;
   background: #fff;
   color: var(--primary-color);
   font-size: 30px;
   margin-bottom: 24px;
}

.whyContactCard {
   padding: 30px 24px;
   background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.08);
   border-radius: 24px;
   box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.whyContactCard:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.whyContactIcon {
   width: 68px;
   height: 68px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 20px;
   background: var(--primary-color);
   color: #fff;
   font-size: 30px;
   margin-bottom: 22px;
}
.onlineBookingList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onlineBookingList li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.onlineBookingList li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.onlineBookingList li span {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.onlineBookingList li a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.onlineBookingList li a:hover {
    color: #007bff;
}
/* Active header menu fix */
.rightMenu > ul > li.active > a,
.rightMenu > ul > li > a.active,
.rightMenu ul li ul li.active > a,
.rightMenu ul li ul li > a.active,
.header.stricky-fixed .rightMenu > ul > li.active > a,
.header.stricky-fixed .rightMenu > ul > li > a.active,
.header.stricky-fixed .rightMenu ul li ul li.active > a,
.header.stricky-fixed .rightMenu ul li ul li > a.active {
  color: var(--primary-color) !important;
}

.mobileNav > li.active > a,
.mobileNav > li > a.active,
.mobileNav .mobileDropdown.active > .menuItem,
.mobileNav .mobileDropdown.active > .menuItem > a,
.mobileSubmenu > li.active > a,
.mobileSubmenu > li > a.active {
  color: var(--primary-color) !important;
}
.acne-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.bgLight{
  background: #F7F3E3;
}
.hero-blog-content{
  padding-top:90px;  
}
   .blogHero {
     
      padding: 70px 0 40px;
   }

   .blogHeroImg {
      background: #fff;
      padding: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   }

   .blogHeroImg img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      display: block;
   }

   .blogHeroContent {
      padding-left: 35px;
   }

 .blogMeta {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
   margin-top: 18px;
}

.blogMeta span {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   color: #444;
   font-size: 16px;
   font-weight: 500;
   line-height: 1;
}

.blogMeta span i {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--primary-color);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
}


   .blogBreadcrumb {
      background:#f1f1f1;
      padding: 14px 0;
      font-size: 14px;
   }

   .blogBreadcrumb a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
   }

   .blogDetailWrapper {
      background: #fff;
      padding:30px 0 30px;
   }

   .blogArticleContent {
      background: #fff;
      padding-right: 25px;
   }
.blogArticleContent h2 {
   font-size: 30px;
   line-height: 1.3;
   font-weight: 700;
   margin: 35px 0 15px;
   color: #111;
}

.blogArticleContent h3 {
   font-size: 23px;
   line-height: 1.35;
   font-weight: 700;
   margin: 32px 0 14px;
   color: #111;
}

.blogArticleContent h4 {
   font-size: 20px;
   line-height: 1.4;
   font-weight: 700;
   margin: 26px 0 12px;
   color: #222;
}

.blogArticleContent h5 {
   font-size: 17px;
   line-height: 1.45;
   font-weight: 700;
   margin: 22px 0 10px;
   color: #333;
}
.blogArticleContent ul {
   list-style: none !important;
   padding-left: 0 !important;
   margin-bottom: 22px;
   margin-top:10px;
}

.blogArticleContent ul li {
   position: relative;
   color: #222;
   line-height: 1.75;
   margin-bottom: 8px;
   font-size: 17px;
   padding-left: 26px;
}

.blogArticleContent ul li::before {
   content: "»";
   position: absolute;
   left: 0;
   top: 0;
   line-height: 1.4;
   color: var(--primary-color);
   font-weight: 700;
   font-size: 20px;
}

   .popularBlogBox {
      background: #fff;
      border: 1px solid #eee;
      position: sticky;
      top: 110px;
   }

   .popularBlogTitle {
      background: #e8c274;
      padding: 15px 18px;
   }

   .popularBlogTitle h3 {
      font-size: 21px;
      font-weight: 700;
      margin: 0;
      color: #111;
   }

   .popularBlogItem {
      display: flex;
      gap: 12px;
      padding: 14px;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      color: #111;
   }

   .popularBlogItem:last-child {
      border-bottom: 0;
   }

   .popularBlogItem img {
      width: 95px;
      height: 65px;
      object-fit: cover;
      flex-shrink: 0;
   }

   .popularBlogItem h4 {
      font-size: 14px;
      line-height: 1.35;
      margin: 0;
      font-weight: 600;
      color: #111;
   }
 .iconCircle {
   width: 65px;
   height: 65px;
   border-radius: 50%;
   background: var(--primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
}

.iconCircle i {
   font-size: 32px;
   color: #fff;
}
.popularBlogSidebar {
   background:#f7f3e3;
   padding: 28px 24px;
   border-radius: 0;
   position: sticky;
   top: 110px;
}

.popularBlogSidebar h3 {
   font-size: 28px;
   line-height: 1.3;
   font-weight: 700;
   color: #111;
   margin-bottom: 28px;
}

.popularBlogItem {
   padding: 18px 0;
   border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.popularBlogItem:first-of-type {
   padding-top: 0;
}

.popularBlogItem:last-child {
   border-bottom: none;
   padding-bottom: 0;
}

.popularBlogItem a {
   display: flex;
   align-items: center;
   gap: 18px;
   color: inherit;
   text-decoration: none;
}

.popularBlogImg {
   width: 135px;
   min-width: 135px;
   height: 90px;
   overflow: hidden;
   background: #fff;
}

.popularBlogImg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.popularBlogContent h4 {
   font-size: 19px;
   line-height: 1.25;
   font-weight: 600;
   color: #111;
   margin: 0;
   transition: 0.3s ease;
}

.popularBlogItem a:hover h4 {
   color: var(--primary-color);
}
.table-responsive {
   width: 100%;
   overflow: hidden;
}

.table-responsive table {
   width: 100%;
   margin-bottom: 0;
}
