/* ===================================================================
   AURINOVA ENT CENTER — Header / Navigation / Hero Slider
   Design tokens
=================================================================== */
:root {
  --ink: #10243E;
  /* deep navy — headers, primary text */
  --ink-soft: #3C4F68;
  /* muted navy for body copy on light bg */
  --teal: #459557;
  /* primary accent */
  --teal-dark: #459557;
  --coral: #E8674A;
  /* sparing accent — booking / highlight only */
  --sand: #F2EFE9;
  /* warm section background */
  --paper: #FBFBF9;
  /* near-white background */
  --white: #FFFFFF;
  --line: rgba(16, 36, 62, 0.10);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 88px;
  --topbar-h: 40px;
  --container: 1440px;

  --navy: #0b2f5e;
  --grey-arc: #e3e5e8;
  --grey-arc-hover: #459557;
  --teal: #459557;
  --teal-dark: #459557;
  --insta: #d6249f;
  --linkedin: #0a66c2;
  --text-muted: #8a93a3;
  --card-w: 230px;

}

:root {
  --navy: #0b2f5e;
  --grey-arc: #e3e5e8;
  --grey-arc-hover: #17c1a3;
  --teal: #17c1a3;
  --teal-dark: #0fa38a;
  --insta: #d6249f;
  --linkedin: #0a66c2;
  --text-muted: #8a93a3;
  --card-w: 280px;
}

* {
  box-sizing: border-box;
}

.center {
  text-align: center;
}

.page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 2px 0 0;
  line-height: 1;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  background-color: #10243e;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}

.page-numbers.current,
a.page-numbers:hover {
  background: #459557;
}

.cat_active {
  color: #d63638 !important;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.site-header {
  background: transparent;
  transition: all 0.3s ease;
}

.site-header__inner {
  transition: all 0.3s ease;
}
.site-header__inner img{
  width: 300px;
}

.site-header.sticky .site-header__inner {
  max-width: 1600px;
  margin: 0 auto;

}

.slider-wrap {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.team {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 2%;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg.jpg) center / 700px auto repeat;
  opacity: 0.05;
  z-index: 0;
  filter: grayscale(100%);
}

.team>* {
  position: relative;
  z-index: 1;
}


.team h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  text-align: center;
}

.team h3 {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0px 10px 25px 0px rgb(0 0 0 / 8%);
  background-color: var(--tcr-white-color);
  margin-bottom: 10px !important;
  color: #e8674a;
  text-transform: uppercase;
}

.team .top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.slider-viewport {
  overflow: hidden;
  padding-top: 50px;
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.slide-page {
  display: flex;
  justify-content: space-between;
  flex: 0 0 100%;
  gap: 8px;
}

.doctor-card {
  width: 24%;
  text-align: center;
  flex: 0 0 auto;
}

.avatar-holder {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 22px;
}

/* grey semicircle backdrop, sits behind the photo, top-aligned */
.avatar-holder::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--grey-arc);
  clip-path: inset(0 0 45% 0);
  transition: background .35s ease;
  z-index: 0;
}

.doctor-card:hover .avatar-holder::before {
  background: #459557;
}

.avatar-photo {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(20, 40, 80, .12);
}

.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* share button + hidden social icons */
.share-cluster {
  position: absolute;
  bottom: 6px;
  right: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
}

.social-icon,
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(20, 40, 80, .18);
  cursor: pointer;
  flex: 0 0 40px;
}

.share-btn svg {
  stroke: #459557;
}

.share-btn:hover {
  background: #459557;
}

.share-btn:hover svg {
  stroke: #fff;
}

.social-icon {
  width: 0;
  flex-basis: 0;
  opacity: 0;
  transform: scale(.4);
  margin-right: 0;
  overflow: hidden;
  transition: all .3s ease;
  pointer-events: none;
}

.doctor-card:hover .social-icon {
  width: 40px;
  flex-basis: 40px;
  opacity: 1;
  transform: scale(1);
  margin-right: 8px;
  pointer-events: auto;
}

.social-icon.instagram svg {
  stroke: var(--insta);
}

.social-icon.linkedin svg {
  stroke: var(--linkedin);
}

.social-icon:hover {
  background: currentColor;
}

.social-icon.instagram:hover {
  background: var(--insta);
}

.social-icon.instagram:hover svg {
  stroke: #fff;
}

.social-icon.linkedin:hover {
  background: var(--linkedin);
}

.social-icon.linkedin:hover svg {
  stroke: #fff;
}

.doc-name {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.doc-role {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dae0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.dot.active {
  background: #459557;
  transform: scale(1.15);
}

/* arrows (optional, subtle) */
.arrow {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e7e9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  box-shadow: 0 4px 10px rgba(20, 40, 80, .08);
  transition: background .2s ease, color .2s ease;
}

.arrow:hover {
  background: #459557;
  color: #fff;
  border-color: #459557;
}

.arrow.prev {
  left: -54px;
}

.arrow.next {
  right: -54px;
}


/*======================================
Google Font
======================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f7fbff;
  color: #1a2b55;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/*======================================
Section
======================================*/


.contact_cta {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark Overlay */

.contact_overlay {

  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      #459557 0%,
      rgba(69, 149, 87, 0.85) 30%,
      rgba(52, 111, 66, 0.55) 60%,
      rgba(255, 255, 255, 0) 100%);

}

.container2 {

  width: 90%;
  max-width: 1600px;
  margin: auto;
  position: relative;
  z-index: 2;

}

.contact_content {

  width: 600px;
  color: #fff;

}

.contact_content h2 {

  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;

}

.divider {

  position: relative;
  width: 150px;
  height: 2px;

  background: #ffffff;
  margin-bottom: 35px;

}

.divider span {

  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  background: #0d4c3a;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 18px;

}

.contact_content p {

  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;

}

.call_btn {

  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 7px 38px 7px 38px;
  background: #f36d4b;
  border-radius: 60px;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  transition: .35s;
  box-shadow: 0 20px 40px rgba(243, 109, 75, .35);

}

.call_btn:hover {

  transform: translateY(-5px);
  background: #0a9d63;
  color: #fff;

}

@media(max-width:991px) {

  .contact_cta {

    min-height: 500px;

  }

  .contact_content {

    width: 100%;
    text-align: center;

  }

  .contact_content h2 {

    font-size: 50px;

  }

  .contact_content p {

    font-size: 18px;

  }

  .divider {

    margin: 0 auto 30px;

  }

}

@media(max-width:576px) {

  .contact_cta {

    padding: 70px 25px;
    min-height: 430px;

  }

  .contact_content h2 {

    font-size: 36px;

  }

  .contact_content p {

    font-size: 16px;
    line-height: 1.7;

  }

  .call_btn {

    font-size: 18px;

    padding: 12px 30px 12px 12px;

  }

  .call_btn .icon {

    width: 50px;
    height: 50px;

    font-size: 18px;

  }

}


.contactus_section {

  position: relative;

  padding: 110px 20px;

  overflow: hidden;

  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);

}

.contactus_container {

  max-width: 1600px;

  margin: auto;

}

/*======================================
Floating Shapes
======================================*/

.contactus_shape {

  position: absolute;

  border-radius: 50%;

  z-index: 0;

  animation: contactus_float 8s ease-in-out infinite;

}

.contactus_shape1 {

  width: 280px;
  height: 280px;

  top: -80px;
  left: -80px;

  background: rgb(69 149 87 / 8%);

}

.contactus_shape2 {

  width: 350px;
  height: 350px;

  bottom: -120px;
  right: -120px;

  background: rgb(69 149 87 / 8%);

  animation-delay: 2s;

}

/*======================================
Grid
======================================*/

.contactus_grid {

  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 80px;

  align-items: center;

}

/*======================================
Left Side
======================================*/

.contactus_left {

  animation: contactus_fadeLeft 1s ease;

}

.contactus_subtitle {

  display: inline-block;
  color: rgb(255, 255, 255);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 9px 18px;
  background: rgb(233, 105, 74);
  border-radius: 40px;
  animation: 2s ease 0s infinite normal none running dcsPulse;

}

.contactus_left h2 {

  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;

}

.contactus_left>p {

  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;

}

/*======================================
Contact Info Cards
======================================*/
.contactus_section {
  position: relative;
}

.contactus_info {

  display: flex;


  gap: 22px;

  margin-bottom: 28px;

  padding: 18px;

  border-radius: 18px;

  transition: .4s;

  background: transparent;

  width: 50%;

}

.contact_flex {
  display: flex;
  flex-wrap: wrap;
}

.contactus_info:hover {

  background: #ffffff;

  transform: translateX(12px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

}

.contactus_icon {

  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #509b61;
  color: #fff;
  font-size: 24px;
  transition: .4s;
  flex-shrink: 0;

}
.contactus_icon img{
  width: 25px;
}
.contactus_info:hover .contactus_icon {

  transform: rotate(15deg) scale(1.08);

  background: #e9694a;

}

.contactus_info h4 {

  font-size: 25px;
  color: var(--dark);
  font-family: 'Fraunces', serif;

}

.contactus_info span {

  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;

}

/*======================================
Social Icons
======================================*/

.contactus_social {

  display: flex;

  gap: 14px;

  margin-top: 45px;

}

.contactus_social a {

  width: 48px;
  height: 48px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  color: #17386f;

  font-size: 18px;

  transition: .4s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

}

.contactus_social a:hover {

  background: #e9694a;
  color: #fff;

  transform: translateY(-8px) rotate(360deg);

}

/*======================================
Right Side Form Container
======================================*/

.contactus_form_box {

  position: relative;

  background: rgba(255, 255, 255, .78);

  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);

  padding: 45px;

  border-radius: 24px;

  box-shadow:

    0 25px 60px rgba(0, 0, 0, .08);

  border: 1px solid rgba(255, 255, 255, .6);

  animation: contactus_fadeRight 1s ease;

}

/* Badge */

.contactus_badge {

  position: absolute;
  top: -18px;
  right: 30px;
  background: #e8674a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgb(232 103 74 / 26%);


}

.contactus_form_box h2 {

  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;

}

/*======================================
Animations
======================================*/

@keyframes contactus_float {

  0% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-30px);

  }

  100% {

    transform: translateY(0);

  }

}

