* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Cormorant Garamond', serif;
}



/* header */
header {
  position: unset;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

header .header-top {
  background-color: #56316f;
  padding: 5px 0px;
}

.sticky .headermn {
  padding: 0px;
}

header .header-top .top-info li,
header .header-top .top-info li a {
  color: #e6e8eb;
  font-size: 16px;
}

header .header-top .top-info li:last-child a {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50px;
  line-height: 28px;
  text-align: center;
  background-color: #d42b77;
  color: #05080c;
  border: 1px solid #d42b77;
  transition: .5s;
}

header .headermn {
  background-color: #ffffff;
  padding: 0px 0;
}

header .headermn .navbar .navbar-brand {
  width: 8%;
}

header .nav-link {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  transition: .5s;
  position: relative;
  padding: 0px 0px !important;
  text-transform: uppercase;
}

header .nav-link::after {
  content: '';
  background-color: #d42b77;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: .5s;
}

header .nav-link:hover::after {
  width: 100%;
}

header .nav-link:hover,
header .nav-link:focus {
  color: #d42b77;
}

header .navbar-nav {
  gap: 20px;
}

header .navbar-toggler {
  border: none;
  color: #d42b77;
  font-size: 28px;
  border-radius: 0;
}

header .navbar-toggler:focus {
  box-shadow: none;
}

header .offcanvas-title img {
  width: 40%;
}

header .navbar-nav {
  position: relative;
  align-items: center;
}

.sticky {
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed !important;
  top: 0px;
  animation: slideDown .5s ease-out;
  background-color: #11161d;
  box-shadow: 0 0 15px #d42b7733;
}

.sticky .headermn .navbar .navbar-brand {
  width: 8%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(10);
  }
}



/* Active Link */
header .navbar-nav .nav-link.active {
  color: #d42b77 !important;
}

/* Active Underline */
header .navbar-nav .nav-link.active::after {
  width: 100%;
  background: #d42b77;
}

/* Hover */
header .navbar-nav .nav-link:hover {
  color: #d42b77;
}

header .navbar-nav .nav-link:hover::after {
  width: 100%;
  background: #d42b77;
}

header .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 15px 0;
  box-shadow: 0 0 10px #d42b772f;
  background-color: #161b22;
}

header .dropdown-menu li .dropdown-item {
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #e6e8eb;
  background-color: transparent;
}

header .dropdown-menu li .dropdown-item:hover {
  background-color: #d42b77;
  color: #fff;
}


header .navbar .whatsapp li a {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

header .navbar .whatsapp li a:hover {
  width: 100%;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
  ;
}

header .navbar .whatsapp li a:hover {
  color: #ffffff;
}



/* footer */

/* footer {
  background-image: url(../images/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
} */


footer .footertop {

  background: #351049;
}

footer .footertop {

  background: #351049;
  padding: 30px 0;
}

footer .row {
  row-gap: 25px;
}

footer .footertop h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f5b14a;
  font-weight: 600
}

footer .footertop .about img {
  width: 80%;
  border-radius: 30px 0;
}

footer .footertop .about p {
  color: #fff;
  font-size: 18px;
  /* width: 77%; */
  margin-top: 20px;
}

footer .footertop ul {
  list-style: none;
}

footer .footertop ul li {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}

footer .footertop ul li a {
  color: #fff;
  font-size: 18px;
  transition: .5s;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

footer .footertop ul li a:hover {
  color: #f5b14a;
}

footer .footertop .addres li {
  margin-bottom: 10px;
}

footer .footertop .addres li i {
  color: #f5b14a;
  font-size: 18px;
}


footer .footerboo {
  background-color: #351049;
  padding: 20px;
  border-top: 2px solid #fdf1f4;
  text-align: center;
}

footer .footerboo p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}


footer .footerboo a {
  color: #f5b14a;
}



/* quickcontact */

.quickcontact {
  width: 45px;
  position: fixed;
  top: 65%;
  right: 15px;
  z-index: 102;
}





#hero {
  background: url('../images/banner.png') no-repeat center center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  /* min-height:700px; */
  display: flex;
  align-items: center;
}

#hero .hero-content {
  max-width: 560px;
}

#hero .hero-subtitle {
  display: block;
  font-size: 26px;
  color: #351049;
  margin-bottom: 8px;
  font-weight: 600;
}

#hero .hero-title {
  font-size: 50px;
  line-height: 1.1;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}

#hero .hero-title span {
  /* display: block; */
  color: #d42b77;
}

#hero .hero-text {
  color: #444;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}

#hero .hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 35px;
  margin-bottom: 35px;
}

