@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body{
  font-family: "Libre Baskerville", Sans-serif !important;
}

p , h2 {
	font-family: "Libre Baskerville", Sans-serif;
}

/*whatsapp*/

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  /* padding: 10px 15px; */
  border-radius: 50%;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
 justify-content: center;
 align-items: center;
  cursor: pointer;
}

.whatsapp i {
  font-size: 24px;
  color: #fff;
}

/*----------04.12.2025--------*/

.callbtn{

  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #e0e0e0;
  /* padding: 10px 15px; */
  border-radius: 50%;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
 justify-content: center;
 align-items: center;
 cursor: pointer;

}

.callbtn i{

  color: #4a0069;
  font-size: 24px;
}

a{
    text-decoration: none;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Satisfy", cursive; */
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.my-30 {
  margin: 30px 0px;
}

.my-60 {
  margin: 60px 0px;
}

.my-90 {
  margin: 90px 0px;
}

.my-120 {
  margin: 120px 0px;
}

.my-150 {
  margin: 150px 0px;
}

/*-------gallery-section--------*/
.gallery-section {
  padding: 60px 0;
}

.section-title {
  color: #333;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 20px;
  margin: 0 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #9c27b0;
  color: white;
  border-color: #9c27b0;
}

.gallery-container {
  margin-top: 20px;
}

.gallery-item {
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 250px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-info {
  text-align: center;
  color: white;
}

.gallery-info h5 {
  margin-bottom: 15px;
  font-size: 18px;
}

.gallery-info a {
  color: white;
  background: #9c27b0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-info a:hover {
  background: white;
  color: #9c27b0;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  background-color: #9c27b0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background-color: white;
  color: #9c27b0;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .gallery-card {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .gallery-filter {
    flex-direction: row;
    justify-content: center;
  }

  .filter-btn {
    margin-bottom: 10px;
  }

  .gallery-card {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }

  .gallery-card {
    height: 180px;
  }

  .lightbox-content {
    max-width: 95%;
  }
}

/*-------headertop--------*/

.headertopbg {
  margin: 0px;
  padding: 8px 0px 8px 0px;
  width: 100%;
  display: block;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(91.8, 91.8, 91.8, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.headerlogo {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}
.headerlogo img {
  width: 100px;
  height: auto;
}

.haedernavigation {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.haedernavigation nav {
  margin: 0px;
  padding: 0px;
}

.haedernavigation nav ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-top: 30px;
}

.haedernavigation nav ul li {
  margin: 0px;
  padding: 0px 15px;
  list-style: none;
  position: relative;
}

.haedernavigation nav ul li ul.submenu {
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 150%;
  left: 0;
  width: 287%;
  background-color: #e2e2e2;
  display: none;
  z-index: 10;
}

.haedernavigation nav ul li:hover ul.submenu.show {
    display: block;
}

.haedernavigation nav ul li:hover ul.submenu {
  display: block;
}

.haedernavigation nav ul li ul.submenu {
    display: none;
}

@media (min-width: 992px) {
    .haedernavigation nav ul li:hover ul.submenu {
        display: block;
    }
}

.haedernavigation nav ul li ul.submenu li {
  margin: 0px;
  padding: 8px 0px;
  list-style: none;
  transition: all 0.5s ease;
  z-webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.haedernavigation nav ul li ul.submenu li:hover {
  background-color: #4a0069;
  color: #fff;
}

/* .haedernavigation nav ul li ul.submenu li a {
  color: #4b4b4b;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  text-decoration: none;
  margin: 0;
  padding: 8px 0px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
} */

.haedernavigation nav ul li ul.submenu li a {
  display: block;
  width: 100%;
  padding: 5px 28px;
  color: #4b4b4b;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.haedernavigation nav ul li ul.submenu li a:hover {
  color: #fff;
}

.haedernavigation nav ul li ul.submenu.fullwidth {
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  display: none;
}

.haedernavigation nav ul li a {
  margin: 0px;
  padding: 0px 2px;
  font-size: 15px;
  color: #000000;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  padding-bottom: 30px;
  width: 100%;
}

.haedernavigation nav ul li a.active {
  color: #6d009b;
}

.headerrightsocoial {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.headerrightsocoial ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: right;
  margin-top: 25px;
}

.headerrightsocoial ul li {
  margin: 0px 4px;
  padding: 10px;
  list-style: none;
  background-color: #6d009b;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------headerbanner----------*/

.headerbanner {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  margin-top: 8%;
}

.headerbannermain {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 650px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.headerbannermain1 {
  margin: 0px;
  padding: 0px;
}

.headerbannermain1 h3 {
  color: #fff;
  font-family: "Satisfy", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
}

.headerbannermain1 h2 {
  font-family: "Montserrat", Sans-serif;
  font-size: 60px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 85px;
  color: #fff;
}
.headerbannermain1 button {
  background-color: #6d009b;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  border-width: 2px;
  border-radius: 0px;
  border-color: var(--e-global-color-secondary);
  transition-duration: 0.9ms;
  color: #fff;
  padding: 15px 15px;
  margin-top: 20px;
}

.headerbannermain1 button:hover {
  color: #fff;
}

.headerbannermain {
  /* ...existing code... */
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.headerbannermain.loaded {
  opacity: 1;
}

.headerbannermain1 {
  /* ...existing code... */
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-in-out;
}

.headerbannermain1.show {
  opacity: 1;
  transform: translateX(0);
}

/*------------aboutus-----------*/
.aboutusbg {
  margin: 0px;
  padding: 0px 0px;
  background-color: #f4f6f6;
}

.aboutusimg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.aboutusimg img {
  width: 100%;
  max-width: 100%;
  height: 587px;
  object-fit: cover;
  object-position: center center;
  border: solid 10px #fff;
  position: relative;
  top: -140px;
  z-index: 1;
}

.aboutustext {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}
.aboutustext h1 {
  color: #6d009b;
  font-size: 25px;
  font-family: "Satisfy", cursive;
}

.aboutustext h2 {
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  font-family: "Libre Baskerville", sans-serif;
  line-height: 1.4;
}

.aboutustext p {
  margin-top: 20px;
  color: #58585d;
}

.aboutustexticon {
  margin: 20px 0px;
  padding: 0px;
}
.aboutustexticon ul {
  margin: 0px;
  padding: 0px;
}

.aboutustexticon ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.aboutustexticon1 {
  display: flex;
  gap: 15px;
}
.aboutustexticon1box {
  width: 25px;
  height: 25px;
  background-color: #6d009b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutustexticon1boxtext {
  margin: 0px;
  padding: 0px;
  margin-top: -25px;
}

/*-----------whychooseus-----------*/

.whychooseustext {
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.whychooseustext h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #000000;
}

.whychosebox {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  position: relative;
}

.whychoseboximg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.whychoseboximg img {
  width: 100%;
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.5);
  object-position: center right;
}

.whychoseboxtext {
  margin: 0px auto;
  padding: 0px;
  width: 100%;
  display: block;
  max-width: 95%;
}

.whychoseboxtext1 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  bottom: -35px;
  z-index: 1;
  left: 0;
  background-color: #6d009b;
  padding: 10px 5px 20px 10px;
  border-radius: 15px 15px 15px 15px;
  box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.5);
  width: 100%;
  display: block;
}

.whychoseboxtext1 h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.whychoseboxtext1 p {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #d8d3d3;
  text-align: center;
}

/*------------Procedures--------*/

.procedurestextheader {
  text-align: center;
  margin: 0px;
  padding: 0px;
}

.procedurestextheader h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #6d009b;
}

.procedurestextheader h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #000000;
}

/*-------------------Procedures------------*/

.proceduesbox {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  background-color: #fff;
	position:relative;
	z-index:1;
}

.proceduesboximg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.proceduesboximg img {
  width: 100%;
  max-width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center center;
}

.proceduesboxtext {
  margin: 0px;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 30px;
}

.proceduesboxtext h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #6d009b;
}

.proceduesboxtext h4 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #58585d;
}

