/* ==================== Import Fonts ==================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ====================== ROOT VARIABLES ====================== */
:root {
  --fs-body: 16px;
  --ff-heading: 'Manrope';
  --color-golden-1: #fdb900;
}


:root {
  --ff-body: 'Manrope', sans-serif;
  --ff-heading: 'Manrope', sans-serif;
  --color-golden-1: #fdb900;
  --transition: all 0.3s ease-in-out;
}

:root {
  --blue-color: #025EC1;
  --heading-color: #213245;
  --text-color: #59616B;
  --light-color: #EDF4FB;
  --color-common-white: #ffffff;
  --color-common-black: #000000;
  --bg-color: #F5F6F6;

  --red-color: #ED2E27CC;
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-sbold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
}

/* ==================== RESET ==================== */

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


html {
  font-size: 1rem;
}

body {
  line-height: 1.625;
  position: relative;
  word-wrap: break-word;
  background-color: var(--color-common-white);
  color: var(--text-color);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: normal;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  font-size: inherit;
  display: inline-block;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
*::after,
*::before {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a,
.btn,
button,
span,
p,
input,
blockquote,
textarea {
  transition: var(--transition);
  outline: none;
}

blockquote {
  position: relative;
  padding: 30px 40px;
  margin: 30px 0;
  background-color: rgba(2, 94, 193, 0.05);
  border-left: 4px solid var(--blue-color);
  border-radius: 0 15px 15px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--heading-color);
}

blockquote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 50px;
  line-height: 1;
  color: var(--blue-color);
  opacity: 0.1;
}

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

button,
input,
textarea {
  border: none;
  outline: none;
  resize: none;
}

.form-control:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

/* ==================== Typography ==================== */
/* =========================
   Heading Base Styles
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: var(--fw-sbold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: 80px;
  line-height: 1.027;
}

h2 {
  font-size: 48px;
  line-height: 1.167;
  font-weight: var(--fw-bold);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.333;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.444;
}

/* =========================
   Heading Links
========================= */

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: var(--fw-medium);
}

sup {
  top: -1.2em;
  left: .2em;
}

sub,
sup {
  position: relative;
  font-size: .45em;
  line-height: 0;
  vertical-align: baseline;
}

/* ==================== Common Heading Classes ==================== */

/* ==================== Common Layout ==================== */
.side-space {
  padding: 30px;
}

.common-sec {
  position: relative;
  padding-block: 100px 100px;
}

.container-lg,
.container {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container-lg {
  max-width: 1860px;
}

.container {
  max-width: 1320px;
}



/* ==================== Utility ==================== */

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

.shadow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

body.nav-open .shadow-overlay {
  opacity: 1;
  visibility: visible;
}

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

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

.bg-fit {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pop,
.smooth {
  transition: var(--transition);
}

.pop:hover {
  transform: scale(1.05);
}

/* ==================== Global Icons ==================== */

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: var(--transition);
}

.icon-check {
  mask-image: url("../img/svg/check.svg");
}

.sub-title-logo {
  mask-image: url(../img/svg/sub-title-logo.svg);
}

/* ======================= BUTTON ======================= */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--blue-color);
  color: var(--color-common-white);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 24px 8px 8px;
  flex-direction: row;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize;
}

/* Text */
.primary-btn .btn-text {
  color: var(--color-common-white);
  overflow: hidden;
}

.primary-btn .btn-text span {
  display: flex;
  line-height: 1.3;
  text-shadow: 0 30px 0 var(--blue-color);
  backface-visibility: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}

/* Icon */
.primary-btn .btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  color: var(--blue-color);
}

.primary-btn .btn-icon::before {
  content: "";
  background-color: var(--color-common-white);
  width: 32px;
  height: calc(100% - 16px);
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: -1;
  border-radius: 50px;
  transition: width 0.3s ease-in-out;
}

.primary-btn .btn-icon i {
  font-size: 12px;
  color: var(--blue-color);
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}


/* white button */
.primary-btn.white {
  background-color: var(--color-common-white);
  color: var(--blue-color);
}

.primary-btn.white .btn-text span {
  color: var(--blue-color);
  text-shadow: 0 30px 0 var(--color-common-white);
}

.primary-btn.white .btn-icon::before {
  background-color: var(--blue-color);
}

.primary-btn.white .btn-icon i {
  color: var(--color-common-white);
}



/* Hover */
.primary-btn:hover .btn-text span {
  transform: translateY(-30px);
}

.primary-btn:hover .btn-icon::before {
  width: calc(100% - 16px);
}


.primary-btn:hover .btn-icon i {
  transform: rotate(45deg);
}



.arrow_tr {
  mask-image: url(../img/icons/arrow_tr.svg);
}

/* ========================== HEADER STYLE ================== */

/* sticky header space */

.header-bottom.sticky {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-start-start-radius: 0;
  border-start-end-radius: 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1060;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  opacity: 0;
}



.header-bottom.sticky .header-inner {
  position: relative;
  z-index: 1;
}

.header-bottom.sticky.sticky-show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.inner-page .header-bottom.sticky {
  background-color: transparent;
}

.inner-page .header-bottom.sticky .header-inner {
  background-color: var(--color-theme-bg);
  filter: none;
  border-start-end-radius: 0;
  border-start-start-radius: 0;
}

.header.header-absolute {
  top: 30px;
  position: absolute;
  left: 0;
}

.header {
  /* padding: 0px 30px; */
  background-color: transparent;
  width: 100%;
  z-index: 98;

}

/* header top content */

.header-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-top p {
  padding: 15px 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.icon-gear {
  mask-image: url('../img/svg/gear.svg');
}

.icon-lightning {
  mask-image: url('../img/svg/Lightning.svg');
}

.icon-clock {
  mask-image: url(../img/svg/Clock.svg);
}

.header-top .header-info .info-item:first-child {
  border: 0;
}

.header-top .header-info .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 15px;
  border-left: 2px solid rgba(33, 50, 69, 0.2);
  line-height: 1;
}

.header-top .header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.header-top p i {
  color: var(--color-theme-primary);
  animation: zoomEffect 1.5s linear infinite;
}

.header-top i {
  color: var(--color-theme-primary);
}

.header-top p a {
  color: var(--color-theme-primary);
  font-weight: var(--fw-medium);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
}

.header-top p a::after {
  content: "";
  height: 14px;
  width: 14px;
  mask-image: url(../img/svg/arrow-right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: currentColor;
  margin-left: 4px;
  margin-top: 3px;
  transform: rotate(-45deg);
}

.header-top p a:hover::after {
  transform: rotate(0);
}

.header-top .icon {
  color: var(--color-theme-primary);
}

.header-top .header-info .info-item a {
  color: var(--color-text-body);
}

.header-top .header-info .info-item a:hover {
  color: var(--color-heading-primary);
}

/* ===========================bottom header========================= */
.header-bottom {
  padding: 0 15px;
}

.header-bottom.sticky .container-lg {
  padding-left: 0px;
  padding-right: 0px;
}

.header-bottom .header-inner {
  /* padding: 0 20px; */
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

.header-bottom .header-inner.blur {
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);

}

.site_logo {
  line-height: 0;
  padding: 20px 0;
  padding-right: 71px;

}

.site_logo img {
  height: 100%;

}

.site_logo a {
  height: 70px;
}

/* ==================== header main nav ==================== */

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  font-size: 16px;
  font-weight: var(--fw-sbold);
  color: var(--color-text-body);
  padding: 28px 0;
  padding-right: 24px;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 5px;
}


.main-nav>ul>li:has(ul)>a::after {
  content: "";
  height: 7px;
  width: 12px;
  mask-image: url(../img/svg/down-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: currentColor;
  line-height: 0;
  transition: var(--transition);
}

.main-nav>ul>li:hover>a::after {
  transform: rotate(180deg);
}


.main-nav>ul>li:hover>a,
.main-nav>ul>li>a:hover {
  color: var(--color-theme-primary);
}

.header-3 .main-nav ul:not(.sub-menu)>li>a {
  color: var(--heading-color);
}

.header-3 .main-nav ul:not(.sub-menu)>li>a:hover {
  color: var(--blue-color);
}

.main-nav ul>li:last-child a {
  padding-right: 0;
}

/* =================================sub menu============================ */



.main-nav ul li ul li {
  width: 100%;
}

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

.main-nav ul li ul li a:hover {
  color: var(--color-theme-primary);
  padding-left: 26px;
}

/* search-btn */
.search-btn {
  color: var(--blue-color);
  background-color: transparent;
  border: none;
  font-size: 23px;
  line-height: 0;
  cursor: pointer;
}

.search-btn:hover i {
  animation: bellShake 1.5s ease;
}

.icon-search {
  mask-image: url("../img/svg/search.svg");
}

.arrow_right_icon {
  mask-image: url("../img/svg/arrow-right.svg");
}

.arrow_left_icon {
  mask-image: url("../img/svg/arrow-left.svg");
}

/* mobile menu */
.menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;

}

.cubes {
  display: flex;
  flex-wrap: wrap;
  width: 48px;
  height: 48px;
  gap: 2px;
  padding: 13px;
  background-color: var(--blue-color);
  border-radius: 50%;
}

.cubes span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 2px solid var(--color-common-white);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.menu-toggle:hover .cubes span {
  border-radius: 22px;
}

/* header-action */
.header-action {
  display: flex;
  align-items: center;
  gap: 20px;
}