#hero .hero-list-item {
  /* width: 45%; */
  display: flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  padding-left: 32px;
  /* margin-bottom: 14px; */
  color: #444;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}


#hero .hero-list .hero-list-item::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d42b77;
  font-size: 18px;
}

#hero .hero-btn {
  display: flex;
  gap: 18px;
}

#hero .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#hero .hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}

#hero .hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 2px solid #d42b77;
  color: #d42b77;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  background: #fff;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#hero .hero-btn-outline:hover {
  background: #d42b77;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}


#features {
  background: linear-gradient(90deg, #4b1d63, #351049);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

#features .features-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  height: 100%;
}

#features .features-border-none {
  border-right: none;
}

#features .features-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 190, 80, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5b14a;
  font-size: 18px;
  flex-shrink: 0;
}

#features .features-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

#features .features-content p {
  color: #ddd;
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 500;
}


#about {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

#about .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#about .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#about .about-leaf-left img,
#about .about-leaf-right img {
  max-width: 220px;
}

#about .about-subtitle {
  color: #d42b77;
  font-weight: 600;
  font-size: 18px;

}

#about .about-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #351049
}

#about .about-title span {
  color: #d42b77;
}

#about .about-content p {
  color: #444;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}

#about ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

#about ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
  font-size: 18px;
}

#about ul li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d42b77;
  font-size: 18px;
}

#about .about-btn {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#about .about-feature {
  position: relative;
}

#about .about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}

#about .about-image {
  position: relative;
  display: inline-block;
}

#about .about-image img {
  border-radius: 18px;
  border: 2px solid #f4bfd1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

#about .about-exp {
  position: absolute;
  left: -20px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, #d42b77, #b03c76);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

#about .about-exp h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

#about .about-exp span {
  font-size: 18px;
  text-align: center;
  line-height: 20px;
}

#about .about-feature-box {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

#about .about-content {
  position: relative;
}

#about .about-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #f7bfd4;
  color: #d42b77;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

#about .about-feature-box h5 {
  margin-bottom: 8px;
  font-weight: 700;
  color: #351049
}

#about .about-feature-box p {
  color: #444;
  font-size: 18px;
  line-height: 32px;
  margin: 0;
}

#about .row {
  row-gap: 20px;
}

#services {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #fcf6f7;
}

#services .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#services .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#services .about-leaf-left img,
#services .about-leaf-right img {
  max-width: 220px;
}

#services .services-heading {
  margin-bottom: 15px;
  position: relative;
}

#services .services-heading span {
  font-size: 34px;
  font-weight: 700;
  color: #351049;
  display: block;
  margin-bottom: 0px;
}

#services .services-heading img {
  width: 180px;
}

#services .services-item {
  background: #fff;
  border: 2px solid #f7bfd4;
  border-radius: 15px;
  padding: 30px 15px;
  transition: .4s;
  margin: 8px;
  height:300px;
  position: relative;
}

#services .services-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(233, 83, 140, .15);
}

#services .services-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #f7bfd4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#services .services-icon img {
  width: 34px;
}

#services .services-item .title {
  font-size: 20px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 12px;
}

#services .services-item p {
  color: #444;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 18px;
}

#services .services-item a {
  color: #d42b77;
  font-weight: 600;
  text-decoration: none;
}

#services .services-item a i {
  margin-left: 6px;
  transition: .3s;
}

#services .services-item:hover a i {
  margin-left: 12px;
}

#services .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 30px;
}

#services .owl-dot {
  display: inline-block !important;
}

#services .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background: #f5b9cf;
  display: block;
  transition: .3s;
}

#services .owl-dot.active span {
  background: #d42b77;
  width: 28px;
  border-radius: 20px;
}

#journey {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

#journey .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#journey .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#journey .about-leaf-left img,
#journey .about-leaf-right img {
  max-width: 220px;
}

#journey .journey-heading {
  margin-bottom: 50px;
  position: relative;
}

#journey .journey-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 0;
}

#journey .journey-heading img {
  width: 180px;
}

#journey .journey-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

#journey .journey-box::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #d42b77;
  font-size: 18px;
}

#journey .col-lg-3:last-child .journey-box::before {
  display: none;
}

#journey .journey-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d42b77, #8d2b66);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(236, 92, 146, .25);
}

#journey .journey-icon img {
  width: 45px;
}

#journey .journey-content h5 {
  font-size: 24px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 6px;
}

#journey .journey-content p {
  margin: 0;
  color: #444;
}

/* CTA */

#journey .cta-content {
  text-align: center;
}

#journey .journey-cta {
  margin-top: 70px;
}