.proceduesboxtext p {
  font-size: 14px;
  color: #58585d;
}

.proceduesboxtext button {
  background-color: #6d009b;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  border-radius: 0px 0px 0px 0px;
  color: #fff;
  padding: 10px 15px;
	cursor:pointer;
}

.proceduesboxbg {
  margin: 0px;
  width: 100%;
  display: block;
  background-color: transparent;
  background: linear-gradient(180deg, #d796f2 0%, #6d009b 100%);
}

.proceduesboxbg1 {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -350px;
  margin-bottom: 0px;
  min-height: 550px;
}

/*-----------exploreall----------*/

.exploreall {
  margin-top: 25%;
  width: 100%;
  display: block;
  height: 1px;
  background-color: #dfdfdf;
}

.explorealltext {
  margin-top: 5%;
  padding: 0;
  width: 100%;
  display: block;
}

.explorealltext h6 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #fff;
}

.explorealltextdown {
  margin-top: 40px;
  margin: 0px;
  padding: 0px;
}

.explorealltextdowiconmain {
  margin: 0px 0px;
  padding: 0px;
}

.explorealltextdowicon {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 10px;
}

.explorealltextdowiconbox {
  background-color: #fff;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.explorealltextdowiconbox i {
  color: #6d009b;
  font-size: 14px;
}

.explorealltextdowicontext {
  margin: 0px;
  padding: 0px;
}

.explorealltextdowicontext p {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  margin-top: -2px;
}

/* Services Page Styles */
.page-title {
  padding: 50px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.page-title h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.services-section {
  padding: 60px 0;
}

.services-section .section-title {
  margin-bottom: 40px;
}

.services-section .section-title h2 {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
}

.serviceboxshadow {
  box-shadow: 2px 0px 10px 0px #dddddd;
}

/* .services-section .section-title h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: #8e44ad;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

.purple-bg {
  background: #6d009b;
}

.purple-bg .section-title h2 {
  color: #fff;
}

.purple-bg .section-title h2:after {
  background: #fff;
}

.service-card {
  overflow: hidden;

  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: #8e44ad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon span {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.service-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  text-align: center;
  position: relative;
  top: -50px;
}

.servicecontaent-icon {
  position: absolute;
  top: -10px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #6d009b;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  align-content: center;
}

.servicecontaent-icon i {
  font-size: 28px;
  color: #fff;
}

.service-content button {
  background-color: #fff;
  color: #6d009b;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  border: none;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  line-height: 20px;
}

.service-content button:hover {
  background-color: #6d009b;
  color: #fff;
}

.service-content h5 {
  font-family: "Satisfy", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #6d009b;
  margin-top: 30px;
}

.service-content h6 , .service-content h6 a {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #58585d;
  text-decoration:none;
}

.service-content p {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: 58585D;
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #8e44ad;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.service-btn:hover {
  background: #9b59b6;
  color: #fff;
}

.coming-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
}

.coming-soon-badge img {
  width: 100%;
  height: auto;
}

/* Purple sections text color */
.purple-bg .service-card {
  margin: 0px;
  padding: 0px;
}

.purple-bg .service-content h5 {
  font-family: "Satisfy", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 20px;
  color: #6d009b;
}

.purple-bg .service-content p {
  color: #666;
}

/*24.02.2026*/

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-img img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .page-title h1 {
    font-size: 30px;
  }

  .services-section .section-title h2 {
    font-size: 24px;
  }

  .service-content h5 {
    font-size: 18px;
  }
}

