@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --green: #052723;
  --lightGreen: #087669;
  --darkGreen: #002723;
  --orange: #EEA676;
  --gray: #575A5F;
  --app-height: 100%;
}

/*----------  Genral CSS  ----------*/
* {
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: baseline;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: auto !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  background-color: var(--white);
  position: relative;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

em,
i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700 !important;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: color 0.4s ease-in-out;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  -ms-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
}

a:hover {
  color: var(--orange);
  text-decoration: none;
  outline: none !important;
}

a:focus {
  text-decoration: none;
  outline: none !important;
}

*:focus {
  outline: none;
}

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

/*----------  Common CSS  ----------*/
.wrapper {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100vh;
  position: relative;
}

.body-fixed {
  overflow: hidden;
}

.container {
  max-width: 1296px;
  padding: 0 15px;
}

.container.style-2 {
  max-width: 1290px;
  padding: 0 clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
}

.container-md {
  max-width: 1260px;
  padding: 0 15px;
}

.common-sec {
  position: relative;
  padding-top: clamp(2.5rem, 0.836rem + 7.101vw, 6.25rem);
  padding-bottom: clamp(2.5rem, 0.836rem + 7.101vw, 6.25rem);
}

.sec-head {
  width: 100%;
  display: block;
  margin-bottom: 35px;
}

:is(h1, h2, h3, h4, h5, h6),
.sec-title,
.sec-sub-title {
  font-family: "Nunito", sans-serif;
}

.sec-title {
  margin: 0;
  line-height: 1.2;
  font-size: 65px;
  font-weight: 300;
  display: block;
}

.sec-md-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.4;
  color: #052723;
}

.sub-title {
  color: #052723;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 50%;
  position: relative;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.sub-title span {
  background-color: #052723;
  width: 30px;
  height: 1px;
  margin-right: 8px;
  opacity: 50%;
}

.sub-title.text-white span {
  background-color: var(--white);
}

/*----------  Form   ----------*/
.form-group {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(5, 39, 35, 0.1);
  position: relative;
}

.form-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(5, 39, 35, 0.4);
  display: block;
  margin-bottom: 12px;
  position: absolute;
  top: 10px;
  z-index: 1;
  transition: .4s all ease-in-out;
}

.form-control {
  border: none;
  border-radius: 0;
  position: relative;
  padding: 20px 0 6px 0;
  width: 100%;
  vertical-align: middle;
  transition: border .3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #052723;
  letter-spacing: -0.015em;
  resize: none;
}

.form-group:focus-within .form-label {
  top: 0;
}


.form-select {
  border: none;
  border-radius: 0;
  position: relative;
  padding: 0 0 6px 0;
  width: 100%;
  vertical-align: middle;
  transition: border .3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #052723;
  letter-spacing: -0.015em;
  resize: none;
  background-position: right 25px;
}

.form-select {
  padding-top: 20px;
}

.form-select-label {
  top: 0;
}