#journey .cta-main {
  /* background: linear-gradient(135deg,#d42b77,#8d2b66); */
  background: linear-gradient(90deg, #ed6a95, #d42b77);
  border-radius: 20px;
  /* padding: 25px; */
  position: relative;
  overflow: hidden;
}

#journey .cta-main .row {
  row-gap: 20px;
}

#journey .cta-main::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

#journey .cta-main::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
}

#journey .cta-img img {
  max-height: 220px;
}

#journey .cta-content h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

#journey .cta-content p {
  color: #ffe7f0;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 28px;

}

#journey .cta-btn,
#journey .cta-call a {
  display: inline-block;
  padding: 8px 20px;
  color: #d42b77;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #f8f8f8;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#journey .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}


#journey .cta-btn:hover,
#journey .cta-call a:hover {
  background: #d42b77;
  color: #f8f8f8;
}

#journey .cta-call {
  text-align: center;
  color: #fff;
}

#journey .cta-call span {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

#journey .cta-call p {
  margin: 10px 0 20px;
  color: #ffe7f0;
}

#counter {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #fcf6f7;
}

#counter .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#counter .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#counter .about-leaf-left img,
#counter .about-leaf-right img {
  max-width: 220px;
}


#counter .section-head img {
  width: 180px;
}

#counter .counter-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  overflow: hidden;
}

#counter .counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 20px;
  border-right: 1px solid #ececec;
  transition: .3s;
  height: 100%;
}

#counter .counter-box:hover {
  background: #fff8fa;
}

#counter .counter-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#counter .counter-icon i {
  font-size: 26px;
  color: #d42b77;
}

#counter .counter-content {
  text-align: left;
}

#counter .counter-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #d42b77;
  margin: 0;
  line-height: 1;
}

#counter .counter-content p {
  margin: 6px 0 0;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}



/* gallery */
#gallery {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

#gallery .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#gallery .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#gallery .section-head img {
  width: 180px;
}

#gallery .about-leaf-left img,
#gallery .about-leaf-right img {
  max-width: 220px;
}

#gallery .row {
  row-gap: 20px;
}


#gallery .section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 0;
}

#gallery .section-head {
  margin-bottom: 30px;
  position: relative;
}


#gallery .gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
}

#gallery .gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: .5s;
  display: block;
}

#gallery .gallery-item:hover img {
  transform: scale(1.08);
  opacity: .8;
}


#gallery .gallery-btn {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#gallery .gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}



/*============================
BLOG
=============================*/

#blog {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: #fcf6f7;
}

#blog .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#blog .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#blog .section-head img {
  width: 180px;
}

#blog .about-leaf-left img,
#blog .about-leaf-right img {
  max-width: 220px;
}


#blog h2 {

  font-size: 34px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 0;

}

#blog .blog-head img {
  width: 180px;
}

#blog .blog-head {
  position: relative;
  margin-bottom: 30px;
  text-align: center;

}

#blog .row{
  row-gap: 20px;
}

#blog .blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: .4s;
  position: relative;
}

#blog .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

#blog .blog-img {
  overflow: hidden;
}

#blog .blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .5s;
}

#blog .blog-card:hover img {
  transform: scale(1.08);
}

#blog .blog-content {
  padding: 22px;
}

#blog .date {
  color: #444;
  font-size: 14px;
  display: block;
  margin-bottom: 14px;
}

#blog .title {
  font-size: 20px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 12px;
  display: block;
}
#blog .title:hover {
  color: #d42b77;
}
#blog a {
  text-decoration: none;
  color: #d42b77;
  font-weight: 700;
  transition: .3s;

}
#blog .blog-btn {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}
#blog .blog-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}
#blog a i {
  margin-left: 8px;
  transition: .3s;
}
#blog a:hover {
  color: #000;
}
#blog a:hover i {
  margin-left: 14px;
}
/* Owl */
#blog .owl-stage {
  display: flex;
}
#blog .owl-item {
  display: flex;
}
#blog .blog-card {
  height: 100%;
}
#blog .owl-dots {
  display: none;
}

#blog .owl-nav {
  display: none;
}



/* testimonial */
#testimonial {

  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

#testimonial .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#testimonial .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#testimonial .section-head {
  margin-bottom: 30px;
  position: relative;
}

#testimonial .about-leaf-left img,
#testimonial .about-leaf-right img {
  max-width: 220px;
}

#testimonial .section-head img {
  width: 180px;
}

#testimonial .section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 0;
  position: relative;
}

#testimonial .testi__subtext {
  font-size: 18px;
  color: #444;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7
}

#testimonial .testi__stars-main {
  margin: 0
}

#testimonial .testi__stars-main li {
  font-size: 20px;
  color: #d42b77
}

#testimonial .testi__rating-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 4px 0
}