/*-------testimonial---------*/

.testimonialbg {
  margin: 0px;
  padding: 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 550px;
  z-index: 1;
  position: relative;
  align-content: center;
}

.testimonialbg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.445);
  z-index: -1;
}

.testimonialtext {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.testimonialtext h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 25px;
  color: #d796f2;
}

.testimonialtext h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 70px;
  color: #fff;
}

.testimonial-box {
  background: transparent;
  padding: 30px;
  border-radius: 10px;
  margin: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  /* background: rgba(109, 0, 155, 0.8) !important; */
  color: #fff !important;
}

.testimonial-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.testimonial-carousel .owl-nav button.owl-next {
  right: -20px;
}

.testimonial-carousel .owl-dots {
  margin-top: 20px;
}

.testimonial-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
}

.testimonial-carousel .owl-dot.active span {
  background: #6d009b !important;
}

/*---------youtube-----------*/

.youtubeheader {
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.youtubeheader h6 a {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #6d009b;
  text-decoration: none;
  cursor: pointer;
}

.youtubeheader h3 {
  margin-top: 15px;
  margin-bottom: 40px;
}
.youtubeheader h3 a {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  line-height: 45px;
  color: #000000;
  text-decoration: none;
}

.youtubevideobox {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}
.youtubevideoboxchannel {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.youtubevideoboxchannel video {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.youtubevideoboxtext {
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.youtubevideoboxtext p {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  margin: 20px 0px;
}

/*blog*/

/* Add this CSS to your style.css file */
.blog-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.blog-header h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #6d009b;
  margin-bottom: 10px;
}

.blog-header h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #6d009b;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  width: 30%;
}

.blog-date span {
  display: block;
  font-size: 14px;
}

.blog-date span:first-child {
  font-size: 14px;
  font-weight: bold;
}

.blog-content {
  padding: 20px;
  background-color: #e6e6e6;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-meta {
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
}

.blog-meta span {
  margin-right: 20px;
}

.blog-meta i {
  margin-right: 5px;
  color: #6d009b;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

.blog-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  color: #6d009b;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #4a0069;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/*----------faq----------*/

/* FAQ Styles */
.faq-section {
  background-color: #f8f9fa;
  padding: 50px 10px;
  margin-bottom:30px;	
}

.faq-header h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #6d009b;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: #333;
  font-weight: 500;
}

.faq-toggle {
  color: #6d009b;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background: #f8f9fa;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/*-----------------appointment-----------*/

.appointmentbg {
  margin: 0px;
  padding: 60px 0;
  width: 100%;
  display: block;
  background-image: url(../img/appointment-min.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-content: center;
  min-height: 500px;
}

.appointmentbox {
  margin: 0px;
  padding: 40px 20px;
  background-color: white;
  border-radius: 50px 0px 50px 0px;
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: #6d009b;
  text-align: center;
}

.appointmentbox h3 {
  font-family: "Satisfy", Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.3);
  color: #6d009b;
}

.appointmentboxform {
  margin: 20px 0px;
  padding: 0px;
  width: 100%;
  display: block;
  margin-top: 40px;
}

.appointmentboxform input {
  width: 100%;
  display: block;
  border: solid 1px #6d009b;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 10px 0px;
  padding: 8px;
}

.appointmentboxform select {
  width: 100%;
  display: block;
  border: solid 1px #6d009b;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 7px 0px;
  padding: 8px; 
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal
}
.appointmentboxform button {
  background-color: #6d009b;
  color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 10px 15px;
font-family: "Libre Baskerville", Sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  margin-top: 20px;
}
.appointmentboxform button:hover {
  background-color: #6d009b !important;
  color: #fff !important;
}

.appointmentboxrght {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.appointmentboxrght1 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  background-image: url(../img/appointment-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
  z-index: 1;
  padding: 50px 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.appointmentboxrght1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.575);
  z-index: -1;
  border-radius: 20px;
}

.boder-rounded {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.appointmentboxrght1icon {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 14px;
}
.appointmentboxrght1iconmain {
  margin: 0px;
  padding: 0px;
}

.appointmentboxrght1iconmain i {
  color: #fff;
  font-size: 36px;
}

.appointmentboxrght1icontext {
  margin: 0px;
  padding: 0px;
  margin-top: 8px;
}

.appointmentboxrght1icontext h3 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 5px;
  color: #fff;
}

.appointmentboxrght1icontext p {
  margin: 0px;
  padding: 0px;
}

.appointmentboxrght1icontext p a {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin: 0px !important;
  padding: 0px !important;
}

.appointmentboxrght1icontextdown {
  margin: 15px 0px;
  padding: 0px;
}

.appointmentboxrght1icontextdown p {
  font-family: "Montserrat", Sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: #eeeeee;
}

/*--------footer--------*/

.footerbg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  background-color: #35444a;
  padding: 40px 0px;
}

.footerleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.footerleft h6 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  color: #fff;
}

.footerleftnav {
  margin-top: 20px;
  padding: 0px;
}

.footerleftnav ul {
  margin: 0px;
  padding: 0px;
  display: block;
}

.footerleftnav ul li {
  margin: 0px;
  padding: 4px 0px;
  list-style: none;
}

.footerleftnav ul li a {
  margin: 0px;
  padding: 0px;
  color: #909090;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  transition: all 0.5s ease-in-out;
  -webkait-transition: ;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.footerleftnav ul li a:hover {
  color: #fff;
}

.footersocial {
  margin: 10px 0px;
  padding: 0px;
}
.footersocial1 {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 5px;
  margin-top: 25px;
}
.footersocial1icon {
  width: 32px;
  height: 32px;
  background-color: #69727d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.footersocial1icon:hover {
  background-color: #6d009b;
}

/*--------footercopyright---------*/

.footercopyright {
  background-color: #29353a;
  text-align: center;
  padding: 6px 0px;
}

.footercopyrighttext {
  margin: 0px;
  padding: 0px;
}
.footercopyrighttext p,
.footercopyrighttext p a {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
  font-style: normal;
  color: #fff;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

/*aboutusdoctor*/

.aboutus-bg {
  background-image: linear-gradient(180deg, #d796f2 0%, #6d009b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
 min-height:300px;
}
.aboutus-bg h1 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 30px;
  font-weight: 800;
  padding: 0px 25px;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  letter-spacing: 1px;
  color: #fff;
  margin-top:10%;
}

.aboutus-bg h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 30px;
  font-weight: 800;
  padding: 0px 25px;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  letter-spacing: 1px;
  color: #fff;
  margin-top:10%;
}

/*----------yourtrusted----------*/

.yourtrustedimg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}
.yourtrustedimg img {
  display: inline-block;
  object-fit: cover;
  height: 780px;
}

.yourtrustedright {
  margin: 20px 0px;
  padding: 40px 20px;
  width: 100%;
  display: block;
  position: relative;
  max-height: 735px;
  background-color: #fff;
  left: -120px;
  z-index: 1;
}

.yourtrustedright h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 25px;
  color: #4a0069;
  text-align: center;
}