@keyframes contactus_fadeLeft {

  from {

    opacity: 0;

    transform: translateX(-50px);

  }

  to {

    opacity: 1;

    transform: translateX(0);

  }

}

@keyframes contactus_fadeRight {

  from {

    opacity: 0;

    transform: translateX(50px);

  }

  to {

    opacity: 1;

    transform: translateX(0);

  }

}


/*======================================
Form
======================================*/

.contactus_form_box form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contactus_input {
  position: relative;
}

.contactus_input:last-of-type {
  grid-column: 1/-1;
}

.contactus_input input,
.contactus_input textarea {

  width: 100%;

  padding: 20px 18px;

  border: 2px solid #e7eef7;

  border-radius: 14px;

  background: #fff;

  outline: none;

  font-size: 16px;

  font-family: 'Outfit', sans-serif;

  color: #e8674a;

  transition: .35s;

}

.contactus_input textarea {

  resize: none;
  min-height: 170px;

}

.contactus_input label {

  position: absolute;

  left: 18px;
  top: 19px;

  background: #fff;

  padding: 0 6px;

  color: #8b96ab;

  pointer-events: none;

  transition: .35s;

}

.contactus_input input:focus,
.contactus_input textarea:focus {

  border-color: #e8674a;

  box-shadow: 0 10px 25px rgba(19, 195, 195, .12);

}

.contactus_input input:focus+label,
.contactus_input textarea:focus+label,
.contactus_input input:valid+label,
.contactus_input textarea:valid+label {

  top: -11px;

  font-size: 13px;

  color: #e8674a;

}

/*======================================
Button
======================================*/

.contactus_btn {

  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  height: 60px;
  border: none;
  border-radius: 48px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: .35s;
  background: #e8674a;

}

.contactus_btn span {

  position: relative;
  z-index: 2;

}

.contactus_btn::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80px;
  height: 100%;

  background: rgba(255, 255, 255, .35);

  transform: skewX(-25deg);

  transition: 1s;

}

.contactus_btn:hover::before {

  left: 130%;

}

.contactus_btn:hover {

  transform: translateY(-5px);


}

/*======================================
Map
======================================*/

.contactus_map {

  width: 100%;

  height: 480px;

  overflow: hidden;

}

.contactus_map iframe {

  width: 100%;

  height: 100%;

  border: 0;

  filter: grayscale(.2);

}

/*======================================
Extra Decorations
======================================*/

.contactus_form_box::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 24px;

  padding: 1px;

  background: linear-gradient(135deg, rgb(232 103 74 / 51%), rgba(27, 95, 169, .12));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;

}

.contactus_info::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;

  height: 2px;

  background: #e9694a;

  transition: .4s;

}

.contactus_info {

  position: relative;

}

.contactus_info:hover::after {

  width: 100%;

}

/*======================================
Responsive
======================================*/

@media(max-width:1100px) {

  .contactus_grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }

  .contactus_form_box {

    max-width: 750px;

    margin: auto;

  }
  .about-us-box-1 {
  
    padding: 0px 0px;
  }

}

@media(max-width:768px) {

  .contactus_section {

    padding: 80px 15px;

  }

  .contactus_left h2 {

    font-size: 40px;

  }

  .contactus_form_box h2 {

    font-size: 34px;

  }

  .contactus_form_box {

    padding: 30px;

  }

  .contactus_form_box form {

    grid-template-columns: 1fr;

  }

  .contactus_input:last-of-type {

    grid-column: auto;

  }

  .contactus_btn {

    grid-column: auto;

  }

  .contactus_info {

    padding: 15px;

  }

  .contactus_icon {

    width: 58px;
    height: 58px;

    font-size: 20px;

  }

  .contactus_info h4 {

    font-size: 22px;

  }

  .contactus_social {

    justify-content: flex-start;

  }

  .contactus_badge {

    position: static;

    display: inline-block;

    margin-bottom: 20px;

  }

  .contactus_map {

    height: 350px;

  }

}

@media(max-width:576px) {

  .contactus_left h2 {

    font-size: 34px;

  }

  .contactus_left>p {

    font-size: 16px;

  }

  .contactus_form_box {

    padding: 25px;

    border-radius: 18px;

  }

  .contactus_form_box h2 {

    font-size: 28px;

  }

  .contactus_input input,
  .contactus_input textarea {

    padding: 16px;

  }

  .contactus_input label {

    top: 16px;

    font-size: 15px;

  }

  .contactus_btn {

    height: 54px;

    font-size: 16px;

  }

  .contactus_social {

    flex-wrap: wrap;

  }

  .contactus_icon {

    width: 54px;
    height: 54px;

  }

  .contactus_shape1 {

    width: 180px;
    height: 180px;

  }

  .contactus_shape2 {

    width: 220px;
    height: 220px;

  }

}