/* social icons  */
.icon_facebook {
  mask-image: url(../img/icons/facebook.svg);
}

.icon_tw {
  mask-image: url(../img/icons/twitter.svg);
}

.icon_insta {
  mask-image: url(../img/icons/instagram.svg);
}

.icon_wapp {
  mask-image: url(../img/icons/whatsapp.svg);
}

.icon_arrow-right {
  mask-image: url(../img/icons/arrow-right.svg);
}

.icon_arrow-left {
  mask-image: url(../img/icons/arrow-right.svg);
  transform: rotate(180deg);
}

.icon_hand-heart {
  mask-image: url(../img/icons/hand-heart.svg);
}

.icon_thumbs-up {
  mask-image: url(../img/icons/thumbs-up.svg);
}

.icon_idea {
  mask-image: url(../img/icons/bulb.svg);
}



/* ================================ Hero Section ================================ */
/* ----------------------------------------
   START: Hero CSS
---------------------------------------- */

.hero-sec.common-sec {
  position: relative;
  z-index: 1;
  background-color: var(--color-theme-bg);
  border-radius: 20px;
  padding-top: 214px;
  padding-bottom: 60px;
  min-height: 865px;
  overflow: hidden;
}

.hero-sec .hero-bg {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}



/* banner content */


.hero-sec .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--color-text-body);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  margin-bottom: 15px;
}

.hero-sec .sub-title i,
.hero-sec .sub-title span {
  color: var(--blue-color);
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--red-color);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: var(--fw-sbold);
  margin-bottom: 20px;
}

.sub-title i,
.sub-title span {
  color: var(--blue-color);
}

.sub-title img {
  flex-shrink: 0;
  width: 25px;
  height: 20px;
  object-fit: contain;
  margin-right: 7px;
}

.sub-title.round {
  color: var(--color-text-body);
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  border: 1px solid rgba(33, 50, 69, 0.2);
  background-color: rgba(250, 251, 251, 0.08);
  padding: 5px 10px;
  border-radius: 40px;
}



.sec-title {
  margin-bottom: 24px;
}

.sec-title span {
  color: var(--blue-color);
}

.sec-sm-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  ;
  line-height: 1.2;
  letter-spacing: -0.02em;

}

.mb-40 {
  margin-bottom: 40px;
}

.sec-head.small-width {
  max-width: 565px;
  margin-left: auto;
  margin-right: auto;
}

.mid-width {
  max-width: 758px;
  margin-left: auto;
  margin-right: auto;
}

/* buttons */






.icon-phone {
  mask-image: url('../img/svg/phone-call.svg');
}












.icon-shield {
  mask-image: url(../img/svg/shield.svg);
}


/* customers box */

.customers-box {
  background-color: var(--color-theme-dark);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 24px 28px;
}

.customers ul li img {
  width: 58px;
  height: 58px;
  background-color: var(--color-common-white);
  border: 2px solid var(--color-common-white);
  border-radius: 50%;
}

.customers ul li {
  line-height: 1;
  margin-inline-start: -22px;
}

.customers ul {
  display: inline-flex;
  list-style: none;
  padding-left: 22px;
}

/* rating */
.banner-img-area .customers-box .rating-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 20px 0 12px 0;
}

.customers-number {
  font-size: 65px;
  font-weight: var(--fw-sbold);
  line-height: 0.8;
}

.customers-text {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: var(--fw-medium);
}

.list-style-1 li {
  display: flex;
  gap: 6px;
  font-weight: var(--fw-medium);
}

.list-style-1 li span {
  width: 22px;
  height: 22px;
  background: var(--color-theme-primary);
  color: var(--color-theme-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* scroll */
.banner-scroll {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
}

.banner-scroll .scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-body);
}

.banner-scroll .scroll-down .text {
  writing-mode: vertical-lr;
  transform: scale(-1);
}

.banner-scroll .scroll-down .iconW {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  background-color: rgba(250, 251, 251, 0.08);
  border-radius: 50%;
  overflow: hidden;
  text-shadow: 0 -30px 0 var(--color-theme-dark);
  transform: rotate(90deg);
}

.banner-scroll .scroll-down .iconW i {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.banner-scroll .scroll-down .iconW i::before {
  content: "";
  position: absolute;
  left: -200%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  mask-image: url("../img/svg/arrow-right.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;

}

.banner-scroll .scroll-down:hover {
  transform: translateY(6px);
  color: var(--color-theme-primary);
}

.banner-scroll .scroll-down:hover .iconW {
  background-color: var(--color-theme-primary);
  color: var(--color-theme-dark);
}

.banner-scroll .scroll-down:hover .iconW i {
  transform: translateX(200%);
}

/* ----------------------------------------
   END: Hero CSS
---------------------------------------- */






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


.hero-slider-section .features-section .container {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  padding: 0 !important;
  padding-right: 91px !important;
}




/* ==================== END ==================== */



/* ==================================== About Us ========================= */
.about-sec {
  position: relative;
  overflow: hidden;

}

.about-left-bottom {
  display: flex;
  align-items: end;
  gap: 15px;
  margin-top: -80px;
}

.about-img {
  position: relative;
  mask-image: url(../img/abs__start__inner.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top left;
}

.experience-area {
  max-width: 276px;
  width: 100%;
  background-color: #025EC112;
  border-radius: 22px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.experience-area .exp-badge {
  position: absolute;
  top: 25px;
  right: -45px;
  width: 190px;
  font-size: 14px;
  font-weight: var(--fw-sbold);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transform: rotate(45deg);
  background-color: var(--color-theme-dark);
  color: var(--color-common-white);
  text-align: center;
  line-height: 1;
  padding: 5px 0;
}

.fix {
  overflow: hidden;
}

.countup-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.inline-content {
  color: var(--heading-color);
  font-size: 64px;
  line-height: 1;
  font-weight: var(--fw-sbold);
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.experience-area p {
  line-height: 1.5;
  font-weight: var(--fw-medium);
  margin: 0;
}

.author-area {
  max-width: 380px;
  width: 100%;
  background-color: #025EC112;
  border: 1px solid rgba(33, 50, 69, 0.2);
  border-radius: 22px;
  position: relative;
  display: flex;

  align-items: center;
  padding: 0 38px;
}

/* Author Info */
.author-area .author-info {
  max-width: 225px;
  width: 100%;
  position: relative;
}

.author-area .signature::before {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-start: -15px;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(-50%);
}

/* Author Image */
.author-area .author-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}

/* Author Text */
.author-area .author-text {
  display: flex;
  flex-direction: column;
}

.author-area .author-text .author-name {
  font-size: 20px;
  margin-bottom: 6px;
}

.author-area .author-text span {
  line-height: 1;
}

/* Signature */
.author-area .signature {
  position: relative;
  max-width: 114px;
  width: 100%;
  padding: 35px 0;
  margin-inline-start: 16px;
}

/*============================ about Right Side ======================= */
.about-sec {
  position: relative;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 16px;
  padding: 50px;
  padding-bottom: 12px;
}

.about-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask-image: url(../img/Subtract.png);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: bottom right;
  background-color: rgba(2, 94, 193, 0.71);
  z-index: -1;
}

.about-content p {
  margin-bottom: 24px;
}

.about-content .sec-head {
  margin-bottom: 15px;
}

.about-facts {
  display: flex;
  gap: 61px;
}

.about-facts .fact-item {
  max-width: 215px;
  width: auto;
  position: relative;
}

.about-facts .fact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: -30px;
  width: 1px;
  height: calc(100% - 1em);
  border-right: 1px solid #21324526;
}

.about-facts .inline-content {
  font-size: 64px;
  margin-bottom: 5px;
}

.countup-item p {
  font-size: 16px;
  margin-bottom: 0;
}

/* about btn */
.about-btn {
  margin-top: 31px;
}

.about-sec .award-wrap {
  position: absolute;
  right: 0;
  bottom: 0;

}

.award-wrap {
  height: 178px;
  width: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/skull.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 50%;

}

.award-wrap .text-wrap {
  background-image: url(../img/awardtect.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 146px;
  height: 146px;
  -webkit-animation: textRotate 20s infinite linear;
  animation: textRotate 20s infinite linear;

}

.award-wrap .iconWrap {
  height: 80px;
  width: 80px;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-common-white);

}

.iconWrap .icon {
  mask-image: url(../img/svg/Clock.svg);

}

.award-wrap:hover .icon {
  transform: rotateY(360deg);
}

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

/* =============================== why choose us =============================== */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  align-items: center;
  gap: 10px;

}

.scroll-slider:not(:last-child) {
  margin-bottom: 10px;
}

.scroll-wrapper {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  min-width: 100%;
  animation: scroll 30s linear infinite;
}

.scroll-slider:nth-child(even) .scroll-wrapper {
  animation-direction: reverse;
}

.us-card .box {
  padding: 40px 30px;
  display: flex;
  align-items: start;
  gap: 20px;
  border-radius: 12px;
  max-width: 380px;
  height: 100%;
  overflow: hidden;
}

.us-card .box .img-icon {
  flex-shrink: 0;
  padding: 11px;
  background-color: var(--text-color);
  border-radius: 50%;
}

.us-card .box .img-icon img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
}

.us-card .box .title {
  font-size: 20px;
  font-weight: var(--fw-sbold);
  text-transform: capitalize;
}

.scroll-wrapper .us-card:nth-child(odd) .box {
  background-color: #025EC10F;
}