.yourtrustedright h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1.4;
  color: #000000;
  text-align: center;
}

.yourtrustedright p {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  margin: 10px 0px;
}

/*------------expertise----------*/

.expertiseleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.expertiseleft h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 25px;
  color: #6d009b;
  margin-bottom: 20px;
}

.expertiseleftmain {
  margin: 15px 0px;
  padding: 0px;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: #aaaaaa;
  padding-bottom: 5px;
  margin-top: 15px;
}

.expertiseleftmain:last-child {
  border-color: transparent;
}

.expertiseleftmain1 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.expertiseleftmain1icon {
  margin: 0px;
  padding: 0px;
}

.expertiseleftmain1icon i {
  color: #6d009b;
  font-size: 24px;
}

.expertiseleftmain1text {
  margin: 0px;
  padding: 0px;
}

.expertiseleftmain1text h3 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6d009b;
}

.expertiseleftmain1text p {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #58585d;
}

.expertiseboxright {
  margin: 0px;
  padding: 0px;
  position: relative;
  z-index: 2;
}
.expertiseboxright img {
  width: 100%;
  border-radius: 0px 0px 25px 0px;
  box-shadow: 3px 2px 10px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.expertiseboxright::before {
  position: absolute;
  content: "";
  top: 30px;
  right: -28px;
  background-color: #4a0069;
  border-radius: 0px 0px 25px 0px;
  box-shadow: 3px 2px 10px 0px rgba(0, 0, 0, 0.5);
  width: 90%;
  height: 100%;
  z-index: 1;
}

/*------------Education-----------*/

.educationbg {
  margin: 0px;
  padding: 60px 0px;
  width: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
  position: relative;
  z-index: 1;
}
.educationbg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(109, 0, 155, 0.781);
  z-index: -1;
}

.nb-cheat {
  background-color: #29353a;
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: pink;
  font-weight: 500;
  text-align: start;
}

.educationleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.educationlefttop {
  margin: 0px;
  padding: 0px;
}

.educationlefttop h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #ffffff;
}

.educationlefttop1 {
  margin-top: 40px;
  padding: 0px;
}

.educationlefttop1 p {
  text-align: left;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #eeeeee;
}

.educationright {
  margin: 0px;
  padding: 0px;
}

.educationright h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #ffffff;
}

/*Experiences*/

.experiencetext {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.experiencetext h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #000000;
}

.experienceleft {
  margin: 0px;
  padding: 0px;
}

.experienceleft1 {
  margin: 15px 0px;
  padding: 0px;
  display: flex;
  gap: 15px;
}

.experienceleft1icon {
  margin: 0px;
  padding: 0px;
  width: 40px;
  height: 40px;
  background-color: #6d009b;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.experienceleft1icon i {
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-content: center;
}