#testimonial .testi__excellent {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .90);
  margin: 0
}

#testimonial .testi__based {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  margin: 0
}

#testimonial .testi__write-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease
}

#testimonial .testi__write-btn:hover {
  background-color: #fff;
  color: #d42b77
}

#testimonial .testi__card {
  background-color: #fcf6f7;
  border: 1px solid #fcf6f7;
  border-radius: 14px;
  padding: 22px 20px 20px;
  height: 290px;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .3s ease, border-color .3s ease;
  position: relative
}

#testimonial .testi__card:hover {
  border-color: #d42b77;
  box-shadow: 0 6px 24px rgba(8, 125, 144, .12)
}

#testimonial .testi__quote {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  color: rgba(8, 125, 144, .12)
}

#testimonial .testi__card-stars {
  margin: 0
}

#testimonial .testi__card-stars li {
  font-size: 13px;
  color: #d42b77
}

#testimonial .testi__message {
  font-size: 18px;
  color: #222;
  margin: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d42b77 #e4eef5
}

#testimonial .testi__card::-webkit-scrollbar {
  width: 3px;
}

#testimonial .testi__card::-webkit-scrollbar-track {
  background: #e4eef5;
}

#testimonial .testi__card::-webkit-scrollbar-thumb {
  background: #d42b77;
  border-radius: 4px;
}

#testimonial .testi__profile.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e8f0f7
}

#testimonial .testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d42b77, #d42b77);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

#testimonial .testi__profile-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 2px
}

#testimonial .testi__verified {
  font-size: 11px;
  color: #d42b77;
  font-weight: 600
}

#testimonial .owl-theme .owl-dots {
  margin-top: 20px;
  text-align: left
}

#testimonial .owl-theme .owl-dots .owl-dot span {
  background-color: #cde4e8;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all .3s ease
}

#testimonial .owl-theme .owl-dots .owl-dot.active span,
#testimonial .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #d42b77;
  width: 22px;
  border-radius: 4px
}

#testimonial .owl-carousel {
  display: block;
}

#testimonial .owl-carousel .owl-nav button.owl-next,
#testimonial .owl-carousel .owl-nav button.owl-prev,
#testimonial .owl-carousel button.owl-dot {
  display: none
}




/*=========================
CONTACT
==========================*/

#blog-contact {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: #fcf6f7;
}

#blog-contact .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

#blog-contact .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
}

#blog-contact .section-head img {
  width: 180px;
}

#blog-contact .about-leaf-left img,
#blog-contact .about-leaf-right img {
  max-width: 220px;
}

#blog-contact .contact-wrapper {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

#blog-contact .subtitle {
  color: #d42b77;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
}

#blog-contact h2 {
  font-size: 34px;
  font-weight: 700;
  color: #351049;
  margin-bottom: 0;
  position: relative;
}

#blog-contact img {
  width: 180px;
  margin-bottom: 20px;
}

#blog-contact ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#blog-contact ul li {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

#blog-contact ul li i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d42b77;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

#blog-contact ul li span {
  color: #222;
  font-size: 18px;
}

#blog-contact .form-control,
#blog-contact .form-select {
  height: 56px;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: none;
  padding: 15px;
}

#blog-contact textarea.form-control {
  height: 150px;
  resize: none;
}

#blog-contact .form-control:focus,
#blog-contact .form-select:focus {
  border-color: #d42b77;
  box-shadow: none;
}

#blog-contact .contact-btn {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#blog-contact .contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}


/* scroll-top css============================= */
#scrollTopBtn {
  position: fixed;
  bottom: 17px;
  right: 15px;
  width: 42px;
  height: 42px;
  background-color: #d42b77;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background-color .3s ease
}

#scrollTopBtn:hover {
  background: #f5b14a
}

#scrollTopBtn.show {
  display: flex
}


#enquiryModal .modal-dialog{
    max-width:420px;
}

#enquiryModal .modal-content{
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

#enquiryModal .modal-header{
    background:#d42b77;
    color:#fff;
    padding:15px 20px;
    border:none;
}

#enquiryModal .modal-title{
    font-size:22px;
    font-weight:600;
}

#enquiryModal .btn-close{
    filter:brightness(0) invert(1);
    opacity:1;
}

#enquiryModal .modal-body{
    padding:25px;
}

#enquiryModal .form-control{
    height:48px;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:none;
    font-size:15px;
}

#enquiryModal textarea.form-control{
    height:110px;
    resize:none;
}

#enquiryModal .form-control:focus{
    border-color:#d42b77;
    box-shadow:0 0 0 .15rem rgba(233,30,99,.15);
}