.scroll-wrapper .us-card:nth-child(even) .box {
  background-color: #59616B0F;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.last-btn {
  margin-top: 40px;
}

.primary-btn.border {
  background-color: transparent;
  border: 1px solid var(--blue-color) !important;
  color: var(--blue-color);

}

.primary-btn.border span {
  color: var(--blue-color);
  text-shadow: 0 30px 0 var(--color-common-white)
}

.primary-btn.border .btn-icon::before {
  background-color: var(--blue-color);
}

.primary-btn.border .btn-icon i {
  color: var(--color-common-white);
}

/* .primary-btn.border:hover .btn-text {
  color: var(--color-common-white);
} */

/* =============================== why choose us End =============================== */

/* =============================== Specialty Clinics =============================== */

.mb-30 {
  margin-bottom: 30px;
}

.specialty-clinics .row {
  --bs-gutter-x: 0;
}

.clinic-sidebar {
  background-color: rgba(89, 97, 107, 0.05);
  border-radius: 22px;
  padding: 20px;
  max-width: 400px;
}

.custom-nav-tabs {
  display: flex;
  flex-direction: column;
  border: none;
}

.custom-nav-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 54px;
  padding: 0px 16px;
  border-radius: 12px;
  background-color: transparent;
  color: var(--text-color);
  font-size: 16px;
  font-weight: var(--fw-sbold);
  border: none;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}


.custom-nav-tabs .nav-link.active,
.custom-nav-tabs .nav-link:hover {
  background-color: var(--color-common-white) !important;
  color: var(--heading-color) !important;
}

.custom-nav-tabs .nav-link .tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: var(--color-common-white);
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  position: absolute;
  left: 16px;
}

.custom-nav-tabs .nav-link.active .tab-num,
.custom-nav-tabs .nav-link:hover .tab-num {
  opacity: 1;
  transform: translateX(0);
}

.custom-nav-tabs .nav-link .tab-text {
  transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link.active .tab-text,
.custom-nav-tabs .nav-link:hover .tab-text {
  transform: translateX(35px);
  color: var(--blue-color);
}

.custom-nav-tabs .nav-link .tab-arrow {
  font-size: 12px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(10px);
  color: var(--blue-color);
  transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link.active .tab-arrow,
.custom-nav-tabs .nav-link:hover .tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.clinic-tab-content {
  border: 1px solid #2132451A;
  border-radius: 22px;
  padding: 30px;
  padding-top: 20px;
  height: 100%;
}

.clinic-pane-inner {
  display: flex;
  gap: 20px;
  height: 100%;
}

.clinic-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  border: 1px solid #59616B1A;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-common-white);
  margin-top: 10px;
}

.clinic-header {
  gap: 20px;
}

.clinic-title {
  font-size: 32px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 0;
}



/* =============================== Specialty Clinics End =============================== */

/* Blur Shadow Overlay for Clinic Sidebar */
.clinic-sidebar-opened .clinc-blur-overlay {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 3;
}

.hmin .header {
  z-index: -1 !important;
}



/* ===============================
   Text Button (FIXED)
================================ */
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  line-height: 1;
  color: var(--blue-color);
  overflow: hidden;
  text-transform: capitalize;
}

/* Icon base */
.text-btn .btn-icon {
  flex-shrink: 0;

  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hide first icon initially */
.text-btn .btn-icon:first-child {
  margin-inline-start: -25px;
  opacity: 0;
}

/* Hover animation */
.text-btn:hover {
  color: var(--blue-color);
}

.text-btn:hover .btn-icon:first-child {
  margin-inline-start: 0;
  opacity: 1;
}

.text-btn:hover .btn-icon:last-child {
  margin-inline-end: -25px;
  opacity: 0;
}

.clinic-img {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #2132450D;
}

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

/* ============================ Meet Our Experts ========================== */
.expert-sec {
  background-color: var(--bg-color);
}

.row.small {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.row.small .team-item .team-img img {
  object-position: top;
}

.row.small .team-item .designation {
  line-height: 1.2;
}

.team-item {
  background-color: var(--color-common-white);
  border: 1px solid rgba(89, 97, 107, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-item .team-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  max-height: 340px;
  height: 100%;
}

.team-item .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.team-item .social-links {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--color-common-white);
  border-top-left-radius: 10px;
  padding: 12px 11px;
  z-index: 2;
}

.team-item .social-links::after,
.team-item .social-links::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -20px;
  right: 0;
  width: 10px;
  height: 20px;
  box-shadow: 0 10px 0 0 var(--color-common-white);
  border-bottom-right-radius: 10px;
  z-index: -1;
}

.team-item .social-links::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -10px;
}

.team-item .social-links .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--color-common-white);
  line-height: 1;
  position: absolute;
  right: 9px;
  bottom: 12px;
  z-index: 2;
  transition: all 0.3s ease;
}

.team-item .social-links ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  list-style: none;
  padding-left: 0;

}

.team-item .social-links ul li {
  margin-bottom: -32px;
}

.team-item .social-links ul li:last-child {
  margin: 0;
}

.team-item .social-links ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--text-color);
  color: var(--color-common-white);
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.team-item .social-links ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 100%;
  left: 0;
  background-color: var(--blue-color);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s linear;
}

.team-item .social-links ul li a:hover {
  color: var(--color-common-white);
}

.team-item .social-links ul li a:hover::before {
  top: 0;
}

.team-item .team-content {
  padding: 21px 16px 14px 14px;
  width: 100%;
}



.team-item .title {
  display: block;
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
  letter-spacing: 0;
}

.team-item .title a {
  color: var(--heading-color);
}

.team-item .title a:hover {
  color: var(--blue-color);
}

.team-item .designation {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1;
  display: inline-flex;
}

.team-item:hover .team-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

.team-item:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}

.team-item:hover .social-links ul {
  gap: 10px;
  opacity: 1;
}

.team-item:hover .social-links ul li {
  margin: 0;
}

.team-wrapper {
  display: flex;
  gap: 20px;
}

.icon_lnkdn {
  mask-image: url(../img/icons/linkedin.svg);
}

.icon_shared {
  mask-image: url(../img/icons/share.svg);
}

/* ============================ Video Reels ========================== */
/* .swiper  */
.border-light .slider-next,
.border-light .slider-prev {
  border: 1px solid rgb(2, 94, 193, .15);
}

.top-side {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.reel-card {
  border-radius: 16px;
  overflow: hidden;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}

.video-reel-slider {
  overflow: visible;
}

.video-reel-pagination {
  position: absolute;
  bottom: 10px !important;
}


.reel-card .box {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
}

.reel-card .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.reel-card .reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 5;
}

.reel-card .top-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 32px;
  height: auto;
}

.reel-card .top-icon img {
  width: 100%;
  height: auto;
}

.reel-card .bottom-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

}

.reel-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: var(--color-common-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Play Button Overlay with Pulse Effect */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.play-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--color-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.play-icon-box img {
  width: 16px;
  height: auto;
}

.play-btn-overlay:hover .play-icon-box {
  background-color: var(--blue-color);
}

.play-btn-overlay:hover .play-icon-box img {
  filter: brightness(0) invert(1);
}

/* Pulses */
.play-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 1;
  animation: reelPulse 2.5s infinite ease-out;
}

.play-pulse-ring.delay {
  animation-delay: 1.25s;
}

@keyframes reelPulse {
  0% {
    width: 44px;
    height: 44px;
    opacity: 1;
  }

  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* ======================================================
   Achievements Section Slider
   ====================================================== */
.achivements-slider {
  overflow: visible;
}

.achivements-slider .swiper-slide {
  width: 200px;
}

.achivement-card {
  width: 200px;
  height: 200px;
  background: #F0F6FC;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.achivement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achivement-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}








/* ===============================
   Working Process / Patient Journey
================================ */
.working-process-sec .container-lg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.working-process-sec .sec-head {
  padding: 0 0 60px;
}

.working-process-sec .sec-title {
  color: var(--color-common-white);
  line-height: 1.1;
}

.working-process-sec .sec-head .sub-title span {
  color: var(--color-theme-primary);
}

.working-process-sec .sec-head p.desc {
  max-width: 530px;
  font-size: 18px;
  opacity: 0.8;
}

.working-process-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.working-process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 19, 39, 0) 0%, rgba(0, 19, 39, 0.9) 100%);
}

.process-area {
  position: relative;
  z-index: 1;
}

.process-area .container-lg {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Stats */
.journey-stats .stat-item {
  color: var(--color-common-white);
}

.journey-stats .stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.journey-stats .stat-label {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 0;
}


.journey-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  position: relative;
  padding: 0 20px;
}

/* left vertical line */
.stat-item::before,
.stat-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item::after {
  height: 45%;
  background: rgba(255, 255, 255);

}

/* right vertical line only for last */

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-common-white);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Vertical Process */
.process-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 466px;
  margin-left: auto;
  position: relative;
  z-index: 0;
}

/* Vertical Line */
.process-border {
  position: absolute;
  top: 0;
  left: -45px;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
}

/* Item */
.process-item {
  position: relative;
}