.experienceleft1:hover .experienceleft1icon {
  background-color: #d982ff;
}

.experienceleft1text {
  margin: 0px;
  padding: 0px;
}

.experienceleft1text h3 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  line-height: 24px;
  color: #6d009b;
}
.experienceleft1text p {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  line-height: 24px;
  color: #58585d;
}

.experiencemiddle {
  margin: 0px;
  padding: 0px;
}

.experiencemiddle img {
  width: 100%;
  max-width: 100%;
  height: 406px;
  object-fit: cover;
  object-position: center center;
}

/*-------affiliation-------*/

.affiliationbg {
  margin: 0px;
  padding: 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 550px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.affiliationbg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(109, 0, 155, 0.815);
  z-index: -1;
}

.affiliationtextcenter {
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.affiliationtextcenter h6 {
  font-family: "Satisfy", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 25px;
  color: #fff;
}

.affiliationtextcenter h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 35px;
  color: #fff;
}

.affiliationimgbox {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

/*-----imagecarasoul-------*/

.image-carousel-section {
  padding: 00px 0;
}

.image-carousel .item {
  margin: 0 5px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-carousel .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 10px 10px;
}

.image-carousel .item:hover img {
  transform: scale(1.1);
}

.image-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: rgba(109, 0, 155, 0.8) !important;
  color: #fff !important;
}

.image-carousel .owl-nav button:hover {
  background: rgba(109, 0, 155, 1) !important;
}

.image-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.image-carousel .owl-nav button.owl-next {
  right: -50px;
}

.image-carousel .owl-nav button i {
  font-size: 20px;
  line-height: 40px;
}

/*------------contactus page---------*/

.contactusleft {
  margin: 0px;
  padding: 0px;
}

.contactusleft h2 {
  font-family: "Satisfy", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6d009b;
}

.contactusleft h3 {
  font-family: "Libre Baskerville", Sans-serif;
  font-weight: 600;
  color: #000000;
  margin-top: 20px;
}

.contactusaddress {
  margin: 30px 0px;
  padding: 0px;
}

.contactusaddress1 {
  margin: 15px 0px;
  padding: 0px;
  display: flex;
  gap: 15px;
}

.contactusaddress1icion {
  margin: 0px;
  padding: 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #6d009b;
  align-items: center;
  display: flex;
  justify-content: center;
}
.contactusaddress1icion i {
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  align-content: center;
}

.contactusaddress1text {
  margin: 0px;
  padding: 0px;
}

.contactusaddress1text h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 15px;
  color: #6d009b;
}

.contactusaddress1text p,
.contactusaddress1text p a {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #58585d;
  margin-top: 20px;
  text-decoration: none;
}

.contactusaddress1text-height {
  margin-top: -10px !important;
}

/*--------contactusright------------*/

.contactusright {
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--e-global-color-primary);
  box-shadow: 2px 4px 6px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 0px 0px 0px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px;
  padding: 30px 30px 30px 30px;
  background: #cf8beb;
  border-radius: 15px 15px 15px 15px;
}

.contactusright h2 {
  font-family: "Libre Baskerville", Sans-serif;
  font-weight: 600;
  color: #000000;
}

.contactusrighform {
  margin: 0px 0px;
  padding: 0px;
}

.contactusrighform label {
  color: white;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 14px;
}
.contactusrighform label i {
  font-size: 6px;
  vertical-align: middle;
}

.contactusrighform input {
  background-color: #fff;
  border-color: #6d009b;
  border-width: 2px 2px 2px 2px;
  border-radius: 25px 25px 25px 25px;
  width: 100%;
  display: block;
  padding: 6px;
  margin-top: 6px;
}

.contactusrighform button {
  background-color: #6d009b;
  font-family: "Libre Baskerville", Sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  border-radius: 50px 50px 50px 50px;
  width: 100%;
  display: block;
  margin: 8px 0px;
  margin-top: 15px;
  color: #fff;
}

.contactusrighform button:hover {
  color: #fff;
}

/*-----------mapbox----------*/

.mapbox {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}

/*=====================blogpage==============*/