#enquiryModal .submit{
    height:48px;
    border:none;
    border-radius:8px;
    background:#d42b77;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

#enquiryModal .submit:hover{
    background:#c2185b;
}



#about-page{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background:#fff;
}


#about-page .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#about-page .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#about-page .about-leaf-left img,
#about-page .about-leaf-right img {
  max-width: 220px;
}


#about-page .about-page-image{
    border:2px solid #ffd4e5;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

#about-page .about-page-image img{
    width:100%;
    border-radius:18px;
}

#about-page .experience-badge{
    position:absolute;
    left:-20px;
    bottom:35px;
    width:120px;
    height:120px;
    background:linear-gradient(135deg,#e91e63,#c2185b);
    border-radius:20px;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 12px 25px rgba(233,30,99,.35);
}

#about-page .experience-badge h3{
    margin:0;
    font-size:34px;
    font-weight:700;
}

#about-page .experience-badge span{
    font-size:14px;
    line-height:22px;
}

#about-page .sub-title{
    color:#d42b77;
    font-size:18px;
    font-weight:600;
}

#about-page h2{
    color:#d42b77;
    font-size:46px;
    font-weight:700;
    margin-bottom:12px;
}

#about-page h6{
    color:#351049;
    font-weight:700;
    margin-bottom:20px;
}

#about-page p{
    color: #444;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
}

#about-page ul{
    margin:0;
    padding:0;
    list-style:none;
    column-count:2;
    column-gap:40px;
}

#about-page ul li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    break-inside:avoid;
    font-size:18px;
    font-weight:500;
    color:#444;
}

#about-page ul li::before{
   content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(-50%); */
    width: 24px;
    height:24px;
    background:#d42b77;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
}

@media (max-width: 767px){
    #about-page ul{
        column-count:1;
    }
}

#about-page .theme-btn{
display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 10px;
  transition: .5s;
  font-weight: 600;
  border: 1px solid #d42b77;
  background-color: #d42b77;
  position: relative;
  transition: .5s;
  z-index: 1;
  box-shadow: 0 0 15px #d42b7755;
}

#about-page .theme-btn:hover{
    color:#fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}


#breadcrumb{
    position:relative;
    padding:40px 0;
    overflow:hidden;
    background:
    url("../images/breadcrumb.png") center center/cover no-repeat;
    text-align: center;
}


#breadcrumb .breadcrumb-content{
    position:relative;
    z-index:2;
    text-align: center;
}

#breadcrumb span{
    color:#351049;
    font-size:34px;
    font-family:var(--headingFont);
    font-weight:700;
    display:block;
    line-height:1;
}

#breadcrumb h2{
    font-size:46px;
    font-weight:700;
    color:#d42b77;
    margin:5px 0px;
    line-height:1.15;
}

#breadcrumb .breadcrumb-line{
    margin-bottom:5px;
}

#breadcrumb .breadcrumb-line img{
        width: 180px;
}

#breadcrumb .breadcrumb-list{
    display:flex;
    align-items:center;
    justify-content: center;
    gap:30px;
    padding:0;
    margin:0;
    list-style:none;
}

#breadcrumb .breadcrumb-list li{
    position:relative;
    color:#d42b77;
    font-size:17px;
    font-weight:600;
}

#breadcrumb .breadcrumb-list li:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-18px;
    top:50%;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#d42b77;
    transform:translateY(-50%);
}

#breadcrumb .breadcrumb-list li a{
    color:#d42b77;
    text-decoration:none;
    transition:.3s;
}

#breadcrumb .breadcrumb-list li a:hover{
    color:#351049;
}


#mission-vision{
    padding:40px 0;
}

#mission-vision .mission-wrapper{
    position:relative;
    padding:30px;
    border-radius:20px;
    background:#fcf6f7;
    overflow:hidden;
}



#mission-vision .mission-wrapper .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#mission-vision .mission-wrapper .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#mission-vision .mission-wrapper .about-leaf-left img,
#mission-vision .mission-wrapper .about-leaf-right img {
  max-width: 220px;
}


#mission-vision .mission-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #ffe2ed;
    border-radius:16px;
    padding:20px 25px;
    height:100%;
    position:relative;
    z-index:2;
}

#mission-vision .border-start-custom::before{
    content:"";
    position:absolute;
    left:-13px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:110px;
    background:#f3bfd2;
}

#mission-vision .mission-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background:linear-gradient(135deg,#d42b77,#d42b77);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

#mission-vision .mission-icon::after{
    content:"";
    position:absolute;
    inset:5px;
    border:2px solid rgba(255,255,255,.6);
    border-radius:50%;
}

#mission-vision .mission-icon i{
    color:#fff;
    font-size:26px;
    position:relative;
    z-index:2;
}