/* Content Card */
.process-content {
  padding: 24px 30px;
  background: #FFFFFF0F;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}


/* Step Circle */
.process-step {
  width: 50px;
  height: 50px;
  background-color: #FFFFFF0F;
  backdrop-filter: blur(20px);
  color: var(--color-common-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* Active / Hover State */
.process-item.active .process-content,
.process-item:hover .process-content {
  background: var(--blue-color);
  border-color: var(--blue-color);
}

.process-item.active .process-content .desc,
.process-item:hover .process-content .desc {
  opacity: 1;
}

.process-item.active .process-step,
.process-item:hover .process-step {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

/* Active Line highlight */
.process-item.active::before,
.process-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45px;
  width: 2px;
  height: 100%;
  background: var(--blue-color);
  transform: translateX(-50%);
  z-index: -1;
}

.working-process-sec .left {
  display: flex;
  flex-direction: column;
  height: 100%;

}

.working-process-sec .left .journey-stats {
  margin-top: auto;
}



/* ===============================
   Blog Section
================================ */
.tj-blog-section-2 .sec-heading {
  max-width: 450px;
}

.blog-item {
  height: 100%;
  background-color: rgb(89, 97, 107, .04);
  border: 1px solid rgb(33, 50, 69, .05);
  padding: 20px;
  border-radius: 22px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-thumb {
  height: 270px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.blog-item .blog-thumb a {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.blog-item .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear 0s;
}

.blog-item .blog-content {
  padding: 25px 15px 15px 15px;
}

.blog-item .blog-content .title {
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: var(--fw-ebold);
}

.small-blog-item .blog-content .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-item .blog-content .title a {
  color: inherit;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 90%;
  display: inline;
  transition: background-size 0.3s ease;
  font-weight: inherit;
}

.blog-item .blog-content .title a:hover {
  background-size: 100% 2px;
  color: var(--color-theme-primary);
}

.blog-item .blog-content .desc,
.blog-item .blog-content .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}



.ecommerce-details-sec .blog-item {
  display: flex;
  flex-direction: column;
}

.ecommerce-details-sec .blog-item .blog-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 15px;
}

.ecommerce-details-sec .blog-item .blog-content .primary-btn {
  margin-top: auto !important;
}

.blog-item .blog-content .desc:last-of-type,
.blog-item .blog-content .excerpt:last-of-type {
  margin-bottom: 0;
}

.categories {
  margin-bottom: 0;
  display: inline-block;
}

.categories a {
  background-color: var(--color-common-white);
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--fw-medium);
  padding: 3px 12px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 100px;
}

.blog-item .text-btn {
  margin-top: 23px;
  font-weight: var(--fw-medium);
}

.blog-item .text-btn:hover {

  color: var(--color-theme-primary);
}

.blog-item:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.blog-meta span {
  color: var(--text-color);
  line-height: 1;
  font-size: 14px;
}


.blog-meta span a {
  color: var(--text-color);
  font-weight: var(--fw-sbold);
  transition: all 0.3s ease;
}

.categories a {
  border: 1px solid rgba(89, 97, 107, 0.1);
}

.categories a:hover {
  color: var(--color-common-white);
  background-color: var(--blue-color);
}

/* Layout Variations */
.featured-blog-item .blog-thumb {
  height: 420px !important;
}

.featured-blog-item .blog-content .title {
  font-size: 32px !important;
  line-height: 1.25 !important;
}

.small-blog-item {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  height: auto;
}

.small-blog-item:last-child {
  margin-bottom: 0;
}

.small-blog-item .blog-thumb {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.small-blog-item .blog-content {
  width: calc(100% - 170px);
  padding: 11px 0 11px 25px;
}

.small-blog-item .blog-content .excerpt,
.small-blog-item .blog-content .desc {
  display: none;
}

.mb-50 {
  margin-bottom: 50px;
}

/* cta */
.cta {
  position: relative;
  z-index: 2;
}

.cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F5F9FE;
  z-index: -1;
}

.cta .container {
  position: relative;
  text-align: center;
  background-color: #025EC1;
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 22px;
  z-index: 1;
  overflow: hidden;
}

.cta .container::before {
  content: "";
  position: absolute;
  height: 240px;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../img/spine.png) center center no-repeat;
  background-size: cover;
  transform: rotate(10deg) translateY(50%);
  z-index: -1;
}

.cta .container .sec-title {
  color: var(--color-common-white);
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.cta .primary-btn {
  border: 1px solid var(--color-common-white);
}




/* Individual testimonial card */
.testimonial-wrapper {
  position: relative;
  display: flex;
  gap: 24px;
  max-height: 840px;
  height: 100%;
  overflow: hidden;
}

.testimonial-wrapper::before,
.testimonial-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 240px;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-wrapper::after {
  bottom: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-card {
  flex-shrink: 0;
  width: 100%;
  max-width: 424px;
}

.testimonial-scroll,
.testimonial-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-box {
  background-color: #F5F9FE;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card .rating {
  position: absolute;
  top: 0px;
  right: 0px;
}

/* Quote mark background watermark */
.testimonial-avatar::after {
  content: '';
  position: absolute;
  height: 40px;
  width: 50px;
  right: 0;
  bottom: 0;
  line-height: 1;
  background: url(../img/quote.png) center center no-repeat;
  background-size: contain;

  z-index: 0;
}

/* Avatar section - top part with name/role and stars */
.testimonial-avatar {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar .con {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  width: 100%;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.testimonial-role {
  font-size: 15px;
  font-weight: 400;
  color: rgb(89, 97, 107, .8);
  display: block;
}



/* Content/text section */
.testimonial-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 500;
}



/* Star Rating */
.rating {
  display: inline-flex;
  gap: 4px;
}

.star-icon {
  width: 17px;
  height: 17px;
  color: #DDE5E5;
  background-color: currentColor;
  mask: url('../img/icons/star.svg') center/contain no-repeat;
  -webkit-mask: url('../img/icons/star.svg') center/contain no-repeat;
  transition: 0.3s;
}

.star-icon.is-active {
  color: #F8B819;
}

.testimonial-scroll {
  animation: scrolly 30s linear infinite;
}

.testimonial-scroll:nth-child(even) {
  animation-direction: reverse;
}

@keyframes scrolly {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-100% - 24px));
  }
}



.our-technology {
  position: relative;
  background: linear-gradient(#01264D 0%, #013874 100%);
  min-height: 820px;
  overflow: hidden;
}

.our-technology .sec-title,
.our-technology p {
  color: var(--color-common-white);
}

.our-technology p {
  opacity: .8;
}

.circle-gradient {
  max-width: 1230px;
  position: absolute;
  height: 1230px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  top: -68%;
  border-radius: 50%;
  background: #025EC1;
  background: radial-gradient(circle, rgba(2, 94, 193, 0) 50%, rgba(2, 94, 193, 1) 100%);
  border: 2px solid rgb(240, 246, 252, .1);
  z-index: 1;
  animation: tj-rotate 50s infinite linear;
}

.circle-gradient:hover,
.circle-gradient:hover img {
  animation-play-state: paused;
}

.circle-gradient img {
  max-width: inherit;
  max-height: inherit;
  width: auto;
  height: 220px;
  object-fit: contain;
  animation: tj-rotate-reverse 50s infinite linear;
}

@keyframes tj-rotate {
  from {
    transform: translate(-50%) rotate(0deg);
  }

  to {
    transform: translate(-50%) rotate(360deg);
  }
}

@keyframes tj-rotate-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.our-technology::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 50%;
  /* background: linear-gradient( #01264D 100%, #01264d00 0%); */
  background: linear-gradient(to bottom, #01264D 20%, transparent);
  z-index: 2;
}

.our-technology .sec-head {
  position: relative;
  z-index: 2;
}

.circle-gradient li {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
}

.circle-gradient li:nth-child(1) {
  left: 100%;
  top: 50%;
}

.circle-gradient li:nth-child(2) {
  left: 90.45%;
  top: 79.39%;
}

.circle-gradient li:nth-child(3) {
  left: 65.45%;
  top: 97.55%;
}

.circle-gradient li:nth-child(4) {
  left: 34.55%;
  top: 97.55%;
}

.circle-gradient li:nth-child(5) {
  left: 9.55%;
  top: 79.39%;
}

.circle-gradient li:nth-child(6) {
  left: 0%;
  top: 50%;
}

.circle-gradient li:nth-child(7) {
  left: 9.55%;
  top: 20.61%;
}

.circle-gradient li:nth-child(8) {
  left: 34.55%;
  top: 2.45%;
}

.circle-gradient li:nth-child(9) {
  left: 65.45%;
  top: 2.45%;
}

.circle-gradient li:nth-child(10) {
  left: 90.45%;
  top: 20.61%;
}

/* ==========================================================================
   Hamburger Menu Theme Enhancements (Light Theme)
   ========================================================================== */
.hamburger-area {
  background: #ffffff !important;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.hamburger_bg {
  display: none;
}

.hamburger_wrapper::before {
  background: var(--blue-color) !important;
  opacity: 0.05;
  filter: blur(60px);
}

.hamburger-title {

  font-weight: 800;
  color: var(--blue-color) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 25px;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.hamburger-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, var(--blue-color), transparent);
  opacity: 0.2;
}

.hamburger_menu ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hamburger_menu ul li a {

  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.hamburger_menu ul li a:hover {
  color: var(--blue-color) !important;
  transform: translateX(8px);
}

.hamburger-infos .contact-info .contact-item {
  margin-bottom: 20px;
  flex-direction: column;
}

.hamburger-infos .contact-info .contact-item .subtitle {
  color: var(--blue-color) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.hamburger-infos .contact-info .contact-item .contact-link {
  color: var(--text-color) !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.hamburger-socials .social-links.style-2 ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.hamburger-socials .social-links.style-2 ul li a {
  width: 45px;
  height: 45px;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 94, 193, 0.1);
  color: var(--blue-color) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-socials .social-links.style-2 ul li a:hover {
  background-color: var(--blue-color);
  color: #ffffff !important;
  border-color: var(--blue-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(2, 94, 193, 0.2);
}

.hamburger_close_btn {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--blue-color);
  border: none;
  cursor: pointer;
}

.hamburger_close_btn:hover {
  background: #ED2E27 !important;
  color: white !important;
  transform: rotate(90deg);
}


/* inner-banner */
.inner-page-stavya .header {
  position: relative;
}




/* Inner page banner Style */
.banner-sec.inner-banner {

  background: linear-gradient(90deg, #f4f9f8 45%, rgba(244, 249, 248, 0.2) 70%, rgba(244, 249, 248, 0) 100%), url("../img/stavya-banner-website.png") no-repeat center right;
  position: relative;
  overflow: hidden;
}

.banner-sec.inner-banner::before,
.banner-sec.inner-banner::after {
  display: none;
}

.banner-sec.inner-banner .banner-content {
  text-align: left;
  max-width: 650px;
}

.inn-banner-subtitle {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Breadcrumb Styles */
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 10px 15px;
  padding: 0;
  list-style: none;
}

.breadcrumb-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list li a {
  color: var(--text-color);
  transition: var(--transition);
}

.breadcrumb-list li a:hover {
  color: var(--blue-color);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  font-size: 12px;
  color: var(--primary-color);
  opacity: 0.5;
}

.breadcrumb-list li:last-child {

  color: var(--blue-color);
  background: #025ec133;
  border-radius: 40px;
  padding: 1px 10px;
}

.banner-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.64;
}

.banner-content .primary-btn {
  margin-top: 30px;
}



/*====================================================
================ About Us Section ====================
====================================================*/


.main-about-img {
  position: relative;
}

.main-about-img .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.main-about-img .img>img {
  height: 450px;
  object-fit: cover;
  width: 100%;
}

.top-attach {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.about_reviews {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 0 25px 50px;
}

.about_reviews::before,
.about_reviews::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: -19px;
  width: 25px;
  height: 10px;
  box-shadow: 10px 0 0 0 var(--heading-color);
  border-top-right-radius: 10px;
}

.about_reviews::after {
  top: auto;
  left: auto;
  bottom: -9px;
  right: 0;
}

.about_reviews .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  z-index: -1;
  mask-image: url(../img/shapes/h3-about-shape.svg);
  mask-position: bottom left;
  mask-repeat: no-repeat;
}

.about_reviews ul {
  display: inline-flex;
  list-style: none;
  align-items: center;
}

.about_reviews ul li:first-child {
  margin-inline-start: 0;
}

.about_reviews ul li {
  display: inline-flex;
  line-height: 1;
  margin-inline-start: -22px;
}

.about_reviews ul li img {
  width: 50px;
  height: 50px;
  background-color: var(--color-common-white);
  padding: 2px;
  border-radius: 50%;
}

.about_reviews ul li span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.about_reviews .text {
  display: inline-flex;
  max-width: 196px;
}




.cms-con ul li i,
.cms-con ul li svg {
  display: inline-flex;
  font-size: 20px;
  color: var(--blue-color);
  line-height: 1;
  margin-top: 4px;
}

.cms-con ul li {
  display: flex;
  gap: 9px;
  align-items: start;
  font-weight: var(--fw-medium);
  color: var(--text-color);
  margin-bottom: 12px;
}

.poits-circle {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.circle-text-wrap {
  background: url(../img/skull.png) center center/cover no-repeat;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin: 0 !important;
}

.circle-text-wrap:hover a {
  transform: translate(-50%, -50%) rotate(0deg);
}

.circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/about-circle-text.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  -webkit-animation: textRotate 20s infinite linear;
  animation: textRotate 20s infinite linear;
  filter: brightness(0) invert(1);
}

.circle-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 6;
  color: var(--color-common-white);
  font-size: 32px;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



/* cards */
.cards-wrapped {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.h3_countup {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-common-white);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 250px;
  transition: var(--transition);
}



.h3_countup .inline-content {
  margin-bottom: 20px;
  color: var(--blue-color);
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.h3_countup .count-title {
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.h3_countup .count-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.main-about-content,
.main-about-section .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.main-about-content {
  gap: 10px;
}



.ecommerce-details-sec .blog-item .title {
  font-size: 22px !important;
  text-align: center;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000000, transparent);
  color: var(--color-common-white);
  padding: 10px 10px 20px 10px;
  margin: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 1;
}


/* vission mission */


/* mission vision */
.about-mission-vision {
  padding-left: 30px;
  padding-right: 30px;
}

.about-mission-vision .container-lg {
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: inherit;
  max-width: 1860px;
  border-radius: 16px;
  overflow: hidden;
}

.about-mission-vision .container-lg::before {
  content: "";
  position: absolute;
  background-color: var(--bg-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-mission-vision .container-lg .container {
  margin-top: 90px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.about-mission-vision .row {
  --bs-gutter-x: 0rem;

}

.img-reveal-1 {
  position: relative;
  overflow: hidden;
  height: 100%;

}

.img-reveal-1 img {
  object-fit: cover;
  transform-origin: left;
}

.about-mission-vision .amv-left {
  padding-right: 25px;
  height: 100%;
}

.amv-lg-img {
  max-width: 885px;
  height: 100%;
  position: relative;
  padding-bottom: 20px;
  padding-inline-end: 20px;
  background-color: var(--color-common-white);
  border-end-end-radius: 16px;
}


.amv-lg-img::before,
.amv-lg-img::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 32px;
  height: 16px;
  -webkit-box-shadow: 16px 0 0 0 var(--color-common-white);
  box-shadow: -16px 0 0 0 var(--color-common-white);
  border-top-left-radius: 16px;
  z-index: 1;
}

.amv-lg-img::before {
  top: 0;
  right: -32px;
}

.amv-lg-img::after {
  bottom: -16px;
  left: 0;
}

.amv-lg-img img {
  height: 100%;
  border-radius: 16px;
}

.amv-right {
  padding-top: 110px;
  padding-right: 15px;
}

.amv-right .inner-content {
  max-width: 665px;
}

.amv-right .inner-content .sec-head {
  margin-bottom: 50px;
}

.amv-grid-2 {
  display: grid;
  grid-template-columns: 195px 1fr;
  gap: 20px;
  align-items: flex-start;
}

.amv-grid-2 .brand-wrap {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px 0px;
  row-gap: 10px;
  column-gap: 0px;
  border-radius: 10px;
  padding: 30px;
  background-color: var(--color-common-white);
  aspect-ratio: 1/1;
}

.amv-grid-2 .brand-wrap img {
  object-fit: contain;
}

.brand-wrap h2 {
  color: var(--color-common-white);
  font-size: calc(22px + (26 - 22) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  text-transform: capitalize;
}

.amv-grid-2 .brand-wrap img.logo-icon {
  height: 70px;
}

.amv-grid-2 .icon-box-wrap .icon-box {
  background-color: var(--color-common-white);
  padding: 22px 30px 26px 30px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(33, 50, 69, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.amv-grid-2 .icon-box-wrap .icon-box .icon-box-title {
  font-size: 20px;
  font-weight: var(--fw-bold);
}

.amv-grid-2 .icon-box-wrap .primary-btn.reverse {
  background-color: var(--heading-color);
}

.about-mission-vision .about-funfacts {
  display: flex;
  background-color: var(--color-common-white);
  border: 1px solid rgba(33, 50, 69, 0.2);
  border-radius: 16px;
  padding: 0;
  gap: 0;
  flex-direction: row;
}

.sm-title {
  font-size: 18px;
  color: var(--heading-color);
  letter-spacing: 0;
}

.about-funfacts .countup-item {
  max-width: 25%;
  padding: 40px 32px 35px;
  width: 100%;
  min-height: 250px;
}

.about-funfacts .countup-item .countup-icon {
  font-size: 50px;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1;
}

.about-funfacts .countup-item img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  background: var(--heading-color);
  padding: 10px;
  border-radius: 10px;
}


.about-funfacts .countup-item .count-text {
  font-size: 16px;
  color: var(--heading-color);

}

.about-funfacts .countup-item:not(:last-child)::after {
  height: 100%;
  inset-inline-end: 0;
  transform: translateX(50%);
}

.about-funfacts .countup-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(33, 50, 69, 0.2);
}

.about-funfacts .countup-item:not(:last-child)::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--heading-color);
  border-radius: 20px;
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
  animation: running-2 4s linear infinite;
}

.about-funfacts .countup-item:nth-child(2)::before {
  animation: running-2 4s linear infinite 2s;
}

.why-choose-us-sec .flex-wrap {
  align-items: center;
  margin-bottom: 50px;
}

.why-choose-us-sec .flex-wrap p {
  max-width: 250px;
}

.d-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- Vision & Mission Responsive --- */













/* ==========================================================================
   Leadership Team Pages
   ========================================================================== */
.team-leader .team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.team-leader .team-wrapper .team-item {
  max-width: 280px;
  width: 100%;

}

.team-leader .team-wrapper .team-item .team-img img {
  object-position: top;
}

.leadership-head {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-detail-sec {

  background-color: var(--color-common-white);
}

.leadership-detail-sec .profile-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(89, 97, 107, 0.1);
}

.leadership-detail-sec .profile-img-wrap img {
  width: 100%;
  min-height: 550px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership-detail-sec .profile-img-wrap:hover img {
  transform: scale(1.05);
}



.leadership-detail-sec .profile-designation {
  display: inline-block;
  font-size: 18px;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue-color);
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  background-color: rgba(2, 94, 193, 0.1);
  padding: 5px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
}


.leadership-detail-sec .profile-stats {
  border-top: 1px solid rgba(33, 50, 69, 0.1);
  padding-top: 40px;
}

.leadership-detail-sec .stat-item {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--light-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-detail-sec .profile-stats .col-sm-6:last-child .stat-item {
  margin-bottom: 0;
}

.leadership-detail-sec .stat-item h4 {
  margin-bottom: 5px;
  color: var(--blue-color);
  font-weight: var(--fw-bold);
  font-size: 28px;
  line-height: 1.2;
}



.achivements-sec.leadership-achievements {
  background-color: var(--bg-color);
  border-top: 1px solid rgba(33, 50, 69, 0.1);
}


/* h3 service section */
.h3-service-section {
  background-color: var(--bg-color);
  border-radius: 16px;
  overflow: hidden;

}

.h3-service-section .sec-head {
  padding-bottom: 30px;
}

.h3-service-section .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.h3-service-section-wrap {
  position: relative;
  z-index: 1;
}

.h3_services_wrap {
  border-top: 1px solid var(--light-color);
}

.service_list_item {
  border-bottom: 1px solid rgba(33, 50, 69, 0.2);
}

.service_list_item {
  position: relative;
  padding: 30px 15px;
  display: flex;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
  transition: var(--transition);
}

.service_list_item .service_reveal_img {
  position: absolute;
  top: 50%;
  inset-inline-start: 27%;
  width: 333px;
  height: 333px;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) rotateX(270deg);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
}



.service_list_item:hover .service_reveal_img,
.service_list_item.active .service_reveal_img {
  opacity: 1;
  transform: translate(-50%, -50%) rotateX(360deg);
}

.service_list_item:hover {
  background-color: var(--color-common-white);
}

.service_list_item .item_content {
  display: flex;
  align-items: start;
  gap: 126px;
  margin-left: auto;
}

.reverse .service_list_item .item_content {
  margin-left: 0;
}

.reverse .service_list_item {
  justify-content: start !important;
}

.service_list_item .item_content .content_inner {
  max-width: 510px;
  width: 100%;
  transition: var(--transition);
}

.reverse .service_list_item .service_reveal_img {
  inset-inline-start: inherit;
  right: 0;
}

.service_list_item .item_content .content_inner .title {
  color: var(--heading-color);
  font-size: 24px;
  margin: 0;
}

.service_list_item .item_content .content_inner .desc {
  color: var(--text-color);
  margin-top: 20px;
}

.item_count {
  display: inline-flex;
  justify-content: center;
  align-items: start;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  width: 50px;
  height: 88px;
  border: 1px solid rgba(33, 50, 69, 0.4);
  border-radius: 60px;
  background-color: var(--color-common-white);
  font-weight: var(--fw-sbold);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;

  color: var(--text-color);
  overflow: hidden;
  transition: var(--transition);
}

.item_count span {
  display: inline-flex;
  line-height: 1;
  margin-left: -13px;
}

.service_list_item:hover .item_count,
.service_list_item.active .item_count {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
  color: var(--color-common-white);
}

.service_list_item:hover .item_count span,
.service_list_item.active .item_count span {
  margin-left: 0;
}

.play_icon {
  mask-image: url(../img/icons/play.svg);
}

/* project */
.project-item {
  background-color: var(--color-common-white);
  border: 1px solid var(--light-color);
  padding: 10px;
  border-radius: 10px;
  min-height: 560px;
  position: relative;
}

.project-item .project-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}



.project-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.project-item:hover .project-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}

.project-item .project-content {
  background-color: var(--color-common-white);
  border: 1px solid var(--light-color);
  padding: 30px 30px 23px 30px;
  width: calc(100% - 30px);
  border-radius: 10px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  transition: var(--transition);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.project-item .title {
  font-size: 24px;
  font-weight: var(--fw-bold);
  width: 100%;
  margin-bottom: 0;
}

.project-item .title a {
  color: var(--heading-color);
}

.operation-theatres-sec .project-slider {
  position: relative;

}

/* ── VIDEO ── */
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  background: var(--heading-color);
  aspect-ratio: 16/6;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(33, 50, 69, 0.88) 0%, rgba(33, 50, 69, 0.05) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
}

.video-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.video-headline {
  font-size: clamp(16px, 3vw, 36px);
  color: var(--color-common-white);
  line-height: 1.2;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: var(--color-common-white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #5bc8f5;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.55);
  }
}

/* ================== REHAB FEATURES INTEGRATION ================== */
.rehab-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.rehab-feature-card {
  background: var(--color-common-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.rehab-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue-color);
  box-shadow: 0 20px 40px rgba(2, 94, 193, 0.1);
}

.rehab-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(2, 94, 193, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-color);
  font-size: 30px;
  transition: all 0.3s ease;
}

.rehab-feature-card:hover .rehab-feature-icon {
  background: var(--blue-color);
  color: var(--color-common-white);
}

.rehab-feature-icon i {
  color: inherit !important;
}

.rehab-feature-text {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}



/* ================== REHAB JOURNEY STATS ================== */
.rehab-stats {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 40px;
  background: var(--color-common-white);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.rehab-stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.rehab-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.rehab-stat-item .stat-number {
  color: var(--blue-color);
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 5px;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rehab-stat-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {

  .rehab-stat-item .stat-number {
    font-size: 32px;
  }

  .rehab-stat-item:last-child,
  .rehab-stat-item:nth-child(even) {
    border-right: none;
  }

  .rehab-stat-item p {
    font-size: 14px;
  }

  .rehab-stats {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .rehab-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .rehab-stat-item {
    padding: 40px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .rehab-stat-item::after {
    display: none;
  }


}



.choose-sec .row {
  --bs-gutter-y: 24px;
  --bs-gutter-x: 24px;

}

.choose-box {
  background-color: var(--color-common-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  padding: 35px 28px;
  z-index: 1;

}

/* Icon */
.choose-box .choose-icon {
  color: var(--blue-color);
  font-size: 65px;
  line-height: 1;
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  transition: all 0.3s ease-in-out;
}

.choose-box .choose-icon i {
  line-height: 1;
  display: inline-flex;
}

/* Title */
.choose-box .title {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--heading-color);
}

/* Description */
.choose-box .desc {
  margin-bottom: 0;
  color: var(--text-color);
}

/* Hover */
.choose-box:hover {
  border-color: var(--blue-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.choose-box:hover .choose-icon {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  color: var(--color-common-white);
  transform: rotateY(360deg);
}

.icon-book {
  mask-image: url(../img/Academic-icon.png);
}

.icon-award {
  mask-image: url(../img/Awards-icon.png);
}

.icon-hospital {
  mask-image: url(../img/hospital-icon.png);
}

/* ========================== MEMBERSHIPS SECTION ================== */
.memberships-sec {
  overflow: hidden;
}

.memberships-sec .row {
  align-items: flex-start;
}

.membership-img img {
  border-radius: 22px;
}


.membership-content {
  padding-left: 0;
}


.membership-content {
  padding-left: 50px;
}



.membership-content .sec-title,
.membership-content .desc {
  margin-bottom: 24px;
}

.membership-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.membership-list .list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.membership-list .list-icon {
  width: 65px;
  height: 65px;
  background-color: var(--light-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-color);
  font-size: 32px;
  flex-shrink: 0;
  transition: var(--transition);
}

.membership-list .list-item:hover .list-icon {
  background-color: var(--blue-color);
  color: var(--color-common-white);
  transform: translateY(-5px);
}

.membership-list .list-text .title {
  margin-bottom: 5px;
}

.membership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.m-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.m-logo img {
  max-height: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.m-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.membership-list .list-icon .icon {
  mask-image: url(../img/svg/check.svg);
}

/* ==================== DIAGNOSTIC SHOWCASE ==================== */

.diag-showcase {
  background-color: var(--light-color);
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diag-card {
  background: var(--color-common-white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(2, 94, 193, 0.06);
}



/* --- Image --- */
.diag-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.diag-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.6s ease;
}

.diag-card:hover .diag-card-img img {
  transform: scale(1.08);
}



/* --- Number Badge --- */
.diag-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: 14px;
  color: var(--blue-color);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(2, 94, 193, 0.12);
  z-index: 2;
  transition: all 0.3s ease;
}

.diag-card:hover .diag-card-num {
  background: var(--blue-color);
  color: var(--color-common-white);
  border-color: var(--blue-color);
  transform: scale(1.05);
}

/* --- Body --- */
.diag-card-body {
  padding: 20px 20px 24px;
}

.diag-card-title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.diag-card:hover .diag-card-title {
  color: var(--blue-color);
}

.diag-card-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-color);
  margin: 0;
}

/* ==================== Service Content (diff-sec) Helper Styles ==================== */
.testimonial_item_2.reverse {
  flex-direction: row-reverse;
}

.cms-con li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  flex-wrap: wrap;
}

.cms-con li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--blue-color);
  mask-image: url(../img/svg/check.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}


.cms-con li strong {
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .testimonial_item_2.reverse {
    flex-direction: column;
  }

}

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

.faq-sec {
  position: relative;
}

.faq-sec .container-lg {
  background-color: var(--bg-color);
  border-radius: 16px;
  overflow: hidden;
}

.accordion {
  max-width: 940px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion_item {
  background-color: var(--bg-color);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 10px;
  padding: 0 30px;
  transition: all 0.3s ease-in-out;
}

.accordion_item.active {
  border-color: var(--blue-color);
  background-color: var(--color-common-white);
}

.accordion_title {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: var(--fw-sbold);
  color: var(--heading-color);
  padding: 27px 45px 27px 0;
  text-align: start;
  background: transparent;
  cursor: pointer;
}

.accordion_title::after {
  content: "+";
  font-family: var(--ff-body);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(89, 97, 107, 0.15);
  background-color: var(--color-common-white);
  color: var(--blue-color);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  inset-inline-end: 0;
  top: 24px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.accordion_title:not(.collapsed) {
  color: var(--blue-color);
}

.accordion_title:not(.collapsed)::after {
  content: "\2212";
  border-color: var(--blue-color);
  background-color: var(--blue-color);
  color: var(--color-common-white);
}

.accordion_content {
  border-top: 1px solid rgba(89, 97, 107, 0.15);
  padding: 30px 0;
}

.faq-left {
  height: 100%;
}

.faq-contact {
  padding: 30px 30px 24px;
  background-color: var(--color-common-white);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 10px;
  max-width: 381px;
  width: 100%;
}

.faq-contact .title {
  margin-bottom: 26px;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.faq-contact-list {
  display: flex;
  align-items: center;
}

.faq-contact-list li {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.faq-contact-list li:not(:first-child) {
  margin-inline-start: -10px;
}

.faq-contact-list li.tj-el-icon {
  background-color: var(--blue-color);
  border: 2px solid var(--color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-common-white);
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}

.faq-contact-list li img {
  border: 2px solid var(--color-common-white);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.faq-contact-item {
  padding: 24px 20px;
  background-color: var(--bg-color);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-contact-item:hover .faq-contact-list li.tj-el-icon {
  transform: rotateY(360deg);
}

.faq-contact-number-wrapper .desc {
  font-size: 14px;
  line-height: 1.57;
  margin-bottom: 2px;
}

.faq-contact-number {
  margin-bottom: 0;
  position: relative;
}

.faq-contact-number a {
  color: inherit;
}

.faq-contact-number::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: transform 0.3s ease-in-out;
  transform: scaleX(0);
  transform-origin: right;
}

.faq-contact-number:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.accordion_2 .accordion_item {
  padding: 0;
  background-color: var(--color-common-white);
}

.accordion_2 .accordion_item.active {
  border-color: rgba(89, 97, 107, 0.15);
}

.accordion_2 .accordion_title {
  padding: 27px 70px 27px 30px;
}

.accordion_2 .accordion_title::after {
  inset-inline-end: 30px;
  border-color: rgba(89, 97, 107, 0.15);
  background-color: var(--bg-color);
}

.accordion_2 .accordion_title:not(.collapsed)::after {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
}

.accordion_2 .accordion_content {
  padding: 30px;
}

.faq-sec .faq-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}

.faq-sec .primary-btn {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Responsive FAQ section */
@media (max-width: 1730px) {
  .faq-sec {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991px) {
  .faq-sec .row {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .faq-sec .primary-btn {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}


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

.faq-sec {
  position: relative;
}

.faq-sec .container-lg {
  background-color: var(--bg-color);
  border-radius: 16px;
  overflow: hidden;
}

.accordion {
  max-width: 940px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion_item {
  background-color: var(--bg-color);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 10px;
  padding: 0 30px;
  transition: all 0.3s ease-in-out;
}

.accordion_item.active {
  border-color: var(--blue-color);
  background-color: var(--color-common-white);
}

.accordion_title {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: var(--fw-sbold);
  color: var(--heading-color);
  padding: 27px 45px 27px 0;
  text-align: start;
  background: transparent;
  cursor: pointer;
}

.accordion_title::after {
  content: "+";
  font-family: var(--ff-body);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(89, 97, 107, 0.15);
  background-color: var(--color-common-white);
  color: var(--blue-color);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  inset-inline-end: 0;
  top: 24px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.accordion_title:not(.collapsed) {
  color: var(--blue-color);
}

.accordion_title:not(.collapsed)::after {
  content: "\2212";
  border-color: var(--blue-color);
  background-color: var(--blue-color);
  color: var(--color-common-white);
}

.accordion_content {
  border-top: 1px solid rgba(89, 97, 107, 0.15);
  padding: 30px 0;
}

.faq-left {
  height: 100%;
}

.faq-contact {
  padding: 30px 30px 24px;
  background-color: var(--color-common-white);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 10px;
  max-width: 381px;
  width: 100%;
}

.faq-contact .title {
  margin-bottom: 26px;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.faq-contact-list {
  display: flex;
  align-items: center;
}

.faq-contact-list li {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.faq-contact-list li:not(:first-child) {
  margin-inline-start: -10px;
}

.faq-contact-list li.tj-el-icon {
  background-color: var(--blue-color);
  border: 2px solid var(--color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-common-white);
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}

.faq-contact-list li img {
  border: 2px solid var(--color-common-white);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.faq-contact-item {
  padding: 24px 20px;
  background-color: var(--bg-color);
  border: 1px solid rgba(89, 97, 107, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-contact-item:hover .faq-contact-list li.tj-el-icon {
  transform: rotateY(360deg);
}

.faq-contact-number-wrapper .desc {
  font-size: 14px;
  line-height: 1.57;
  margin-bottom: 2px;
}

.faq-contact-number {
  margin-bottom: 0;
  position: relative;
}

.faq-contact-number a {
  color: inherit;
}

.faq-contact-number::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: transform 0.3s ease-in-out;
  transform: scaleX(0);
  transform-origin: right;
}

.faq-contact-number:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.accordion_2 .accordion_item {
  padding: 0;
  background-color: var(--color-common-white);
}

.accordion_2 .accordion_item.active {
  border-color: rgba(89, 97, 107, 0.15);
}

.accordion_2 .accordion_title {
  padding: 27px 70px 27px 30px;
}

.accordion_2 .accordion_title::after {
  inset-inline-end: 30px;
  border-color: rgba(89, 97, 107, 0.15);
  background-color: var(--bg-color);
}

.accordion_2 .accordion_title:not(.collapsed)::after {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
}

.accordion_2 .accordion_content {
  padding: 30px;
}

.faq-sec .faq-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}

.faq-sec .primary-btn {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Responsive FAQ section */
@media (max-width: 1730px) {
  .faq-sec {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991px) {
  .faq-sec .row {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .faq-sec .primary-btn {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}

/* ===============================
   Minimal Rights Grid (Patient Rights & Responsibilities)
================================ */
.rights-minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.right-minimal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.right-minimal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.minimal-subtitle {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  font-weight: 500;
}

.minimal-icon {
  margin-bottom: 20px;
}

.minimal-icon i {
  font-size: 3.5rem;
  color: var(--blue-color);
  line-height: 1;
}

.minimal-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: inherit;
  width: 100%;
}

.minimal-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  border: none;
  margin: 0 0 25px 0;
  opacity: 1;
}

.minimal-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.video_btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  color: white;
  font-size: 24px;
}

.video-tagline {
  font-size: 1.2rem;
  font-weight: 500;
}

/* MISS Condition Cards */
.miss-condition-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(0, 83, 170, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.miss-condition-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-color) 0%, #014da4 100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.miss-condition-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 83, 170, 0.12);
  border-color: transparent;
}

.miss-condition-card:hover::after {
  opacity: 1;
}

.miss-condition-card .card-icon {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  background: #F0F6FC;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.miss-condition-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.miss-condition-card .card-icon i {
  font-size: 50px;
  color: var(--blue-color);
  transition: all 0.4s ease;
}

.miss-condition-card:hover .card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.miss-condition-card:hover .card-icon i {
  color: #fff;
  transform: scale(1.1);
}

.miss-condition-card .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  transition: all 0.4s ease;
  line-height: 1.3;
}

.miss-condition-card:hover .title {
  color: #fff;
}

.miss-condition-card .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
  transition: all 0.4s ease;
  opacity: 0.8;
}

.miss-condition-card:hover .desc {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* Surgery Process Section */
.surgery-process-sec {
  background-color: var(--color-common-white);
}

.process-img-wrap {
  position: relative;
  padding: 15px;
}

.process-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 5px solid var(--blue-color);
  border-left: 5px solid var(--blue-color);
  border-radius: 20px 0 0 0;
}

.process-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom: 5px solid var(--blue-color);
  border-right: 5px solid var(--blue-color);
  border-radius: 0 0 20px 0;
}

.process-content {
  padding: 24px 30px;
  background: var(--bg-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bg-color);
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

/* MISS Benefits Table Section */
.benefits-table-sec {
  background-color: var(--color-common-white);
}

.stavya-table-wrapper {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(2, 94, 193, 0.08);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
  height: 5px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--blue-color);
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.stavya-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.stavya-table thead tr {
  background: linear-gradient(135deg, var(--blue-color) 0%, #014da4 100%);
}

.stavya-table th {
  padding: 24px 30px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

.stavya-table td {
  padding: 22px 30px;
  color: var(--text-color);
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stavya-table tr:last-child td {
  border-bottom: none;
}

.stavya-table tbody tr {
  transition: all 0.3s ease;
}

.stavya-table tbody tr:hover {
  background-color: rgba(2, 94, 193, 0.02);
}

.stavya-table tbody tr:hover td:first-child {
  color: var(--blue-color);
  font-weight: 600;
  padding-left: 35px;
}

.benefit-feature {
  color: var(--heading-color);
  font-weight: 700;
}

.benefit-help {
  font-style: italic;
  opacity: 0.9;
}

@media (max-width: 767px) {

  .stavya-table th,
  .stavya-table td {
    padding: 15px 20px;
    min-width: 300px;
  }

  .stavya-table th:first-child,
  .stavya-table td:first-child {
    min-width: 200px;
  }

  .stavya-table th {
    font-size: 16px;
  }

  .stavya-table td {
    font-size: 14px;
  }
}

/* Why Choose Stavya Section Refinements */
.benefits-table-sec {
  background-color: #f4f9f8;
}

.why-sec .video-wrapper {
  aspect-ratio: 16 / 7;
}

.why-sec .why-content {
  margin-bottom: 40px;
}


/* Eligibility Section Styles */
.eligibility-sec {
  position: relative;
  overflow: hidden;
}

.eligibility-img-wrap {
  position: relative;
  z-index: 1;
}

.eligibility-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: var(--blue-color);
  opacity: 0.05;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-30%, -30%);
}

.eligibility-content .intro-text {
  font-size: 18px;
  color: var(--blue-color);
  line-height: 1.6;
}

.eligibility-content p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 16px;
}

.eligibility-content .final-note {
  font-weight: 600;
  color: var(--heading-color);
  padding: 20px;
  background: rgba(2, 94, 193, 0.05);
  border-left: 4px solid var(--blue-color);
  border-radius: 0 10px 10px 0;
}

@media (max-width: 991px) {
  .eligibility-img-wrap {
    margin-bottom: 40px;
  }
}

/* Surgical Process Section Refinements */


.surgery-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.surgery-process-grid .process-box {
  background: #fff;
  padding: 40px 15px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eef3f2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  height: 100%;
}

.surgery-process-grid .process-box:hover {
  background: var(--blue-color);
  border-color: var(--blue-color);

}

.surgery-process-grid .process-box .step-num {
  font-size: 42px;
  font-weight: 800;
  color: #eef3f2;
  margin-bottom: 20px;
  line-height: 1;
  transition: all 0.5s ease;
  font-family: var(--heading-font);
}

.surgery-process-grid .process-box:hover .step-num {
  color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.surgery-process-grid .process-box p {
  color: var(--heading-color);
  transition: all 0.5s ease;
}

.surgery-process-grid .process-box:hover p {
  color: #fff;
}

.surgery-img-wrap .premium-img {
  border-radius: 22px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .surgery-process-grid {

    gap: 15px;
  }

  .surgery-process-grid .process-box {
    padding: 20px 15px;
  }

  .surgery-img-wrap .premium-img {
    margin-bottom: 30px;
  }
}

/* ================== STAVYA HIGHLIGHTS GRID ================== */
.stavya-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.highlight-item {
  background: #ffffff;
  border: 1px solid rgba(2, 94, 193, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.highlight-item:hover {
  transform: translateY(-5px);
  border-color: var(--blue-color);
  box-shadow: 0 15px 40px rgba(2, 94, 193, 0.08);
}

.highlight-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(2, 94, 193, 0.04);
  line-height: 1;
  font-family: var(--heading-font);
  transition: all 0.4s ease;
}

.highlight-item:hover .highlight-number {
  color: rgba(2, 94, 193, 0.1);
  transform: scale(1.1);
}

.highlight-text {
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
  z-index: 2;
}



@media (max-width: 767px) {
  .stavya-highlights-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .highlight-item {
    padding: 30px 20px;
    min-height: 160px;
  }

  .highlight-number {
    font-size: 40px;
  }
}

.small.common-sec .blog-item .blog-thumb {
  max-height: 270px !important;
  height: 270px !important;
}

/* Innovation & Research Page Styles */
.hover-shadow:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-5px);
}

.transition {
  transition: all 0.3s ease;
}

.focus-card:hover {
  box-shadow: 0 15px 40px rgba(11, 34, 57, 0.1) !important;
  transform: translateY(-8px) !important;
}

.focus-card:hover .icon-wrap {
  background-color: #0b2239 !important;
  color: #fff !important;
}

.tech-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.tech-card:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* Timeline specific styles */
.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 24px);
  /* Connects to next dot in grid */
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Hide line after the last item */
.row>div:last-child .timeline-dot::after {
  display: none;
}

@media (max-width: 767px) {
  .timeline-line {
    display: none !important;
  }

  .timeline-dot::after {
    display: none;
  }

  .timeline-dot {
    margin-bottom: 15px !important;
  }

  .timeline-content {
    margin-bottom: 30px;
  }
}

/* Innovation & Research Page Extracted Styles */

/* Research Numbers Area */
.research-numbers-area {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.research-numbers-row {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.research-number-col {
  margin-bottom: 1.5rem;
}

.research-number-val {
  color: rgba(11, 34, 57, 1);
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 3.5rem;
}

.research-number-label {
  letter-spacing: 1px;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 768px) {
  .research-number-col {
    margin-bottom: 0;
  }
}

/* Focus Cards Area */
.research-focus-sec {
  padding: 80px 0;
}

.research-focus-head-row {
  justify-content: center;
  margin-bottom: 3rem;
}

.research-focus-head-row .sec-head {
  text-align: center;
}

.research-focus-cards-row {
  justify-content: center;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.focus-card {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  height: 100%;
}

.focus-card .icon-wrap {
  width: 70px;
  height: 70px;
  background-color: rgba(11, 34, 57, 0.05);
  color: #0b2239;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.focus-card .icon-wrap img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.focus-card .title {
  font-size: 20px;
  margin-bottom: 1rem;
}

.focus-card .text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Clinical Research Area */
.clinical-research-sec {
  overflow: hidden;
}

.clinical-research-row {
  align-items: center;
}

.clinical-img-col {
  margin-bottom: 3rem;
}

.clinical-collage-row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.clinical-img-sm,
.clinical-img-lg {
  border-radius: 0.5rem;
}

.clinical-img-sm {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.clinical-img-lg {
  object-fit: cover;
  height: 260px;
  width: 100%;
}

.clinical-collage-col-2 {
  padding-top: 1.5rem;
}

.clinical-sec-head {
  margin-bottom: 1.5rem;
}

.clinical-sec-head .sec-title {
  margin-bottom: 1rem;
}

.sec-text-lead {
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.5);
}

.clinical-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.clinical-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.clinical-list-item:last-child {
  margin-bottom: 0;
}

.clinical-list-icon {
  min-width: 32px;
  height: 32px;
  background-color: #e6f0fa;
  color: #0b2239;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.clinical-list-text {
  font-weight: 500;
  color: #212529;
}

@media (min-width: 992px) {
  .clinical-img-col {
    margin-bottom: 0;
    padding-right: 3rem;
  }

  .clinical-text-col {
    padding-left: 1.5rem;
  }
}

/* Innovation Mission Statement */
.innovation-mission-sec {

  background-color: #f8fbff;
}

.innovation-mission-row {
  align-items: center;
}

.innovation-mission-img-col {
  margin-bottom: 2rem;
}

.innovation-mission-img-wrap img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.innovation-mission-text-col {
  padding-left: 15px;
}

.innovation-mission-content .sec-title {
  margin-bottom: 1.5rem;
}

.innovation-mission-content .sec-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.innovation-mission-content .sec-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .innovation-mission-img-col {
    margin-bottom: 0;
    padding-right: 30px;
  }

  .innovation-mission-text-col {
    padding-left: 30px;
  }
}

/* =========================================
   Pain Procedures Page Styles
========================================= */

/* Introduction Section */


.pain-intro-sec .about-img img {
  margin-bottom: 0;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pain-intro-sec .about-img {
  transform: scaleX(-1);
  aspect-ratio: 4/3;
}

/* Conditions Treated Section */
.pain-conditions-sec {
  background-color: #F8FBFF;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pain-conditions-img {
  margin-bottom: 0;
}

.pain-conditions-img img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pain-conditions-list ul {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.pain-conditions-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--heading-color);
}

.pain-conditions-list li .icon {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--blue-color);
  font-size: 18px;
}

/* Common Pain Management Procedures */
.pain-management-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pain-management-head {
  max-width: 800px;
  margin-bottom: 50px;
}

.pain-management-row {
  row-gap: 30px;
}

.pain-mgmt-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pain-mgmt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pain-mgmt-icon {
  width: 60px;
  height: 60px;
  background: rgba(2, 94, 193, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.pain-mgmt-icon img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
}

.pain-mgmt-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-color);
}

.pain-mgmt-card .title {
  font-size: 20px;
  margin-bottom: 15px;
}

.pain-mgmt-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.process-step img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.process-item.active .process-content .title,
.process-item.active .process-content .desc,
.process-item:hover .process-content .title,
.process-item:hover .process-content .desc {
  color: #fff;
}

/* Why Patients Prefer */
.pain-why-choose-sec {
  padding-top: 0;
  padding-bottom: 80px;
}

.pain-why-choose-head {
  margin-bottom: 0;
}

.pain-why-choose-head .sec-title,
.pain-why-choose-head .desc {
  color: #fff;
}

.pain-why-choose-head .desc {
  opacity: 0.9;
}

.about-sec .testimonial_thumb,
.about-sec .testimonial_thumb img {
  max-width: 100%;
  width: 100%;
}