@media (max-width:1100px) {
  .slide-page {
    flex-wrap: wrap;
    row-gap: 40px;
    justify-content: center;
  }

  .doctor-card {
    width: 45%;
  }

  .arrow {
    display: none;
  }
}

@media (max-width:520px) {
  .doctor-card {
    width: 100%;
  }
}

.col_sm1 {
  width: 100%;
  margin: 0 auto;
  display: block;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.pos-rel {
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.clear {
  clear: both;
}

.top {
  width: 90%;
  display: block;
  margin: 0 auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- shared buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 6px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #e8674a;
  color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.btn--primary:hover {
  background: #10243e;
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--pill {
  border-radius: 999px;
}

/* ===================================================================
   TOP UTILITY BAR
=================================================================== */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
}

.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__contact li {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.9;
}

.topbar__contact svg {
  color: #459557;
  flex-shrink: 0;
}

.topbar__contact a:hover {
  color: var(--white);
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__social a {
  display: flex;
  color: rgba(255, 255, 255, 0.75);
  transition: color .2s ease;
}

.topbar__social a:hover {
  color: #459557;
}

/* ===================================================================
   MAIN HEADER
=================================================================== */
.site-header {
  position: absolute;
  top: 0px;
  /* height of topbar */
  left: 0;
  height: 110px;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #fff;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  flex-shrink: 0;
  transition: transform .3s ease;
}


.brand__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #459557;
  margin-top: 2px;
}

.brand__text_light {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text_light small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2px;
}


/* main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #459557;
  transition: width .25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .menu-item-has-children>a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  left: 80px;
  opacity: 0.6;
}

.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 24px 48px -16px rgba(16, 36, 62, 0.25);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.main-nav .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-weight: 500;
  width: 385px;

  font-size: 14px;
  color: var(--ink-soft);
}

.dropdown li a::after {
  display: none;
}

.dropdown li a:hover {
  background: var(--sand);
  color: var(--ink);
}

/* header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}

.icon-btn:hover {
  background: var(--sand);
  color: var(--teal-dark);
}

.header-actions__cta {
  padding: 13px 26px;
  font-size: 13px;
}

/* hamburger (mobile) */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ===================================================================
   MOBILE DRAWER
=================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 36, 62, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 600;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: var(--white);
  z-index: 601;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -16px 0 48px -16px rgba(16, 36, 62, 0.35);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px;
  border-bottom: 1px solid var(--line);
}

.brand__text--drawer {
  font-size: 19px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: background .2s ease;
}

.drawer-close:hover {
  background: var(--sand);
}

.mobile-nav {
  padding: 35px 10px;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav>li>a,
.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
}

.mobile-nav>li>a.is-active {
  color: var(--teal-dark);
  background: var(--sand);
}

.mobile-nav>li>a:hover,
.submenu-toggle:hover {
  background: var(--sand);
}

.submenu-toggle svg {
  transition: transform .3s ease;
  color: var(--ink-soft);
}

.has-submenu.is-open .submenu-toggle svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 14px;
}

.has-submenu.is-open .mobile-submenu {
  max-height: 280px;
}

.mobile-submenu a {
  display: block;
  padding: 11px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 7px;
}

.mobile-submenu a:hover {
  background: var(--sand);
  color: var(--ink);
}

.mobile-drawer__foot {
  padding: 20px 22px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-drawer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}

.mobile-drawer__phone svg {
  color: #459557;
}

body.no-scroll {
  overflow: hidden;
}

/* ===================================================================
   HERO SLIDER
=================================================================== */

.hero {
  margin-top: 0;
  height: 100vh;
}

.hero__track {
  position: relative;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero,
.hero__track,
.hero__slide,
.hero__media {
  overflow: hidden !important;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.hero__slide.is-active .hero__media img {
  transform: scale(1);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(69, 149, 87, 0.92) 0%,
      rgba(69, 149, 87, 0.75) 30%,
      rgba(69, 149, 87, 0.35) 56%,
      rgba(69, 149, 87, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin-left: max(32px, calc((100vw - var(--container)) / 2));
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9FE3DF;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8674a;
  box-shadow: 0 0 0 0 rgba(232, 103, 74, 0.6);
  animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 103, 74, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(232, 103, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 103, 74, 0);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(22px);
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: #9FE3DF;
}

.hero__desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(22px);
}

.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(22px);
}

/* staggered entrance, only on active slide */
.hero__slide.is-active .hero__eyebrow {
  animation: rise .7s .25s forwards cubic-bezier(.22, 1, .36, 1);
}

.hero__slide.is-active .hero__title {
  animation: rise .8s .4s forwards cubic-bezier(.22, 1, .36, 1);
}

.hero__slide.is-active .hero__desc {
  animation: rise .8s .6s forwards cubic-bezier(.22, 1, .36, 1);
}

.hero__slide.is-active .hero__cta-row {
  animation: rise .8s .75s forwards cubic-bezier(.22, 1, .36, 1);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  z-index: 5;
  transition: background .25s ease, transform .25s ease;
}

.hero__arrow:hover {
  background: #459557;
  border-color: #459557;
}

.hero__arrow--prev {
  left: 28px;
}

.hero__arrow--next {
  right: 28px;
}

.hero__arrow:active {
  transform: translateY(-50%) scale(0.92);
}

/* dots */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background .25s ease, transform .25s ease, width .25s ease;
}

.hero__dot.is-active {
  background: #459557;
  width: 26px;
  border-radius: 5px;
}

/* progress bar */
.hero__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
}

.hero__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #459557;
}

.hero__progress span.is-running {
  animation: progress-fill 6s linear forwards;
}

@keyframes progress-fill {
  to {
    width: 100%;
  }
}

/* ---------- ticket-stub appointment card (signature element) ---------- */
.ticket {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2 + 32px));
  bottom: 42px;
  z-index: 6;
  display: flex;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(16, 36, 62, 0.45);
  overflow: hidden;
  animation: ticket-in .8s .9s forwards cubic-bezier(.22, 1, .36, 1);
  opacity: 0;
  transform: translateY(26px);
}

@keyframes ticket-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ticket__main {
  padding: 20px 22px;
  min-width: 250px;
}

.ticket__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.ticket__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  font-size: 13.5px;
}

.ticket__row+.ticket__row {
  border-top: 1px dashed var(--line);
}

.ticket__day {
  font-weight: 700;
  color: var(--ink);
}

.ticket__time {
  color: var(--ink-soft);
  font-weight: 500;
}

/* the perforated tear-line between stub and ticket body */
.ticket__perf {
  position: relative;
  width: 0;
  border-left: 1px dashed rgba(16, 36, 62, 0.25);
}

/* .ticket__perf::before,
.ticket__perf::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border-radius: 50%;
  left: -7px;
}

.ticket__perf::before {
  top: -7px;
}

.ticket__perf::after {
  bottom: -7px;
} */

.ticket__stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e8674a;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 30px;
  transition: background .25s ease;
}

.ticket__stub:hover {
  background: #D6573C;
}

/* ===================================================================
  About 
=================================================================== */
.about-us {
  display: flex;
  width: 100%;
  padding: 70px 50px;
  position: relative;
}

.about-us-box-1 {
  width: 40%;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 0px 50px;
}

.about-us-box-2 {
  width: 60%;
  padding: 0 0 0 7%;
}