textarea.form-control {
  height: 40px !important;
  min-height: 47px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(5, 39, 35, 0.1);
  box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/*----------  Button  ----------*/
.btn {
  display: inline-block;
  border: 2px solid var(--green);
  border-radius: 42px;
  background-color: var(--green);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  min-width: 200px;
  padding: 17px 60px 17px 30px;
  position: relative;
  height: fit-content;
  transition: .4s all ease-in-out;
}

.btn::after {
  content: '\e90e';
  font-family: 'khatri-icon';
  font-size: 12px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.btn.btn-orange {
  border-color: var(--orange);
  background-color: var(--orange);
}

.btn.btn-light-green {
  background-color: var(--lightGreen);
  border-color: var(--lightGreen);
}

/*----------  Slick Slider  ----------*/
.slick-slider {
  position: relative;
}

.slick-arrow {
  font-size: 60px;
  line-height: 1;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #16284e;
  height: auto;
  width: 60px;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.slick-arrow.slick-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.slick-arrow.slick-disabled:hover::before {
  background-color: #fff;
  color: #0099cc;
}

.slick-prev::before {
  transform: matrix(-1, 0, 0, -1, 0, 0);
}

.slick-next {
  right: 0;
}

.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  display: inline-flex;
  padding: 3px;
}

.slick-dots li button {
  vertical-align: middle;
  height: 14px;
  width: 14px;
  font-size: 0;
  background-color: rgba(8, 118, 105, 0.06);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.slick-dots li.slick-active button {
  background-color: #087669;
}

/*----------  Back To Top  ----------*/
.hidden {
  width: 0;
  height: 0;
  display: none;
}

.back-to-top {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--white);
  opacity: 0;
  overflow: hidden;
  color: var(--white);
}

.back-to-top.active {
  bottom: 85px;
  opacity: 1;
  z-index: 9;
}

.back-to-top>div {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.back-to-top>.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top>.arrow svg {
  fill: var(--white);
  height: 20px;
  width: 100%;
}

.back-to-top>.text {
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.back-to-top:hover {
  transform: scale(1.1);
  bottom: 85px;
  cursor: pointer;
  background: var(--orange);
}

.back-to-top:hover>.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.back-to-top:hover>.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/*----------  404 & Thank you  ----------*/
.error-wrapper,
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - var(--header-height));
  text-align: center;
  flex-direction: column;
}

.error-title,
.thank-you-title {
  font-size: clamp(4.375rem, 2.182rem + 9.357vw, 9.375rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  margin-bottom: clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
}

.thank-you-title {
  font-size: clamp(2.875rem, 1.395rem + 6.316vw, 6.25rem);
}

.error-message,
.thank-you-message {
  font-size: clamp(1rem, 0.89rem + 0.468vw, 1.25rem);
  line-height: 1.4;
  font-weight: 500;
  margin-top: clamp(0.313rem, 0.175rem + 0.585vw, 0.625rem);
  margin-bottom: clamp(1.25rem, 0.702rem + 2.339vw, 2.5rem);
}

.error-wrapper svg,
.thank-you-wrapper svg {
  height: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  width: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  margin-bottom: clamp(1.563rem, 0.877rem + 2.924vw, 3.125rem);
}

/*----------  Header  ----------*/
.header .container {
  max-width: 1720px;
}

.header {
  width: 100%;
  z-index: 9;
  position: relative;
  --transformX: -40px;
}

@keyframes headerIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(var(--transformX));
  }
}

.is-sticked .header {
  position: fixed;
  top: 0;
  animation: headerIn 1s forwards;
}

.is-sticked .header-bottom {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.header-top {
  background-color: var(--lightGreen);
  color: var(--white);
  padding: 5px 0;
}

.header-top-links ul {
  display: flex;
  gap: 12px;
}

.header-top-links i {
  font-size: 14px;
}

.header-top-links span {
  font-size: 14px;
  font-weight: 500;
}

.header-top-links span a,
.header-top-links span b {
  font-weight: 600;
  color: var(--white);
  transition: .4s all ease-in;
}

.header-top-social-links ul {
  display: flex;
  gap: 8px;
}

.header-top-social-links a {
  display: block;
  line-height: 1;
  color: var(--white) !important;
  padding: 5px;
}

.header-bottom {
  padding: 20px 0;
  background-color: var(--white);
}

.header-logo img {
  height: clamp(3.125rem, 2.776rem + 1.487vw, 4.375rem);
  width: auto;
}

.header-nav-wrap {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav ul li {
  display: inline-block;
  position: relative;
}

.header-nav>ul>li+li {
  margin-left: 15px;
}

.header-nav ul li a {
  display: block;
  padding: 20px 15px;
  font-weight: 600;
  font-size: 17px;
  color: var(--darkGreen);
}

.header-nav ul li.current-menu-item>a,
.header-nav ul li.current-menu-ancestor>a {
  color: var(--orange);
}

.header-nav ul li .expand+a {
  padding-right: 30px;
}

.header-nav ul li .expand {
  color: var(--orange);
  width: 10px;
  height: 10px;
  font-size: 10px;
  position: absolute;
  right: 15px;
  top: 1px;
  bottom: 0;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.header-nav ul li ul {
  position: absolute;
  top: 100%;
  min-width: 280px;
  background-color: var(--white);
  left: 15px;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.07);
  transform: translateY(15px);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.header-nav ul li ul li ul {
  top: 0;
  left: 100%;
}

.header-nav ul li ul li {
  display: block;
}

.header-nav ul li ul li a {
  font-size: 16px;
  padding: 10px 30px !important;
}

.header-nav>ul+.btn {
  margin-left: 20px;
}

/*----------  Shapes  ----------*/
.round-shape {
  display: block;
  height: 100px;
  width: 100px;
  background-color: var(--orange);
  opacity: .10;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
}

.oe-info-card .round-shape,
.card .round-shape,
.contact-info .round-shape {
  top: 10px;
  left: -50px;
}

.round-shape-white {
  background-color: var(--white);
  opacity: 0.05;
}

.cricle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 80px;
  right: 100px;
  animation: cricle 3s infinite;
}

@keyframes cricle {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0);
  }
}

.cricle-orange {
  background-color: rgba(238, 166, 118, 0.15);
}

.cricle-orange .small-cricle {
  background-color: #EEA676;
}

.cricle .small-cricle {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 0;
  right: 0;
}

.sqaure {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 35px;
  left: 88px;
  transform: rotate(-45deg);
  animation: sqaure 3s infinite;
}

@keyframes sqaure {
  0% {
    transform: rotate(0);
  }

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

.sqaure.sqaure-orange {
  background-color: rgba(238, 166, 118, 0.15)
}

.sqaure-orange .line-sqaure {
  border: 1px dashed rgba(238, 166, 118, 0.3)
}

.sqaure .line-sqaure {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 10px;
  left: 14px;
  bottom: 14px;
  transform: rotate(-90deg);
  /* animation: line-sqaure 4s infinite; */
}

/* 
@keyframes line-sqaure {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
} */

.border-cricle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  right: 10px;
  bottom: 10px;
}

.cricle-orange .border-cricle {
  border: 1px dashed rgba(238, 166, 118, 0.3);
}

.cricle-green,
.sqaure-green {
  background-color: rgba(8, 118, 105, 0.06);
}

.cricle-green .border-cricle,
.sqaure-green .line-sqaure {
  border: 1px dashed rgba(8, 118, 105, 0.20);
}

.cricle-light-green,
.sqaure-light-green {
  background-color: rgba(8, 118, 105, 0.06);
}

.sqaure-light-green .line-sqaure {
  border: 1px dashed rgba(8, 118, 105, 0.2);
}

.cricle-light-green .small-cricle {
  background-color: #087669;
}

.line-circle {
  width: 240px;
  height: 240px;
  position: absolute;
  top: -96px;
  bottom: inherit;
  right: 60px;
  /* background-color: #EAF2F1; */
  border-radius: 50%;
  overflow: hidden;
  /* border: 4px solid #fff; */
}



/*----------  Cards  ----------*/
.card {
  padding: clamp(1.25rem, 0.976rem + 1.17vw, 1.875rem) clamp(0.938rem, 0.663rem + 1.17vw, 1.563rem);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 7px 14px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card-title {
  font-size: clamp(1.125rem, 1.07rem + 0.234vw, 1.25rem);
  font-weight: 800;
  color: var(--green);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.card-title+.card-content {
  margin-top: clamp(0.625rem, 0.296rem + 1.404vw, 1.375rem);
}

.card-content {
  color: var(--gray);
  font-size: clamp(0.875rem, 0.82rem + 0.234vw, 1rem);
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 11em;
}

.card-content+.card-read-more {
  margin-top: clamp(0.938rem, 0.389rem + 2.339vw, 2.188rem);
}

.card-read-more {
  text-transform: uppercase;
  color: var(--lightGreen);
  font-size: clamp(0.813rem, 0.758rem + 0.234vw, 0.938rem);
  font-weight: 900;
  transition: .4s all ease-in;
}

.card.style-2 .card-img-box img {
  height: clamp(2.5rem, 2.167rem + 1.42vw, 3.25rem);
  width: auto;
}

.card.style-2 .card-img-box+.card-title {
  margin-top: clamp(0.625rem, 0.07rem + 2.367vw, 1.875rem);
}

.card.style-2 .card-title {
  font-size: clamp(1.125rem, 1.014rem + 0.473vw, 1.375rem);
  height: 3.7rem;
}

.card.style-2 .card-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card.style-2 .card-read-more {
  font-weight: 700;
}

/*----------  Home Start  ----------*/
.hero-sec {
  max-height: 910px;
  min-height: 100vh;
  height: 100%;
  background-color: #EBF4F3;
  padding-top: 140px;
  position: relative;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-sec .hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #EBF4F3 20%, rgba(0 0 0 / 0) 100%);
  z-index: 1;
}

.hero-img img {
  height: 100%;
  width: auto;
  margin-left: auto;
}

.hero-sec .container {
  max-width: 1780px;
  padding: 0 clamp(0.938rem, 0.031rem + 3.867vw, 3.125rem);
  position: relative;
  z-index: 2;
}

.hero-content-box {
  max-width: 710px;
}

.hero-button-group .btn+.btn {
  margin-left: clamp(0.625rem, 0.403rem + 0.947vw, 1.125rem);
}

.hero-tag {
  display: inline-block;
  background-color: var(--white);
  color: #6A817E;
  font-size: clamp(0.875rem, 0.805rem + 0.297vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  padding: clamp(0.625rem, 0.555rem + 0.297vw, 0.875rem) clamp(1.125rem, 1.02rem + 0.446vw, 1.5rem);
  border-radius: 30px;
  margin-bottom: clamp(0.938rem, 0.676rem + 1.115vw, 1.875rem);
}

.hero-sec .sec-title {
  font-size: clamp(2rem, 1.223rem + 3.314vw, 3.75rem);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: clamp(0.938rem, 0.676rem + 1.115vw, 1.875rem);
}

.hero-sec .cms-con {
  margin-bottom: clamp(1.25rem, 0.901rem + 1.487vw, 2.5rem);
}

.hero-sec .cms-con * {
  color: var(--gray);
  font-size: clamp(1rem, 0.965rem + 0.149vw, 1.125rem);
  font-weight: 500;
}

/* Our Expertise Start */
.our-expertise-sec {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--ourExpertise-height) / -2);
}

.oe-inner-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.oe-left-box {
  flex: 69%;
}

.oe-right-box {
  flex: 31%;
}

.oe-info-card {
  background-color: var(--lightGreen);
  padding: clamp(1.563rem, 0.877rem + 2.924vw, 3.125rem) clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
  box-shadow: 0 7px 14px 2px rgba(0, 0, 0, 0.1);
  color: var(--white);
  border-radius: 10px;
}

.oe-info-card-item {
  display: flex;
  align-items: start;
  gap: clamp(0.625rem, 0.351rem + 1.17vw, 1.25rem);
}

.oe-info-card-item i {
  font-size: clamp(1.25rem, 1.113rem + 0.585vw, 1.563rem);
}

.oe-info-card .oe-info-text {
  width: 100%;
  border-bottom: 1px solid rgba(5, 39, 35, 0.2);
  padding-bottom: clamp(0.625rem, 0.351rem + 1.17vw, 1.25rem);
  margin-bottom: clamp(0.625rem, 0.351rem + 1.17vw, 1.25rem);
}

.oe-info-card-item:last-child .oe-info-text {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.oe-info-card .oe-info-text span {
  display: block;
  font-size: clamp(0.813rem, 0.758rem + 0.234vw, 0.938rem);
  font-weight: 400;
}

.oe-info-card .oe-info-text :is(a, b) {
  display: block;
  color: var(--white);
  font-size: clamp(1rem, 0.945rem + 0.234vw, 1.125rem);
  font-weight: 700;
}

/* Robotic Therapy Sec */
.robotic-therapy-sec .sqaure {
  top: -50px;
}

.robotic-therapy-sec .cricle {
  right: 133px;
}

.rt-content-box .sec-md-title {
  color: var(--green);
}

.rt-content-box .cms-con+.btn {
  margin-top: clamp(0.625rem, 0.348rem + 1.183vw, 1.25rem);
}

.rt-img-box {
  display: flex;
  gap: clamp(0.625rem, 0.348rem + 1.183vw, 1.25rem);
  align-items: flex-start;
  position: relative;
}

.rt-img-box img {
  /* flex: 50%;
  width: 50%;
  aspect-ratio: 4/5.3; */
  border-radius: 16px;
}

.rt-img-box img:nth-child(2) {
  margin-top: clamp(1.875rem, -0.067rem + 8.284vw, 6.25rem);
  margin-bottom: clamp(0.625rem, -0.124rem + 3.195vw, 2.313rem);
}

.rt-living-box {
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 60%;
  border-radius: 16px;
  padding: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem) clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
  font-size: clamp(0.875rem, 0.668rem + 0.884vw, 1.375rem);
  font-weight: 700;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.207rem + 3.55vw, 2.5rem);
}

.rt-living-box i {
  display: block;
  font-size: clamp(1rem, 0.889rem + 0.473vw, 1.25rem);
  text-align: center;
  background-color: var(--orange);
  width: clamp(2.625rem, 2.181rem + 1.893vw, 3.625rem);
  height: clamp(2.625rem, 2.181rem + 1.893vw, 3.625rem);
  line-height: clamp(2.625rem, 2.181rem + 1.893vw, 3.625rem);
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: .4s all ease-in-out;
}

.leading-future-sec {
  background-color: #fff;
  background-position: bottom;
  background-size: 100% 80%;
  background-image: url(../img/leading-future-bg-img.jpg);
  background-repeat: no-repeat;
}

.leading-future-sec .container {
  max-width: 1080px;
  padding-left: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
  padding-right: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.lf-video-wrapper {
  margin-bottom: clamp(2.5rem, 1.391rem + 4.734vw, 5rem);
}

.lf-video-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.lf-video-wrapper a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 460px;
  width: 100%;
}

.lf-video-wrapper a::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.4;
  z-index: 1;
}