/* Blog Styles */

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #6d009b;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.blog-content {
  padding: 20px;
	height:100%
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-meta {
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-meta i {
  color: #6d009b;
  margin-right: 5px;
}

.read-more {
  color: #6d009b;
  text-decoration: none;
  font-weight: 500;
  font-family:"Libre Baskerville", Sans-serif; 	
}

/* Pagination */

.blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.blog-pagination ul li a {
  width: 40px;
  height: 40px;
  line-height: 23px;
  text-align: center;
  background: #fff;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination ul li a.active,
.blog-pagination ul li a:hover {
  background: #6d009b;
  color: #fff;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6d009b;
}

.recent-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.recent-post-content h4,
.recent-post-content h4 a {
  font-size: 16px;
  margin-bottom: 5px;
  color: #6d009b;
  text-decoration: none;
}

.recent-post-content span {
  font-size: 14px;
  color: #666;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  padding: 5px 15px;
  background: #f5f5f5;
  border-radius: 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: solid 1px #6d009b;
}

.tag-cloud a:hover {
  background: #6d009b;
  color: #fff;
}

/*------------blogdetails-------------*/

.blog-details-section {
  background: #f8f9fa;
}

.blog-details {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog-details-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-details-image img {
  width: 100%;
  border-radius: 10px;
}

.blog-details-content h1{
  font-size: calc(1.375rem + 1.5vw);
  line-height: 1.4 ;
  margin-bottom: 20px;
  color: #6d009b;
}


.blog-details-content h2 {
  font-size: 28px;
  line-height: 1.4 ;
  margin-bottom: 20px;
  color: #6d009b;
}

.blog-details-content h4{
     line-height: 1.4 ;
  margin-bottom: 20px;
  color: #6d009b;
}

.blog-text {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.blog-text h3 {
  font-size: 24px;
  margin: 25px 0 15px;
  line-height: 1.4;
  color: #6d009b;
}

blockquote {
  background: #f8f9fa;
  border-left: 4px solid #6d009b;
  padding: 20px;
  margin: 25px 0;
  font-style: italic;
}

.blog-share {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.social-share {
  display: flex;
  gap: 15px;
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: #6d009b;
  transition: all 0.3s ease;
}

.social-share a:hover {
  background: #6d009b;
  color: #fff;
}

.blog-comments {
  margin-top: 40px;
}

.comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.comment-content h4 {
  margin-bottom: 5px;
}

.comment-content span {
  color: #666;
  font-size: 14px;
}

.reply-btn {
  color: #6d009b;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

.comment-form {
  margin-top: 40px;
}

.comment-form .form-control {
  margin-bottom: 20px;
  padding: 12px;
}

.comment-form textarea {
  resize: none;
}

.comment-form button {
  background: #6d009b;
  border: none;
  padding: 12px 30px;
}

.comment-form button:hover {
  background: #4a0069;
}

/*--------servicepage--------*/

.servicebox {
  margin: 0px;
  padding: 0px;
}

.servicebox p {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  line-height: 24px;
}

/*----------bookinganappointmentpage--------*/

.bookappointmentleft {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 5px 5px 5px 5px;
  --e-column-margin-right: 5px;
  --e-column-margin-left: 5px;
  padding: 25px 25px 25px 25px;
}

.bookappointmentleft h2 {
  font-family: "Satisfy", Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.3);
  color: #6d009b;
}

.bookappointmentleft h3 {
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #999999;
}

.bookappointmentleftbtn-height {
  margin-top: -15px !important;
}

/*-------othertreatment-----*/

.othertreatmentbox {
  margin: 0px;
  padding: 60px 0px;
  width: 100%;
  display: block;
}

.othertreatmentbox1 {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  text-align: center;
}

.othertreatmentbox1 h2 {
  text-align: center;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
  margin-bottom: 30px;
}

.othertreatmentbox1 img {
  margin: 0px;
  padding: 0px;
  width: auto;
  height: auto;
}

/*-----code-----------*/

.bg-right {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  float: left;
}

.bg-right-slide {
  margin: 0px;
  padding: 0px;
  width: 100%;
  max-width: 700px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  line-height: 30px;
}

.res-btn {
  margin: 0px;
  padding: 0px;
  float: right;
  display: none;
  width: 40px;
  height: 40px;
  background-color: #6d009b;
  align-content: center;
  cursor: pointer;
  margin-top: 23px;
}

.res-btn i {
  color: #fff;
  font-size: 24px;
}

/*-------------sericedetails--------*/

.servicedetailsleft{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  font-family: "Libre Baskerville", Sans-serif;	
	
}
.servicedetailsleftimg{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.servicedetailslefttext{

  margin: 30px 0px;
  padding: 0px;
  width: 100%;
  display: block;
}
.servicedetailslefttext h2
{
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
	line-height: 1.6;
  color: #6d009b;
  margin-top: 63px;
}

.servicedetailslefttext h4{

    font-family: "Libre Baskerville", Sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
  margin-bottom: 15px;
  margin-top: 33px;
}

.servicedetailslefttext p{

  color: #000000;
  font-size: 14px;
  font-family: "Libre Baskerville", Sans-serif;
 
  
  font-style: normal;
  line-height: 24px;
}

.servicedetailslefttext1{

  margin: 0px;
  padding: 0px;
}

.servicedetailslefttext1 ul{

  margin: 0px;
  padding: 0px;
  display: block;
}

.servicedetailslefttext1 ul li{

  margin: 0px;
  padding: 0px;
  display: block;
  list-style: none;
}

.servicedetailslefttext1 ul li p{

    color: #353535;
  font-size: 14px;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
}

.servicedetailslefttext1 ul li p i{

  color: #4a0069;
  font-size: 14px;
}

.servicedetailslefttext1 ul li i {
    color: #4a0069;
    font-size: 14px;
}

.servicedetailslefttext1 p{

    color: #000000;
  font-size: 14px;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;

}

.servicedetailslefttext1 h6{

      font-family: "Libre Baskerville", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
  margin-bottom: 15px;
  margin-top: 0px;

}

.servicedetailsleftimg{

  margin: 0px;
  padding: 0px;
}
.servicedetailsleftimg h6{

  font-size: 18px;
}

.serviceleftbenifit{

  margin: 20px 0px;
  padding: 0px;
}

.serviceleftbenifit h4{

      font-family: "Libre Baskerville", Sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
  margin-bottom: 15px;
  margin-top: 33px;
}

.serviceleftsearching{

  margin: 30px 0px;
  padding: 0px;
  text-align: center;
  margin-top: 90px;

}

.serviceleftsearching h4{

      font-family: "Libre Baskerville", Sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  color: #6d009b;
  margin-bottom: 15px;
  margin-top: 33px;
}

.serviceleftsearching p{

      color: #000000;
  font-size: 14px;
  font-family: "Libre Baskerville", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
}

.serviceleftsearching a{

  background-color: #4a0069 !important;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
}

.serviceleftsearching a:hover{

  background-color: #4a0069 !important;
  color: #fff;
}

.serviceleftsearching button{

  background-color: #4a0069 !important;
  color: #fff;
  margin-top: 20px;
}

.serviceleftsearching button:hover{

  background-color: #4a0069 !important;
  color: #fff;
}

.servicedetailsright{

  margin: 0px;
  padding: 0px;
  position: sticky;
  z-index: 1;
  top: 100px;
  left: 0;
  bottom: 100px;
  border: solid 1px #d1d1d1;
}

.servicedetailsrightimg{

  margin: 0px;
  padding: 0px;
}

.servicedetailsrightimg a{
  color: #4a0069;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  margin: 15px 0px;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.servicedetailsrightimg a:hover {

  color: #4a0069 !important;
}

.servicedetailsrightcontact{

  margin: 15px 0px;
  padding: 0px;
  margin-top: 20px;
}

.servicedetailsrightcontact h4{

 padding: 0px 15px;
  font-size: 24px;
  color: #4a0069
}

.servicedetailsrightcontact1{

  margin-top: 30px;
  padding: 0px 15px;
}

.servicedetailsrightcontact2{
  display: flex;
  gap: 10px;
  margin: 0px;
}
.servicedetailsrightcontact2 i{

  line-height: 25px;
}

.servicedetailsrightcontact2 p a , .servicedetailsrightcontact2 p {

  color: #333;
  text-decoration: none;
}



.appointment-box {
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.appointment-box h2 {
    color: #6a0dad;
    font-weight: 600;
    margin-bottom: 5px;
}

.appointment-box p {
    color: #777;
    margin-bottom: 25px;
    font-size: 14px;
}

.appointment-box button{
    
 background-color: #4a0069 !important;
  color: #fff;
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
}

.serviceleftsearching button:hover{
    
  background-color: #4a0069 !important;
  color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.two {
    grid-template-columns: repeat(2, 1fr);
}

input, select {
    width: 100%;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1.5px solid #6a0dad;
    outline: none;
    font-size: 14px;
    color: #555;
}

select {
    background: #fff;
    appearance: none;
}

select:disabled {
    background: #eee;
}

/*button {*/
/*    margin-top: 10px;*/
    /*width: 260px;*/
/*    padding: 14px;*/
/*    border-radius: 30px;*/
/*    border: none;*/
/*    background: linear-gradient(135deg, #6a0dad, #8e2de2);*/
/*    color: #fff;*/
/*    font-size: 15px;*/
/*    font-weight: 500;*/
/*    cursor: pointer;*/
/*}*/

button:hover {
    opacity: 0.9;
}


.blog-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.blog-pagination a,
.blog-pagination span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.blog-pagination .current {
    background: #000;
    color: #fff;
}

#after-image{
width:100%;	
}

@media(max-width: 768px) {
    .form-row,
    .form-row.two {
        grid-template-columns: 1fr;
    }
    button {
        width: 100%;
    }
}


/*----------responsive------------*/

@media (max-width: 991px) {
  .dis-none {
    display: none;
  }

  .res-btn {
    display: block;
    align-content: center;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1001; /* Above nav */
  }

  .headerlogo {
    position: fixed;
    z-index: 9999999;
    background-color: #ffff;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
  }

  .headerlogo img {
    padding: 20px 10px;
  }

  .haedernavigation {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    height: auto;
    display: block;
    padding-top: 0px; /* Keep content below fixed toggle */
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: top 0.5s ease-in-out;
    -webkit-transition: top 0.5s ease-in-out;
    -moz-transition: top 0.5s ease-in-out;
    -ms-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
  }

  .haedernavigation nav ul {
    margin: 0px;
    padding: 0px 0px;
    display: block;
  }

  .haedernavigation nav ul li {
    margin: 0px;
    padding: 10px 10px;
    display: block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }

  .haedernavigation nav ul li:hover {
    background-color: #6d009b;
  }

  .haedernavigation nav ul li a {
    margin: 0px;
    padding: 5px 20px !important;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    width: 100% !important;
    display: block;
  }
  .haedernavigation nav ul li a.active ,  .haedernavigation nav ul li.active {

    background-color: #6d009b;
    color: #fff;
     padding: 10px 10px;
  }

  .haedernavigation nav ul li a:hover {
    color: #fff;
  }

  .haedernavigation.main {
    top: 12%;
  }

  .haedernavigation nav ul li ul.submenu {
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 150%;
    left: 0;
    width: 100%;
    background-color: #e2e2e2;
    display: none;
    z-index: 10;
  }
  .aboutusimg img {
    top: 0;
  }
  .headerbannermain {
    height: 362px;
  }
  .headerbannermain1 h3 {
    font-size: 22px;
  }
  .headerbannermain1 h2 {
    font-size: 20px;
    line-height: 27px;
  }
  .headerbannermain1 button {
    padding: 10px 5px;
  }
  .aboutustext h2 {
    font-size: 24px;
  }

  .whychooseustext h2 {
    font-size: 24px;
  }

  .procedurestextheader h2 {
    font-size: 24px;
  }

  .explorealltext {
    margin-top: 50%;
  }

  .youtubeheader h3 a {
    font-size: 24px;
    line-height: 29px;
  }
  .blog-header h2 {
    font-size: 24px;
  }

  .faq-header h2 {
    font-size: 24px;
  }

  .appointmentbox h3 {
    font-size: 24px;
  }

  .testimonial-carousel .owl-nav button.owl-next {
    right: -9px;
  }

  .testimonial-carousel .owl-nav button.owl-prev {
    left: -11px;
  }

  .blog-section {
    padding: 0px;
  }
  .margin-left {
    margin-left: 5px;
  }

  .aboutusimg img {
    height: 476px;
  }

  .yourtrustedright {
    left: 0;
  }

  .yourtrustedright h2 {
    font-size: 24px;
  }

  .expertiseleft {
    margin-top: 64%;
  }

  .expertiseboxright::before {
    right: 0;
  }
  .experiencetext h2 {
    font-size: 24px;
  }

  .mt-90 {
    margin-top: -33px !important;
  }

  .res-side {
    margin-top: 42px !important;
  }

  .image-carousel .owl-nav button.owl-prev {
    left: -40px;
  }
  .image-carousel .owl-nav button.owl-next {
    right: -40px;
  }
  .aboutus-bg h1 {
    font-size: 25px;
    margin-top:25%;
  }
  .aboutus-bg {
    min-height: 256px;
  }

  .servicebox p {
    font-size: 14px;
  }

  .contactusaddress1text h2 {
    font-size: 20px;
  }

  .contactusaddress1text p,
  .contactusaddress1text p a {
    font-size: 12px;
  }

  .headerbannermain1 {
    margin-top: 15%;
  }

  .headerbanner {
    margin-top: 26%;
  }
  
  /*whatsapp*/

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  /* padding: 10px 15px; */
  border-radius: 50%;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
 justify-content: center;
 align-items: center;
  cursor: pointer;
}

.whatsapp i {
  font-size: 18px;
  color: #fff;
}

/*----------04.12.2025--------*/

.callbtn{

  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #e0e0e0;
  /* padding: 10px 15px; */
  border-radius: 50%;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
 justify-content: center;
 align-items: center;
 cursor: pointer;

}

.callbtn i{

  color: #4a0069;
  font-size: 18px;
}

}


.responsive-table {
    width: 100%;
    overflow-x: auto;
	margin-top:30px;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.responsive-table th,
.responsive-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.responsive-table th {
    background-color: #f4f4f4;
    font-weight: 600;
}

@media (max-width: 768px) {
    .responsive-table table {
        font-size: 14px;
    }
    
    .faq-question h3 {
    font-size: 16px; 
    line-height: 1.5; 
}
.serviceleftsearching h4{
    font-size: 22px !important;
}

.servicedetailslefttext h4 {
    font-family: "Libre Baskerville", Sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}
.faq-item.active .faq-answer {
    max-height: 235px;
    padding-top: 15px;
}
.serviceleftbenifit h4 {
    line-height : 1.5 !important;
}
.servicedetailslefttext1 h6 { 
    font-size: 18px !important;
}

.serviceleftbenifit h4 { 
    font-size: 24px ;
    line-height:1.4 ;
}

.responsive-table th, .responsive-table td {
    padding: 10px 12px;
    font-size: 14px;
}

.servicedetailslefttext h2 {
    font-size:24px !important;
}

.aboutus-bg h2 { 
    font-size: 24px; 
    margin-top: 26%;
}

.blog-details-content h2 {
    font-size: 24px;
    line-height: 1.5 !important;
    margin-bottom: 20px;
    color: #6d009b;
}
.servicedetailsrightcontact1 {
    margin-top: 30px;
    padding: 0px 0px !important;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 50px 0px;
    margin-bottom: 30px;
}

.servicedetailsrightcontact2 p a,
.servicedetailsrightcontact2 p {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
 }


.table-responsive {
width: 100%;
overflow-x: auto;
margin-top: 15px;
}

.treatment-table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}

.treatment-table th {
background: #f5f5f5;
padding: 12px;
border: 1px solid #ddd;
text-align: center;
font-weight: 600;
}

.treatment-table td {
padding: 12px;
border: 1px solid #ddd;
text-align: center;
font-size: 15px;
}

@media(max-width:768px){
    .treatment-table th,
    .treatment-table td{
            font-size:14px;
            padding:10px;
    }

 .treatment-sidebaritem {
        font-size: 15px;
        padding: 12px 15px;
    }
}

.treatment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.treatment-sidebaritem {
    background: #f5f5f5;
    border-radius: 0px;
    padding: 4px 13px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    box-shadow: 0px 6px 3px rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
    border: none;
    font-family: "Libre Baskerville", sans-serif;
}

/* Hover Effect */
.treatment-sidebar a:hover {
  text-decoration: none !important;
}
.treatment-sidebaritem:hover  {
    background: #6d009b;
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0px 6px 14px rgba(13,110,253,0.2);
}



.transformation_image {
    margin-bottom: 30px;
}
.transformation_image img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}