.about-us h3 {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0px 10px 25px 0px rgb(0 0 0 / 8%);
  background-color: var(--tcr-white-color);
  margin-bottom: 10px !important;
  color: #e8674a
}

.about-us h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
  font-family: 'Fraunces', serif;

}

.about-us p {
  font-size: 16px;
  color: #000000ba;
  line-height: 140%;
  text-align: justify;
  margin-top: 10px;
  font-weight: 400;
}

.abt-img {
  width: 253px;
  position: absolute;
  bottom: -84px;
  right: -6%;
  border: 8px solid #FFF;
}

.about-us-box-2 ul {
  list-style-image: url("https://shreepolyclinickharghar.com/wp-content/themes/shree-polyclinic-hospital/images/icon.png");
  margin-left: 3%;
  display: flex;
  justify-content: flex-end;
  align-items: start;
  flex-direction: column;
  margin-top: 17px;
}

.about-us-box-2 ul li {
  line-height: 140%;
  margin: 5px 8px 8px 5px;
}

.abt-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  opacity: 0.3;
}

.effect34 {
  width: 221px;
  background-color: #fff;
  padding: 9px;
  border-radius: 50px;
  position: absolute;
  display: flex;
  right: 30%;
  bottom: 0%;
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
  animation: effect34 infinite 8s linear alternate;
}

@keyframes effect34 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(70px);
  }
}

.effect35 {
  width: 160px;
  height: 160px;
  position: absolute;
  top: -9%;
  left: 9%;
  background-image: linear-gradient(75deg, #459557 25%, #1310bd);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
}

.effect35::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 2px dashed #ffffffb3;
  animation: effect35 infinite 14s linear;
}

@keyframes effect35 {
  100% {
    transform: rotate(360deg);
  }
}

.effect35_txt p {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  text-align: center;
  margin: 0% !important;
  line-height: 140%;
  color: #fff;
}

.transparent-after::after {
  background: transparent !important;
}

.effect35_txt h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  text-align: center;
  font-weight: 600;
  margin: 0% !important;
  line-height: 140%;
  color: #fff;
}

.effect_cont_txt h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin: 0% !important;
  line-height: 140%;
}

.effect_cont_txt p {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0% !important;
  line-height: 140%;
}

.effect-Bg {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
}

/* ===================================================================
  About 
=================================================================== */

/* ===================================================================
  Services 
=================================================================== */
.carousel-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.owl-item-card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85),
      rgba(0, 0, 0, .2),
      transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;

  opacity: 0;
  transition: .45s ease;
}

.card-overlay h3,
.card-overlay p {
  transform: translateY(25px);
  transition: .45s ease;
}

.card-overlay p {
  transition-delay: .1s;
}

.owl-item-card {
  position: relative;
  border-top: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  padding: 60px 50px 60px 50px;
  background-color: #459557;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}

/* Image hidden initially */
.owl-item-card>img {

  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.6s ease;
}

/* Dark overlay so text stays readable */
.owl-item-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity .6s ease;
}

.owl-theme .owl-nav.disabled+.owl-dots {

  display: none;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
  transition: transform .4s ease;

}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  min-height: 80px;
  font-family: 'Fraunces', serif;
}

.card-content p {
  margin: 0;
  line-height: 1.6;
}

.card-content a {
  margin: 0;
  line-height: 140%;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  position: relative;
  display: inline-block;
}


/* Hover */
.owl-item-card:hover img {
  opacity: 1;
  transform: scale(1);
}

.owl-item-card:hover::after {
  opacity: 1;
}

.owl-item-card:hover .card-content {
  transform: translateY(-10px);
}

/* Custom navigation arrows */
.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1a8fd1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(26, 143, 209, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.custom-nav:hover {
  background: #14709f;
  transform: translateY(-50%) scale(1.08);
}

.custom-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-prev {
  left: 0;
}

.nav-next {
  right: 0;
}

/* Dots styling */
.owl-theme .owl-dots .owl-dot span {
  background: #cfd8dc;
  width: 9px;
  height: 9px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #1a8fd1;
}

/* 1. Sliding underline with arrow nudge */
.style-underline {
  padding-bottom: 4px;
}

.style-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.style-underline .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.style-underline:hover::after {
  transform: scaleX(1);
}

.style-underline:hover .arrow {
  transform: translateX(5px);
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  width: 320px;
  box-shadow: 0 1px 3px rgba(20, 30, 40, 0.08), 0 8px 24px rgba(20, 30, 40, 0.04);
  text-align: center;
}

.online {
  padding: 70px 0px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 85px;
}

.online h3 {
  display: inline-block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #fff;
  color: rgb(232, 103, 74);
  margin-bottom: 10px !important;
  padding: 10px 19px;
  border-radius: 6px;
}

.online h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;

}

.online p {
  font-size: 16px;
  color: #fff;
  line-height: 140%;
  text-align: justify;
  margin-top: 10px;
  font-weight: 400;
}


.services {
  padding: 70px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 85px;
}

.services-1 {
  width: 40%;
}

.services-2 {
  width: 60%;
}

.online-care-bg {
  background-color: #459557;
  position: relative;
  overflow: hidden;
}



.services-bg {
  background-color: #459557;
  margin-top: 5%;
  position: relative;
}

.services h3 {
  display: inline-block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #fff;
  color: rgb(232, 103, 74);
  margin-bottom: 10px !important;
  padding: 10px 19px;
  border-radius: 6px;
}

.services h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #fff;
  font-weight: 600;
  font-family: 'Fraunces', serif;

}

.services p {
  font-size: 16px;
  color: #fff;
  line-height: 140%;
  text-align: justify;
  margin-top: 10px;
  font-weight: 400;
}

.services-bckgrd {
  position: absolute;
  top: 0;
  left: 0%;
  opacity: 0.8;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: #ffffff3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 15%);
}

.service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.dental-coming-soon {
  padding: 90px 20px;
  background: #fff;
  overflow: hidden
}

.dental-coming-soon .dental-coming-soon__container {
  max-width: 1240px;
  margin: auto
}

.dental-coming-soon .dental-coming-soon__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.dental-coming-soon .dental-coming-soon__image {
  position: relative;
  display: flex;
  justify-content: center
}

.dental-coming-soon .dental-coming-soon__circle img {
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: linear-gradient(135deg, #459557, #2b733b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(10, 110, 189, .25);
  object-fit: cover;
}

.dental-coming-soon .dental-coming-soon__circle i {
  font-size: 170px;
  color: #fff
}

.dental-coming-soon .dental-coming-soon__floating {
  position: absolute;
  color: #e8674a;
  font-size: 34px;
  animation: dcsFloat 4s ease-in-out infinite
}

.dental-coming-soon .dental-coming-soon__floating--1 {
  left: 40px;
  top: 30px
}

.dental-coming-soon .dental-coming-soon__floating--2 {
  right: 25px;
  top: 70px;
  animation-delay: 1s
}

.dental-coming-soon .dental-coming-soon__floating--3 {
  bottom: 30px;
  left: 40px;
  animation-delay: 2s
}

.dental-coming-soon .dental-coming-soon__badge {
  display: inline-block;
  padding: 9px 18px;
  background: #e9694a;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 18px;
  animation: dcsPulse 2s infinite;
}

.dental-coming-soon .dental-coming-soon__title {
  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
}

.dental-coming-soon .dental-coming-soon__title h2 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
}

.dental-coming-soon .dental-coming-soon__title p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  ;
}

.dental-coming-soon .dental-coming-soon__text {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 30px
}

.dental-coming-soon .dental-coming-soon__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px
}