.video-text {
  position: relative;
  background-color: #6A817E;
  color: var(--white);
  padding: 10px 12px;
  border-radius: 6px;
  z-index: 2;
  width: fit-content;
  margin: auto;
  margin-bottom: -21px;
}

.play-icon {
  width: clamp(3.125rem, 2.293rem + 3.55vw, 5rem);
  height: clamp(3.125rem, 2.293rem + 3.55vw, 5rem);
  background-color: var(--white);
  font-size: clamp(1.25rem, 1.139rem + 0.473vw, 1.5rem);
  color: #087669;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%;
  line-height: clamp(3.125rem, 2.293rem + 3.55vw, 5rem);
  text-align: center;
}

.play-icon i {
  position: relative;
  z-index: 2;
}

.play-icon .wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: clamp(3.125rem, 2.293rem + 3.55vw, 5rem);
  height: clamp(3.125rem, 2.293rem + 3.55vw, 5rem);
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.10;
  animation: wave 2s infinite;
}

@keyframes wave {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(2);
  }
}

.lf-info-wrapper .sec-md-title {
  color: var(--green);
}

.lf-info-wrapper .cms-con {
  margin-bottom: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem);
}

.lf-info-content-box {
  margin-bottom: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.lf-info-wrapper .card-title {
  font-size: clamp(1.125rem, 1rem + 0.473vw, 1rem) !important;
  height: auto !important;
}

.lf-info-wrapper .card-content p {
  font-size: 14px;
}

.leading-future-shape-1,
.leading-future-shape-2 {
  position: absolute;
  height: 42.842vh;
  width: 10.677vw;
  z-index: 1;
}

.leading-future-shape-1 img,
.leading-future-shape-2 img {
  height: 100%;
  width: 100%;
}

.leading-future-shape-1 {
  top: 7%;
  left: 10px;
}

.leading-future-shape-2 {
  bottom: -7%;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  right: 30px;
}

.robotic-expertise-sec .sqaure {
  position: absolute;
  top: inherit;
  left: inherit;
  right: -48px;
  bottom: 70px;
}

.re-list {
  margin-top: clamp(1.563rem, 0.869rem + 2.959vw, 3.125rem);
}

.re-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.625rem, 0.348rem + 1.183vw, 1.25rem);
}

