/****************
Template Name: Dr Swati Jain
Template URL: https://drswatijain.com/
Description: MBBS, MS, FMAS Obstetrician and Gynaecologist
Author: Motion Graphics Media
Author URL: https://motiongraphicsmedia.com/
Version: 1.0
******************/

/*=================
01 - IMPORTED CSS
===================*/

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&amp;family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap");

/*================================================
02 - DEFAULT CSS
==================================================*/

body {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #222219;
}

html,
body {
  height: 100%;
}
.main-wrapper {
  overflow-x: hidden;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: #132c45;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  color: #132c45;
}

a:focus,
input:focus,
button:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #132c45;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

h1,
.h1 {
  font-size: 68px;
  line-height: 120%;
}

h2,
.h2 {
  font-size: 44px;
  line-height: 120%;
}

h3,
.h3 {
  font-size: 34px;
  line-height: 100%;
}

h4,
.h4 {
  font-size: 30px;
  line-height: 110%;
}

h5,
.h5 {
  font-size: 32px;
  line-height: 110%;
}

h6,
.h6 {
  font-size: 28px;
  line-height: 110%;
}

p {
  margin-bottom: 20px;
  color: #7a7a6e;
}

p:last-child {
  margin-bottom: 0 !important;
}

figure {
  margin: 0;
}

button {
  border: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background: transparent;
}

.section,
section {
  padding: 70px 0;
}

.container {
  max-width: 1200px;
}

.container.wide {
  max-width: 1400px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
  border: none;
}

.btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-primary {
  background: #132c45;
  color: #ffffff;
}

.btn-primary:hover {
  background: #d4999f;
}

.btn-secondary {
  color: #c87880;
  border: 1px solid #d4999f;
  background: rgb(212 153 159 / 19%);
}

.btn-secondary:hover {
  background: #1a7f90;
  color: #ffffff;
}

.btn:focus,
.btn:focus-visible,
.btn:active,
.btn.active,
.btn-check:focus + .btn,
.btn-check:checked + .btn {
  outline: none !important;
  box-shadow: none !important;
}

.btn-primary:active,
.btn-primary:focus,
.btn-secondary:active,
.btn-secondary:focus {
  background: #132c45 !important;
  color: #ffffff !important;
  border-color: #132c45 !important;
}

.btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.section-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4999f;
  background: rgba(10, 107, 94, 0.08);
  border: 1px solid rgba(10, 107, 94, 0.18);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 15px;
}

.section-label:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a457;
}

.section-label span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #d4999f;
}

.section-heading em {
  font-style: normal;
  color: #d4999f;
}

/*================================================
03 - HEADER AREA CSS
==================================================*/

.header-area {
  padding: 15px 0;
  position: relative;
  z-index: 99;
}

.header-box {
  background: #fff;
}

.site-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #d4999f;
  font-weight: 700;
  font-size: 30px;
}

.site-logo:hover {
  color: #d4999f;
}

.site-logo img {
  min-width: 80px;
  width: 260px;
  margin-right: 15px;
}