.dental-coming-soon .dental-coming-soon__feature {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .3s
}

.dental-coming-soon .dental-coming-soon__feature:hover {
  transform: translateY(-6px)
}

.dental-coming-soon .dental-coming-soon__feature i {
  color: #459557;
  margin-right: 8px
}

.dental-coming-soon .dental-coming-soon__card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #459557, #2b733b);
  color: #fff;
  margin-bottom: 30px
}

.dental-coming-soon .dental-coming-soon__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.dental-coming-soon .dental-coming-soon__button {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s
}

.dental-coming-soon .dental-coming-soon__button--primary {
  background: #e8674a;
  color: #fff
}

.dental-coming-soon .dental-coming-soon__button--primary:hover {
  background: #095999
}

.dental-coming-soon .dental-coming-soon__button--secondary {
  border: 2px solid #e8674a;
  color: var(--primary)
}

.dental-coming-soon .dental-coming-soon__button--secondary:hover {
  background: #e8674a;
  color: #fff
}

.dental-coming-soon .dental-coming-soon__reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s
}

.dental-coming-soon .dental-coming-soon__reveal.dental-coming-soon__show {
  opacity: 1;
  transform: none
}

@keyframes dcsFloat {
  50% {
    transform: translateY(-14px)
  }
}

@keyframes dcsPulse {
  50% {
    transform: scale(1.05)
  }
}


.online-care-slider {
  position: relative;
  overflow: hidden;

  margin: 40px 0;
}

.online-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.online-slide {
  flex: 0 0 25%;
  padding: 10px;
  box-sizing: border-box;
}