.re-list li+li {
  margin-top: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem);
}

.re-list img {
  flex: 29px;
  aspect-ratio: 1/1;
}

.re-title+.cms-con {
  margin-top: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.re-title {
  font-size: clamp(1rem, 0.945rem + 0.237vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.re-img-box {
  display: flex;
  gap: clamp(0.625rem, 0.348rem + 1.183vw, 1.25rem);
  align-items: flex-end;
  position: relative;
}

.re-img-box .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: var(--orange);
  color: var(--white);
}

.re-img-box .play-icon .wave {
  background-color: var(--orange);
  opacity: 0.3;
}

.re-img-box img {
  flex: 0 0 50%;
  width: 50%;
  border-radius: 16px;
}

.re-img-box img:nth-child(1) {
  aspect-ratio: 7/12;
}

.re-img-box img:nth-child(2) {
  aspect-ratio: 6/9;
}

/* Joint Replacement */
.joint-replacement-desc {
  margin-bottom: 58px;
  display: block;
}

.joint-replacement-sec .sec-head {
  max-width: 790px;
  margin: 0 auto 30px;
}

.joint-replacement-sec .cms-con {
  max-width: 810px;
  margin: auto;
  text-align: center;
}

.joint-replacement-sec .sec-head .sub-title {
  justify-content: center;
}

.joint-replacement-sec .cms-con p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #575A5F;
}

.joint-replacement-box {
  position: relative;
  padding-right: 40px;
}

.joint-replacement-box::before {
  content: "";
  position: absolute;
  background-color: rgba(129, 93, 93, 0.15);
  width: 1px;
  height: 215px;
  top: 0;
  right: 0;
}

.joint-replacement-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.joint-replacement-top .img-box {
  background-color: rgba(238, 166, 118, 0.16);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.joint-replacement-top .img-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.joint-replacement-top .number {
  color: rgba(238, 166, 118, 0.1);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.5;
}

.joint-replacement-box-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #201313;
  margin-bottom: 20px;
}

.joint-replacement-box .cms-con p {
  text-align: left;
  max-width: 95%;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.joint-replacement-wrap .row {
  --bs-gutter-x: 52px;
}

.joint-replacement-wrap .row .col-lg-4:last-child .joint-replacement-box::before {
  content: unset;
}

.dropdown-wrapper {
  display: none;
}

.joint-replacement-sec .cricle {
  bottom: inherit;
  right: inherit;
  top: 110px;
  left: 129px;
}

/* Schedule Appointment */
.schedule-appointment-wrap {
  background-color: #EAF2F1;
  border-radius: 12px;
  width: 100%;
  padding: 47px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-standard-sec .cricle {
  bottom: 132px;
  right: 152px;
}

.industry-standard-sec .sqaure {
  top: 146px;
  left: 53px;
}

.schedule-appointment-wrapL,
.schedule-appointment-wrapR {
  width: 50%;
  position: relative;
}


.half-cricle {
  background-color: rgba(238, 166, 118, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  left: -77px;
  height: 50px;
  width: 100px;
  border-radius: 150px 150px 0 0;
}

.schedule-appointment-sec .cricle {
  right: 30px;
}

.schedule-appointment-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: #052723;
  display: block;
  margin-bottom: 10px;
}


.schedule-appointment-sec .cms-con p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #575A5F;
}

.schedule-appointment-wrapR {
  text-align: end;
}


/* Industry Standard */
.industry-standard-sec {
  background-image: url(../img/industry-standard-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.industry-standard-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 39, 35, 0.96);
}

.industry-standard-wrap {
  position: relative;
  z-index: 1;
}

.industry-standard-con {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.industry-standard-conL {
  max-width: 705px;
}

.industry-standard-conL .sec-head {
  margin-bottom: 17px;
}

.industry-standard-sec .sec-head .sub-title {
  color: #fff;
}

.industry-standard-sec .sec-head .sub-title span {
  background-color: #fff;
}

.industry-standard-conL .cms-con p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

.industry-standard-tab-wrap .nav-link {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
  padding: 0;
  position: relative;
  padding-left: 40px;
  text-align: left;
}

.industry-standard-tab-wrap .nav-link::before {
  content: '';
  position: absolute;
  background-color: #EEA676;
  width: 0;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all .4s ease-in-out;
}

.industry-standard-tab-wrap .nav-link.active {
  color: #EEA676;
  background-color: transparent;
}

.industry-standard-tab-wrap .nav-link.active::before {
  width: 30px;
}

.industry-tab-con-top {
  display: flex;
  align-items: center;
  padding-bottom: 35px;
}

.industry-tab-con-top .img-box {
  min-width: 390px;
  height: 100%;
  margin-right: 30px;
}

.industry-tab-con-top .img-box img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-tab-con-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 25px;
}

.industry-tab-con .cms-con p {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

.industry-tab-con-bottom ul {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -15px;
}


.industry-tab-con-bottom ul li {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 40px;
}

.industry-tab-con-bottom-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: #fff;
  margin-bottom: 25px;
}

.industry-standard-tab .nav-link:focus-visible {
  box-shadow: none;
}

.industry-standard-sec.common-sec {
  padding-bottom: 60px;
}

/* Counter */
.counter-sec {
  padding: 45px 0;
}

.counter-wrap {
  max-width: 1182px;
  margin: auto;
}

.counter-box-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-box {
  width: 20%;
  text-align: center;
  position: relative;
}

.counter-box::before {
  content: '';
  position: absolute;
  background-color: #052723;
  opacity: 15%;
  height: 80px;
  width: 1px;
  top: -4px;
  right: 0;
}

.counter-box:last-child::before {
  content: unset;
}

.counter-text-box .counter,
.counter-text-box .counter-plus {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #052723;
  display: inline-block;
  margin-bottom: 10px;
}

.counter-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: #575A5F;
}

/* Get In Touch */
.get-in-touch-sec {
  background-color: #F9F9F9;
}

.get-in-touch-sec .cricle {
  right: inherit;
  left: 50px;
  bottom: 217px;
}

.get-in-touch-sec .sqaure {
  left: inherit;
  right: 100px;
  top: 141px;
}

.get-in-touch-con .cms-con {
  max-width: 90%;
}

.get-in-touch-con .cms-con p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #575A5F;
}