#mission-vision .mission-content h3{
     font-size: 24px;
    font-weight: 700;
    color: #351049;
    /* margin-bottom:8px; */
}

#mission-vision .mission-content p{
    margin:0;
    color:#444;
    line-height:28px;
    font-size:17px;
}

@media(max-width:991px){

    #mission-vision .mission-wrapper{
        padding:20px;
    }

    #mission-vision .border-start-custom::before{
        display:none;
    }

    #mission-vision .mission-box{
        margin-bottom:20px;
    }

}

@media(max-width:576px){

    #mission-vision .mission-box{
        flex-direction:column;
        text-align:center;
    }

}


#why-choose{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background:#fff;
}

#why-choose .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#why-choose .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#why-choose .about-leaf-left img,
#why-choose .about-leaf-right img {
  max-width: 220px;
}




/* #why-choose .section-title{
    margin-bottom:50px;
} */

#why-choose .section-title h2{
    font-size: 34px;
    font-weight: 700;
    color: #351049;
    display: block;
    margin-bottom: 0px;
    position: relative;
}

#why-choose .section-title img{
    width:180px
}

#why-choose .why-image{
    position:relative;
    text-align:center;
}


#why-choose .why-image img{
    position:relative;
    z-index:2;
}

#why-choose .why-box{
    background:#fff;
    border:1px solid #ffe3ed;
    border-radius:20px;
    padding:35px 40px;
    box-shadow:0 10px 35px rgba(233,30,99,.08);
}

#why-choose .why-box ul{
 margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

#why-choose .why-box li{
      position: relative;
    padding-left: 38px;
    margin-bottom: 20px;
    break-inside: avoid;
    font-size: 18px;
    font-weight: 500;
    color: #444;
}


#why-choose .why-box li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #d42b77;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

#why-choose .why-box li:last-child{
    margin-bottom:0;
}

#why-choose .why-box span{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:50%;
    margin-right:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff3f8;
    border:1px solid #ffd5e7;
}

#why-choose .why-box span i{
    color:#e91e63;
    font-size:18px;
}


@media(max-width:576px){

    #why-choose .section-title h2{
        font-size:34px;
    }

    #why-choose .why-box{
        padding:25px;
    }

    #why-choose .why-box li{
        font-size:16px;
        margin-bottom:20px;
    }

    #why-choose .why-box span{
        width:42px;
        height:42px;
        min-width:42px;
    }

}




#core-values{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background:#fcf6f7;
}

#core-values .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#core-values .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#core-values .about-leaf-left img,
#core-values .about-leaf-right img {
  max-width: 220px;
}


#core-values .section-title h2{
        font-size: 34px;
    font-weight: 700;
    color: #351049;
    display: block;
    margin-bottom: 0px;
    position: relative;
}

#core-values .section-title img{
   width:180px;
   margin-bottom: 20px;
}

#core-values .value-box{
    background:#fff;
    border:1px solid #ffd8e8;
    border-radius:18px;
    padding:15px;
    text-align:center;
    height:100%;
    transition:.4s;
    position: relative;
    box-shadow:0 10px 30px rgba(233,30,99,.05);
}

#core-values .value-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(233,30,99,.12);
}

#core-values .value-icon{
    width:68px;
    height:68px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff3f8;
    border:2px solid #ffd4e6;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

#core-values .value-box:hover .value-icon{
    background:linear-gradient(135deg,#d42b77,#d42b77);
    border-color:#d42b77;
}

#core-values .value-icon i{
    font-size:28px;
    color:#e91e63;
    transition:.3s;
}

#core-values .value-box:hover .value-icon i{
    color:#fff;
}

#core-values .value-box h4{
       font-size: 24px;
    font-weight: 700;
    color: #351049;
    margin-bottom:12px;
}

#core-values .value-box p{
    margin:0;
       font-size: 18px;
    font-weight: 500;
    color: #444;
    line-height:28px;
}


#contact-message{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background-color: #FFF;
}


#contact-message .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#contact-message .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#contact-message .about-leaf-left img,
#contact-message .about-leaf-right img {
  max-width: 220px;
}
#contact-message .section-title h2{
        font-size: 34px;
    font-weight: 700;
    color: #351049;
    display: block;
    margin-bottom: 0px;
    position: relative;
}

#contact-message .section-title img{
    width: 180px;
}

#contact-message .contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #ffe2ec;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    height:100%;
    position: relative;
}

#contact-message .form-control{
    height:55px;
    border:1px solid #f6d6e3;
    border-radius:8px;
    padding:15px;
    box-shadow:none;
}