.mainmenu {
  margin-left: 70px;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list > li {
  position: relative;
}

.menu-list li a {
  text-transform: capitalize;
}

.menu-list > li > a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #132c45;
  padding: 10px 6px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.menu-list > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #d4999f;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

.mainmenu ul li.has-submenu > a:before {
  position: absolute;
  content: "";
  right: 0px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #7a7a6e;
  border-bottom: 1px solid #7a7a6e;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  top: 47%;
}

.menu-list > li:hover > a {
  color: #d4999f;
}

.menu-list > li:hover > a:after {
  width: 100%;
}

.menu-list > li > ul {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 350px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 99;
}

.menu-list > li:hover > ul {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.menu-list li a {
  display: block;
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #7a7a6e;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.menu-list > li > ul a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #d4999f;
  padding-left: 22px;
}

.phone-call {
  margin-right: 25px;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.phone-call:hover {
  color: #ffffff;
  text-decoration: underline;
}

.phone-call em {
  margin: 0px 5px;
  color: #ffffff;
  text-decoration: none;
}

.header-box .phone-call,
.header-box .phone-call em {
  color: #d4999f;
  text-decoration: none;
}

/*================================================
04 - HERO AREA CSS
==================================================*/
.hero-banner-area{
  background-image: url(../img/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom:1px solid #f5f5f5;
}

.hero-area {
  position: relative;
  z-index: 1;
}

.hero-sub-heading {
  display: inline-block;
}

.hero-sub-heading span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  border: 1px solid #d4999f;
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #d4999f;
  background: rgb(212 153 159 / 16%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.hero-sub-heading em {
  color: #d4a457;
  font-size: 15px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}

.hero-text h1 {
  margin-top: 20px;
  color: #d4999f;
}

.hero-text h2 {
  font-size: 28px;
  line-height: 30px;
}

.hero-sub-heading p {
  font-size: 16px;
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-img img {
  position: relative;
  z-index: 2;
  right: -200px;
  top: -50px;
}

.header-background {
  position: absolute;
  left: auto;
  top: -120px;
  right: 0%;
  bottom: 0%;
  width: 50%;
  height: 100%;
  /* background: linear-gradient(269deg, #d4999f, transparent); */
  background-color: #d4999f;
  background-position: 100% 100%;
  background-size: auto;
  background-repeat: no-repeat;
}

.hero-bar {
  position: absolute;
  left: 65%;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ffffff;
  padding: 15px 5px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 5;
  width: 420px;
}

.hero-bar a {
  margin-right: 10px;
}

.hero-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.hero-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #132c45;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  margin: 0px 10px;
}

.hero-icon i {
  color: #ffffff;
}

.text h2 {
  font-size: 16px;
  margin: 0px;
}

.text p {
  font-size: 14px;
  line-height: normal;
}

.stats {
  margin-top: 70px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #132c45;
  margin: 0px;
}

.stat-box p {
  margin-top: 0px;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.group_btn a {
  margin-right: 10px;
}

/*================================================
05 - ABOUT AREA CSS
==================================================*/

.about-section {
  background: #ffffff;
  margin-top: -120px;
}

.about-section ul li {
  color: #7a7a6e;
  font-size: 16px;
}

.about-section ul li .icon {
  color: #d4999f;
  font-weight: 900;
}

.about-us {
  margin-top: 0px;
}

.about-image-wrap {
  position: relative;
}

.about-image img {
  border-radius: 5px;
  width: 95%;
}

.about-image-accent {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 55%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 107, 94, 0.12);
  border: 2px solid #f2cc95;
  aspect-ratio: 4/3;
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: 20px;
  background: #d4999f;
  color: #ffffff;
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(10, 107, 94, 0.12);
}

.about-experience-badge span:first-child {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-experience-badge span:last-child {
  display: block;
  margin-top: 6px;
  opacity: 0.85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.3;
}

.highlight-box {
  background: rgba(10, 107, 94, 0.06);
  border-left: 3px solid #d4999f;
  padding: 15px 20px;
}

.highlight-box p {
  color: #d4999f;
  font-weight: 500;
  margin: 0;
}

.about-meta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.meta-value {
  font-weight: 600;
  color: #222219;
  font-size: 16px;
}

.meta-label {
  font-size: 15px;
  color: #7a7a6e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.meta-value1 {
  font-weight: 600;
  color: #d4999f;
  font-size: 16px;
}

.about-specialties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 30px;
}

.specialty-tag {
  font-size: 15px;
  font-weight: 600;
  color: #d4999f;
  background: rgba(10, 107, 94, 0.08);
  border: 1px solid rgba(10, 107, 94, 0.18);
  padding: 5px 15px;
  border-radius: 100px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.specialty-tag:hover {
  background: #d4999f;
  color: #ffffff;
}

/*================================================
06 - SERVICE AREA CSS
==================================================*/

.services {
  margin-top: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #d8d4c8;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #d4999f;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.service-card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.service-card:hover:before {
  height: 100%;
  width: 4px;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(10, 107, 94, 0.08);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.service-card:hover .service-icon-wrap {
  background: rgba(10, 107, 94, 0.12);
}

.service-icon {
  font-size: 24px;
  color: #d4999f;
}

.service-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  color: #7a7a6e;
  margin-bottom: 30px;
}

.service-link {
  font-size: 15px;
  font-weight: 700;
  color: #d4999f;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.service-link:hover {
  gap: 10px;
  color: #d4999f;
}

/*================================================
07 - EDUCATION AREA CSS
==================================================*/

.education-area {
  background: rgba(238, 234, 226, 0.3);
}

.timeline-tabs {
  margin: 30px;
}

.timeline-tabs button {
  margin: 0px 5px 0px 5px;
}

.tab-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 100px;
  border: 2px solid #d8d4c8;
  color: #7a7a6e;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.tab-btn.active {
  background: #d4999f;
  border-color: #d4999f;
  color: #ffffff;
}

.tab-btn:hover:not(.active) {
  border-color: #d4999f;
  color: #d4999f;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.timeline {
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d8d4c8;
}

.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d4999f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #d4999f;
  font-size: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.timeline-item:hover .timeline-dot {
  background: #d4999f;
  color: #ffffff;
}

.timeline-content {
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.timeline-period {
  font-size: 15px;
  letter-spacing: 1px;
  color: #d4999f;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-content h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.timeline-institution {
  color: #7a7a6e;
  font-weight: 500;
  margin-bottom: 10px;
}

/*================================================
08 - BLOG AREA CSS
==================================================*/
.blog-card {
  background: rgba(238, 234, 226, 0.3);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  height: 100%;
}

.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.blog-category {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #d4999f;
  padding: 5px 10px;
}

.blog-category span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
}

.blog-body {
  padding: 25px;
}

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: #7a7a6e;
  margin-bottom: 15px;
}

.blog-meta i {
  font-size: 15px;
}

.blog-body h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.blog-body h3 :hover {
  color: #d4999f;
}

.blog-read-more a {
  font-size: 15px;
  font-weight: 700;
  color: #d4999f;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}

.blog-read-more a:hover {
  gap: 10px;
  color: #d4999f;
}

/*================================================
09 - TESTIMONIAL AREA CSS
==================================================*/

.testimonials-section {
  background: #fff9fa;
}

.testimonial-card {
  border: 1px solid #222219;
  border-radius: 10px;
  padding: 40px 35px;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  margin: 0px 5px 0px 5px;
}

.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid #d8d4c8;
}

.testimonial-card .review-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-card .review-star span i {
  font-size: 28px;
  color: #d4a457;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.testimonial-card .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.rating i.filled {
  color: #d4a457;
}

.testimonial-card .testimonial-content {
  margin-bottom: 30px;
}

.testimonial-card .testimonial-content .description {
  line-height: 25px;
}

.testimonial-card .testimonial-author .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(99, 102, 241, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-card .testimonial-author .author-name h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.testimonial-card .testimonial-author .author-name p {
  margin: 2px 0 0;
}

.testimonial-card .testimonial-author .author-name span {
  font-weight: 600;
}

.slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  border: none;
  padding: 0px;
  margin-top: 20px;
}

.slick-dots li.slick-active button {
  width: 22px;
  background: #d4999f;
  border-radius: 20px;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #d4999f;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.slick-prev {
  left: -55px;
}

.slick-next {
  right: -55px;
}

.slick-prev:after,
.slick-next:after {
  content: "";
  width: 7px;
  height: 7px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  display: inline-block;
}

.slick-prev:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.slick-next:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: #d4999f;
}

.slick-prev:before,
.slick-next:before {
  content: "" !important;
  display: none !important;
}

/*================================================
10 - CONTACT AREA CSS
==================================================*/

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-cards {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 20px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.contact-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #d4999f;
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(10, 107, 94, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #d4999f;
  font-size: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-card-text strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #7a7a6e;
  margin-bottom: 3px;
}

.contact-card-text span {
  font-weight: 600;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.social-link:hover {
  background: #d4999f;
  border-color: #d4999f;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #d8d4c8;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #d4999f;
  border-radius: 10px;
  outline: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  height: 50px;
}

.form-control:focus {
  border-color: #d4999f;
  background: #ffffff;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  color: #7a7a6e;
}

.form-control::-moz-placeholder {
  color: #7a7a6e;
}

.form-control:-ms-input-placeholder {
  color: #7a7a6e;
}

.form-control::placeholder {
  color: #7a7a6e;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/*================================================
11 - CONTACT MAP CSS
==================================================*/

.doctor-map-area {
  padding-bottom: 70px;
}

.doctor-map-box {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 101, 120, 0.12);
  border: 1px solid #e6f0f5;
}

.doctor-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.84252 0.14303999999999994 0.014439999999999995 0 0 0.04252 0.94304 0.014439999999999995 0 0 0.04252 0.14303999999999994 0.81444 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" intercept="-0.025000000000000022" /><feFuncG type="linear" slope="1.05" intercept="-0.025000000000000022" /><feFuncB type="linear" slope="1.05" intercept="-0.025000000000000022" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: grayscale(20%) contrast(1.05);
  filter: grayscale(20%) contrast(1.05);
}

.doctor-map-box:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 101, 120, 0.15);
}

.doctor-map-box:hover iframe {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.1" intercept="-0.050000000000000044" /><feFuncG type="linear" slope="1.1" intercept="-0.050000000000000044" /><feFuncB type="linear" slope="1.1" intercept="-0.050000000000000044" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: grayscale(0%) contrast(1.1);
  filter: grayscale(0%) contrast(1.1);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

/*================================================
12 - FOOTER AREA CSS
==================================================*/

.footer {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-dark {
  background: -webkit-linear-gradient(top, #1f2933 0%, #111827 100%);
  background: linear-gradient(180deg, #1f2933 0%, #111827 100%);
}

.footer-top {
  padding: 70px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-title:after {
  content: "";
  width: 36px;
  height: 3px;
  background: #d4999f;
  border-radius: 3px;
  display: block;
  margin-top: 8px;
}

.newsletter-form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  outline: none;
  font-size: 16px;
  background: #ffffff;
}

.newsletter-form button {
  background: #d4999f;
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.hospital-info p {
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.5);
}

.hospital-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 25px 0px;
}

.hospital-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hospital-count span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.footer-main {
  padding: 70px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-links a:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4999f;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.footer-box p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: #fff;
}

.footer-post img {
  width: 70px;
  border-radius: 10px;
  height: 80px;
}

.footer-post span {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.footer-post a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-post a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact li a:hover {
  color: #fff;
}

.footer-bottom {
  background: #0b1220;
  padding: 18px 0;
}

.copyright p a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.copyright p a:hover {
  text-decoration: none;
}

.copyright p i {
  color: #d4999f;
  margin: 0 4px;
}

/*================================================
13 - PAGE HEADER AREA CSS
==================================================*/
.page-header {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.page-header-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, #1f2933 0%, #111827 100%);
  background: linear-gradient(180deg, #1f2933 0%, #111827 100%);
  z-index: 2;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.page-header-inner {
  position: relative;
  text-align: center;
  padding: 100px;
  z-index: 3;
}

.page-header-inner h1 {
  font-size: 46px;
  color: #ffffff;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.thm-breadcrumb {
  display: inline-block;
}

.thm-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.thm-breadcrumb li a {
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.thm-breadcrumb li a:hover {
  color: #d4999f;
}

.thm-breadcrumb li span {
  color: #ffffff;
  margin: 0 5px;
}

/*================================================
14 - INSTRUCTOR AREA CSS
==================================================*/

.instructor-item {
  position: relative;
}

.instructor-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 15px 0px 0px;
}

.instructor-image img {
  width: 100%;
  display: block;
}

.instructor-image:after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
  z-index: 1;
  background: -webkit-linear-gradient(315deg, #d4999f, #132c45);
  background: linear-gradient(135deg, #d4999f, #132c45);
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.instructor-item:hover .instructor-image:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.tsocial-links {
  list-style: none;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 2;
}

.tsocial-links li {
  margin: 12px 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.instructor-item:hover .tsocial-links li {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.tsocial-links li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.tsocial-links li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.tsocial-links li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.tsocial-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #d4999f;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition:
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsocial-links a:hover {
  background: #ffffff;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition:
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #d4999f;
}

.instructor-content {
  background: rgba(238, 234, 226, 0.3);
  text-align: center;
  padding: 20px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 0px 0px 15px 15px;
}

.instructor-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.instructor-content span {
  color: #7a7a6e;
  font-weight: 500;
}

svg.clippy {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.client-area {
  background: rgba(238, 234, 226, 0.3);
  padding-bottom: 0px;
  padding-top: 70px;
}

.client-slider {
  overflow: hidden;
}

.client-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  will-change: transform;
}

.client-logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.client-logo img {
  max-height: 60px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.client-logo img:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(13, 110, 253, 0.1);
  color: #d4999f;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #12120f;
  margin-bottom: 15px;
}

.section-description {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.feature-card {
  background: rgba(238, 234, 226, 0.3);
  padding: 40px 40px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition:
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
}

.feature-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: -webkit-linear-gradient(315deg, #d4999f, #132c45);
  background: linear-gradient(135deg, #d4999f, #132c45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/*================================================
15 - SERVICES PAGE CSS
==================================================*/
.services-cta {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: #d4999f;
}

.services-cta .btn-primary {
  background: #fff;
  color: #d4999f;
}

.services-cta:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.services-cta:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.services-cta-content {
  text-align: center;
}

.cta-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
}

.cta-title p {
  color: #ffffff;
}

.cta-title {
  margin: 0 auto 30px;
  color: #ffffff;
}

.services-cta-content .btn-secondary {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: rgba(10, 107, 94, 0.08);
}

.services-cta-content .btn-secondary:hover {
  background: #1a7f90;
  color: #ffffff;
}

/*================================================
16 - SERVICE DETAILS CSS
==================================================*/
.service-hero-content {
  position: relative;
}

.service-hero {
  padding-bottom: 0px;
}

.service-category-badge {
  display: inline-block;
  background: rgba(0, 101, 120, 0.08);
  color: #d4999f;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.service-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #132c45;
  line-height: 1.15;
  margin-bottom: 15px;
}

.service-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #222219;
}

.service-item i {
  color: #d4999f;
  font-size: 16px;
}

.service-hero-image {
  text-align: center;
  position: relative;
}

.service-hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.content-main {
  background: #ffffff;
  border-radius: 10px;
  padding: 45px;
  border: 1px solid #d8d4c8;
}

.content-section {
  margin-bottom: 40px;
}

.content-heading {
  font-size: 28px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 30px;
  position: relative;
}

.content-heading:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #d4999f;
  display: block;
  margin-top: 0px;
  border-radius: 10px;
}

.condition-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8d4c8;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #d4999f;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.condition-item i {
  font-size: 18px;
  color: #d4999f;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.condition-item:hover {
  background: #d4999f;
  color: #ffffff;
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.condition-item:hover i {
  color: #ffffff;
}

.procedure-card {
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 25px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.procedure-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  background: -webkit-linear-gradient(315deg, #d4999f, #d4999f);
  background: linear-gradient(135deg, #d4999f, #d4999f);
}

.procedure-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 5px;
}

.expect-title {
  font-size: 34px;
  font-weight: 800;
  color: #132c45;
  margin-bottom: 40px;
}

.expect-timeline {
  position: relative;
  padding-left: 55px;
}

.expect-timeline:before {
  content: "";
  position: absolute;
  left: 21px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: -webkit-linear-gradient(top, #d4999f, rgba(0, 101, 120, 0.15));
  background: linear-gradient(to bottom, #d4999f, rgba(0, 101, 120, 0.15));
}

.expect-step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 30px;
}

.expect-step:last-child {
  margin-bottom: 0px;
}

.expect-dot {
  position: absolute;
  left: -55px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d4999f;
  color: #d4999f;
  font-weight: 700;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 101, 120, 0.18);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.expect-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 5px;
}

.expect-step:hover .expect-dot {
  background: #d4999f;
  color: #ffffff;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.expect-step:hover h2 {
  color: #d4999f;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #d8d4c8;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card-1 {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #d8d4c8;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
}

.service-card-1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #d4999f;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.service-card-1:hover:before {
  height: 100%;
  width: 4px;
}

.service-card-1 h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.sidebar-contact li {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.sidebar-contact li a {
  color: #132c45;
  margin-left: 5px;
}

.sidebar-contact li a:hover {
  color: #d4999f;
  text-decoration: underline;
}

.pricing-card {
  background: -webkit-linear-gradient(315deg, #d4999f, #d4999f);
  background: linear-gradient(135deg, #d4999f, #d4999f);
  color: #ffffff;
}

.pricing-card h3,
.pricing-card p {
  color: #ffffff;
}

.btn-sidebar-primary {
  width: 100%;
  margin: 15px 0;
  padding: 15px;
  border-radius: 50px;
  background: -webkit-linear-gradient(315deg, #d4a457, #f2cc95);
  background: linear-gradient(135deg, #d4a457, #f2cc95);
  border: none;
  font-weight: 700;
  color: #12120f;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.btn-sidebar-primary:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 164, 87, 0.45);
}

.related-card a {
  display: block;
  padding: 5px 0;
  color: #7a7a6e;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.related-card a:hover {
  padding-left: 5px;
  color: #d4999f;
}

/* ===============================
 17 -  BLOG DETAILS CSS
================================ */

.blog-meta-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.blog-meta-stats .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.blog-meta-stats i {
  color: #d4999f;
}

.blog-hero-image {
  margin-bottom: 15px;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
}

.blog-hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  padding: 15px;
}

.article-intro {
  color: #ffffff;
  margin-bottom: 30px;
}

.article-body h2 {
  font-size: 24px;
  margin: 40px 0 15px;
  position: relative;
}

.article-body h2:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 30px;
  width: 50px;
  height: 2px;
  background: #d4999f;
  display: block;
  margin-top: 0px;
  border-radius: 10px;
}

.quote-block {
  background: rgba(238, 234, 226, 0.3);
  border-left: 5px solid #d4999f;
  padding: 25px 30px;
  margin: 40px 0;
  border-radius: 10px;
}

.quote-block p {
  font-style: italic;
  color: #d4999f;
  margin-bottom: 5px;
}

.quote-block cite {
  display: block;
  color: #7a7a6e;
}

.content-list {
  margin: 20px 0 30px;
  padding-left: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #132c45;
  font-weight: 500;
}

.content-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4999f;
}

.info-box-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 20px 25px;
  margin: 0px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: #d4999f;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 18px;
}

.info-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: #d4999f;
}

.info-content p {
  margin: 0;
}

.stat-card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid #d8d4c8;
  -webkit-transition:
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease;
}

.stat-card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stat-label {
  color: #7a7a6e;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #d4999f;
}

.stat-desc {
  color: #7a7a6e;
}

.article-meta {
  padding: 25px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid #d8d4c8;
  border-bottom: 1px solid #d8d4c8;
  margin-top: 30px;
}

.tags-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.tags-title {
  font-weight: 600;
}

.tag-link {
  padding: 5px 15px;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #d8d4c8;
}

.tag-link:hover {
  background: #d4999f;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border: 1px solid #d4999f;
}

.share-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.share-title {
  font-weight: 600;
}

.author-link {
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.author-link:hover {
  color: #d4999f;
}

.blog-sidebar {
  position: relative;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.widget-title:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #d4999f;
  display: block;
  margin-top: 5px;
  border-radius: 10px;
}

.toc-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.toc-link {
  text-decoration: none;
  padding-left: 10px;
  border-left: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #7a7a6e;
}

.toc-link:hover {
  color: #d4999f;
  border-color: #d4999f;
  padding-left: 15px;
}

.related-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.related-article {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.related-article:hover {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.related-thumb {
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.related-thumb a img {
  max-width: 100px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.related-content h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}

.related-content h2 a:hover {
  color: #d4999f;
}

.related-content span {
  color: #7a7a6e;
}

.newsletter-form .form-control {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #d8d4c8;
}

.btn-subscribe {
  margin-top: 10px;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list li:last-child {
  margin-bottom: 0px;
}

.categories-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 5px 0;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #7a7a6e;
}

.categories-list a:hover {
  color: #d4999f;
  padding-left: 5px;
}

.comment-list,
.leave-comment {
  margin-top: 30px;
}

.comment-list h2,
.leave-comment h2 {
  font-size: 24px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: inline-block;
  font-weight: 700;
}

.single-comment-box {
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
}

.main-comment {
  font-size: 15px;
  padding: 25px 0 0 90px;
  position: relative;
}

.author-image {
  border-radius: 50%;
  left: 0;
  margin-bottom: 15px;
  position: absolute;
  top: 30px;
}

.author-image img {
  display: block;
  width: 70px;
  border-radius: 50%;
  border: 3px solid #d8d4c8;
}

.comment-info h2 {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
}

.comment-info a {
  color: #d4999f;
  font-style: italic;
  font-size: 16px;
}

.comment-info a i {
  margin-right: 5px;
}

.single-comment-box.reply-comment {
  padding-left: 100px;
}

.leave-comment form input,
.leave-comment form textarea {
  width: 100%;
  border: 1px solid #d8d4c8;
  padding: 10px 14px;
  height: 45px;
  border-radius: 10px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
}

.leave-comment form textarea {
  height: 150px;
}

.leave-comment button {
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 500;
}

/* ===============================
 18 -  PRODUCTS CSS
================================ */

.products .row.align-items-center span {
  color: #7a7a6e;
}

.products .form-select {
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  padding: 10px 15px;
  background-color: #ffffff;
  width: 185px;
}

.products-list {
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.search-bx .form-control {
  height: 50px;
  border-radius: 10px 0 0 10px;
  border: 1px solid #d8d4c8;
}

.search-bx .btn {
  background: #d4999f;
  color: #ffffff;
  height: 50px;
  border-radius: 0 10px 10px 0;
}

.products-widget {
  margin-top: 30px;
}

.products-menu li a {
  color: #7a7a6e;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
}

.products-menu li a:hover {
  color: #d4999f;
  padding-left: 6px;
}

.products-top li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #d8d4c8;
}

.products-top li:last-child {
  border-bottom: 0px solid #d8d4c8;
}

.products-top img {
  border-radius: 10px;
}

.products-text h2 {
  margin: 0px;
  line-height: 50%;
}

.products-text h2 a {
  font-size: 16px;
  font-weight: 600;
  color: #132c45;
}

.product-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.product-image {
  position: relative;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
}

.product-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.pagination-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.pagination-wrap li a {
  background: #ffffff;
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #132c45;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  border: 1px solid #d8d4c8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.pagination-wrap li a:hover {
  background: #d4999f;
  color: #ffffff;
  border-color: #d4999f;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 101, 120, 0.35);
}

.pagination-wrap li a i {
  font-size: 15px;
}

.products-img {
  width: 80px;
}

.form-select:focus {
  border-color: #d8d4c8;
  outline: 0;
  box-shadow: none;
}

.shop-item-controls {
  list-style: none;
  padding: 6px;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transform: translateY(-50%) translateX(10px);
  transform: translateY(-50%) translateX(10px);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.product-item:hover .shop-item-controls {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
}

.shop-item-controls li {
  margin: 6px 0;
}

.shop-item-controls li a {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #d4999f;
  background: #f7f5f0;
  border-radius: 50%;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop-item-controls li a:hover {
  background: #d4999f;
  color: #ffffff;
}

.product-text {
  margin-top: 10px;
}

.product-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.product-title h3 {
  font-size: 16px;
  margin: 0;
}

.product-title h3 a {
  text-decoration: none;
  font-weight: 600;
}

/* ===============================
19 - PRODUCTS DETAILS CSS
================================ */
.related-products {
  padding-top: 0px;
}

.product-details-image {
  text-align: center;
}

.product-details-text {
  padding-left: 30px;
}

.product-image-gallery {
  border-radius: 10px;
  position: relative;
}

.main-image {
  background: #ffffff;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-image img {
  max-width: 100%;
  max-height: 360px;
  -o-object-fit: contain;
  object-fit: contain;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.zoom-icon:hover {
  background: #d4999f;
  color: #ffffff;
}

.thumbnail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 15px;
}

.thumb {
  width: 70px;
  height: 70px;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  background: #ffffff;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.thumb.active,
.thumb:hover {
  border-color: #d4999f;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.product-details-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: block;
  font-weight: 700;
}

.doctor-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.doctor-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.doctor-rating ul li {
  color: #d4a457;
  margin-right: 5px;
}

.single-shop-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.single-shop-price p {
  margin-bottom: 0px;
}

.single-shop-price span {
  color: #d4999f;
  margin-left: 10px;
}

.single-shop-price .qnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.single-shop-price input {
  width: 70px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.single-shop-page-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.site-heading h3 {
  font-size: 34px;
}

/*================================================
20 - 404 PAGE CSS
==================================================*/
.page-notfound .page-notfound-media {
  max-width: 500px;
  margin: 0px auto 50px;
  margin-bottom: 30px;
}

.page-notfound-content {
  margin: 0px auto;
  border: 5px solid #d8d4c8;
  padding: 50px 30px;
  text-align: center;
}

.error-comment {
  font-size: 32px;
}

/*================================================
21 - LOGIN/REGISTER PAGE CSS
==================================================*/

.login-box {
  background: #ffffff;
  margin: 0 auto;
  padding: 50px 45px;
  text-align: center;
  width: 40%;
  border-radius: 10px;
  position: relative;
  border: 1px solid #d8d4c8;
}

.login-page-heading {
  padding-bottom: 30px;
}

.login-page-heading i {
  font-size: 22px;
  margin-right: 10px;
  color: #d4999f;
}

.login-page-heading > h2 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  display: inline-block;
  font-size: 34px;
}

.account-form-group {
  height: 45px;
  margin-bottom: 30px;
  position: relative;
}

.account-form-group > input {
  width: 100%;
  border: 1px solid #d8d4c8;
  padding: 5px 15px 5px 60px;
  height: 45px;
  border-radius: 10px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.account-form-group i {
  border-right: 1px solid #d8d4c8;
  color: #7a7a6e;
  font-size: 16px;
  height: 100%;
  left: 0;
  line-height: 45px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 48px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.remember-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.remember-row p {
  margin-bottom: 0;
}

.checkbox label {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 5px;
  cursor: pointer;
}

.lost-pass a {
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-right: 30px;
}

.lost-pass a:hover {
  color: #d4999f;
}

.login-sign-up {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #d8d4c8;
}

.login-sign-up > a {
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.login-sign-up > a:hover {
  color: #d4999f;
}

/*================================================
22 - COMMING SOON PAGE CSS
==================================================*/
.cooming-soon-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
}

.cs-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.cooming-soon-area:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(
    rgba(0, 80, 94, 0.85),
    rgba(0, 0, 0, 0.85)
  );
  background: linear-gradient(rgba(0, 80, 94, 0.85), rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.cooming-soon-area .container {
  position: relative;
  z-index: 2;
}

.comsoon-wrap {
  padding: 50px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid #d8d4c8;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.comsoon-title {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 15px;
}

.comsoon-col {
  text-align: center;
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.comsoon-col:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.comsoon-col strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #d4999f;
}

.news-letter {
  margin-top: 30px;
}

.news-letter h2 {
  font-size: 28px;
}

.news-cosoon {
  position: relative;
}

.news-cosoon input {
  height: 52px;
  border-radius: 30px;
  padding-right: 70px;
  border: 1px solid #d8d4c8;
}

.sb-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #d4999f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.sb-btn:hover {
  background: #d4999f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ===============================
 23 -  APPOINMENT SECTION CSS
================================ */

.appointment-image img {
  width: 100%;
  border-radius: 10px;
}

.appointment-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
}

.appointment-box h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.ap-field {
  margin-bottom: 15px;
}

.ap-field label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ap-field input,
.ap-field select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  font-size: 15px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #ffffff;
}

.gender-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0 25px;
}

.gender-group label {
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

.gender-group input {
  accent-color: #7a7a6e;
  margin-right: 5px;
}

/* ===============================
  24 - CALENDER SECTION CSS
================================ */
.doctor-calendar {
  padding-top: 0px;
}

.calendar-header {
  text-align: center;
  margin-bottom: 30px;
}

.calendar-tag {
  display: inline-block;
  color: #d4999f;
  font-weight: 600;
  margin-bottom: 10px;
}

.calendar-header h2 {
  font-size: 32px;
}

.calendar-table-wrap {
  overflow-x: auto;
}

.calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-bottom: 1px solid #d8d4c8;
  border-left: 1px solid #d8d4c8;
}

.calendar-table thead {
  background: #d4999f;
}

.calendar-table thead th {
  color: #ffffff;
  padding: 18px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

.calendar-table tbody td {
  padding: 20px 15px;
  border-bottom: 1px solid #d8d4c8;
  text-align: center;
  vertical-align: middle;
  min-width: 140px;
  border-right: 1px solid #d8d4c8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.calendar-table tbody td:hover {
  background: #d8d4c8;
}

.calendar-table tbody tr:last-child td {
  border-bottom: none;
}

.calendar-table .time {
  font-weight: 700;
  color: #d4999f;
  font-size: 16px;
  border-right: 1px solid #d8d4c8;
}

.calendar-table h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

.calendar-table span {
  font-size: 15px;
  color: #7a7a6e;
}

/* =========================
25 - CART PAGE CSS
========================= */

.cart-table-left {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
}

.cart-table-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 15px;
}

.cart-table-left table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.cart-table-left thead th {
  font-size: 18px;
  font-weight: 600;
  color: #7a7a6e;
  border: none;
  padding-right: 15px;
}

.shop-cart-item td {
  vertical-align: middle;
  border: none;
  padding-right: 15px;
}

.cart-clear {
  margin-top: 20px;
}

.cart-preview img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
}

.cart-product p {
  font-weight: 600;
  color: #132c45;
  margin: 0;
  text-transform: capitalize;
}

.cart-price p,
.cart-total p {
  font-weight: 600;
  color: #d4999f;
  margin: 0;
}

.cart-quantity input {
  width: 60px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  text-align: center;
  font-weight: 600;
  background: #ffffff;
  outline: none;
}

.cart-close a {
  width: 36px;
  height: 36px;
  background: rgba(255, 0, 0, 0.08);
  color: #1a7f90;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #d8d4c8;
}

.cart-close a:hover {
  background: #d4999f;
  color: #ffffff;
}

.cart-clear a {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  color: #7a7a6e;
  margin-right: 15px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.cart-clear a:last-child {
  margin-right: 1px;
}

.cart-clear a:hover {
  color: #d4999f;
}

.order-summury-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
}

.order-summury-box h2,
.payment-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 15px;
}

.order-summury-box table {
  width: 100%;
}

.order-summury-box td {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #12120f;
}

.order-summury-box tr:last-child td {
  border-top: 1px solid #d8d4c8;
  padding-top: 15px;
  color: #d4999f;
}

/*================================================
26 - CHECKOUT CSS
==================================================*/

.checkout-area .order-summury-box {
  padding: 25px;
}

.billing-box {
  margin-bottom: 30px;
}

.billing-box:last-child {
  margin-bottom: 0;
}

.billing-title h2 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: block;
  text-transform: capitalize;
}

.billing-input {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  height: 55px;
}

.checkout-area .form-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.payment-info {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
}

.payment-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #132c45;
  margin-bottom: 15px;
}

.payment-field {
  position: relative;
  margin-bottom: 15px;
}

.payment-field input {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border-radius: 10px;
  border: 1px solid #d8d4c8;
  font-size: 15px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.payment-field i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  color: #7a7a6e;
  pointer-events: none;
}

.payment-note a {
  color: #d4999f;
  text-decoration: none;
  font-weight: 500;
}

.payment-note a:hover {
  text-decoration: underline;
}

.checkout-action {
  text-align: center;
}

.checkout-action .btn:hover {
  background: #d4999f;
}

.btn-arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.checkout-action .btn:hover .btn-arrow {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

/*================================================
27 - RESPONSIVE CSS
==================================================*/
#menu-toggle span {
  height: 2px;
  width: 95%;
  background: #d4999f;
  display: block;
  margin-top: 5px;
  position: relative;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border-radius: 5px;
  margin-right: auto;
  margin-left: 0;
}

#menu-toggle span:nth-child(1) {
  top: 4px;
}

#menu-toggle span:nth-child(2) {
  top: 6px;
  width: 75%;
}

#menu-toggle span:nth-child(3) {
  top: 8px;
  width: 65%;
}

#menu-toggle {
  width: 42px;
  height: 42px;
  display: block;
  position: relative;
  background: transparent;
  padding: 4px 8px;
  border-radius: 7px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

@media (max-width: 1200px) {
  nav#menu {
    position: absolute;
    top: 99%;
    left: 0;
    width: 100%;
    display: block;
    z-index: 999;
    min-height: calc(100vh - 45px);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }

  nav#menu.active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }

  .mainmenu ul {
    text-align: left;
  }

  nav#menu,
  nav#menu > ul ul {
    overflow: hidden;
    max-height: 0;
    background: #d4999f;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }

  nav#menu,
  nav#menu > ul ul {
    overflow: auto;
    padding: 50px 20px;
  }

  nav#menu > ul > li {
    display: block !important;
    margin: 0 !important;
    padding: 0;
  }

  nav#menu ul ul,
  nav#menu ul ul ul {
    display: inherit;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
  }

  nav#menu > ul > li > span {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 16px;
    z-index: 2;
  }

  nav#menu ul ul.sub-menu.active {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    max-height: 55em;
  }

  nav#menu > ul > li > a {
    display: block;
    position: relative;
    padding: 15px 0px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 18px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    font-weight: 400;
  }

  .mainmenu ul li.has-submenu > a:before {
    display: none;
  }

  .header-menu a:before {
    display: none;
  }

  .header-menu a:after {
    display: none;
  }

  nav#menu > ul > li:last-child > a {
    border: none;
  }

  .mainmenu ul li > ul {
    border: none;
  }

  nav#menu li.has-submenu > a:after {
    border: none;
    content: "+";
    position: absolute;
    top: 10px;
    right: 9px;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    height: auto;
    font-size: 30px;
    font-weight: 400;
    left: auto;
  }

  .sub-menu:before {
    height: 90% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }

  .sub-menu:after {
    display: none;
  }

  nav#menu li.has-submenu.active > a:after {
    content: "-";
    font-size: 30px;
  }

  nav#menu ul ul > li a {
    padding: 13px 0px;
    line-height: normal;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .menu-list > li > ul {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  ul.sub-menu {
    padding-left: 20px;
  }

  .header-toggle.active span:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .header-toggle.active span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header-toggle.active span:nth-child(3) {
    top: 0px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .mobile-btn {
    margin-top: 30px;
  }

  .mobile-btn .btn-primary {
    background: #fff;
    color: #d4999f;
    width: 100%;
  }

  .header-toggle {
    display: block;
  }

  nav#menu > ul ul {
    background: transparent;
    box-shadow: none;
    width: 100%;
    padding-left: 15px;
  }

  #menu-toggle {
    display: block;
    margin-left: 0px;
    padding-right: 0;
  }

  .site-logo {
    font-size: 24px;
    white-space: nowrap;
  }

  #menu-toggle.active span:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  #menu-toggle.active span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
  }

  #menu-toggle.active span:nth-child(3) {
    top: 0px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
  }

  .header-area {
    padding: 10px 0;
    border-bottom: 1px solid #d8d4c8;
  }

  .menu-list {
    display: block;
  }

  .header-area {
    background: #fff;
  }

  .mainmenu {
    margin-left: 40px;
  }

  .menu-list {
    gap: 18px;
  }

  .site-logo {
    font-size: 24px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .phone-call,
  .phone-call em {
    color: #d4999f;
  }

  .header-right .btn {
    margin-right: 15px;
  }

  .hero-img img {
    right: -10px;
    top: 0px;
    max-width: 95%;
  }

  .hero-bar {
    width: 380px;
    bottom: 60px;
    left: 62%;
  }

  .stat-box h2 {
    font-size: 36px;
  }

  .about-image img {
    width: 100%;
  }

  .about-image-accent {
    width: 60%;
    bottom: 20px;
    right: 10px;
  }

  .about-experience-badge {
    top: 20px;
    right: 10px;
    padding: 15px 15px;
  }

  .about-experience-badge span:first-child {
    font-size: 38px;
  }

  .timeline-tabs {
    margin: 20px 0;
  }

  .timeline-item {
    gap: 20px;
  }

  .timeline-content {
    padding: 20px;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h2 {
    font-size: 20px;
  }

  .blog-body {
    padding: 20px;
  }

  .blog-body h3 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 35px 30px;
  }

  .testimonial-card .testimonial-content .description {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-card .testimonial-author .author-name h2 {
    font-size: 18px;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .products .form-select {
    width: 170px;
    padding: 9px 14px;
  }

  .products-list {
    padding: 20px;
  }

  .product-title h3 {
    font-size: 16px;
  }

  .pagination-wrap li a {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .footer-top,
  .footer-main {
    padding: 60px 0;
  }

  .footer-title {
    font-size: 21px;
  }

  .newsletter-form input {
    padding: 10px 15px;
    font-size: 16px;
  }

  .newsletter-form button {
    padding: 14px 18px;
    font-size: 15px;
  }

  .feature-card {
    padding: 35px;
  }

  .appointment-box {
    padding: 40px;
  }

  .appointment-box h2 {
    font-size: 26px;
  }

  .comsoon-wrap {
    padding: 40px;
  }

  .comsoon-title {
    font-size: 30px;
  }

  .news-letter h2 {
    font-size: 24px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .contact-cards {
    margin: 30px 0;
  }

  .page-header-inner h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .thm-breadcrumb li {
    font-size: 16px;
  }

  .section-heading {
    font-size: 32px;
  }

  .login-box {
    background: #ffffff;
    margin: 0 auto;
    padding: 50px 30px;
  }

  billing-box,
  .order-summury-box,
  .payment-info {
    padding: 25px;
  }

  .billing-title h2,
  .payment-info h3 {
    font-size: 22px;
  }

  .about-section {
    margin-top: -50px;
  }

  .hero-img img {
    top: 20px;
  }

  .header-background {
    top: -50px;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 15px;
  }

  .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  .menu-list > li > a {
    font-size: 18px;
    padding: 8px 0;
  }

  .submenu {
    position: static;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
    padding: 8px 0 0 12px;
    display: none;
  }

  .has-dropdown.active .submenu {
    display: block;
  }

  #menu-toggle {
    display: block;
    cursor: pointer;
  }

  .phone-call {
    background: transparent;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    margin-right: 7px;
  }

  .phone-call em {
    font-size: 18px;
    color: #d4999f;
  }

  .hero-area {
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .group_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .stats {
    margin-top: 40px;
  }

  .hero-img img {
    right: 0;
    top: 0px;
    max-width: 90%;
  }

  .hero-bar {
    position: static;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    margin-top: 0;
  }

  .header-background {
    width: 50%;
    top: -80px;
  }

  .about-section {
    margin-top: 0;
    padding-top: 60px;
  }

  .about-image-wrap {
    margin-bottom: 40px;
  }

  .about-image-accent {
    position: absolute;
    bottom: 25px;
    right: 0px;
    width: 35%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 107, 94, 0.12);
    border: 2px solid #f2cc95;
    aspect-ratio: 4/3;
  }

  .about-experience-badge {
    position: absolute;
    top: 25px;
    left: auto;
    right: 0px;
  }

  .timeline:before {
    left: 20px;
  }

  .timeline-dot {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .timeline-item {
    gap: 18px;
  }

  .timeline-content h2 {
    font-size: 18px;
  }

  .services {
    margin-top: 10px;
  }

  .service-card {
    padding: 25px;
  }

  .service-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
  }

  .service-icon {
    font-size: 22px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .blog-body {
    padding: 20px;
  }

  .blog-meta {
    gap: 12px;
    font-size: 15px;
  }

  .blog-body h3 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 32px 26px;
    margin: 0 8px;
  }

  .testimonial-card .review-star span i {
    font-size: 26px;
  }

  .testimonial-card .testimonial-content .description {
    font-size: 15px;
    line-height: 23px;
  }

  .testimonial-author {
    gap: 12px;
    padding-top: 20px;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .products .row.align-items-center span {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  .products .form-select {
    width: 100%;
  }

  .products-list {
    margin-bottom: 30px;
  }

  .shop-item-controls {
    right: 12px;
  }

  .pagination-wrap {
    gap: 8px;
  }

  .newsletter-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hospital-btn .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-decoration: none;
    border: none;
  }

  .footer-box {
    margin-bottom: 30px;
  }

  .slick-arrow {
    display: none;
  }

  .footer-box-2 {
    margin-bottom: 0px;
  }

  .footer-box-1 {
    margin-bottom: 0px;
  }

  .section-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #d4999f;
    background: rgba(10, 107, 94, 0.08);
    border: 1px solid rgba(10, 107, 94, 0.18);
    padding: 5px 15px;
    border-radius: 100px;
    margin-bottom: 15px;
  }

  .section-label span {
    font-size: 14px;
  }

  .feature-card {
    padding: 32px 28px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .instructor-content {
    padding: 18px 14px;
  }

  .instructor-content h3 {
    font-size: 18px;
  }

  .tsocial-links a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
  }

  .service-meta {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .group_btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .service-hero-image img {
    border-radius: 10px;
  }

  .content-main {
    padding: 30px;
    margin-bottom: 30px;
  }

  .content-heading {
    font-size: 24px;
  }

  .expect-title {
    font-size: 26px;
    text-align: center;
  }

  .appointment-image {
    text-align: center;
  }

  .appointment-image img {
    max-width: 420px;
    margin: 0 auto;
  }

  .appointment-box {
    padding: 30px;
  }

  .appointment-box h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .gender-group {
    gap: 14px;
  }

  .login-box {
    background: #ffffff;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    width: 50%;
    border-radius: 10px;
    position: relative;
    border: 1px solid #d8d4c8;
  }

  .cooming-soon-area {
    padding: 60px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
  }

  .comsoon-wrap {
    padding: 30px;
  }

  .comsoon-title {
    font-size: 28px;
  }

  .comsoon-col strong {
    font-size: 22px;
  }

  .contact-area .section-heading {
    font-size: 30px;
  }

  .contact-info {
    margin-bottom: 40px;
  }

  .contact-cards {
    gap: 12px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .page-header-inner {
    padding: 60px 25px;
  }

  .page-header-inner h1 {
    font-size: 42px;
    line-height: 42px;
  }

  .thm-breadcrumb li {
    font-size: 15px;
  }

  .about-specialties {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0 30px;
  }

  .blog-sidebar {
    position: relative;
  }

  .checkout-area .order-summury-box {
    margin-top: 30px;
    padding: 0px;
    margin-bottom: 30px;
  }

  .billing-title h2,
  .payment-info h3 {
    font-size: 21px;
  }

  .billing-input,
  .payment-field input {
    font-size: 15px;
  }

  .product-details-text {
    padding-left: 0px;
    margin-top: 30px;
  }

  section,
  .section {
    padding: 50px 0;
  }

  .header-background {
    top: 0px;
  }

  .error-comment {
    font-size: 26px;
  }

  .cooming-soon-area {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }

  .content-main {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .header-area {
    padding: 10px 0;
  }

  .site-logo {
    font-size: 22px;
  }

  .site-logo img {
    width: 180px;
    min-width: 36px;
    margin-right: 10px;
  }

  .hero-area {
    text-align: center;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-sub-heading span {
    font-size: 14px;
    padding: 6px 12px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text h2 {
    font-size: 20px;
  }

  .group_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .group_btn a {
    width: 100%;
    max-width: 280px;
    margin-right: 0;
  }

  .stat-box {
    margin-bottom: 15px;
  }

  .hero-img img {
    top: 0;
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }

  .hero-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .header-background {
    display: none;
  }

  .section-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-image img {
    border-radius: 10px;
  }

  .about-experience-badge {
    padding: 15px 12px;
    border-radius: 10px;
  }

  .about-experience-badge span:first-child {
    font-size: 32px;
  }

  .highlight-box {
    padding: 10px 15px;
  }

  .about-specialties {
    gap: 7px;
  }

  .specialty-tag {
    font-size: 15px;
    padding: 5px 10px;
  }

  .group_btn {
    gap: 10px;
    width: 100%;
  }

  .group_btn .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .service-hero-text {
    margin-bottom: 0px;
  }

  .timeline-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
  }

  .timeline-tabs button {
    margin: 0;
    padding: 5px 10px;
    font-size: 15px;
  }

  .timeline {
    padding-left: 10px;
  }

  .timeline:before {
    left: 22px;
  }

  .timeline-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    padding-left: 40px;
  }

  .timeline-dot {
    position: absolute;
    left: -10px;
    top: 0;
  }

  .timeline-content {
    padding: 18px;
  }

  .timeline-content h2 {
    font-size: 18px;
  }

  .timeline-period {
    font-size: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .service-link {
    font-size: 14px;
  }

  .blog-thumb {
    aspect-ratio: 16 / 11;
  }

  .blog-body {
    padding: 18px;
  }

  .blog-body h3 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 25px 22px;
    margin: 0 6px;
  }

  .testimonial-card .review-star {
    margin-bottom: 15px;
  }

  .testimonial-card .review-star span i {
    font-size: 24px;
  }

  .testimonial-card .testimonial-content .description {
    font-size: 15px;
    line-height: 22px;
  }

  .testimonial-card .testimonial-author .avatar {
    width: 46px;
    height: 46px;
  }

  .testimonial-card .testimonial-author .author-name h2 {
    font-size: 16px;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .slick-dots {
    margin-top: 20px;
  }

  .products .row.align-items-center {
    text-align: center;
  }

  .products .form-select {
    margin-top: 10px;
  }

  .products-list {
    padding: 20px;
  }

  .products-top li {
    gap: 8px;
  }

  .products-img {
    width: 65px;
  }

  .shop-item-controls {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
  }

  .pagination-wrap li a {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .footer-top,
  .footer-main {
    padding: 50px 0;
  }

  .footer-title {
    font-size: 20px;
  }

  .newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    font-size: 15px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-box-2 {
    margin-bottom: 0px;
  }

  .slick-arrow {
    display: none;
  }

  .section-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #d4999f;
    background: rgba(10, 107, 94, 0.08);
    border: 1px solid rgba(10, 107, 94, 0.18);
    padding: 5px 15px;
    border-radius: 100px;
    margin-bottom: 15px;
  }

  .section-label span {
    font-size: 14px;
  }

  .feature-card {
    padding: 25px 24px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .instructor-item {
    max-width: 360px;
    margin: 0 auto;
  }

  .instructor-content h3 {
    font-size: 18px;
  }

  .tsocial-links {
    top: 20px;
    right: 15px;
  }

  .tsocial-links li {
    margin: 10px 0;
  }

  .cta-title h2 {
    font-size: 28px;
  }

  .service-meta {
    gap: 14px;
    font-size: 15px;
  }

  .service-item {
    font-size: 15px;
  }

  .content-main {
    padding: 25px;
  }

  .content-heading {
    font-size: 22px;
  }

  .expect-step {
    gap: 18px;
  }

  .about-image-accent {
    width: 50%;
  }

  .article-body h2:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 30px;
    width: 40px;
    height: 2px;
    background: #d4999f;
    display: block;
    margin-top: 0px;
    border-radius: 10px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .comment-info a {
    color: #d4999f;
    font-style: italic;
    font-size: 15px;
  }

  .single-comment-box.reply-comment {
    padding-left: 35px;
  }

  .comment-list h2,
  .leave-comment h2 {
    font-size: 22px;
    margin-bottom: 5px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    display: inline-block;
    font-weight: 700;
  }

  .widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
  }

  .quote-block {
    padding: 25px 25px;
  }

  .info-box-1 {
    padding: 20px 15px;
  }

  .blog-meta-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }

  .blog-meta-stats .meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }

  .comment-list,
  .leave-comment {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .comment-info h2 {
    letter-spacing: 0px;
    font-size: 16px;
  }

  .appointment-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .appointment-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  .appointment-box {
    padding: 25px;
  }

  .appointment-box h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .ap-field label {
    font-size: 15px;
  }

  .gender-group {
    gap: 10px;
    margin-bottom: 20px;
  }

  .calendar-header h2 {
    font-size: 22px;
  }

  .login-box {
    width: 100%;
    padding: 25px 15px;
  }

  .login-page-heading > h2 {
    font-size: 28px;
  }

  .error-comment {
    font-size: 28px;
  }

  .comsoon-wrap {
    padding: 25px 25px;
  }

  .comsoon-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .comsoon-col {
    padding: 16px 8px;
  }

  .comsoon-col strong {
    font-size: 20px;
  }

  .smalltext {
    font-size: 13px;
  }

  .news-letter h2 {
    font-size: 22px;
  }

  .news-cosoon input {
    height: 48px;
  }

  .sb-btn {
    height: 36px;
    width: 36px;
    top: 6px;
    right: 6px;
  }

  .contact-info h3 {
    font-size: 22px;
  }

  .contact-card {
    gap: 12px;
  }

  .contact-card-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-radius: 10px;
  }

  .contact-card-text strong {
    font-size: 13px;
  }

  .contact-card-text span {
    font-size: 14px;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .form-label {
    font-size: 13px;
  }

  textarea.form-control {
    min-height: 110px;
  }

  .page-header-inner {
    padding: 50px;
  }

  .page-header-inner h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .thm-breadcrumb li {
    font-size: 14px;
  }

  .cart-table-left {
    background: #ffffff;
    padding: 0px;
    border-radius: 10px;
  }

  .order-summury-box {
    background: #ffffff;
    padding: 0px;
    border-radius: 10px;
    margin-top: 30px;
  }

  .checkout-action {
    text-align: center;
    margin-top: 20px;
  }

  .billing-title h2,
  .payment-info h3 {
    text-align: center;
    font-size: 20px;
  }

  .checkout-action {
    margin-top: 20px;
  }

  .checkout-action .btn {
    width: 100%;
  }

  .cooming-soon-area {
    height: auto;
  }

  .products-list {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .content-sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 15px;
  }

  .site-logo {
    font-size: 24px;
    white-space: nowrap;
  }

  .site-logo img {
    width: 180px;
    min-width: 32px;
  }

  .menu-list > li > a {
    font-size: 16px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .text h2 {
    font-size: 18px;
  }

  .text p {
    font-size: 13px;
  }

  .stat-box h2 {
    font-size: 34px;
  }

  .hero-bar {
    padding: 15px;
  }

  .section-heading {
    font-size: 26px;
  }

  .about-experience-badge span:last-child {
    font-size: 15px;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-institution {
    font-size: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .service-icon {
    font-size: 20px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .blog-body {
    padding: 15px;
  }

  .blog-meta {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 25px 20px;
    border-radius: 10px;
  }

  .testimonial-card .testimonial-content {
    margin-bottom: 15px;
  }

  .testimonial-card .testimonial-content .description {
    font-size: 15px;
    line-height: 20px;
  }

  .testimonial-author {
    gap: 10px;
    padding-top: 18px;
  }

  .testimonial-card .testimonial-author .author-name h2 {
    font-size: 15px;
  }

  .testimonial-card .testimonial-author .author-name p {
    font-size: 15px;
  }

  .slick-dots li button {
    width: 7px;
    height: 7px;
  }

  .slick-dots li.slick-active button {
    width: 18px;
  }

  .products-list {
    padding: 18px;
    border-radius: 10px;
  }

  .search-bx .form-control,
  .search-bx .btn {
    height: 46px;
  }

  .products-widget {
    margin-top: 25px;
  }

  .products-menu li a {
    font-size: 15px;
  }

  .products-text h2 a {
    font-size: 15px;
  }

  .product-title h3 {
    font-size: 15px;
  }

  .pagination-wrap {
    gap: 6px;
  }

  .pagination-wrap li a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .about-meta {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
  }

  .footer-top,
  .footer-main {
    padding: 45px 0;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-post img {
    width: 65px;
    height: 75px;
  }

  .footer-post a {
    font-size: 15px;
  }

  .footer-contact li {
    font-size: 15px;
  }

  .footer-contact li:last-child {
    margin-bottom: 0px;
  }

  .copyright p,
  .copyright p a {
    font-size: 15px;
  }

  .footer-newsletter {
    margin-bottom: 30px;
  }

  .hospital-info {
    margin-bottom: 15px;
  }

  .footer-box-1 {
    margin-bottom: 0px;
  }

  .footer-box-2 {
    margin-bottom: 35px;
  }

  .slick-arrow {
    display: none;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .instructor-content h3 {
    font-size: 18px;
  }

  .instructor-area {
    padding: 45px 0;
  }

  .instructor-content {
    padding: 16px 12px;
  }

  .instructor-content h3 {
    font-size: 18px;
  }

  .tsocial-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
  }

  .service-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }

  .service-hero-text {
    margin-bottom: 30px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
  }

  .group_btn {
    gap: 10px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .content-main {
    padding: 25px;
  }

  .content-heading {
    font-size: 22px;
  }

  .expect-title {
    font-size: 22px;
  }

  .expect-dot {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .sidebar-card,
  .service-card-1 {
    padding: 20px;
    margin-bottom: 30px;
  }

  .related-card {
    margin-bottom: 0px;
  }

  .article-body h2 {
    font-size: 20px;
    margin: 40px 0 15px;
    position: relative;
  }

  .leave-comment h2 {
    font-size: 20px;
  }

  .widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
  }

  .quote-block {
    padding: 25px 25px;
  }

  .info-box-1 {
    padding: 20px 15px;
  }

  .blog-meta-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }

  .blog-meta-stats .meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }

  .appointment-box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }

  .appointment-box h2 {
    font-size: 20px;
  }

  .ap-field {
    margin-bottom: 10px;
    text-align: start;
  }

  .gender-group label {
    font-size: 15px;
  }

  .calendar-header h2 {
    font-size: 20px;
  }

  .login-box {
    width: 100%;
    padding: 20px 15px;
  }

  .lost-pass a {
    margin-right: 20px;
  }

  .comsoon-wrap {
    padding: 25px 20px;
    border-radius: 10px;
  }

  .comsoon-title {
    font-size: 22px;
  }

  .comsoon-wrap p {
    font-size: 14px;
  }

  .comsoon-col strong {
    font-size: 18px;
  }

  .news-letter h2 {
    font-size: 20px;
  }

  .news-cosoon input {
    padding-right: 60px;
  }

  .sb-btn {
    height: 34px;
    width: 34px;
  }

  .page-header-inner h1 {
    font-size: 30px;
    line-height: 32px;
  }

  .thm-breadcrumb li {
    font-size: 13px;
  }

  .checkout-area .form-label {
    font-size: 14px;
  }

  .billing-input {
    font-size: 14px;
    padding: 8px 10px;
  }

  .payment-field input {
    padding: 12px 40px 12px 12px;
    font-size: 14px;
  }

  .order-summury-box h2,
  .payment-info h2 {
    font-size: 20px;
  }

  .cooming-soon-area {
    height: 100%;
  }

  .site-heading h3 {
    font-size: 24px;
  }

  .shop-item-controls {
    display: none;
  }

  .products-list {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .content-sidebar {
    margin-top: 30px;
  }
}
.para-heading {
  font-weight: 600 !important;
  color: #132c45 !important;
}
/* Custom Css */
/******
Appointment Form
******/
.our-appointment-section {
  background-image: url(../img/appointment-bg-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center -3.79687px;
}
.our-appointment-section .container {
  max-width: 1350px;
}

.our-appointment-section h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

.our-appointment-section h2 span {
  color: #d4999f;
}

.our-appointment-section p {
  font-size: 16px;
  color: #c8c8c8;
  font-weight: 500;
}

.our-appointment-section .container {
  position: relative;
  z-index: 2;
}

.our-appointment-section .appointment-info-item-list {
  max-width: 580px;
  background: #ffffff1a;
  backdrop-filter: blur(30px);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2.604vw;
  padding: 30px;
}

.our-appointment-section .appointment-info-item {
  position: relative;
  width: calc(50% - 1.302vw);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.our-appointment-section .appointment-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.302vw;
  background: #ffffff1a;
  width: 1px;
  height: 100%;
}

.our-appointment-section .appointment-info-item:nth-child(2n + 2):before,
.our-appointment-section .appointment-info-item.location-item::before {
  display: none;
}

.our-appointment-section .appointment-info-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #d4999f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.our-appointment-section .appointment-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.our-appointment-section .appointment-info-item:hover .icon-box::before {
  transform: scale(1);
}

.our-appointment-section .appointment-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.our-appointment-section .appointment-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.our-appointment-section .appointment-info-item-content {
  width: calc(100% - 65px);
}

.our-appointment-section .appointment-info-item-content h3 {
  font-size: 20px;
  color: #ffffff;
}

.our-appointment-section .appointment-info-item-content p {
  color: #ffffff;
  margin: 5px 0 0;
}

.our-appointment-section .appointment-info-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.our-appointment-section .appointment-info-item-content p a:hover {
  color: #d4999f;
}

.our-appointment-section .appointment-info-item.location-item {
  border-top: 1px solid #ffffff1a;
  width: 100%;
  padding-top: 30px;
}

.our-appointment-section .appointment-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
}

.our-appointment-section .appointment-form .form-control {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: #424c6f;
  border: 1px solid #15224d1a;
  background-color: transparent;
  border-radius: 10px;
  padding: 17px 20px;
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .our-appointment-section .appointment-info-item-list {
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .our-appointment-section .appointment-info-item {
    width: 100%;
  }
}
/* Area of Expertise */

.area-expertise .expertise-nav {
  gap: 15px;
}

.area-expertise .expertise-nav .nav-link {
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  color: #222;
  border: 1px solid #eee;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.area-expertise .expertise-nav .nav-link i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff5f5;
  color: #d4999f;
  font-size: 24px;
}

.area-expertise .expertise-nav .nav-link .head {
  text-align: left;
}

.area-expertise .expertise-nav .nav-link h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.area-expertise .expertise-nav .nav-link small {
  color: #888;
}

.area-expertise .expertise-nav .nav-link.active {
  background: #d4999f;
  color: #fff;
  transform: translateX(10px);
  border-color: #d4999f;
}

.area-expertise .expertise-nav .nav-link.active h5{
  color: #fff;
}

.area-expertise .expertise-nav .nav-link.active small {
  color: #fff;
}

.area-expertise .expertise-nav .nav-link.active i {
  background: #fff;
  color: #d4999f;
}

.area-expertise .content-card {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1e3e3;
  height: auto;
}

.area-expertise .badge-title {
  background: #fff1f2;
  color: #d4999f;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
}

.area-expertise .content-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #d4999f;
}

.area-expertise .content-card p {
  color: #666;
  line-height: 1.9;
}

.area-expertise .service-box {
  background: #fff8f8;
  border-radius: 16px;
  padding: 18px;
  font-weight: 500;
  border: 1px solid #f3d8dc;
  transition: 0.3s;
}

.area-expertise .service-box i {
  color: #d4999f;
  margin-right: 10px;
}

.area-expertise .service-box:hover {
  background: #d4999f;
  color: #fff;
  transform: translateY(-5px);
}

.area-expertise .service-box:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .area-expertise .content-card {
    padding: 30px;
    margin-top: 30px;
  }

  .area-expertise .expertise-nav .nav-link.active {
    transform: none;
  }

  .area-expertise .content-card h2 {
    font-size: 30px;
  }
}