.hospital-time {
  display: flex;
  align-items: center;
  max-width: 540px;
  background-color: #fff;
  border-radius: 6px;
  padding: 30px 24px;
  margin-bottom: 30px;
}

.hospital-time-box {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}

.hospital-time-box::before {
  content: '';
  position: absolute;
  background-color: #052723;
  width: 1px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  opacity: 15%;
}

.hospital-time-box:first-child {
  padding-left: 0;
}

.hospital-time-box:last-child::before {
  content: unset;
}

.hospital-time-box:last-child {
  padding-right: 0;
}

.hospital-time-box span {
  color: rgba(87, 90, 95, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  display: block;
  margin-bottom: 10px;
}

.hospital-time-box .time {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #052723;
  display: block;
}

.hospital-time-box .time.close {
  color: #EA0000;
}

.get-in-touch-contact-box {
  display: flex;
  align-items: start;
  margin-bottom: 17px;
}

.get-in-touch-contact-box .img-box i {
  color: #052723;
  font-size: 32px;
  margin-right: 18px;
}

.get-in-touch-contact-box .content-box span {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(5, 39, 35, 0.8);
  display: block;
  margin-bottom: 5px;
}

.get-in-touch-contact-box .content-box .content-box-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #052723;
  display: block;
  transition: all .4s ease-in-out;
}

.get-in-touch-from {
  background-color: #fff;
  border: 1px solid #F1F1F1;
  border-radius: 12px;
  max-width: 445px;
  box-shadow: 0px 12px 30px 0px #2013130A;
  padding: 33px 40px;
}

.get-in-touch-form-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #052723;
  display: block;
  margin-bottom: 25px;
}

.get-in-touch-con {
  margin-top: 47px;
}

.submit-btn {
  text-align: right;
}

/* Blog */
.blog-sec .sec-head {
  text-align: center;
}

.blog-sec .cms-con {
  max-width: 600px;
  margin: 0 auto 32px;
}

.blog-sec .sec-head .sub-title {
  justify-content: center;
}

.blog-slider {
  margin: 0 -15px;
}

.blog-slide {
  padding: 0 15px;
}

.blog-sec .cms-con p {
  color: #575A5F;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.blog-box .img-box {
  width: 390px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.blog-box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  transition: all .6s ease-in-out;
}

.blog-box .blog-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: rgba(87, 90, 95, 0.8);
  display: block;
  margin-bottom: 10px;
}

.blog-box .blog-box-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.47;
  text-align: left;
  color: #052723;
  display: block;
  margin-bottom: 25px;
  transition: all .4s ease-in-out;
}

.blog-box .readmore-btn {
  color: #EEA676;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: all .4s ease-in-out;
}

.blog-box .readmore-btn i {
  font-size: 20px;
  margin-right: 8px;
}

/* cilent-logo-sec */
.cilent-logo-wrap {
  background-color: #F9F9F9;
  border: 1px solid #F1F1F1;
  border-radius: 12px;
  padding: clamp(1.25rem, 0.455rem + 3.392vw, 3.063rem) 90px;
}

.cilent-logo-silder {
  margin: 0 -50px;
}

.cilent-logo-slide {
  padding: 0 50px;
}

.cilent-logo-slide .cilent-logo-img {
  display: inline-block;
  vertical-align: middle;
}

/* accordion-sec */
.accordion-sec.common-sec {
  padding-bottom: 156px;
}

.accordion-sec .accordion-wrap {
  max-width: 900px;
  margin: auto;
}

.accordion .accordion-item {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  margin-bottom: 10px;
}

.accordion-wrap .accordion-header {
  position: relative;
}

.accordion-wrap .accordion-header .accordion-button {
  padding: 20px 30px;
  color: #052723;
  background-color: #FFF8F2;
  position: relative;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding-right: 100px;
  transition: all .3s ease-in-out;
}