.online-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.online-care-slider .prev,
.online-care-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1a8fd1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(26, 143, 209, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.online-care-slider .prev {
  left: 10px;
}

.online-care-slider .next {
  right: 10px;
}

.online-care-slider .prev svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.online-care-slider .next svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===================================================================
   Review
=================================================================== */
.review-section {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* faint ECG graph-paper texture in the background */
.review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.clinic-mark {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}

.clinic-mark .cross {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.clinic-mark .cross::before,
.clinic-mark .cross::after {
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
}

.clinic-mark .cross::before {
  inset: 0 40% 0 40%;
}

.clinic-mark .cross::after {
  inset: 40% 0 40% 0;
}

/* ---------------- Wristband card ---------------- */
.wristband {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 400px;
  align-items: center;
  width: 80%;
  background: var(--white);

  box-shadow: 0 1px 2px rgba(18, 58, 51, 0.08), 0 24px 48px -28px rgba(18, 58, 51, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wristband:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(18, 58, 51, 0.08), 0 34px 56px -30px rgba(18, 58, 51, 0.4);
}

.wristband__body p a {
  background-color: #e8674a;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 45px;
  border-radius: 10px;
  text-align: center;
  line-height: 140%;
  text-transform: capitalize;
}

/* snap-hole end, like a real hospital wristband clasp */
.wristband__clasp {
  width: 120px;
  height: 100%;
  background: #459557;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  border-radius: 10px 0 0 10px;
}



.wristband__body {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.band-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.band-label b {
  color: var(--teal-deep);
}

.wristband__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
  max-width: 30ch;
}

.wristband__headline .accent {
  color: var(--coral);
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.stars-row svg {
  width: 16px;
  height: 16px;
  fill: #F5A623;
}

.stars-row .icons {
  display: flex;
  gap: 2px;
}

.stars-row .score {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
}

.stars-row .count {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.google-line {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.google-line .g span:nth-child(1) {
  color: #4285F4;
}

.google-line .g span:nth-child(2) {
  color: #EA4335;
}

.google-line .g span:nth-child(3) {
  color: #FBBC05;
}

.google-line .g span:nth-child(4) {
  color: #4285F4;
}

.google-line .g span:nth-child(5) {
  color: #34A853;
}

.google-line .g span:nth-child(6) {
  color: #EA4335;
}

.google-line .g {
  font-weight: 700;
}

.review-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.review-section h3 {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0px 10px 25px 0px rgb(0 0 0 / 8%);
  background-color: var(--tcr-white-color);
  margin-bottom: 10px !important;
  color: #e8674a;
  text-transform: uppercase;
}

.review-section h2 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  margin-bottom: 16px;
}

.review-section p {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
}

/* ---------------- QR tag end ---------------- */
.wristband__tag {
  background: var(--coral);
  height: 100%;
  padding: 0.85rem clamp(1rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.wristband__tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0 5px, transparent 5px 11px);
}

.qr-chip {
  background: var(--white);
  padding: 8px;
  border-radius: 12px;
  line-height: 0;
}

#qrcode img,
#qrcode canvas {
  display: block;
  width: 230px !important;
  height: 230px !important;
}

.scan-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

/* pulse / ECG line tracing along the top of the band */
.pulse-line {
  position: absolute;
  top: -12px;
  left: 4.5%;
  right: 12%;
  height: 28px;
  pointer-events: none;
  width: 40%;
}

.pulse-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pulse-path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-pulse 2.2s ease-out forwards, pulse-glow 2.6s ease-in-out 2.4s infinite;
}

@keyframes draw-pulse {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.35;
  }
}

/* ---------- BLOG ----------*/
.blog_layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog_left {
  width: 100%;
}

.blog_sidebar {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 25px;
  border-radius: 12px;
  position: sticky;
  top: 30px;
}

.blog_sidebar h3 {
  margin-bottom: 25px;
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
}

.blog_sidebar h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0a8f63;
  position: absolute;
  left: 0;
  bottom: 0;
}

.latest_blog {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.latest_blog:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.latest_blog img {
  width: 90px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.latest_blog h4 {
  font-size: 16px;
  margin: 0 0 8px;
  line-height: 1.4;
}

.latest_blog h4 a {
  color: #222;
  text-decoration: none;
  transition: .3s;
}

.latest_blog h4 a:hover {
  color: #448e5a;
}

.latest_blog span {
  font-size: 13px;
  color: #777;
}

@media(max-width:991px) {

  .blog_layout {
    grid-template-columns: 1fr;
  }

  .blog_sidebar {
    position: relative;
    top: 0;
  }

}

.blog_right {
  position: sticky;
  top: 100px;
}

.blog_section {
  padding: 90px 20px;
}

.blog_container {
  max-width: 1600px;
  margin: auto;
}

.blog_grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

}

.blog_card {

  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8edf5;
  transition: .45s;
  position: relative;

  animation: blogFade .8s ease forwards;
  opacity: 0;

}

.blog_card:nth-child(2) {
  animation-delay: .2s;
}

.blog_card:nth-child(3) {
  animation-delay: .4s;
}

.blog_card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.blog_image {

  position: relative;
  overflow: hidden;

}

.blog_image img {

  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;

  transition: 1s;

}

.blog_card:hover img {

  transform: scale(1.08);

}

.blog_date {

  position: absolute;
  top: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  background: #459557e0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .18);

}

.blog_date span {

  font-size: 30px;
  line-height: 1;

}

.blog_date small {

  font-size: 18px;
  margin-top: 3px;

}

.blog_content {

  padding: 32px;

}

.blog_category {

  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #45955733;
  color: #569c65;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;

}

.blog_content h3 {

  font-size: 26px;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  margin: 12px 0 12px;

}

.blog_card:hover h3 {

  color: #448e5a;

}

.blog_content p {

  font-size: 16px;
  color: #000000ba;
  line-height: 140%;
  text-align: justify;
  margin: 15px 0;
  font-weight: 400;

}

.blog_btn {

  display: inline-flex;
  align-items: center;

  gap: 14px;

  font-weight: 600;

  text-transform: uppercase;

  font-size: 15px;

  color: #0f2754;

}

.blog_circle {

  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #448e5a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .4s;

}

.blog_card:hover .blog_circle {

  transform: rotate(360deg);

}

@keyframes blogFade {

  from {

    opacity: 0;
    transform: translateY(40px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

/* Tablet */

@media(max-width:992px) {

  .blog_grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .blog_content h3 {

    font-size: 28px;

  }

}

/* Mobile */

@media(max-width:768px) {

  .blog_grid {

    grid-template-columns: 1fr;

  }

  .blog_image img {

    height: 260px;

  }

  .blog_content {

    padding: 24px;

  }

  .blog_content h3 {

    font-size: 24px;

  }

  .blog_content p {

    font-size: 16px;

  }

  .blog_section {

    padding: 60px 15px;

  }

  .blog_date {

    width: 60px;
    height: 60px;

  }

  .blog_date span {

    font-size: 26px;

  }

  .blog_date small {

    font-size: 15px;

  }

}

/* ---------- BLOG ----------*/

/* ----------SERVICES ---------- */
.container {
  display: flex;
  justify-content: center;
}

.service-section {
  padding: 30px 0;
  background: #fff;
}

.service-bg {
  background: #45955721;
}

.service-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1600px;
  justify-content: center;
}


.service-wrapper.reverse {
  flex-direction: row-reverse;
}

.service-image,
.service-content {
  width: 50%;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.service-tag {
  display: inline-block;
  padding: 9px 18px;
  background: #e9694a;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 18px;
  animation: dcsPulse 2s infinite;
}

.service-content h2 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
}

.service-content h4 {
  color: #448e5a;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-list  ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  color: #444;
  line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #448e5a;
  font-weight: 700;
  font-size: 18px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-highlights div {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  font-weight: 600;
  color: #333;
  border-left: 4px solid #448e5a;
}

.service-bg .service-highlights div {
  background: #ffffff;
}

@media(max-width:991px) {

  .service-wrapper,
  .service-wrapper.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
  }

  .service-content h2 {
    font-size: 30px;
  }

  .service-list,
  .service-highlights {
    grid-template-columns: 1fr;
  }

}

/*=========================
Animations
==========================*/

@keyframes drservices_dash {

  from {

    stroke-dashoffset: 260;

  }

  to {

    stroke-dashoffset: 0;

  }

}

@keyframes drservices_fade {

  from {

    opacity: 0;
    transform: translateY(40px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

.drservices_left,
.drservices_right,
.drservices_heading,
.drservices_step,
.drservices_plan {

  animation: drservices_fade .8s ease forwards;

}

.drservices_right {
  animation-delay: .2s;
}

.drservices_heading {
  animation-delay: .3s;
}

.drservices_step:nth-child(1) {
  animation-delay: .4s;
}

.drservices_step:nth-child(3) {
  animation-delay: .5s;
}

.drservices_step:nth-child(5) {
  animation-delay: .6s;
}

.drservices_plan {
  animation-delay: .7s;
}

/*=========================
Hover Effects
==========================*/

.drservices_step h3 {

  transition: .3s;

}

.drservices_step:hover h3 {

  color: #08c3c5;

}

.drservices_plan {

  transition: .4s;

}

.drservices_plan:hover {

  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

/*=========================
Responsive
==========================*/

@media(max-width:1200px) {

  .drservices_steps {

    grid-template-columns: 1fr;
    gap: 35px;

  }

  .drservices_arrow {

    display: none;

  }

}

@media(max-width:991px) {

  .drservices_capabilities {

    grid-template-columns: 1fr;
    gap: 40px;

  }

  .drservices_left h2,
  .drservices_heading h2,
  .drservices_plan h2 {

    font-size: 38px;

  }

  .drservices_step h3 {

    font-size: 28px;

  }

  .drservices_plan {

    padding: 40px;

  }

  .drservices_plan_grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }

}

@media(max-width:768px) {

  .drservices_section {

    padding: 70px 15px;

  }

  .drservices_left h2,
  .drservices_heading h2,
  .drservices_plan h2 {

    font-size: 32px;

  }

  .drservices_left p,
  .drservices_heading p,
  .drservices_plan p {

    font-size: 16px;

  }

  .drservices_right img {

    height: 280px;

  }

  .drservices_circle {

    width: 70px;
    height: 70px;
    font-size: 28px;

  }

  .drservices_step h3 {

    font-size: 24px;

  }

  .drservices_step p {

    font-size: 16px;

  }

  .drservices_plan {

    padding: 30px 25px;

  }

  .drservices_plan_grid li {

    font-size: 16px;

  }

}

/* ----------SERVICES ---------- */
.footnote {
  position: relative;
  font-size: 16px;
  color: #000;
  text-align: center;
  width: 90%;
  margin-top: 16px !important;
}


.site-footer {
  background: #459557;
  color: #dcecdf;
  padding-top: 60px;
}

/* Newsletter row */
.footer-newsletter {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd166, #2f6b41);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo .logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-logo .logo-text span {
  color: #ffd166;
}

.newsletter-heading {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #367849;
  border-radius: 30px;
  padding: 6px 6px 6px 22px;
  min-width: 320px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 0;
}

.newsletter-form input::placeholder {
  color: #c3ddc8;
}

.newsletter-form button {
  background: #ffd166;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #e6b84f;
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
  fill: #2f6b41;
}

/* Main columns */
.footer-main {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.4fr 1.2fr 1fr;
  gap: 32px;
  padding: 48px 24px 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 22px;
  font-family: 'Fraunces', serif;
}
.footer-col img{
  width: 300px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #dcecdf;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffd166;
}

/* Contact block */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 203, 196, 0.15);
  border: 1px solid rgba(30, 203, 196, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon img {
  width: 18px;
  height: 18px;
}

.contact-item .label {
  font-size: 13px;
  color: #c3ddc8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2%;
}

.contact-item .value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 2px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #ffd166;
  transform: translateY(-2px);
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  fill: #2f6b41;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 22px 24px;
  font-size: 14px;
  color: #c3ddc8;
  display: flex;
  justify-content: space-around;
  gap: 35%;
}

.footer-bottom a {
  color: #ffd166;
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    min-width: 100%;
  }
}


/* ===================================================================
   RESPONSIVE
=================================================================== */


/* Tablet */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 24px;
  }

  .hero__content {
    max-width: 560px;
  }

  .ticket {
    right: 24px;
    bottom: 24px;
  }

  .header-actions__cta {
    display: none;
  }
}

@media(max-width:992px) {
  .dental-coming-soon .dental-coming-soon__row {
    grid-template-columns: 1fr;
            width: 85%;
  }

  .dental-coming-soon .dental-coming-soon__title {
    font-size: 36px;
    width:85%;
  }

  .dental-coming-soon .dental-coming-soon__circle {
    width: 300px;
    height: 300px
  }

  .dental-coming-soon .dental-coming-soon__circle i {
    font-size: 120px
  }
}

@media(max-width:600px) {
  .dental-coming-soon .dental-coming-soon__features {
    grid-template-columns: 1fr
  }
}


@media (max-width: 900px) {
  .topbar__contact li:first-child {
    display: none;
  }
}

/* Mobile nav switch */
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header__inner {
    padding: 0 20px;
  }

  .header-actions {
    gap: 10px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel-wrap {
    padding: 0 46px;
  }

  .custom-nav {
    width: 36px;
    height: 36px;
  }

  .custom-nav svg {
    width: 16px;
    height: 16px;
  }

.card-content {
   padding: 0;
    }
}



@media (max-width: 760px) {
  .topbar {
    height: auto;
  }

  .topbar__inner {
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 20px;
  }

  .topbar__contact {
    gap: 16px;
    flex-wrap: wrap;
  }

  .topbar__contact li:first-child {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__track {
    aspect-ratio: 3/4;
    min-height: 560px;
  }

  .hero__content {
    margin-left: 0;
    max-width: 100%;
    padding: 0 22px;
    align-items: flex-start;
    padding-top: 48px;
  }

  /* 
  .hero__scrim {
    background: linear-gradient(180deg,
        rgba(16, 36, 62, 0.55) 0%,
        rgba(16, 36, 62, 0.55) 35%,
        rgba(16, 36, 62, 0.92) 78%,
        rgba(16, 36, 62, 0.97) 100%);
  } */

  .hero__desc {
    max-width: 100%;
  }

  .hero__arrow {
    width: 42px;
    height: 42px;
  }

  .hero__arrow--prev {
    left: 14px;
  }

  .hero__arrow--next {
    right: 14px;
  }

  .ticket {
    position: static;
    margin: 20px auto 20px;
    width: calc(100% - 44px);
    max-width: 380px;
    transform: none;
  }

  .hero__cta-row {
    margin-bottom: 28px;
  }
}

/* ---------------- responsive ---------------- */
@media only screen and (max-width:1600px) {
  .card-content p {
    font-size: 13px;
    min-height: 65px;
  }

  .card-content h3 {
    min-height: 94px;
  }

  .about-us-box-1 {
    height: 350px;
  }



}

@media only screen and (max-width : 1500px) {
  .card-content h3 {
    font-size: 18px;
  }

  .owl-item-card {
    padding: 30px 30px 30px 30px;
  }

  .slider-wrap {
    max-width: 1200px;
  }

  .service-content h2 {
    font-size: 20px;

  }

  .service-content h4 {
    font-size: 16px;

  }

  .service-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }


  .service-list li {
    padding-left: 27px;
    font-size: 14px;
  }

  .service-highlights div {
    font-size: 14px;
  }

  .service-tag {
    font-size: 12px;
  }

  .service-wrapper {
    max-width: 1200px;
  }

  .service-list {
    margin: 0 0 22px;
  }

}

@media only screen and (max-width : 1000px) {
.about-us-box-1 {
    padding: 0px 0px;
  }
}
@media only screen and (max-width : 900px) {

    .hero__progress span.is-running{
      display: none;
    }
    .dental-coming-soon .dental-coming-soon__row { 
      gap: 30px;
    }
    .dental-coming-soon .dental-coming-soon__circle img {
        width: auto;
        height: auto;
    }
    .dental-coming-soon .dental-coming-soon__circle {
        width: 500px;
        height: 500px;
    }
    .wristband {
        grid-template-columns: 1fr;
        width: 96%;
    }
    .about-us  {
        flex-direction: column;
        gap: 60px;
        padding: 70px 0px;
    }
    .services {
        flex-direction: column;
        gap: 0px;
    }
    .services-1 {
        width: 96%;
    }
    .about-us-box-1 {
        width: 96%;
    }
    .about-us-box-2 {
        width: 96%;
        padding: 0;
    }
    .services-2 {
        width: 96%;
    }
     .online {
        flex-direction: column;
        gap: 0px;
    }

}
@media only screen and (max-width : 600px) {
  .wristband {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .wristband__clasp {
    display: none;
  }

  .wristband__tag {
    border-radius: 0 0 28px 28px;
    flex-direction: row;
    justify-content: center;
    padding: 1.25rem;
  }

  .wristband__tag::before {
    left: 12%;
    right: 12%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 2px;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7) 0 5px, transparent 5px 11px);
  }

  .pulse-line {
    left: 6%;
    right: 6%;
  }
  .service-section {
    width: 98%;
    margin: 0 auto;
  }
  .contact_flex {
    flex-direction: column;
  }
  .contactus_info {
    width: 96%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wristband {
    transition: none;
  }

  .pulse-path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 480px) {
  .brand__text {
    font-size: 19px;
  }

  .hero__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .btn {
    padding: 13px 22px;
    font-size: 12.5px;
  }

  .hero__dots {
    bottom: 18px;
  }

  .ticket__main {
    padding: 16px 18px;
  }

  .carousel-wrap {
    padding: 0 36px;
  }

  .custom-nav {
    width: 32px;
    height: 32px;
  }
}

@media (max-width:991px) {
  .online-slide {
    flex: 0 0 33.333%;
  }
}

@media (max-width:768px) {
  .online-slide {
    flex: 0 0 50%;
  }
}

@media (max-width:576px) {
  .online-slide {
    flex: 0 0 100%;
  }
}

@media only screen and (max-width: 500px) {
    .about-us {
        flex-direction: column;
        gap: 120px;
    }
    .services {
        flex-direction: column;
        gap: 0px;
        padding: 40px 0px;
    }
}


/*==========================================
BLOG DETAILS PAGE
==========================================*/

.blog_details_section {
  padding: 80px 0;
  background: #f8fbf9;
}


.blog_layout {
  display: grid;
  grid-template-columns: 2fr 380px;
  gap: 40px;
  align-items: flex-start;
}

/*==========================================
BANNER
==========================================*/

.blog_banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.blog_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_banner_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .55));
}

.blog_banner_content {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  text-align: center;
  color: #fff;
}

.blog_banner_content span {
  display: inline-block;
  padding: 8px 18px;
  background: #459557;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.blog_banner_content h1 {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #fff;
  opacity: .9;
}

.breadcrumb strong {
  color: #fff;
}

.breadcrumb i {
  font-size: 12px;
}

/*==========================================
BLOG CARD
==========================================*/

.blog_details_card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.blog_image {
  position: relative;
}

.blog_image img {
  width: 100%;
  display: block;
}

.blog_date {
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: 72px;
  height: 72px;
  background: #459557;
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(69, 149, 87, .35);
}

.blog_date span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.blog_date small {
  margin-top: 5px;
  font-size: 13px;
}

.blog_content {
  padding: 45px;
}


.blog_content h2 {
  font-size: 26px;
  padding: 0;
  line-height: 140%;
  color: #10243e;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  margin: 22px 0 22px;
}

.blog_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ececec;
}