#contact-message textarea.form-control{
    height:180px;
    resize:none;
}

#contact-message .form-control:focus{
    border-color:#d42b77;
}

#contact-message .theme-btn{
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    border: 1px solid #d42b77;
    background-color: #d42b77;
    position: relative;
    transition: .5s;
    z-index: 1;
    box-shadow: 0 0 15px #d42b7755;
}

#contact-message .theme-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}

#contact-message .theme-btn i{
    margin-right:8px;
}

#contact-message .contact-info-box{
    height:100%;
    border-radius:18px;
    overflow:hidden;
    background:#d42b77;
    color:#fff;
    display:flex;
    position: relative;
}

#contact-message .doctor-img{
    width:42%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-top:20px;
}

#contact-message .doctor-img img{
        height: 100%;
    object-fit: cover;
}

#contact-message .contact-content{
    width:58%;
    padding:20px;
}

#contact-message .contact-content h3{
    font-size:25px;
    font-weight:700;
    margin-bottom:5px;
}

#contact-message .contact-content p{
    line-height:30px;
    margin-bottom:5px;
    color:#fff;
}

#contact-message .contact-content ul{
    padding:0;
    margin:0;
    list-style:none;
}

#contact-message .contact-content li{
    display:flex;
    gap:15px;
    margin-bottom:10px;
    line-height:28px;
}

#contact-message .contact-content span{
    width:42px;
    height:42px;
    min-width:42px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

#contact-message .contact-content span i{
    color:#fff;
}



#contact-map {
  padding: 40px 0;
  background: #fcf6f7;
  overflow: hidden;
  position: relative;
}
#contact-map .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#contact-map .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#contact-map .about-leaf-left img,
#contact-map .about-leaf-right img {
  max-width: 220px;
}
#contact-map .section-title h2{
        font-size: 34px;
    font-weight: 700;
    color: #351049;
    display: block;
    margin-bottom: 0px;
    position: relative;
}

#contact-map .section-title img{
    width: 180px;
    position: relative;
}

#contact-map .contact-map-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

#contact-map .contact-map-box iframe {
  display: block;
  width: 100%;
  position: relative;
}





/* Blog Detail Section */
#blog-detail {
  padding: 40px 0;
  background: #fff;
  /* overflow: hidden; */
  position: relative;
}

#blog-detail::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50px;
  width: 94px;
  height: 400px;
  background: url(../images/leaves.png) no-repeat;
  background-size: cover;
  /* opacity: .8; */
}

/* Blog Image */
#blog-detail imgs {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog Heading */
#blog-detail h2 {
 font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #351049;
  position: relative;
  font-weight: 600;
}

#blog-detail h3 {
 font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #351049;
  position: relative;
  font-weight: 600;
}

/* Post Meta (Author & Date) */
#blog-detail .post-meta {
  font-size: 20px;
  color: #222;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#blog-detail .post-meta i {
  margin-right: 0.35rem;
  color: #d42b77;
}

#blog-detail .post-meta .author,
#blog-detail .post-meta .date {
  display: flex;
  align-items: center;
}

/* Paragraphs */
#blog-detail article p {
color: #444;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
}

/* Sidebar Styling */
#blog-detail .sidebar {
  background: #fff;
  border: 1px solid #d42b77;
  border-radius: 18px;
  box-shadow: 0 4px 15px #d42b77;
  padding: 22px 24px;
  position: sticky;
  top: 100px;
}

/* Sidebar Heading */
#blog-detail .sidebar h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #d42b77;
  padding-left: 1rem;
  color: #d42b77;
}

/* Recent Posts */
#blog-detail .recent-post {
  transition: background-color 0.3s ease;
  padding: 8px 6px;
  border-radius: 6px;
  gap: 20px;
}


#blog-detail ul{
 margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

#blog-detail li{
      position: relative;
    padding-left: 38px;
    margin-bottom: 20px;
    break-inside: avoid;
    font-size: 18px;
    font-weight: 500;
    color: #444;
}


#blog-detail li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #d42b77;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

#blog-detail li:last-child{
    margin-bottom:0;
}

#blog-detail .recent-post:hover {
  background-color: #d42b77;
  color: white;
}


/* Recent Post Images */
#blog-detail .recent-post img.post-thumb {
  border-radius: 6px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Recent Post Links */
#blog-detail .recent-post a {
  text-decoration: none;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

#blog-detail .recent-post:hover a {
  color: #ffffff;
  text-decoration: underline;
}

/* Date Text */
#blog-detail .recent-post small {
  font-size: 18px;
  color: #222;
  line-height: 1.6;
}


#blog-detail .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#blog-detail .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#blog-detail .about-leaf-left img,
#blog-detail .about-leaf-right img {
  max-width: 220px;
}