.accordion-wrap .accordion-header .accordion-button.collapsed {
  background-color: #fff;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}

.accordion-wrap .accordion-body {
  padding: 0 74px 25px 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(46, 40, 40, 0.8);
}

.accordion-wrap .accordion-collapse.show {
  background-color: #FFF8F2;
  border-radius: 0 0 12px 12px;
}

.accordion-button::after {
  content: "";
  position: absolute;
  left: inherit;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: 16px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
  height: 2px;
}

/*----------  Footer  ----------*/
.footer-top-main .form-control {
  background-color: #fff;
  box-shadow: none !important;
  border-radius: 12px;
  padding: 22px clamp(0.938rem, 0.471rem + 1.988vw, 2rem);
  color: #000;
  font-size: clamp(0.875rem, 0.848rem + 0.117vw, 0.938rem);
  font-weight: 500;
  line-height: 1;
  resize: none;
  position: relative;
}

.footer-top-main .form-control::placeholder {
  font-size: clamp(0.875rem, 0.848rem + 0.117vw, 0.938rem);
  font-weight: 500;
  line-height: 1;
  color: #777777;
}

.footer-main .footer-top {
  background-color: var(--lightGreen);
  position: relative;
  padding: clamp(0.938rem, -0.159rem + 4.678vw, 3.438rem) 0;
}

.footer-top-main {
  max-width: 976px;
  margin: auto;
}

.footer-top-title {
  color: #fff;
  font-size: clamp(1.125rem, 0.851rem + 1.17vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  padding-bottom: clamp(0.938rem, 0.691rem + 1.053vw, 1.5rem);
  display: block;
}

.footer-top .cms-con {
  max-width: 376px;
}

.footer-top .cms-con p {
  color: var(--white);
  font-size: clamp(0.875rem, 0.82rem + 0.234vw, 1rem);
}

.footer-bottom {
  background-color: rgba(255, 248, 242, 0.98);
  padding-top: clamp(1.563rem, 0.329rem + 5.263vw, 4.375rem);
  display: block;
}

.footer-inner-main {
  border-bottom: 1px solid rgba(46, 40, 40, 0.1);
  padding-bottom: clamp(1.25rem, 0.263rem + 4.211vw, 3.5rem);
}

.footer-contact-info {
  border-bottom: 1px solid rgba(46, 40, 40, 0.1);
  padding: clamp(0.938rem, 0.252rem + 2.924vw, 2.5rem) 0;
  display: block;
}

.footer-col.our-service {
  margin-left: 35px;
  display: block;
}

.footer-col {
  position: relative;
}

.footer-company-info {
  max-width: 460px;
}

.footer-logo {
  display: block;
  padding-bottom: clamp(1.25rem, 0.702rem + 2.339vw, 2.5rem);
}

.footer-logo img {
  height: clamp(3rem, 2.6rem + 1.2vw, 4.2rem);
  width: auto;
}

.footer-col .cms-con {
  display: block;
  margin-bottom: clamp(1.25rem, 0.702rem + 2.339vw, 2.5rem);
}

.footer-col .cms-con p {
  color: rgba(87, 90, 95, 0.8);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.82rem + 0.234vw, 1rem);
  line-height: 1.6;
}

.footer-social-icon {
  display: flex;
  align-items: center;
}

.footer-social-icon a {
  color: #575A5F;
  font-size: 18px;
  margin-right: 18px;
  transition: all .4s ease-in-out;
}

.footer-col .footer-title {
  display: block;
  color: #052723;
  font-size: clamp(1.125rem, 1.015rem + 0.468vw, 1.375rem);
  font-weight: 700;
  line-height: 1;
  padding-bottom: clamp(0.938rem, 0.8rem + 0.585vw, 1.25rem);
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  text-transform: capitalize;
  color: rgba(87, 90, 95, 0.8);
  transition: all .4s ease-in-out;
}


.footer-contact-info .footer-contact {
  margin-right: 100px;
}

.footer-contact-info .footer-contact {
  display: flex;
  align-items: start;
}

.footer-contact .img-box {
  width: 25px;
  margin-right: 13px;
}

.footer-contact .img-box i {
  font-size: 25px;
  color: #EEA676;
}

.footer-contact .content-box span {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(5, 39, 35, 0.8);
  display: block;
  padding-bottom: 10px;
}

.footer-contact .content-box a,
.footer-contact .content-box .cms-con p {
  font-size: 18px;
  font-weight: 700;
  color: #052723;
  line-height: 1.4;
  display: block;
  transition: all .4s ease-in-out;
}

.footer-copyright {
  padding: 20px 0;
  text-align: center;
}

.footer-copyright .cms-con p {
  color: #575A5F;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.footer-copyright .cms-con a {
  font-weight: 400;
  color: #575A5F;
  transition: all .4s ease-in-out;
}

.footer-top .form-control {
  padding: 22px 55px 22px clamp(0.938rem, 0.471rem + 1.988vw, 2rem);
}

.footer-top .email-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  background: transparent;
  border: 0;
}

.footer-top .email-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: all .4s ease-in-out;
}

.footer-top .email-icon img:hover {
  filter: invert(1) brightness(0);
}


/*----------  Banner Header  ----------*/
.banner-sec.style-2 .banner-con-right {
  padding: 22px 26px;
}

.banner-sec.style-2 .banner-con-right-desc {
  flex-direction: column;
  align-items: start;
}

.banner-sec.style-2 .banner-con-right-desc .banner-con-right-box {
  width: 100%;
  padding: 0 0 20px;
}

.banner-sec.style-2 .banner-con-right-desc .banner-con-right-box+.banner-con-right-box {
  padding: 20px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/*----------  Services Deatils  ----------*/
.head-wrapper {
  max-width: 810px;
  margin: 0 auto clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem);
}

.head-wrapper .sec-head {
  margin-bottom: clamp(0.938rem, 0.66rem + 1.183vw, 1.563rem);
}

.about-total-sec .container {
  max-width: 1050px;
}

.at-video-wrapper {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: clamp(18.75rem, 15.426rem + 14.184vw, 25rem);
}

.at-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0 0 0 / 0%), rgba(0 0 0 / 100%));
  z-index: 1;
}

.at-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.at-video-content-box {
  position: absolute;
  z-index: 1;
  color: var(--white);
  left: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem);
  bottom: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem);
  max-width: 495px;
}

.at-video-content-box .sec-md-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.at-video-content-box .cms-con {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.at-video-content-box .play-icon {
  position: unset;
  width: 50px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  transform: none;
  margin-bottom: 50px;
  margin-left: 25px;
}

.at-video-content-box .play-icon .wave {
  width: 50px;
  height: 50px;
  left: 25px;
}

/* .ks-zik-zak {
  background-color: #FDFDFD;
  border: 1px solid #F5F5F5;
} */

.ks-row-zik-zak {
  display: flex;
  gap: clamp(1.25rem, 0.141rem + 4.734vw, 3.75rem);
  align-items: center;
  border-bottom: 1px solid #F5F5F5;
}

.ks-row-zik-zak:last-child {
  border-bottom: 0;
}

.ks-row-zik-zak:nth-child(2n) {
  flex-direction: row-reverse;
}

.ks-row-zik-zak .img-box {
  flex: 42%;
}

.ks-row-zik-zak .img-box img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(5, 39, 35, 0.08);
}

.ks-row-zik-zak .content-box {
  flex: 53%;
  padding: 30px 0;
}

.ks-zik-zak-title {
  font-size: clamp(1.125rem, 0.848rem + 1.183vw, 1.75rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.robotic-surgery-sec {
  background-image: url(../img/robotic-surgery-bg-img.jpg);
  background-size: cover;
  position: relative;
  padding-top: clamp(2.5rem, 0.836rem + 7.101vw, 6.25rem);
  padding-bottom: 220px;
  background-attachment: fixed;
}

.robotic-surgery-sec .container {
  position: relative;
  z-index: 2;
}

.robotic-surgery-sec::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: var(--green);
  opacity: 0.95;
}

.robotic-surgery-sec::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 21, 19, 0), rgb(5, 21, 19));
}

.robotic-surgery-wrapper {
  padding: 0 50px;
  background-color: #FAF9F7;
  margin-top: -200px;
  position: relative;
}

.slick-slider {
  z-index: 2;
}

.rs-card {
  margin: 0 15px 15px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 14px 2px rgba(0, 0, 0, 0.1);
}

.rs-img-box {
  height: 200px;
}

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

.rs-content-box {
  padding: clamp(1.25rem, 0.973rem + 1.183vw, 1.875rem) clamp(0.938rem, 0.66rem + 1.183vw, 1.563rem);
}

.rs-title {
  font-size: clamp(1rem, 0.945rem + 0.237vw, 1.125rem);
  font-weight: 800;
}

.rs-content {
  font-size: clamp(0.813rem, 0.757rem + 0.237vw, 0.938rem);
  line-height: 1.6;
}

.our-benefits-sec {
  background-color: #FAF9F7;
}