.blog_meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.blog_meta i {
  color: #459557;
}

/*==========================================
CONTENT
==========================================*/



.inner_image {
  width: 100%;
  border-radius: 18px;
  margin: 40px 0;
  overflow: hidden;
  display: block;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px) {

  .blog_layout {
    grid-template-columns: 1fr 340px;
  }

  .blog_content {
    padding: 35px;
  }

  .blog_content h2 {
    font-size: 38px;
  }

}

@media(max-width:992px) {

  .blog_layout {
    grid-template-columns: 1fr;
  }

  .blog_banner {
    height: 340px;
  }

  .blog_banner_content h1 {
    font-size: 40px;
  }

}

@media(max-width:768px) {

  .blog_banner {
    height: 280px;
  }

  .blog_banner_content h1 {
    font-size: 30px;
  }

  .blog_content {
    padding: 25px;
  }

  .blog_content h2 {
    font-size: 30px;
  }

  .blog_content h3 {
    font-size: 26px;
  }

  .blog_meta {
    gap: 15px;
  }

}

@media(max-width:576px) {

  .blog_banner_content span {
    font-size: 12px;
  }

  .blog_banner_content h1 {
    font-size: 24px;
  }

  .blog_date {
    width: 60px;
    height: 60px;
    left: 15px;
    bottom: 15px;
  }

  .blog_date span {
    font-size: 20px;
  }

  .blog_content {
    padding: 20px;
  }

}

