@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
:root {
  --background-color: #f1f1f1;
  --hover-color: rgb(102, 40, 245);
  --primary-color: #815A36;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

@font-face {
  font-family: 'All-over-modern-demo';
  src: url('../font/ALLOVER-MODERN-DEMO.woff2') format('woff2'),
       url('../font/ALLOVER-MODERN-DEMO.woff') format('woff'),
       url('../font/ALLOVER-MODERN-DEMO.ttf') format('truetype'),
       url('../font/ALLOVER-MODERN-DEMO.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
b {
    font-weight: 600;
}
a {
  text-decoration: none;
}
ul,
ol {
  list-style-type: none;
}
body {
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
}
.heading-font{
  font-family: 'All-over-modern-demo', 'Poppins', sans-serif;
  color: var(--primary-color);
}
.comma {
    font-family: 'Poppins', sans-serif;
}
.padding {
  padding: 3.75rem 0;
}
nav {
  background: var(--background-color);
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}
.logo img {
    height: 80px;
    width: auto;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
  font-size: 17px;
  color: var(--primary-color);
  padding: 20px 25px;
  display: block;
  font-weight: 400;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: #353535;
}
.has_dropdown ul li:hover > a {background-color: #fcebdd;}

/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
  padding: 10px 12px;
  font-size: 15px;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
}
.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
.mega_menu_item {
  width: 50%;
  padding: 30px 20px;
}
.main_menu ul li .mega_menu_item a {
  padding: 10px 0;
}

.main_menu ul li .mega_menu_item a:hover {
  color: black;
}
.mega_menu_item h3 {
  margin-bottom: 15px;
}
.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  /* left: 50%;
  transform: translateX(-50%);
  width: 1140px; */
  left: 40%;
  transform: translateX(0%);
  width: 500px;
}

.mobile_btn {
  display: none;
}
.appointment_btn {
    background: linear-gradient(to right, rgb(129 90 54), rgb(129 90 54 / 80%));
    padding: 0.7rem 2rem !important;
    color: white !important;
    border-radius: 25px;
    animation: blink 1s linear infinite;
}
@keyframes blink {
  0%, 100% {background: linear-gradient(to right, rgb(129 90 54), rgb(129 90 54 / 80%));}
  50% {background: linear-gradient(to right, rgb(129 90 54 / 80%), rgb(129 90 54));}
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 20px 16px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  .main_menu ul li a {
    border-bottom: 1px solid #ddd;
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

/* logo css */
.banner_area h2 {
  font-family: 'All-over-modern-demo';
}
.carousel-caption {
    position: absolute;
    right: auto;
    bottom: 20%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: var(--primary-color);
    text-align: left;
    width: 50%;
}
.slide-content h2 {
    font-size: 3rem;
    font-family: All-over-modern-demo;
    line-height: 1.5;
    margin-bottom: 20px;
    width: 75%;
}
.slide-content p {
    font-size: 1.125rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: black;
    width: 80%;
}
.slide-button {
    background-color: transparent;
    border-radius: 25px;
    background-image: linear-gradient(180deg, #815A36 0%, #815A36 100%);
    border-color: #815A36;
    color: white;
    padding: 7px 25px;
}
.slide-button:hover {
    color: white;
    transition: 0.3s;
}
.swiper-wrapper {
  height: auto !important;
}
.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    color: var(--primary-color) !important;
    background: rgb(255 255 255 / 53%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px !important;
}
.dept-card {
  border-radius: 12px;
  text-align: left;
  min-height: 120px;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.dept-icon {
  font-size: 20px;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dept-blue {border-color: #2a56c6;background: linear-gradient(135deg, #e7edfc 0%, #a3b9f2 100%);}
.dept-blue .dept-icon {background: linear-gradient(135deg, #2a56c6 0%, #1e40af 100%);}
.dept-red {background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);border: 2px solid #dc3545;}
.dept-red .dept-icon {background: linear-gradient(135deg, #dc3545 0%, #c53030 100%);}
.dept-orange {border-color: #fd7e14; background: linear-gradient(135deg, #fff8f0 0%, #fed7aa 100%);}
.dept-orange .dept-icon {background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);}
.dept-pink {border-color: #e83e8c; background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%); }
.dept-pink .dept-icon {background: linear-gradient(135deg, #e83e8c 0%, #d6336c 100%);}
.dept-green {border-color: #20c997; background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); }
.dept-green .dept-icon {background: linear-gradient(135deg, #20c997 0%, #198754 100%);}

/* Quick About Section */
.quick-about {
    padding: 5rem 0;
    background: linear-gradient(to right,rgb(253 230 215 / .4),#ffffff);
}
.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'All-over-modern-demo', sans-serif;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/*================================ Why Choose Us Section CSS Start ===============================*/
.service-benefites-section-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-benefites-section-area .benefites-box {
  position: relative;
  z-index: 1;
}
.service-benefites-section-area .benefites-box .star {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: inline-block;
  background: white;
  line-height: 150px;
  text-align: center;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -85px;
}
.keyframe5 {
    position: relative;
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
    height: 100%;
}
@keyframes animation-7 {
    0% {
      
      transform:rotate(0) ;
    }

    100% {
    
      transform: rotate(-1000deg);
    }
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea {
  position: relative;
  background: linear-gradient(to right, rgb(242 224 211 / 37%), rgb(255 241 231 / 61%));
  padding: 32px;
  border-radius: 8px;
  transition: all 0.4s;
  height: 100%;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea:hover {
  transform: translateY(-5px);
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea:hover .icons {
  transform: rotateY(-180deg);
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .icons {
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  background: white;
  transition: all 0.4s;
  position: absolute;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .icons img {
  height: 100%;
  width: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  text-align: center;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area {
  padding-left: 100px;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .title {
  color: var(--primary-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.2px;
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .title:hover {
  color: black;
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area p {
  color: #202020;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: -0.4px;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .readmore {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.4px;
  display: inline-block;
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .readmore svg {
  margin-left: 4px;
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .readmore:hover {
  color: var(--ztc-text-text-12);
  transition: all 0.4s;
}
.service-benefites-section-area .benefites-box .benefites-widget-boxarea .content-area .readmore:hover svg {
  transform: rotate(45deg);
}

/* .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #967b5d;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
} */
/* Doctors Preview Section */
.doctors-preview {
    padding: 5rem 0;
}
.doctors {
    padding: 80px 0;
    background: #f8f9fa;
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 25px
}
.doctor-card {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.doctor-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d5ac87 0%, #956940 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.doctor-image i {
    font-size: 2.4rem;
    color: white;
}
.doctor-image img {
    font-size: 2.4rem;
    color: white;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 6px 10px 12px;
}
.doctor-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.btn.viewmorebtn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    padding: 10px 2rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(45deg, #ffead5, #fffaf5);
  color: var(--primary-color);
  text-align: center;
}
.cta-content {
    max-width: 1000px;
    margin: auto;
}
.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: normal;
    font-family: 'All-over-modern-demo';
}
.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #333;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-large {
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  background: var(--primary-color);
  color: white;
  border: none;
}
.btn-large:hover {
  background: #efdcca;
  border: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/*========================= Blog Section Css Start ==============================*/
.vl-blog-4-area {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.vl-blog-4-area .vl-blog-1-item {
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(to right,rgb(253 230 215 / .4),#fffcfa);
}
.vl-blog-4-area .vl-blog-1-item:hover .vl-blog-1-thumb img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-thumb {
  position: relative;
  z-index: 1;
  border-radius: 8px 8px 0 0;
  height: 250px;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: all 0.4s;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content {
  padding: 24px 30px 24px 24px;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-meta ul li {
  display: inline-block;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-meta ul li a {
  font-style: normal;
  line-height: 14px;
  display: inline-block;
  transition: all 0.4s;
  border-radius: 50px;
  background: rgba(68, 22, 255, 0.1);
  box-shadow: 0px 3px 8px 0px rgba(68, 22, 255, 0.05);
  padding: 8px;
  text-transform: uppercase;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-title a {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: inline-block;
  transition: all 0.4s;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-title a:hover {
  color: var(--primary-color);
  transition: all 0.4s;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-icon a.learnmore {
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.32px;
  display: inline-block;
  transition: all 0.4s;
  color: #000000;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-icon a.learnmore svg {
  margin-left: 4px;
  height: 16px;
  width: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-icon a.learnmore:hover {
  color: black;
  transition: all 0.4s;
}
.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .vl-blog-1-icon a.learnmore:hover svg {
  transform: rotate(45deg);
  transition: all 0.4s;
}
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #202020;
}
.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Blog Details Page Css Start */

.vl-blog-details-section .blog-others-sidebar .img1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.vl-blog-details-section .blog-others-sidebar h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.vl-blog-details-section .blog-others-sidebar .list-author li {
  display: inline-block;
}
@media (max-width: 767px) {
  .vl-blog-details-section .blog-others-sidebar .list-author li:nth-child(3) {
    margin-top: 10px;
  }
}
.vl-blog-details-section .blog-others-sidebar .list-author li:nth-child(1) {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  display: inline-block;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 4px;
  margin: 0 16px 0 0;
}
.vl-blog-details-section .blog-others-sidebar .list-author li {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
}
.vl-blog-details-section .blog-others-sidebar .list-author li a img {
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: -5px 4px 0 0;
}
.vl-blog-details-section .blog-others-sidebar .list-author li span {
  color: #CDCDD6;
  display: inline-block;
  margin: 0 8px;
}
.vl-blog-details-section .blog-others-sidebar .m-list-area .m-list li {
  color: #272727;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  display: inline-block;
  transition: all 0.4s;
  margin-top: 16px;
}
.vl-blog-details-section .blog-others-sidebar .m-list-area .m-list li img {
  margin: 0 6px 0 0;
}
.vl-blog-details-section .blog-others-sidebar .case-pera-box {
  border-radius: 16px;
  background: var(--ztc-bg-bg-10);
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}
.vl-blog-details-section .blog-others-sidebar .case-pera-box p {
  color: #ffffff;
  font-size: var(--ztc-font-size-font-s22);
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(to right,rgb(253 230 215 / .4),#ffffff);
}
.owl-carousel .owl-stage-outer {
    padding: 15px 0px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.2;
    font-family: serif;
}

.review-content {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.1rem;
}

.star.empty {
    color: #e9ecef;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d5ac87 0%, #956940 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.reviewer-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.reviewer-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-] {
    font-size: 35px !important;
    color: var(--primary-color) !important;
}
button.owl-next {
    position: absolute;
    right: -40px;
    top: 45%;
}
button.owl-prev {
    position: absolute;
    left: -40px;
    top: 45%;
}

/* ==========================================================================
  20. FOOTER
  =========================================================================== */

#footer-1 .footer-box {
  padding-left: 10%;
}

.footer.bg-image {
  background-image: url(../images/footer-bg.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;   
  background-size: cover;
}

/*------------------------------------------*/
/*   FOOTER TYPOGRAPHY
/*------------------------------------------*/

.footer h5.h5-xs {
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 25px;
  font-family: 'All-over-modern-demo';
  color: var(--primary-color);
  font-weight: 500;
}
.wide-40 {padding: 40px 0px 20px;}
.footer {background: linear-gradient(45deg, #fff6f0, #fffbf9);}
.footer-info img {width: auto;height: 80px;}

#footer-3 .footer-info p {
  font-weight: 400;
  margin-bottom: 3px;
}
.foo-address {
  text-indent: -13px;
  margin-left: 27px;
}
.footer-box p {
  font-size: 0.975rem;
}

.footer-box p span {
  color: #444;
  font-size: 0.925rem;
  font-weight: 500;
}

.footer-box h5.h5-xl {
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

#footer-3 p.foo-email {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.footer-box p i {color: var(--primary-color);margin-right: 5px;}
.footer-box p a {color: black; text-decoration: none;}

p.foo-email a {
  text-decoration: none;
}

p.footer-copyright {
  font-size: 0.95rem;
  margin-bottom: 0;
}

p.footer-copyright span {
  font-weight: 700;
}

.footer.bg-image h5.h5-xs,
.footer.bg-image p.foo-email a {
  color: #fff;
}

.footer.bg-image .footer-box p,
.footer.bg-image .footer-info p,
.footer.bg-image .footer-links li a,
.footer.bg-image p.footer-copyright {
  color: #c5d1dc;
}

.footer.bg-image .footer-box p span,
.footer.bg-image p.footer-copyright span {
  color: #fff;
}

/*------------------------------------------*/
/*   FOOTER LINKS
/*------------------------------------------*/

.footer-links li {
  font-size: 0.975rem;
  width: auto !important;
  display: block !important;
  vertical-align: top;
  clear: none !important;
  margin: 0 0 9px 0;
  padding: 0;
}

.footer-links li a:hover {
  color: #000;
  text-decoration: underline;
}

/*------------------------------------------*/
/*   FOOTER SOCIAL LINKS
/*------------------------------------------*/

.foo-socials {
  display: inline-block; 
  padding-left: 0;
  margin: 0 auto 0;
}

.foo-socials li {
  width: auto !important;
  display: inline-block !important;
  vertical-align: top;
  clear: none !important;
  margin: 0 0 8px 0;
  padding: 0;
}

.foo-socials a {
  display: flex;
  background-color: transparent;
  border: 2px solid #666;
  width: 36px;
  height: 36px;
  color: #666;
  font-size: 16px;
  line-height: 34px!important;
  margin-right: 4px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;  
  align-items: center;
  justify-content: center;
}

.footer.bg-image .foo-socials a {
  border: 2px solid #c5d1dc;
  color: #c5d1dc;
}

.foo-socials a.ico-facebook:hover { background-color: #3b5998; border-color: #3b5998; color: #fff; }
.foo-socials a.ico-twitter:hover { background-color: #00a9ed; border-color: #00a9ed; color: #fff; }
.foo-socials a.ico-instagram:hover { background-color: #dc3c59; border-color: #dc3c59; color: #fff; }
.foo-socials a.ico-dribbble:hover { background-color: #d92d84; border-color: #d92d84; color: #fff; }
.foo-socials a.ico-behance:hover { background-color: #2473f6; border-color: #2473f6; color: #fff; } 
.foo-socials a.ico-pinterest:hover { background-color: #ac281a; border-color: #ac281a; color: #fff; }
.foo-socials a.ico-linkedin:hover { background-color: #015886; border-color: #015886; color: #fff; }
.foo-socials a.ico-google-plus:hover { background-color: #cd1111; border-color: #cd1111; color: #fff; } 
.foo-socials a.ico-youtube:hover { background-color: #cd1b20; border-color: #cd1b20; color: #fff; } 
.foo-socials a.ico-tumblr:hover { background-color: #3a5976; border-color: #3a5976; color: #fff; }
.foo-socials a.ico-vk:hover { background-color: #3b5998; border-color: #3b5998; color: #fff; }
.foo-socials a.ico-yahoo:hover { background-color: #7b0099; border-color: #7b0099; color: #fff; }
.foo-socials a.ico-yelp:hover { background-color: #d32323; border-color: #d32323; color: #fff; }

.foo-links li a {color: black;}
.foo-links li:hover a {color: var(--primary-color);text-decoration: none;}
.footer-links li a {color: black}
.footer-links li:hover a {color: var(--primary-color);text-decoration: none;}
/* Responsive Design for Blog and Reviews */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 1rem;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: -5px;
    }
}


.link {
  width: 7rem;
  height: 7rem;
  display: inline-block;
  font: 300 1.55rem/1.4 "Josefin Sans";
  text-transform: uppercase;
  letter-spacing: 0.1175em;
  word-spacing: 0.3em;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9;
}
.link__svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #2B3338;
  stroke: #2B3338;
  stroke-width: 0.05em;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.link__cloud {
  transform-origin: 50% 50%;
  -webkit-animation: rotate normal infinite 60s linear;
          animation: rotate normal infinite 60s linear;
  fill: rgba(255, 255, 255, 0.15);
}
.link__face, .link__arrow {
  transform-origin: 50% 50%;
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.link:hover .link__face, .link:hover .link__arrow {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.link__arrow {
  stroke-width: 0.075em;
}
.link__text {
  -webkit-animation: rotateReverse normal infinite 20s linear;
          animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}
.link:hover .link__text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.link--alt {
  font-size: 1.35rem;
  letter-spacing: 0;
  word-spacing: 0;
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* Floating Callback Box Styles */
.floating-callback-box {
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1e5e9;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
}

.floating-callback-box.show {
    right: 20px;
    display: block;
}

.floating-callback-header {
  background: linear-gradient(to right, rgb(253 230 215 / 69%), rgb(253 233 220 / 29%));
  /* background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%); */
  color: var(--primary-color);
  padding: 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-callback-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-callback-close {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-callback-close:hover {
    background: rgba(255,255,255,0.2);
}

.floating-callback-content {
    padding: 20px;
}

.floating-callback-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.floating-callback-form .form-group {
    margin-bottom: 15px;
}

.floating-callback-form input,
.floating-callback-form select,
.floating-callback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.floating-callback-form input:focus,
.floating-callback-form select:focus,
.floating-callback-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.floating-callback-form textarea {
    resize: vertical;
    min-height: 60px;
}

.floating-callback-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgb(129 90 54 / 83%) 0%, #815A36 100%);
  color: white !important;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.floating-callback-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.vl-btn4 {
  color: white !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: inline-block;
  transition: all 0.4s;
  border-radius: 50px;
  background: var(--primary-color);
  box-shadow: 0px 4px 15px 0px rgba(129, 90, 54, 0.20);
  padding: 10px 20px !important;
  position: relative;
  z-index: 1;
}
 .vl-btn4:hover {
	 color: white;
	 transition: all 0.4s;
	 transform: translateY(-5px);
}
 .vl-btn4:hover svg {
	 transform: rotate(45deg);
	 transition: all 0.4s;
}
 .vl-btn4:hover::after {
	 width: 100%;
	 left: 0;
	 transition: all 0.4s;
	 visibility: visible;
	 opacity: 1;
}
 .vl-btn4::after {
	 position: absolute;
	 content: "";
	 height: 100%;
	 left: 50%;
	 top: 0;
	 transition: all 0.4s;
	 width: 10px;
	 background: #232323;
	 border-radius: 50px;
	 z-index: -1;
	 visibility: hidden;
	 opacity: 0;
}
 .vl-btn4 svg {
	 margin-left: 10px;
	 transition: all 0.4s;
}

/* Inner Pages Css Start */
.inner-page-banner {
    position: relative;
    z-index: 1;
    padding: 120px 0 90px;
    background: url(../img/inner_bg.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    color: var(--primary-color);
}
.inner-page-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'All-over-modern-demo', sans-serif;
    line-height: 127%;
    color: #A97A4E;
}
.our-mison-area {
    position: relative;
    z-index: 1;
}
.our-mison-area::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to right,rgb(253 230 215 / .4),#ffffff);
    z-index: -1;
}
.single-mison {
    padding: 30px;
    background-color: #573a20;
}
.single-mison h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
}
.single-mison p {
    color: #fff;
}
.single-mison.bg-color {
    background-color: var(--primary-color);
}
.value-list {display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;}
.value-item {flex: 1; min-width: 200px; max-width: 300px; background: linear-gradient(to right,rgb(253 230 215 / .4),#ffffff); padding: 30px; border-radius: 10px; box-shadow: 0 4px 10px rgb(254 245 240);}
.value-item h3 {font-size: 20px; color: var(--primary-color); margin-bottom: 15px;}
.value-item p {color: #666; line-height: 1.6;}

/* Contact Form Section Css Start */

.contact-section .container-lg {background: linear-gradient(90deg, #ffffff 50%, #fdf4ec 50%);padding: 5rem 0;}
.contact-title {
  font-family: "All-over-modern-demo", Sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 56px;
  color: var(--primary-color);
  margin-bottom: 4rem;
}
.contact-info p {
  font-size: 1rem;
  color: #4a3a2c;
  margin: 0.5rem 0;
}
.contact-info i {
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-right: 8px;
}
/* Contact Form */
.form-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.form-desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #333;
}
.form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-size: 0.95rem;
}
.btn-send {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
}
.btn-send:hover {
  background: var(--primary-color);
  color: #fff;
}
/* Gallery Section Css Start */
.gallery-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  height: 300px;
  width: 100%;
}
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-img {
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Zoom Effect */
.zoom:hover .gallery-img {
  transform: scale(1.1);
}
/* Title Effect */
.gallery-title {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgb(99 66 35 / 70%);
  color: white;
  transition: all 0.3s ease;
  z-index: 2;
  text-align: center;
  font-size: 1.2rem;
}
.gallery-item:hover .gallery-title {
    bottom: 0;
}

/* Department Section Css Start */

.doctor-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: sticky;
  top: 10px;
}
.doctor-card:hover {
  transform: translateY(-5px);
}
.doctor-img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: auto;
  display: block;
}
.section-title {
  margin-bottom: 30px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px 0 0;
}
.service-bg {
  background: linear-gradient(to right,rgb(253 230 215 / .4),#ffffff);
}
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding: 25px 20px;
  height: 100%;
  background: rgb(255 255 255 / 80%);
}
.service-card:hover {
  transform: translateY(-5px);
  background: var(--primary-color);
}
.service-card:hover p, .service-card:hover h5 {color: white!important;}
.service-icon {font-size: 30px;color: var(--primary-color);background: #fef5ef;border-radius:50%;padding:10px;height:60px;width:60px;display:flex;align-items:center;justify-content:center;margin:0px auto 15px;}
.service-img {border-radius: 200px 0 0 0;height: 550px;object-fit: cover;width:100%;}
.simple-icon-box{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  max-width:480px; 
}
.sib-icon svg{
  display: block;
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  flex: 0 0 26px;
  margin-top: -2px;
}
.sib-text{
  margin:0;
  font-size:15px;
  line-height:1.4;
  color:#333;
}
.sib-icon {
    margin-top: 3px;
}
.service-card:hover .sib-text {color: white;}
.service-card:hover .sib-icon svg {fill: white;}
.intro_section p {text-align:justify;}
.list-group-item {background: transparent;}

/* Appointment Page CSS Start */

.appointment-form {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin: 30px auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #1e3c72;
  font-size: 2em;
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
  font-size: 1.1em;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 500;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  z-index: 9;
}

.appointment-form .form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.appointment-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(30, 60, 114, 0.2);
  outline: none;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9em;
  margin-top: 5px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-control.error {
  border-color: #e74c3c;
}

.form-control.success {
  border-color: #2ecc71;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  padding: 10px;
  border: 2px solid #ad947c;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: linear-gradient(to right, rgb(253 230 215 / .4), rgb(255 247 242 / 10%));
}

.time-slot.selected {
  background: #1e3c72;
  color: white;
  border-color: #1e3c72;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #a97a4e;
  transform: translateY(-2px);
}

.success-message {
  display: none;
  text-align: center;
  color: #2ecc71;
  margin-top: 20px;
  font-size: 1.1em;
  padding: 10px;
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.1);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

@media (max-width: 480px) {
  .appointment-form {
      padding: 20px;
  }

  .form-header h2 {
      font-size: 1.5em;
  }

  .time-slots {
      grid-template-columns: repeat(2, 1fr);
  }
}
/* Call To Action Section of Blog Details Page Css Start */

.cta4-section-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, #e9c9ab 8%, #806043);
}
.cta4-section-area .cta-content-area {
    padding: 60px 0 60px;
}
.cta4-section-area .cta-content-area h2 {
    color: white;
    line-height: normal;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.cta4-section-area .cta-content-area p {
    color: #fff;
    opacity: 80% !important;
}
.cta4-section-area .cta-content-area .btn-area1 .phone {
    color: #222222;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    margin: 0 0 0 16px;
    position: relative;
    z-index: 1;
}
.cta4-section-area .cta-circle-area {
    position: relative;
    z-index: 1;
    width: 550px;
    bottom: -30px;
    left: -150px;
}
.cta4-section-area .cta-circle-area .bg1 {
    position: absolute;
    bottom: 0;
}

/* FAQ Page Css Start */

.faq-section .accordian-area .accordion-item {
    border: none;
    padding: 0;
    background: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 20px;
}
.faq-section .accordian-area .accordion-item button {
    box-shadow: none;
    border: none;
    outline: none;
    color: #1C293F;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    padding: 26px 20px;
    transition: all 0.4s;
    border-radius: 8px;
    background: #F4F4F9;
}
.faq-section .accordian-area .accordion-item button.accordion-button:not(.collapsed) {
    background: none;
    transition: all 0.4s;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 26px 20px 16px 20px;
    color: #fff;
}
.faq-section .accordian-area .accordion-item .accordion-body p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}