.our-benefits-sec .sec-head {
  margin-bottom: clamp(0.938rem, 0.66rem + 1.183vw, 1.563rem);
}

.ob-boxs {
  display: flex;
  flex-wrap: wrap;
}

.ob-box {
  flex: 33.33%;
  border: 1px solid #DDDDDD;
  padding: clamp(1.25rem, 0.695rem + 2.367vw, 2.5rem) clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.ob-box:nth-child(1),
.ob-box:nth-child(2),
.ob-box:nth-child(3) {
  border-top: 0;
  padding-top: 0;
}

.ob-box:nth-child(4),
.ob-box:nth-child(5),
.ob-box:nth-child(6) {
  border-bottom: 0;
  padding-bottom: 0;
}

.ob-box:nth-child(1),
.ob-box:nth-child(4) {
  padding-left: 0;
  border-left: 0;
}

.ob-box:nth-child(3),
.ob-box:last-child {
  border-right: 0;
}

.ob-title {
  font-size: clamp(1rem, 0.945rem + 0.237vw, 1.125rem);
  font-weight: 700;
  color: #201313;
  margin-bottom: clamp(0.938rem, 0.66rem + 1.183vw, 1.563rem);
}

.ob-content {
  font-size: clamp(0.875rem, 0.82rem + 0.237vw, 1rem);
  line-height: 1.6;
}


/*----------  Contact Us  ----------*/
.contact-sec {
  background-color: #FDFDFD;
}

.contact-sec .container {
  max-width: 1020px;
}

.contact-wrap {
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid #F1F1F1;
  box-shadow: 0 7px 14px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-left-col {
  background-color: var(--lightGreen);
  flex: 40%;
}

.contact-info {
  padding: clamp(1.563rem, 0.869rem + 2.959vw, 3.125rem) clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
  color: var(--white);
}

.contact-right-col {
  flex: 60%;
}

.contact-from {
  max-width: 430px;
  margin: 0 auto;
  padding: clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem) clamp(0.938rem, 0.521rem + 1.775vw, 1.875rem);
}

.contact-info-item {
  display: flex;
  gap: clamp(0.625rem, 0.348rem + 1.183vw, 1.25rem);
}

.contact-info-item i {
  font-size: 25px;
}

.contact-info-text {
  width: 100%;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(5, 39, 35, .20);
}

.contact-info-item:last-child .contact-info-text {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.contact-info-item span {
  display: block;
  color: rgba(255, 248, 242, 0.8);
  font-size: clamp(0.813rem, 0.757rem + 0.237vw, 0.938rem);
}

.contact-info-item b,
.contact-info-item a {
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1rem, 0.945rem + 0.237vw, 1.125rem);
}

.iframe,
.iframe+.schedule-appointment-sec {
  background-color: #FDFDFD;
}

.iframe-wrapper {
  max-width: 990px;
  margin: 0 auto;
  height: clamp(18.75rem, 13.299rem + 23.256vw, 28.125rem);
  border-radius: 12px;
  overflow: hidden;
}

iframe {
  height: 100%;
  width: 100%;
}


.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  top: inherit;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 11px !important;
  font-weight: 500;
  line-height: 11px !important;
  background: transparent;
  padding: 5px 5px 4px !important;
  color: #fb0101 !important;
}

/* .wpcf7-form-control-wrap .wpcf7-not-valid-tip:after {
  border-color: #fb0101 transparent transparent;
  -o-border-image: none;
  border-image: none;
  border-right: 6px solid transparent;
  border-style: solid;
  border-width: 6px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  top: 100%;
  width: 0;
} */

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900;
  background: #fff;
  font-size: 14px;
  margin: 15px 0 0;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-slide>div,
.slick-slide>div>.item,
.slick-slide>div>.item>.rs-card {
  height: calc(100% - 15px);
}

.recommended-sec {
  margin-top: 50px;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 5px 15px;
}

.recommended-sec .blog-box .img-box {
  flex: 0 0 100px;
  height: 100%;
  margin-bottom: 0;
}

.recommended-sec .blog-box .blog-box-title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.recommended-sec .blog-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.grecaptcha-badge {
  display: none !important;
}

.gallery-sec a {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: .6s all ease-in-out;
}

.gallery-sec a:hover::before {
  content: '';
}

.gallery-sec a::before {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}

.gallery-sec a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s all ease-in-out;
}

.gallery-sec a:hover img {
  scale: 1.1;
}

/* Our Services Specialty Section */
.our-services-specialty-sec {
  position: relative;
  background-color: #fff;
}

.our-services-specialty-sec .sec-head .sub-title {
  justify-content: center;
}

.our-services-specialty-sec .sec-head .cms-con p {
  color: #575A5F;
  font-size: 16px;
  line-height: 1.6;
}

.service-specialty-card {
  position: relative;
  overflow: hidden;
  background-color: #F8FBFB;
  border: 1px solid #E8EFF0;
  border-radius: 20px;
  padding: 42px 38px;
  height: 100%;
  box-shadow: 0 6px 24px rgba(5, 39, 35, 0.04);
  transition: all .4s ease-in-out;
}

.service-specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(5, 39, 35, 0.09);
  border-color: rgba(8, 118, 105, 0.25);
}

.service-specialty-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-specialty-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  width: 250px;
  max-width: 45%;
  line-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: .2;
}

.service-specialty-img img {
  width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: contain;
  object-position: bottom right;
}

.service-specialty-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 16px;
}

.service-specialty-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #575A5F;
  margin-bottom: 22px;
}

.service-specialty-text strong {
  color: #E27B38;
}

.service-specialty-list {
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.service-specialty-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
}

.service-specialty-list li:last-child {
  margin-bottom: 0;
}

.service-specialty-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
}

.service-specialty-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
}

.service-specialty-actions .btn {
  min-width: 190px;
  padding: 14px 50px 14px 24px;
  font-size: 14px;
}

.service-specialty-actions .btn::after {
  right: 22px;
}

.service-details-link {
  color: var(--lightGreen);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .3s ease-in-out;
}

.service-details-link i {
  font-size: 14px;
  transition: transform .3s ease-in-out;
}

.service-details-link:hover {
  color: var(--orange);
}

.service-details-link:hover i {
  transform: translateX(4px);
}

/* Why Choose Section */
.why-choose-sec {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.why-choose-img-wrap {
  position: relative;
  padding-right: 25px;
  padding-bottom: 25px;
}

.why-choose-img-wrap .wc-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(5, 39, 35, 0.12);
}

.wc-floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 12px 35px rgba(5, 39, 35, 0.14);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--orange);
  z-index: 2;
}