/*==========================================
BLOCKQUOTE
==========================================*/

blockquote {
  position: relative;
  margin: 40px 0;
  padding: 43px 40px;
  background: #eef8f0;
  border-left: 5px solid #459557;
  border-radius: 18px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.7;
  color: #183226;
}

blockquote::before {
  content: "❝";
  position: absolute;
  left: 20px;
  top: -18px;
  font-size: 70px;
  color: #459557;
  opacity: .15;
}

/*==========================================
BLOG LIST
==========================================*/

.blog_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0;
  padding: 0;
}

.blog_list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #555;
}

.blog_list li::before {
  content: "✔";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #eef8f0;
  color: #459557;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

/*==========================================
DOCTOR TIP
==========================================*/

.doctor_tip {
  display: flex;
  gap: 25px;
  margin: 45px 0;
  padding: 35px;
  background: linear-gradient(135deg, #459557, #2f7d44);
  color: #fff;
  border-radius: 22px;
}

.doctor_icon {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor_icon i {
  font-size: 34px;
}

.doctor_tip h4 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.doctor_tip p {
  color: #f6f6f6;
  margin: 0;
  line-height: 1.9;
}

/*==========================================
TAGS
==========================================*/

.blog_tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 45px;
}

.blog_tags strong {
  color: #183226;
}

.blog_tags a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: #eef8f0;
  color: #459557;
  font-size: 14px;
  font-weight: 600;
  transition: .35s;
}

.blog_tags a:hover {
  background: #459557;
  color: #fff;
}

/*==========================================
SHARE
==========================================*/

.blog_share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.blog_share strong {
  color: #183226;
}

.blog_share a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e8ecea;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #459557;
  transition: .35s;
}

.blog_share a:hover {
  background: #459557;
  color: #fff;
  transform: translateY(-4px);
}

/*==========================================
PREVIOUS NEXT
==========================================*/

.blog_navigation {
  margin-top: 50px;
}

.prev_post,
.next_post {
  background: #459557;
  border-radius: 18px;
  border: 1px solid #edf1ef;
  padding: 15px 28px;
  transition: .35s;
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev_post small,
.next_post small {
  display: block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prev_post h4,
.next_post h4 {
  color: #183226;
  font-size: 22px;
  font-family: 'Fraunces', serif;
  line-height: 1.5;
  transition: .35s;
}

.prev_post:hover,
.next_post:hover {
  background: #459557;
  transform: translateY(-5px);
}

.prev_post:hover small,
.next_post:hover small,
.prev_post:hover h4,
.next_post:hover h4 {
  color: #fff;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px) {

  .blog_list {
    grid-template-columns: 1fr;
  }

  .doctor_tip {
    flex-direction: column;
    text-align: center;
  }

  .doctor_icon {
    margin: auto;
  }

  .blog_navigation {
    grid-template-columns: 1fr;
  }

  blockquote {
    padding: 25px;
    font-size: 22px;
  }

}

@media(max-width:576px) {

  .doctor_tip {
    padding: 25px;
  }

  .doctor_tip h4 {
    font-size: 24px;
  }

  .blog_tags,
  .blog_share {
    gap: 10px;
  }

}

/*==========================================
BLOG SIDEBAR
==========================================*/

.blog_sidebar {
  position: sticky;
  top: 120px;
}

/*==========================================
SIDEBAR WIDGET
==========================================*/

.sidebar_widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
  border: 1px solid #edf1ef;
}

.sidebar_widget h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: #183226;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.sidebar_widget h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #459557;
  border-radius: 10px;
}

/*==========================================
SEARCH
==========================================*/

.search_form {
  display: flex;
}

.search_form input {
  width: 100%;
  height: 56px;
  border: 1px solid #e6ece8;
  border-right: none;
  outline: none;
  padding: 0 18px;
  font-size: 15px;
  border-radius: 12px 0 0 12px;
}

.search_form input:focus {
  border-color: #459557;
}

.search_form button {
  width: 60px;
  border: none;
  background: #459557;
  color: #fff;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  transition: .35s;
}

.search_form button:hover {
  background: #2f7d44;
}

/*==========================================
LATEST BLOGS
==========================================*/

.latest_blog {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf1ef;
}

.latest_blog:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.latest_blog img {
  width: 95px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  transition: .4s;
}

.latest_blog:hover img {
  transform: scale(1.08);
}

.latest_blog div {
  flex: 1;
}

.latest_blog h4 {
  margin-bottom: 8px;
  line-height: 1.5;
}

.latest_blog h4 a {
  color: #183226;
  font-size: 17px;
  font-weight: 600;
  transition: .35s;
}

.latest_blog h4 a:hover {
  color: #459557;
}

.latest_blog span {
  color: #888;
  font-size: 14px;
}

/*==========================================
CATEGORY
==========================================*/

.category_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category_list li {
  border-bottom: 1px solid #edf1ef;
}

.category_list li:last-child {
  border: none;
}

.category_list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  color: #555;
  font-weight: 500;
  transition: .35s;
}

.category_list a:hover {
  color: #459557;
  padding-left: 8px;
}

.category_list span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef8f0;
  color: #459557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/*==========================================
BOOK APPOINTMENT
==========================================*/

.appointment_box {
  background: linear-gradient(135deg, #459557, #2f7d44);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.appointment_box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  top: -60px;
  right: -60px;
}

.appointment_box i {
  font-size: 52px;
  margin-bottom: 20px;
}

.appointment_box h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  margin-bottom: 15px;
}

.appointment_box p {
  color: #f5f5f5;
  line-height: 1.8;
  margin-bottom: 28px;
}

.appointment_box .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  background: #fff;
  color: #459557;
  border-radius: 12px;
  font-weight: 700;
  transition: .35s;
}

.appointment_box .btn:hover {
  background: #f4b63d;
  color: #222;
  transform: translateY(-3px);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px) {

  .blog_sidebar {
    position: relative;
    top: auto;
    margin-top: 40px;
  }

}

@media(max-width:768px) {

  .sidebar_widget {
    padding: 25px;
  }

  .sidebar_widget h3 {
    font-size: 24px;
  }

  .latest_blog {
    gap: 15px;
  }

  .appointment_box {
    padding: 30px 25px;
  }

}

@media(max-width:576px) {

  .latest_blog {
    flex-direction: column;
  }

  .latest_blog img {
    width: 100%;
    height: 180px;
  }

  .search_form input {
    font-size: 14px;
  }

  .appointment_box h3 {
    font-size: 26px;
  }

}

@media only screen and (max-width:1450px) {
  .site-header {
    height: 80px;
  }

  .site-header__inner {
    width: 85%;
  }

  .hero__title {
    font-size: 45px;
  }

  .slider-wrap {
    max-width: 1050px;
  }

  .avatar-holder::before {
    width: 250px !important;
    height: 250px !important;
  }

  .avatar-photo {
    width: 200px !important;
    height: 200px !important;
  }

  .avatar-holder {
    height: 190px;
  }

  .share-cluster {
    right: 45px;
  }
}