#lp-thankyou{
width:100%;
display:flex;
align-items:center;
    justify-content:center;
     padding: 40px 0;
  background: #fffaf7;
  position: relative;
  overflow: hidden;
}

#lp-thankyou .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#lp-thankyou .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#lp-thankyou .about-leaf-left img,
#lp-thankyou .about-leaf-right img {
  max-width: 220px;
}



#lp-thankyou .thankyou-wrapper{
    width:100%;
    max-width:1200px;
    margin:auto;
    position: relative;
}

#lp-thankyou .thankyou-box{
    max-width:600px;
    margin:auto;
    background:#ffffff;
    padding:60px 40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

#lp-thankyou .thankyou-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#d42b77;
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-weight:700;
}

#lp-thankyou h2{
    font-size: 42px;
    line-height: 1.2;
    margin: 5px 0 20px;
    color: #000;
    position: relative;
    font-weight: 600;
}

#lp-thankyou p{
            color: #444;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
    position: relative;
}

#lp-thankyou .thankyou-btn{
   display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 10px;
    transition: .5s;
    font-weight: 600;
    border: 1px solid #d42b77;
    background-color: #d42b77;
    position: relative;
    transition: .5s;
    z-index: 1;
    box-shadow: 0 0 15px #d42b7755;

}

#lp-thankyou .thankyou-btn:hover {
       transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(196, 78, 131, .3);
}

#lp-thankyou .thankyou-btn i {
    transition: .35s;
}

#lp-thankyou .thankyou-btn:hover i {
  transform: translateX(6px);
}


#service-overview{
    padding:40px 0;
    background:#fff;
    position:relative;
    overflow: hidden;
}



#service-overview .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#service-overview .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#service-overview .about-leaf-left img,
#service-overview .about-leaf-right img {
  max-width: 220px;
}

#service-overview .service-heading .subtitle{
color: #d42b77;
    font-weight: 600;
    font-size: 18px;
}

#service-overview .heading-divider{
    margin-bottom:18px;
}

#service-overview .heading-divider img{
    height:18px;
}

#service-overview .service-heading h2{
    font-size: 46px;
    font-weight: 700;
    color: #351049;
    position:relative;
}
#service-overview .service-heading img{
  width:180px;
  margin-bottom: 20px;
}

#service-overview .service-heading h2 span{
    color:#d42b77;
}

#service-overview .service-content p{
      color: #444;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
    position:relative;
}

#service-overview .service-image{
    overflow:hidden;
    border-radius:22px;
    position:relative;
}

#service-overview .service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px;
    transition:.4s;
}

#service-overview .service-image:hover img{
    transform:scale(1.05);
}

#benefits{
    padding:40px 0;
    position:relative;
    overflow:hidden;
    background:#fcf6f7;
}

#benefits .about-leaf-left {
  position: absolute;
  left: 0;
  bottom: 0;
  /* opacity:.18; */
}

#benefits .about-leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  /* opacity:.18; */
}

#benefits .about-leaf-left img,
#benefits .about-leaf-right img {
  max-width: 220px;
}

/* #benefits .section-title{
    margin-bottom:50px;
} */

#benefits .section-title h2{
       font-size: 34px;
    font-weight: 700;
    color: #351049;
    margin-bottom: 0;
    position:relative;
}
#benefits .section-title img{
    width: 180px;
    margin-bottom: 20px;
}

#benefits ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

#benefits ul li{
  position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    break-inside: avoid;
    font-size: 18px;
    font-weight: 500;
    color: #444;
}

#benefits ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #d42b77;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

#benefits .doctor-box{
    position:relative;
    max-width:300px;
    background:#fff;
    border:1px solid #ffd8e6;
    border-radius:22px;
    padding:20px;
    box-shadow:0 15px 35px rgba(233,30,99,.10);
    overflow:hidden;
}

#benefits .doctor-box::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#fde7f1;
    border-radius:50%;
    left:50%;
    top:35px;
    transform:translateX(-50%);
}

#benefits .doctor-box img{
    position:relative;
    z-index:2;
    width:100%;
}


#benefits .experience-box{
    position:absolute;
    left:-18px;
    bottom:35px;
    z-index:3;
    width:115px;
    height:115px;
    background:linear-gradient(180deg,#ec4899,#d63384);
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    box-shadow:0 10px 25px rgba(214,51,132,.35);
}

#benefits .experience-box h3{
    font-size:36px;
    margin:0;
    font-weight:700;
}

#benefits .experience-box span{
    font-size:15px;
    text-align:center;
    line-height:22px;
    padding:0 10px;
}