.wc-floating-card .wc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(238, 166, 118, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
}

.wc-floating-card .wc-card-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wc-floating-card .wc-card-info a {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  transition: color .3s ease;
}

.wc-floating-card .wc-card-info a:hover {
  color: var(--orange);
}

.why-choose-con {
  padding-left: clamp(0.625rem, -0.375rem + 3.125vw, 2.5rem);
}

.why-choose-con .sec-head {
  margin-bottom: 25px;
}

.why-choose-con .sec-md-title {
  font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.25rem);
  line-height: 1.3;
}

.why-choose-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--gray);
  font-size: 15px;
}

.why-choose-list li:last-child {
  margin-bottom: 0;
}

.why-choose-list .wc-list-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background-color: var(--lightGreen);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 3px;
}

.why-choose-list .wc-list-text a {
  color: var(--lightGreen);
  transition: color .3s ease;
}

.why-choose-list .wc-list-text a:hover {
  color: var(--orange);
}

.why-choose-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Benefits of Orthopedic Surgery Section */
.benefits-orthopedic-sec {
  background: linear-gradient(180deg, #052723 0%, #031b18 100%);
  position: relative;
  overflow: hidden;
}

.benefits-orthopedic-sec .sec-head {
  margin-bottom: clamp(2rem, 1.4rem + 1.8vw, 3.5rem);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s ease-in-out;
  backdrop-filter: blur(8px);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.benefit-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 118, 105, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 8px;
  transition: transform 0.35s ease-in-out, background 0.35s ease-in-out;
}

.benefit-card:hover .benefit-card-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.benefit-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.benefit-card-body {
  flex: 1;
}

.benefit-card-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-title {
  color: var(--orange);
}

.benefit-card-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Video Testimonials Section */
.video-testimonials-sec {
  position: relative;
  background-color: #F7FAF9;
  overflow: hidden;
}

.video-testimonials-sec .sec-head {
  margin-bottom: clamp(2rem, 1.4rem + 1.8vw, 3.5rem);
}

.video-testimonials-slider {
  margin-left: -12px;
  margin-right: -12px;
  position: relative;
}

.video-testimonials-slide {
  padding: 0 12px;
}

.vt-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(5, 39, 35, 0.08);
  aspect-ratio: 16/10;
  background-color: #052723;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(5, 39, 35, 0.16);
}

.vt-card .vt-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vt-card:hover .vt-cover-img {
  transform: scale(1.05);
}

.vt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(5, 39, 35, 0.5) 100%);
  pointer-events: none;
}

.vt-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--white);
  color: var(--lightGreen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vt-card:hover .vt-play-btn {
  background-color: var(--orange);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.vt-play-btn .wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.3;
  animation: wave 2s infinite;
}

/* Slick Arrows Hover Display for Video Testimonials */
.video-testimonials-slider .slick-arrow {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--green);
  z-index: 10;
  transition: all .3s ease-in-out;
}

.video-testimonials-slider .slick-arrow::before {
  display: none;
}

.video-testimonials-slider .slick-arrow i {
  font-size: 20px;
  line-height: 1;
}

.video-testimonials-slider .slick-prev i {
  transform: rotate(180deg);
}

.video-testimonials-slider .slick-arrow:hover {
  background-color: var(--orange);
  color: var(--white);
}

.video-testimonials-slider .slick-prev {
  left: 10px;
}

.video-testimonials-slider .slick-next {
  right: 10px;
}

.video-testimonials-slider:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.video-testimonials-slider .slick-dots {
  margin-top: 30px;
}

/* Best Team CTA Section */
.best-team-cta-sec {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.best-team-cta-box {
  background: linear-gradient(135deg, #052723 0%, #087669 100%);
  border-radius: 24px;
  padding: clamp(2rem, 1.4rem + 1.8vw, 3.5rem) clamp(1.5rem, 1rem + 1.5vw, 3rem);
  box-shadow: 0 20px 45px rgba(5, 39, 35, 0.16);
  position: relative;
  overflow: hidden;
}

.best-team-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 166, 118, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.best-team-cta-con .sub-title {
  color: var(--orange);
}

.best-team-cta-con .sub-title span {
  background-color: var(--orange);
}

.best-team-cta-con .sec-md-title {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2.1rem);
  line-height: 1.35;
}

.best-team-cta-con .cms-con p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 680px;
}

.best-team-cta-img img {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  max-height: 240px;
  width: 100%;
  object-fit: cover;
}

/*----------  Discharge Details Section  ----------*/
.discharge-details-sec {
  position: relative;
}

.discharge-details-sec .cricle {
  left: 20px;
  top: 40px;
}

.discharge-details-wrap {
  background: linear-gradient(135deg, #EAF2F1 0%, #f4faf9 100%);
  border: 1px solid rgba(8, 118, 105, 0.12);
  border-radius: 16px;
  width: 100%;
  padding: clamp(2rem, 1.4rem + 1.8vw, 3.25rem) clamp(1.5rem, 1rem + 1.8vw, 3.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(5, 39, 35, 0.04);
}

.discharge-details-left {
  width: 52%;
  position: relative;
  z-index: 2;
}

.discharge-details-right {
  width: 48%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.discharge-details-title {
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: #052723;
  display: block;
  margin-bottom: 8px;
}

.discharge-details-sec .cms-con p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #575A5F;
  margin-bottom: 0;
}

.discharge-btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.discharge-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px !important;
  min-width: 170px !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 42px;
  transition: all 0.35s ease-in-out;
}

.discharge-btn::after {
  content: none !important;
}

.discharge-btn-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.discharge-btn:hover .discharge-btn-icon {
  transform: translateY(-2px);
}

.discharge-btn i,
.discharge-btn .icon-right-circle-arrow {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.discharge-btn:hover i,
.discharge-btn:hover .icon-right-circle-arrow {
  transform: translateX(4px);
}

.discharge-btn.btn-orange:hover {
  background-color: #e0925e;
  border-color: #e0925e;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(238, 166, 118, 0.4);
}

.discharge-btn.discharge-wa-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.discharge-btn.discharge-wa-btn:hover {
  background-color: #1eb857;
  border-color: #1eb857;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

@media (max-width: 991px) {
  .discharge-details-wrap {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }

  .discharge-details-left,
  .discharge-details-right {
    width: 100%;
  }

  .discharge-details-left .sub-title {
    justify-content: center;
  }

  .discharge-details-left .half-cricle {
    display: none;
  }

  .discharge-btn-group {
    justify-content: center;
    width: 100%;
  }

  .discharge-btn {
    width: 100%;
    max-width: 280px;
  }
}