/* ==================== Import Fonts ==================== */

@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

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



@font-face {

  font-family: 'Blauer Nue';

  src: url('../fonts/Blauer-Nue-Semibold-iF6626350c8d55c.otf') format('opentype');

  font-weight: 600;

  font-style: normal;

}



/* ====================== ROOT ============================= */

:root {

  --primary-color: #006A67;

  --primary-light: #E6F1F0;

  --primary-dark: #132423;

  --secondary-color: #003161;

  --light-more: #F5F9F9;

  --white: #ffffff;

  --black: #000000;

  --text-color: #5B605F;

  --text-light: #454848;

  --text-dark: #202828;

  --border-radius: 12px;

  --transition: all 0.3s ease;



  --container-width: 1320px;

}



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



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth !important;

  font-size: 1rem;

}



body {

  width: 100%;

  background-color: var(--white);

  font-family: "Rethink Sans", sans-serif;

  font-size: 16px;

  font-weight: normal;

  line-height: 1.5;

  color: var(--text-color);

  position: relative;

}



img {

  display: block;

  max-width: 100%;

  max-height: 100%;

  height: auto;

  width: auto;

}



ul,

ol {

  list-style: none;

  padding: 0;

  margin: 0;

}



a {

  display: inline-block;

  color: inherit;

  font-size: inherit;

  text-decoration: none;

  transition: var(--transition);

}



button,

input,

textarea {

  border: none;

  outline: none;

  resize: none;

  background: transparent;

  transition: all 0.3s ease;

}



.form-control:focus,

input:focus,

textarea:focus {

  outline: none;

  box-shadow: none;

}



/* ==================== Common Layout ==================== */



.wrapper {

  min-height: 100vh;

  width: 100%;

  position: relative;

  overflow: hidden;

}



.common-sec {

  padding-block: 100px 100px;

}



.container {

  max-width: 1320px;

  padding: 0;

  margin: 0 auto;

}



.container-fluid {

  max-width: 1720px;

  padding: 0;

  margin: 0 auto;

}



/* ==================== 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);

}



.fb-icon {

  mask-image: url(../img/svg/facebook.svg);

}



.tw-icon {

  mask-image: url(../img/svg/twitter.svg);

}



.insta-icon {

  mask-image: url(../img/svg/instagram.svg);

}

.linkedin-icon {

  mask-image: url(../img/svg/linkedin.svg);

}

.yt-icon {

  mask-image: url(../img/svg/youtube.svg);

}

.pin-icon {

  mask-image: url(../img/svg/pinterest.svg);

}



.vector-arrow {

  mask-image: url(../img/svg/arrow-down-white.svg);

}



.arrow-right-icon {

  mask-image: url(../img/svg/arrow.svg);

}



.long-arrow {

  mask-image: url(../img/svg/long-arrow.svg);

}



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



.overflow-hidden {

  overflow: hidden;

  height: 100vh;

}


.shadow-overlay {

  position: fixed;

  inset: 0;

  height: 100vh;

  background: rgba(0, 0, 0, 0.6);

  opacity: 0;

  visibility: hidden;

  transition: var(--transition);

  z-index: 1000;

}



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;

}



.pop,

.smooth {

  transition: var(--transition);

}



.pop:hover {

  transform: scale(1.05);

}



/* ==================== Typography ==================== */



h1,

h2,

h3,

h4,

h5,

h6 {



  line-height: 1.35;

}



p {

  color: var(--text-color);

  font-size: 16px;

  line-height: 1.625;

  font-weight: 400;

}



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



.hero-title {

  font-size: 54px;

  font-weight: 600;

  margin-bottom: 5px;

  color: var(--secondary-color);

}







.sec-title {

  font-size: 40px;

  font-weight: 600;

  margin-bottom: 8px;

  color: var(--secondary-color);

}



.sec-title-2 {

  font-size: 32px;

  font-weight: 600;

  margin-bottom: 8px;

  color: var(--secondary-color);

  line-height: 1;

}



.sub-title {

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 12px;

  font-weight: 600;

  color: var(--text-light);

  text-transform: uppercase;

  letter-spacing: 0.113em;

  line-height: 1;

  margin-bottom: 6px;

  opacity: 0.6;

}



.sub-title::before,

.sub-title::after {

  content: "";

  display: block;

  width: 24px;

  height: 1px;

  background-color: currentColor;

}





/* =======================BTN========================== */

.btn {

  position: relative;

  display: inline-flex;

  align-items: center;

  border-radius: 100px;

  padding: 14px 28px;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.113em;

  cursor: pointer;

  transition: color 0.35s ease;

  border: none;

  outline: none;

  text-align: center;

  user-select: none;

  z-index: 1;

  gap: 10px;

  overflow: hidden;

}

.btn br{

  display: none;

}

/* Sliding fill pseudo-element */

.btn::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  z-index: -1;

  transform: scaleX(0);

  transform-origin: left center;

  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);

}



.btn:hover::before {

  transform: scaleX(1);

}



.btn .icon {

  font-size: 14px;

  transition: transform 0.3s ease;

}



.btn:hover .icon {

  transform: translateX(4px);

}



/* ── btn-outline ── */

.btn-outline {

  border: 1px solid var(--secondary-color);

  color: var(--secondary-color);

  background-color: transparent;

}



.btn-outline::before {

  background-color: var(--secondary-color);

}



.btn-outline:hover {

  color: var(--white);

  border: 1px solid var(--secondary-color);



}



/* ── btn-blue ── */

.btn-blue {

  background-color: var(--secondary-color);

  color: var(--white);

}



.btn-blue::before {

  background-color: var(--primary-color);

}



.btn-blue:hover {

  background-color: var(--secondary-color);



  color: var(--white);

}



/* back to top icon */



.arrowTop-icon {

  mask-image: url(../img/svg/arrow-up.svg);

}



.back-to-top-btn {

  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 50px;

  height: 50px;

  background: var(--primary-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 4px 15px rgba(201, 163, 98, 0.3);

  z-index: 1000;

  overflow: hidden;

}



.arrowTop-icon {

  color: var(--white);

  font-size: 30px;

}



.back-to-top-btn.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.back-to-top-btn:hover {

  background: var(--secondary-color);

  box-shadow: 0 6px 20px rgba(201, 163, 98, 0.4);

}



.back-to-top-btn:active {

  transform: translateY(0);

}



.back-to-top-btn:hover .icon {

  animation: arrowSlideUp 0.6s ease-in-out;

}



@keyframes arrowSlideUp {

  0% {

    transform: translateY(0);

    opacity: 1;

  }



  50% {

    transform: translateY(-30px);

    opacity: 0;

  }



  51% {

    transform: translateY(30px);

    opacity: 0;

  }



  100% {

    transform: translateY(0);

    opacity: 1;

  }

}



/* slick-dot */



/* Slick dots pill style */

.slick-dots {

  text-align: center;

  margin-top: 8px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

}



.slick-dots li {

  display: block;

  margin: 0;

  padding: 0;

  width: auto;

  height: auto;

}



.slick-dots li button {

  width: 12px;

  height: 6px;

  border-radius: 100px;

  background: var(--secondary-color);

  padding: 0;

  font-size: 0;

  opacity: .2;

  transition: all 0.3s ease;

  cursor: pointer;

}



.slick-dots li.slick-active button {

  opacity: 1;

  width: 24px;

}



/* slick-arrow */

.slick-prev,

.slick-next {

  font-size: 0;

  position: absolute;

  width: 40px;

  height: 50px;

  border: 1px solid var(--primary-color);

  background: none;

  bottom: -100px;

  transition: var(--transition);

}



.slick-prev:hover,

.slick-next:hover {

  opacity: 0.5;

}



.slick-next {

  left: 50px;

}



.slick-prev::before,

.slick-next::before {

  content: "";

  position: absolute;

  display: block;

  width: 6px;

  height: 14px;

  background: url("../img/svg/chevron-right.svg") no-repeat center center;

  background-size: contain;

  top: 50%;

  left: 50%;

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

}



.slick-prev::before {

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

  /* flip for left arrow */

}



/* slick slider height 100% */

.slider-wrapper,

.slick-slider,

.slick-list,

.slick-track,

.slick-slide>div {

  height: 100%;

}







/* ====================  header style ==================== */

.header {

  background-color: #fcfaf8;

  padding: 18px 0;

}



.sticky-header .header-nav {

  position: fixed;

  padding: 12px 0;

  top: 0;

  left: 0;

  right: 0;

  z-index: 999;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  transform: translateY(-100%);

  animation: slideDown 0.8s ease forwards;

}



@keyframes slideDown {

  from {

    transform: translateY(-100%);

  }



  to {

    transform: translateY(0);

  }

}



.header-nav .logo-img {

  transition: all 0.4s ease;

  /* Smooth logo resize */

}



.sticky-header .header-nav .logo-img {

  width: 160px;

  /* Slightly smaller for premium feel */

}



/* Header Styles */

.header-top {

  background-color: var(--secondary-color);

  padding: 10px 0;

}



.header-top .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.social-list ul {

  display: flex;

  gap: 20px;

  color: var(--white);

  font-size: 20px;

  line-height: 0;

}



.social-list ul li a {

  color: var(--white);

}



.social-list ul li a:hover {

  color: var(--primary-color);

}



.lang-selector {

  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--white);

  font-size: 12px;

  text-transform: uppercase;

  font-family: "Blauer Nue", sans-serif;

}



.lang-flag {

  width: 16px;

  height: 16px;

  border-radius: 50%;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

}



.lang-flag img {

  width: 30px;

  /* Zoomed to fit circle */

  max-width: none;

}



/* Navigation Styles */

.header-nav {

  background-color: var(--white);

  padding: 8px 0;

  display: flex;

  align-items: center;

}



.header-nav .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.logo-section {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 5px;

}



.logo-img {

  width: 230px;

  height: auto;

}



.tagline {

  background-color: var(--primary-color);

  padding: 4px;

  width: 230px;

  display: flex;

  justify-content: center;

  align-items: center;

}



.tagline p {

  color: var(--white);

  font-size: 8px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.113em;

  margin: 0;

  line-height: 0;

  padding: 3px 0;

}



.nav-right {

  display: flex;

  align-items: center;

  gap: 30px;

}



.main-nav ul {

  display: flex;

  align-items: center;

  gap: 25px;

}



.main-nav ul>li {

  position: relative;

}



.main-nav ul li a {

  font-size: 16px;

  color: #343434;

  padding: 8px 0;

  cursor: pointer;

  position: relative;

  font-weight: 400;

  z-index: 1;

  white-space: nowrap;

}



.main-nav ul li a:hover,

.main-nav ul li a.active {

  color: var(--primary-color);

  font-weight: 500;

}



.main-nav ul li .vector-arrow {

  transform: translateY(1px);

  font-size: 12px;

}



.main-nav ul li a::before {

  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

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

  width: 110%;

  height: 20%;

  background-color: rgb(0, 106, 103, .1);

  opacity: 0;

  z-index: -1;

  transition: var(--transition);

}



.main-nav ul li:hover>a::before,

.main-nav ul li a.active::before {

  opacity: 1;

}



.nav-actions {

  display: flex;

  align-items: center;

  gap: 10px;

}



.btn-secondary {

  background-color: var(--primary-light);

  color: var(--primary-color);

}



.btn-secondary::before {

  background-color: var(--primary-color);

}



.btn-secondary:hover {

  background-color: var(--primary-light);

  color: var(--white);

}



.btn-primary {

  background-color: var(--primary-color);

  color: var(--white);

}



.btn-primary:hover {

  background-color: var(--primary-color);

  color: var(--white);

}



.btn-primary::before {

  background-color: var(--secondary-color);

}







/* ==================== Mobile Menu Toggle Button ==================== */



.menu-toggle-btn {

  display: none;

  /* shown only on mobile via responsive.css */

  position: relative;

  width: 110px;

  height: 38px;

  border-radius: 5px;

  border: none;

  background-color: var(--secondary-color);

  color: var(--white);

  font-size: 12px;

  font-family: "Rethink Sans", sans-serif;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  cursor: pointer;

  overflow: hidden;

  transition: all 0.5s ease-in-out;

  flex-shrink: 0;

}



.menu-toggle-btn:hover {

  box-shadow: 0 0 20px 0px rgba(0, 49, 97, 0.3);

}



.menu-toggle-btn .menu-icon-wrap {

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  justify-content: center;

  width: 45px;

  height: 38px;

  transition: all 0.5s ease-in-out;

  color: var(--white);

}



.menu-toggle-btn .menu-icon-wrap .menu-icon {

  -webkit-mask-image: url(../img/svg/menu.svg);

  mask-image: url(../img/svg/menu.svg);

  background-color: var(--white);

  font-size: 22px;

}



.menu-toggle-btn .menu-text {

  position: absolute;

  right: 20px;

  transition: opacity 0.5s ease;

}



.menu-toggle-btn:hover .menu-icon-wrap {

  width: 110px;

}



.menu-toggle-btn:hover .menu-text {

  opacity: 0;

}



.menu-toggle-btn:focus {

  outline: none;

}



.menu-toggle-btn:active .menu-icon-wrap {

  transform: translateY(-50%) scale(0.85);

}



/* Open state – icon becomes primary-color accent and switches to close icon */

body.nav-open .menu-toggle-btn {

  background-color: var(--primary-color);

}



body.nav-open .menu-toggle-btn .menu-icon-wrap .menu-icon {

  -webkit-mask-image: url(../img/svg/close.svg);

  mask-image: url(../img/svg/close.svg);

}







/* Hero Section */

.hero-sec {

  position: relative;

  width: 100%;

  min-height: 790px;

  overflow: hidden;

}



.hero-bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;

  z-index: -2;

}



.hero-overlay-rect {

  position: absolute;

  top: 0px;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(219, 234, 233, 0.3);

  /* #dbeae94d */

  z-index: -1;

}



.hero-shape {

  position: absolute;

  top: 204px;

  left: -353px;

  width: 945px;

  height: 380px;

  transform: rotate(-90deg);

  z-index: 0;

}



.hero-container {

  position: relative;

  z-index: 1;

  max-width: var(--container-width);

  margin: 0 auto;

  height: 100%;

  display: flex;

  align-items: center;

  padding-top: 134px;

  /* Offset from top */

}



.hero-content {

  display: flex;

  gap: 40px;

  width: 100%;

}



.hero-text-block {

  max-width: 760px;

}



.hero-text-block p {

  color: var(--secondary-color);

}



.hero-actions {

  margin-top: 30px;

  display: flex;

  align-items: center;

  gap: 10px;

}



.hero-experience {

  margin-top: 50px;

  display: flex;

  gap: 15px;

  align-items: center;



}



.hero-experience ul {

  display: flex;

  align-items: center;

}



.hero-experience ul li {

  border: 2px solid var(--white);

  height: 60px;

  width: 60px;

  border-radius: 50%;

  overflow: hidden;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: var(--secondary-color);

  background-color: var(--white);

}



.hero-experience ul li:not(:first-child) {

  margin-left: -10px;

}



.hero-experience ul li img {

  height: 100%;

  width: 100%;

  object-fit: cover;

  object-position: center top;

}









.review-title {

  font-size: 18px;

  font-weight: 600;

  color: var(--secondary-color);

  margin: 0;

}



.review-sub {

  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 14px;

  color: rgba(0, 49, 97, 0.7);

  /* #003161b2 */

}



.review-sub span {

  position: relative;

}



.review-sub span:not(:last-child)::after {

  content: "";

  width: 4px;

  height: 4px;

  background-color: rgba(0, 49, 97, 0.3);

  position: absolute;

  top: 50%;

  right: -12px;

  transform: translateY(-50%);

  border-radius: 50%;

}





.hero-video-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 150px;

  height: 150px;

  padding: 20px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(5px);

  cursor: pointer;

  position: relative;

  transition: all 0.4s ease;

}



.hero-video-btn::before,

.hero-video-btn::after {

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.3);

  border-radius: 50%;

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

  z-index: -1;

  animation: pulseRipple 2.5s linear infinite;

}



.hero-video-btn::after {

  animation-delay: 1.15s;

}



.hero-video-btn:hover {

  background: rgba(255, 255, 255, 0.4);

  transform: scale(1.05);

}



.hero-video-btn:hover img {

  transform: scale(1.1);

}



@keyframes pulseRipple {

  0% {

    width: 100%;

    height: 100%;

    opacity: 0.8;

  }



  100% {

    width: 200%;

    height: 200%;

    opacity: 0;

  }

}



.hero-video-btn img {

  width: 100%;

  height: 100%;

}



.block-video {

  flex: 1;

  display: flex;

  align-items: center;

  justify-content: center;

}







/* =======================features section ======================= */

/* Features Section */

.features-section {

  position: relative;

  z-index: 10;

  margin-top: -144px;

  /* Overlap with hero */

  padding-bottom: 100px;

}



.features-section .features-container {

  box-shadow: 0px 4px 40px rgba(0, 49, 97, 0.05);

}



.mb-50 {

  margin-bottom: 50px;

}



.mt-50 {

  margin-top: 50px;

}



.features-container {

  display: flex;

  background: var(--white);

  box-shadow: 0px 2px 28px 0px rgba(0, 0, 0, 0.04);

  border-radius: 22px;

  padding: 40px 0;

  width: 100%;

  overflow: hidden;

}



/* ==================== Custom Services Section (Contact Page) ==================== */

.services-features-sec {

  background-color: var(--white);

}



.services-features-sec .sec-head {

  max-width: 625px;

  margin-left: auto;

  margin-right: auto;

}



.services-features-sec .feature-card {

  background-color: var(--white);

  border: 1px solid #E6F1F0;

  border-radius: 20px;

  padding: 40px;

  box-shadow: 0px 10px 10px 0px #00000005;

  transition: all 0.3s ease;

  height: 100%;

}









.feature-card {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  flex: 1;

  padding: 0 60px;

  position: relative;

}



.feature-card:not(:first-child)::before {

  content: "";

  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);

  width: 1px;

  height: 100%;

  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);

}





.feature-icon {

  width: 46px;

  height: 46px;

  margin-bottom: 30px;

}



.feature-icon img {

  object-fit: contain;

  width: 100%;

  height: 100%;



}







.feature-title {

  font-size: 22px;

  font-weight: 600;

  color: var(--text-dark);

  margin-bottom: 10px;

}



.feature-content p {

  font-size: 16px;

  color: var(--text-color);

  line-height: 26px;

  margin-bottom: 18px;

}



.feature-card .btn {

  margin-top: auto;





}



.text-btn {

  padding: 0 !important;

  color: var(--primary-color);

  border-radius: 0;

  padding-right: 10px !important;

}



.text-btn:hover {

  color: var(--secondary-color);

  transform: none;

  box-shadow: none;

}



.text-btn:hover .icon {

  transform: translateX(5px);

}



/* =======================team section ======================= */



.our-team {

  position: relative;

  background-color: var(--light-more);

}



.team-card {

  padding: 0 8px;

}



.team-slider .slick-list {

  margin: 0 -8px;

}



.team-card .box {

  height: 260px;

  border: 1px solid var(--white);

  border-radius: 12px;

  padding: 9px;

  position: relative;

  background-image: linear-gradient(180deg, rgba(230, 241, 240, 0) 0%, #e6f1f0 100%);

  display: flex !important;

  flex-direction: column;

  justify-content: flex-end;

}



.team-img {

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  max-height: 95%;

  padding: 0 7px;

  width: auto;

}



.team-details {

  position: relative;

  z-index: 2;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(5px);

  border-radius: 8px;

  padding: 16px 14px;

}



.team-details .team-name {

  font-size: 15px;

  margin-bottom: 5px;

  color: var(--secondary-color);

  line-height: 1;

}



.team-details .team-role {

  font-size: 14px;

  color: var(--text-color);

  line-height: 1.2;

}



.sec-title span {

  position: relative;

  z-index: 1;

}



.sec-title span::before {

  content: "";

  position: absolute;

  left: 50%;

  bottom: 0px;

  width: 105%;

  height: .75em;

  background-color: #E6F1F0;

  z-index: -1;

  transform: translate(-50%);

}



.container.bg {

  position: relative;

}



.container.bg:has(.features-section)::before {

  content: "";

  position: absolute;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  z-index: -4;

  width: 100vw;

  height: 100%;

  background-color: var(--light-more);

}



.our-team .right {

  padding-left: 40px;

}









/* Stats Section */

.stats-container {

  display: flex;

  justify-content: center;

  gap: 30px;

  margin-top: 65px;

}



.stat-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  width: 240px;

  position: relative;

}



.stat-number {

  display: flex;

  font-size: 110px;

  font-weight: 800;

  color: rgba(0, 49, 97, 0.2);

  line-height: 1;

}



.stat-label-box {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  background: rgba(245, 249, 249, 0.6);

  padding: 2px 10px;

  border-radius: 4px;

}



.stat-label {

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  color: var(--secondary-color);

}



/* ================specialists-section=================== */

.specialists-section {

  background-color: var(--light-more);

}



.specialists-section .sec-title {

  margin-bottom: 30px;

}



.specialists-img-container {

  border-radius: 22px;

  overflow: hidden;

  height: 280px;

}



.specialists-img-container img {

  height: 100%;

  width: 100%;

  object-fit: cover;

}



.specialists-section p {

  margin-bottom: 26px;

}



.cms-con h1,

.cms-con h2,

.cms-con h3,

.cms-con h4,

.cms-con h5,

.cms-con h6 {

  color: var(--text-dark);

  line-height: 1.3;

  margin-bottom: 32px;

}



.cms-con h5 {

  font-size: 22px;

}



.cms-con ul {

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

}



.cms-con ul li {

  position: relative;

  width: 49.5%;

  padding-left: 28px;

  margin-bottom: 15px;

  color: var(--text-color);

}



.cms-con ul li::before {

  content: "";

  position: absolute;

  top: 2px;

  left: 0;

  background-image: url(../img/svg/icon-check-circle.svg);

  background-size: contain;

  width: 18px;

  height: 21px;

}



.specialists-right {

  padding-left: 40px;

}



.specialist-actions {

  margin-top: 25px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 23px;

}



.specialist-urgent span {

  display: block;

}



/* ==================Our Specialties Section ===================== */

.specialty-sec .wrap {

  position: relative;

}



.specialty-sec .cta-bg.only-laptop {

  position: absolute;

  right: 0;

  top: 0;

  width: 37.6%;

  height: 100%;

  object-fit: cover;

  border-radius: 22px 0 0 22px;

  object-position: 20%;

}



.specialty-sec .sec-head {

  padding-right: 50px;

}



.specialty-sec .sec-head p {

  margin-top: 8px;

}



.specialty-grid {

  padding-right: 60px;

}



.specialty-card {

  background-color: var(--light-more);

  border-radius: 22px;

  padding: 30px 20px;

  height: 100%;

  display: flex;

  flex-direction: column;

  transition: var(--transition);

  border: 1px solid transparent;

}



.specialty-card:hover {

  background-color: var(--white);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  border-color: var(--primary-light);

  transform: translateY(-5px);

}



.spec-icon {

  width: 44px;

  height: 44px;

  margin-bottom: 20px;

}



.specialty-card:has(.btn) .spec-content {

  margin-bottom: 10px;

}



.spec-title {

  font-size: 18px;

  font-weight: 600;

  color: var(--secondary-color);

  line-height: 1.3;

  margin-bottom: 10px;

}







.read-more {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 12px;

  font-weight: 700;

  color: var(--primary-color);

  text-transform: uppercase;

  letter-spacing: 0.12em;

  margin-top: auto;

}



.read-more .icon {

  font-size: 12px;

  transition: transform 0.3s ease;

}



.read-more:hover .icon {

  transform: translateX(5px);

}



/* CTA Block */

.cta-block .cta-box {

  position: relative;

  height: 100%;

  width: 100%;

  min-height: 600px;

  border-radius: 30px;

}



.cta-overlay {

  position: absolute;

  bottom: 20px;

  left: 12px;

  background-color: var(--white);

  padding: 20px 40px 20px 30px;

  border-radius: 100px;

  display: flex;

  align-items: center;

  gap: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  z-index: 2;

}



.cta-icon {

  width: 50px;

  height: 50px;

  background-color: rgba(0, 50, 97, 0.05);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.cta-icon img {

  width: 22px;

}



.cta-details p {

  font-size: 15px;

  color: var(--primary-color);

  margin-bottom: 8px;

  line-height: 1;

}



.cta-details h3 {

  font-size: 22px;

  font-weight: 700;

  color: var(--secondary-color);

  margin: 0;

  line-height: 1;

}



/* Utility visibility classes */

.only-laptop {

  display: block;

}



.only-mobile {

  display: none;

}





.small-gap {

  --bs-gutter-x: 12px;

  --bs-gutter-y: 12px;

}



/* ================== Testimonials ===================== */

.testimonial-sec {

  background: url('../img/bg-testimonials.png') no-repeat center/cover;

  position: relative;

  z-index: 1;

}



.testimonial-sec::before {

  content: "";

  position: absolute;

  inset: 0;

  background-color: #202828;

  z-index: -1;

  opacity: .5;

}



.testimonial-sec .sec-head {

  max-width: 872px;

  margin: 0 auto 35px;

}



.testimonial-sec .sec-title,

.testimonial-sec .sub-title,

.testimonial-sec .sec-head p {

  justify-content: center;

  color: var(--white);

}



.testimonial-sec .sec-title span::before {

  background-color: rgb(255, 255, 255, .1);

}



.testimonial-slider .slick-list {

  margin: 0 -12px;

}



.testimonial-card {

  padding: 0 12px;

}



.testimonial-card .box {

  background-color: var(--white);

  border-radius: 22px;

  padding: 40px 30px;

  height: 100%;

  display: flex;

  flex-direction: column;

  position: relative;

  transition: var(--transition);

}



.testimonial-card .rating {

  margin-bottom: 24px;

}



.testimonial-card .content {

  margin-bottom: 24px;

}



.testimonial-card .title {

  font-size: 18px;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 10px;

}



.testimonial-card .author-wrap {

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  margin-top: auto;

  border-top: 1px solid #E6F1F0;

  padding-top: 30px;

}



.testimonial-card .author {

  display: flex;

  align-items: center;

  gap: 15px;

}



.testimonial-card .author img {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  object-fit: cover;

}



.testimonial-card .author .info h5 {

  font-size: 15px;

  font-weight: 600;

  color: var(--text-dark);

  margin-bottom: 2px;

}



.testimonial-card .author .info span {

  font-size: 13px;

  color: var(--text-light);

}



.testimonial-card .quote img {

  width: 45px;

}



/* Star Rating */

.rating {

  display: inline-flex;

  gap: 7px;

}



.star-icon {

  width: 18px;

  height: 18px;

  color: #DDE5E5;

  background-color: currentColor;

  mask: url('../img/svg/star.svg') center/contain no-repeat;

  -webkit-mask: url('../img/svg/star.svg') center/contain no-repeat;

  transition: 0.3s;

}



.star-icon.is-active {

  color: #F8B819;

}



/* Slick Dots Styling for Testimonials */

.testimonial-slider .slick-dots {

  bottom: -40px;

}



.testimonial-slider .slick-dots li button {

  background-color: var(--white);

  opacity: 0.25;

}



.testimonial-slider .slick-dots li.slick-active button {

  opacity: 1;

}



/* ================== Why Choose Us ===================== */

.why-choose-sec .wrap {

  position: relative;

}



.why-choose-sec .cms-con h5 {

  margin-bottom: 20px;

}



.why-choose-sec .side-img.only-laptop {

  position: absolute;

  left: 0;

  top: 0;

  width: 37.6%;

  height: 100%;

  object-fit: cover;

  border-radius: 0 22px 22px 0;

  object-position: center;

}



.why-choose-sec .cta-overlay {



  left: inherit !important;

  right: 20px;



}





.choose-us-right {

  padding-left: 60px;

}



.choose-us-right .cms-con {

  margin-top: 40px;

}



.choose-us-right .specialty-grid {

  margin-top: 30px;

  padding: 0;

}



.choose-us-right .logo-marquee-wrap {

  margin-top: 50px;

}



/* Logo Marquee */

.logo-marquee-wrap {

  overflow: hidden;

  position: relative;

}



.logo-marquee {

  white-space: nowrap;

  width: 100%;

}



.marquee-content {

  display: inline-flex;

  align-items: center;

  animation: marquee 30s linear infinite;

}



.marquee-content img {

  height: auto;

  width: 107px;

  margin-right: 54px;

  transition: var(--transition);

  filter: grayscale(1);

}



.marquee-content img:hover {

  opacity: 1;

  filter: grayscale(0);

}



@keyframes marquee {

  0% {

    transform: translateX(0);

  }



  100% {

    transform: translateX(-50%);

  }

}



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

.articles-sec {

  background-color: var(--light-more);

}



.articles-sec .sec-head {

  max-width: 648px;

  margin-left: auto;

  margin-right: auto;

}



.articles-sec .sec-title span {

  position: relative;

  z-index: 1;

}



.article-card {

  background: var(--white);

  border-radius: 22px;

  padding: 20px;

  display: flex;

  align-items: center;

  gap: 20px;

  transition: var(--transition);

  height: 100%;

}



.article-card:hover {

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  transform: translateY(-5px);

}



.article-img-wrapper {

  width: 180px;

  height: 180px;

  border-radius: 16px;

  overflow: hidden;

  flex-shrink: 0;

}



.article-img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.article-content {

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  height: 100%;

  padding-block: 5px;

}



.article-header {

  display: flex;

  flex-direction: column;

  gap: 8px;

}



.article-tag {

  font-size: 13px;

  font-weight: 500;

  color: var(--text-color);

  opacity: 0.7;

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.article-title {

  font-size: 22px;

  font-weight: 600;

  color: var(--secondary-color);

  line-height: 1.3;

  margin-bottom: 0;

}



.article-meta-footer {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 14px;

  color: var(--text-color);

  margin-top: 15px;

}



.article-author {

  display: flex;

  align-items: center;

  gap: 8px;

}



.author-avatar-small {

  width: 24px;

  height: 24px;

  border-radius: 50%;

  overflow: hidden;

}



.article-date {

  position: relative;

  opacity: 0.7;

  padding-left: 10px;

}



.article-date::before {

  content: "";

  position: absolute;

  top: 50%;

  left: 0px;

  transform: translateY(-50%);

  width: 5px;

  height: 5px;

  border-radius: 50%;

  opacity: 0.7;

  background-color: var(--text-color);

}



.articles-footer-btn {

  margin-top: 46px;

}



.article-footer-wrap {

  display: flex;

  flex-direction: column;

  height: 100%;

}



.article-footer-wrap .text-btn {

  margin-top: auto;

}



.row.same {

  --bs-gutter-y: 24px;

  --bs-gutter-x: 24px;

}



.mb-50 {

  margin-bottom: 50px;

}



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

.appointment-sec {

  background-color: var(--white);

}



.appointment-sec .right {

  max-width: 589px;

  margin-left: auto;

}



.contact-info-list {

  margin-top: 40px;

}



.contact-info-list>*+* {

  margin-top: 10px;

}



.contact-info-item {

  display: flex;

  align-items: flex-start;

}



.contact-icon-circle {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: var(--primary-light);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  margin-right: 15px;

  margin-top: 5px;

}



.contact-icon-circle img {

  width: 24px;

}



.contact-text-group {

  display: flex;

  flex-direction: column;

}



.contact-label {

  font-size: 14px;

  color: var(--text-color);

  opacity: 0.8;

  letter-spacing: 0.5px;

}



.contact-value {

  font-size: 18px;

  color: var(--secondary-color);

  line-height: 1.55;

}



.contact-value a,

.contact-value strong {

  font-weight: 600;

  display: block;

}



.apoint-form {

  display: block;

}



.apoint-form>*+* {

  margin-top: 9px;

}





.appointment-sec .right .sec-head {

  margin-bottom: 35px;

}



.apoint-form .row {

  --bs-gutter-x: 16px;

}



.form-label {

  font-size: 15px;

  font-weight: 500;

  color: var(--text-dark);

  margin-bottom: 0;

  line-height: 1.2;

}



.form-input-wrapper {

  background: var(--light-more);

  border-radius: 12px;

  padding: 16px 18px;

  display: flex;

  align-items: center;

  position: relative;

  transition: all 0.3s ease;

  border: 1px solid transparent;

}



.form-input-wrapper:hover {

  background-color: #f1f3f3;

}



.form-input-wrapper:focus-within {

  background-color: var(--white);

  border-color: var(--primary-color);

  box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1);

}



.form-input {

  border: none;

  background: transparent;

  width: 100%;

  font-family: inherit;

  font-size: 15px;

  font-weight: 400;

  color: #1f2124;

  outline: none;

  appearance: none;

  -webkit-appearance: none;

}



input[type="date"].form-input::-webkit-calendar-picker-indicator {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  background: transparent;

  cursor: pointer;

  z-index: 1;

}



.form-input::placeholder {

  color: rgb(31, 33, 36, .3);

}



.has-select::after {

  content: "";

  position: absolute;

  right: 18px;

  top: 50%;

  width: 14px;

  height: 7px;

  background: url(../img/svg/fadedown-arrow.svg) center/contain no-repeat;

  pointer-events: none;

  transform: translate(0, -50%);



}



.has-date::after {

  content: "";

  position: absolute;

  right: 18px;

  top: 55%;

  width: 20px;

  height: 20px;

  background: url(../img/icon-calendar.svg) center/contain no-repeat;

  pointer-events: none;

  transform: translate(0, -50%);

}



.form-textarea-wrapper {

  background: var(--light-more);

  border-radius: 12px;

  padding: 18px 22px;

  /* height: 160px; */

  transition: all 0.3s ease;

  border: 1px solid transparent;

}



.form-textarea-wrapper:hover {

  background-color: #f1f3f3;

}



.form-textarea-wrapper:focus-within {

  background-color: var(--white);

  border-color: var(--primary-color);

  box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.1);

}



.form-textarea {

  border: none;

  background: transparent;

  width: 100%;

  height: 100%;

  font-family: inherit;

  font-size: 15px;

  color: var(--text-dark);

  outline: none;

  resize: none;

}





.form-checkbox-group>*+* {

  margin-left: 5px;

}



.btn-wrapper {

  align-items: center;

  margin-top: 30px;

  flex-wrap: wrap;

  gap: 18px;

}



/* Animated SVG Checkbox */



.cbx-input {

  /* display: none; */

}



.cbx {

  cursor: pointer;

  position: relative;

  width: 20px;

  height: 20px;

  flex-shrink: 0;

  -webkit-tap-highlight-color: transparent;

  transform: translate3d(0, 0, 0);

  margin: 0;

}



.cbx svg {

  position: relative;

  z-index: 1;

  fill: none;

  stroke-linecap: round;

  stroke-linejoin: round;

  stroke: rgb(32, 40, 40, .2);

  stroke-width: 1.5;

  transform: translate3d(0, 0, 0);

  transition: all 0.2s ease;

}



.cbx svg path {

  stroke-dasharray: 60;

  stroke-dashoffset: 0;

}



.cbx svg polyline {

  stroke-dasharray: 22;

  stroke-dashoffset: 66;

}





.cbx:hover svg {

  stroke: var(--primary-color);

}



.cbx-input:checked+.cbx svg {

  stroke: var(--primary-color);

}



.cbx-input:checked+.cbx svg path {

  stroke-dashoffset: 60;

  transition: all 0.3s linear;

}



.cbx-input:checked+.cbx svg polyline {

  stroke-dashoffset: 42;

  transition: all 0.2s linear;

  transition-delay: 0.15s;

}



.form-terms {

  font-size: 15px;

  color: var(--text-dark);

}





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



/* ── Subscribe Bar (top-footer) ── */





.top-footer {

  position: relative;

  padding: 80px 0;

  background: var(--secondary-color);

  overflow: hidden;

  z-index: 1;

}



/* Wave decorations – reuse footer-decoration images from 01 folder */

.top-footer::before,

.top-footer::after {

  content: "";

  position: absolute;

  width: 460px;

  height: 388px;

  background-image: url(../img/footer-decoration-1.png);

  background-size: contain;

  background-repeat: no-repeat;

  z-index: 0;

}



.top-footer::before {

  bottom: -161px;

  left: -17px;

  transform: rotate(60deg);

}



.top-footer::after {

  bottom: -161px;

  right: -17px;

  transform: scaleX(-1) rotate(55deg);

}



.top-footer .container {

  position: relative;

  z-index: 2;

}



/* Subscribe Left – icon + title + divider + text */

.subscribe-left {

  display: flex;

  align-items: center;

  gap: 32px;

  justify-content: space-between;

  max-width: 622px;

}



.subscribe-icon-group {

  display: flex;

  align-items: center;

  gap: 16px;

  flex-shrink: 0;

  position: relative;

}



/* Auto-centering divider after the icon group */

.subscribe-icon-group::after {

  content: "";

  width: 1px;

  height: 112%;

  background-color: rgba(255, 255, 255, .1);

  position: absolute;

  right: -23%;

  top: 50%;

  transform: translateY(-50%);

}



.subscribe-icon-group img {

  width: 44px;

  height: 44px;

  object-fit: contain;

}



.subscribe-title {

  font-size: 16px;

  font-weight: 700;

  color: var(--white);

  text-transform: uppercase;

  letter-spacing: 0.06em;

  line-height: 1.4;

  margin: 0;

  white-space: nowrap;

}





.subscribe-text {

  font-size: 15px;

  color: rgba(255, 255, 255, 0.85);

  max-width: 280px;

  line-height: 1.6;

  margin: 0;

}



/* Subscribe Form – pill-shaped input + button */

.subscribe-form p br{
  display: none;
}
.subscribe-form p .wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
  min-width: 0;
}
.subscribe-form p .subscribe-input {
  width: 100% !important;
  min-width: 0;
}
.subscribe-form p .wpcf7-spinner {
  display: none !important; /* hide spinner to keep layout perfectly aligned */
}
.subscribe-form p{

  background: rgba(239, 241, 243, 0.95);

  border-radius: 100px;

  padding: 5px 5px 5px 22px;

  display: flex;

  align-items: center;

  max-width: 490px;

  width: 100%;

  gap: 8px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);

  margin-left: auto;

  transition: all 0.3s ease;

  border: 1px solid transparent;

}



.subscribe-form p:hover {

  background: var(--white);

}



.subscribe-form p:focus-within {

  background: var(--white);

  border-color: var(--primary-color);

  box-shadow: 0 4px 20px rgba(0, 52, 102, 0.2);

}



.subscribe-input {

  border: none;

  background: transparent;

  flex: 1;

  font-family: inherit;

  font-size: 15px;

  color: var(--text-dark);

  outline: none;

  min-width: 0;

}







.subscribe-input::placeholder {

  color: rgba(31, 33, 36, 0.4);

}



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

.awards-section {

  background-color: var(--primary-dark);

  padding-top: 80px;

  padding-bottom: 100px;

  position: relative;

  overflow: hidden;

}



.award-decor {

  position: absolute;

  top: 0;

  left: 0;

  width: 330px;

  height: auto;

  transform: rotate(180deg);

  z-index: 0;

  pointer-events: none;

}



.awards-fluid-container {

  width: 100%;

}



.awards-section .awards-fluid-container,

.awards-section .row {

  position: relative;

  z-index: 2;

}



.awards-left-align {

  /* padding-left: calc((100vw - var(--container-width)) / 2); */

  padding-left: 46%;

  padding-right: 30px;

}



@media (max-width: 1320px) {

  .awards-left-align {

    padding-left: 30px;

  }

}



@media (max-width: 767px) {

  .awards-left-align {

    padding-left: 15px;

    padding-right: 15px;

  }

}



/* ── Left (sec-head overrides for dark bg) ── */

.awards-section .sec-head .sub-title {

  color: var(--white);

}



.awards-section .sec-head .sec-title {

  color: var(--white);

}



.awards-section .sec-head .sec-title span::before {

  background-color: rgb(255, 255, 255, .1);

}



.awards-section .sec-head p {

  color: var(--white);

}



/* ── Award Cards ── */

.awards-slider {

  padding: 10px 0 20px;

  font-family: "Roboto", sans-serif;

}



.award-item {

  padding: 10px 10px;

}



.award-card {

  background: var(--white);

  border-radius: 12px;

  padding: 20px 12px;

  text-align: center;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}





.award-img {

  width: 113px;

  height: 114px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

}



.award-img img {

  max-width: 100%;

  max-height: 100%;

  object-fit: contain;

}



.award-title {

  font-size: 15px;

  font-weight: 700;

  color: var(--secondary-color);

  margin: 0 0 16px;

}



.award-card p {

  font-size: 13px;

  color: var(--text-color);

  margin: 0;

  line-height: 1.5;

}



/* ── Active / Featured Slide ── */

.awards-slider .slick-track {

  height: 100%;

  display: flex;

  align-items: center;



}





.awards-slider {

  overflow: visible;

}



/* 3. Active (center) card – full size, prominent shadow */

/* .awards-section .slick-current .award-item {

  min-width: 240px;

}



.awards-section .slick-current .award-card {

  min-width: 240px;

  opacity: 1;

  padding: 30px 16px;

}



.awards-section .slick-current .award-img {

  width: 147px;

  height: 170px;

  transition: width 0.4s ease, height 0.4s ease;

}



.awards-section .slick-current .award-title {

  font-size: 18px;

  transition: font-size 0.4s ease;

}



.awards-section .slick-current p {

  font-size: 15px;

} */



/* ==================== Footer Bottom ==================== */



.footer-bottom {

  background-color: var(--light-more);

  padding-top: 80px;

  position: relative;

  overflow: hidden;

  z-index: 1;

}



/* Background Wave Decoration in Footer Bottom */

.footer-bottom::before {

  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 292px;

  background-image: url(../img/footer-bg.png);

  background-size: cover;

  background-position: bottom left;

  pointer-events: none;

  z-index: -1;

}



.footer-grid {

  display: flex;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 80px;

  position: relative;

  z-index: 1;

}



.footer-grid>* {

  flex: 1;

}



.quick-link-wrap {

  display: flex;

  gap: 40px;

  justify-content: space-between;

  max-width: 380px;

}



/* ── Brand Column ── */

.footer-col-brand {

  max-width: 405px;

  padding-right: 20px;

}



.footer-col-brand .footer-logo {

  height: 50px;

  margin-bottom: 34px;

}



.footer-col-brand p {

  color: #565d5d;

  margin-bottom: 30px;

}



/* Social List Item Styles */



.footer-social-list.social-list ul {

  gap: 29px;

}



.footer-social-list.social-list ul li a {

  color: var(--primary-color);



}



.footer-social-list.social-list ul li a:hover {

  color: var(--secondary-color);

  transform: translateY(-3px);

}



/* ── Links Columns ── */

.footer-col-heading {

  font-size: 15px;

  font-weight: 700;

  color: var(--secondary-color);

  text-transform: uppercase;

  margin-bottom: 30px;

  position: relative;

}



.footer-col-links ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.footer-col-links ul li:not(:last-child) {

  margin-bottom: 12px;

}



.footer-col-links ul li a {

  white-space: nowrap;

  font-size: 15px;

  color: var(--text-color);

  transition: all 0.3s ease;

}



.footer-col-links ul li a:hover {

  color: var(--primary-color);

  transform: translateY(-3px);

}



/* ── Contact Info ── */

.footer-col-contact .foot-contact-info {

  margin-bottom: 22px;

}



.footer-col-contact .foot-contact-info .foot-contact-info {

  display: flex;

  flex-direction: row;

  align-items: flex-start;

  gap: 20px;

}



.footer-col-contact .foot-contact-info .img img {

  min-width: 24px;

  width: 24px;

  height: auto;

  margin-top: 7px;

}



.footer-col-contact .foot-contact-info .content span {

  display: block;

  font-size: 14px;

  color: var(--text-color);

  margin-bottom: 3px;

  line-height: 1;

}



.footer-col-contact .foot-contact-info .content p {

  margin: 0;

  font-size: 15px;

  color: var(--text-dark);

  line-height: 1.6;

}



.footer-col-contact .foot-contact-info .content p a {

  color: var(--text-dark);

  transition: color 0.3s ease;

  font-weight: 600;

}



.footer-col-contact .foot-contact-info .content p a:hover {

  color: var(--primary-color);

}



/* ── Copyright Section ── */

.footer-copyright {

  background-color: var(--white);

  padding: 28px 30px 10px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-direction: row-reverse;

  flex-wrap: wrap;

  gap: 20px;

  border-top-left-radius: 14px;

  border-top-right-radius: 14px;

}



.copyright-text {

  font-size: 14px;

  color: var(--text-color);

  margin: 0;

  word-spacing: 0.06em;

}



.copyright-highlight {

  color: var(--text-dark);

  font-weight: 600;

  text-decoration: none;

}



.footer-bottom-links {

  display: flex;

  align-items: center;

  gap: 16px;

}



.footer-bottom-link {

  font-size: 14px;

  color: var(--text-color);

  text-decoration: none;

  transition: color 0.3s ease;

}



.footer-bottom-link+.footer-bottom-link {

  display: flex;

  align-items: center;

  gap: 16px;

}



.footer-bottom-link+.footer-bottom-link::before {

  content: "";

  width: 6px;

  height: 6px;

  background-color: rgb(91, 96, 95, 0.2);

  border-radius: 50%;

  flex-shrink: 0;

}



.footer-bottom-link:hover {

  color: var(--primary-color);

}



.nav-top {

  display: none;

}



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

.mt-30 {

  margin-top: 30px;

}



/* ==================== Custom Contact Form Styles ==================== */

.contact-form-custom .form-input-wrapper,

.contact-form-custom .form-textarea-wrapper {

  background-color: var(--white) !important;

  border: 1px solid #F1F1F1 !important;

}



.contact-form-custom .form-input-wrapper:hover,

.contact-form-custom .form-textarea-wrapper:hover {

  background-color: var(--white) !important;

  border-color: var(--primary-color) !important;

}



.contact-form-custom .form-input-wrapper:focus-within,

.contact-form-custom .form-textarea-wrapper:focus-within {

  background-color: var(--white) !important;

  border-color: var(--primary-color) !important;

}



.map-wraper-contact {

  position: absolute;

  top: 0;

  right: 0;

  width: 50%;

  height: 100%;

  overflow: hidden;

}



.map-wraper-contact iframe {

  height: 100%;

  width: 100%;

}



.contact-sec {

  position: relative;

  background-color: var(--light-more);

}



.contact-sec .contact-left {

  padding-right: 40px;

}



.contact-info-cards-sec .container {

  padding-top: 40px;

}



.contact-info-card {

  background: var(--light-more);

  border-radius: var(--border-radius);

  padding: 70px 25px 25px;

  position: relative;

  height: 100%;

  text-align: center;

  transition: var(--transition);

}



.contact-info-card:hover {

  transform: translateY(-4px);

}



/* Icon Circle */

.card-icon-circle {

  width: 80px;

  height: 80px;

  background: var(--secondary-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: -40px;

  /* Half outside */

  left: 50%;

  transform: translateX(-50%);

}



.card-icon-circle img {

  width: 40px;

  height: 40px;

  object-fit: contain;

  filter: brightness(0) invert(1);

}



.contact-info-card .cms-con h5 {

  margin-bottom: 15px;

  color: var(--secondary-color);

}



.services-features-sec .feature-desc {

  color: #565d5d;



}



.services-features-sec .text-btn {

  font-weight: 700;

  color: var(--primary-color);

  letter-spacing: 0.1em;

}



.mt-60 {

  margin-top: 60px;

}





/* inner page  */



/* About Hero Section */

.inner-banner-sec {

  position: relative;

  padding: 70px 0 55px;

  display: flex;

  align-items: center;

  background-color: var(--white);

  z-index: 1;

  margin-bottom: 44px;

}



.inner-banner-sec::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: #F5F9F9;

  z-index: 2;

  opacity: .5;

}



.inner-banner-content {

  position: relative;

  z-index: 2;

}



.inner-banner-content .hero-desc {

  margin-bottom: 25px;

  max-width: 510px;

}



.inner-banner-content .sec-title {

  margin-bottom: 4px;

}







.inner-banner-content .breadcrumb-item,

.inner-banner-content .breadcrumb-item a {

  font-size: 14px;

  color: var(--text-dark);

}



.inner-banner-content .breadcrumb-item.active {

  opacity: .4;

}



.inner-banner-content .breadcrumb-item+.breadcrumb-item::before {

  content: "/";

  color: var(--text-dark);

  opacity: .4;

  padding-left: 4px;

  padding-right: 10px;

}



.inner-banner-img {

  position: absolute;

  right: 50%;

  top: 0;

  bottom: 0;

  width: 100%;

  max-width: 1320px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  transform: translateX(50%);

  z-index: 1;

}



.inner-banner-img .banner-img {

  height: 100%;

  width: auto;

  object-fit: contain;

}



.inner-banner-sec .cta-wrper {

  position: absolute;

  bottom: -44px;



  left: 50%;

  max-width: 1320px;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  transform: translateX(-50%);

  z-index: 3;

}



.inner-banner-sec .cta-wrper .cta-overlay {

  position: static;

}





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

.inn-top-sec {

  padding-top: 57px !important;

}



.about-section .about-left-content {

  padding-right: 40px;

}



.about-section .about-img {

  border-radius: 22px;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.about-section .about-img-wrap {

  height: 100%;

}



.about-section .cms-con p {

  margin-bottom: 24px;

}



.mission-vision-grid {

  margin-top: 35px;

  --bs-gutter-x: 14px
}



.mission-vision-item {

  margin-bottom: 30px;

}



.mission-vision-item img {

  width: 60px;

  height: 60px;

  margin-bottom: 25px;

  background-color: var(--primary-light);

  border-radius: 50%;

  padding: 15px;

  object-fit: contain;

}



.cms-con h3 {

  margin-bottom: 5px;

  font-size: 22px;

  font-weight: 600;

  word-spacing: 0.2em;

}



/* ================== Team Section V2 ===================== */

.team-section-v2 {

  background-color: var(--light-more);

}



.team-card-v2 {

  background: linear-gradient(180deg, transparent 0%, #E6F1F0 100%);

  border-radius: 12px;

  padding: 20px 20px 70px;

  height: 100%;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  transition: var(--transition);

  border: 1px solid var(--white);

  position: relative;

}





.team-card-inner {



  height: 100%;

}



.team-img-box {

  text-align: center;

  position: relative;

  z-index: 1;

}



.team-img-box img {

  max-height: 100%;

  width: auto;

  margin: 0 auto;

  display: block;

}



.team-info-box {

  background-color: var(--white);

  border-radius: 8px;

  padding: 30px 30px 35px;

  text-align: center;

  position: relative;

  z-index: 2;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  position: absolute;

  bottom: 20px;

  left: 20px;

  right: 20px;

}



.team-name {

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 0;

  color: var(--secondary-color);

}



.team-degree {

  font-size: 15px;

  color: var(--primary-color);

  margin-bottom: 10px;

  line-height: 1.3;



}



.team-divider {

  width: 40px;

  height: 1px;

  background-color: #E6F1F0;

  margin: 0 auto 15px;

}



.team-desc {

  font-size: 15px;

  color: var(--text-color);

  line-height: 1.6;

}



/* ================== Appointment CTA V2 ===================== */

.appointment-cta-v2 .appointment-banner-wrap {

  background-color: #F5F9F9;

  border-radius: 20px;

  overflow: hidden;

  position: relative;

  padding: 0 0 0 60px;

}



.appointment-cta-v2 .banner-content {

  padding-block: 48px;

  position: relative;

  z-index: 5;

}



.appointment-cta-v2 .appointment-banner-img {

  position: relative;

  height: 100%;

}



.appointment-cta-v2 .appointment-banner-img::before {

  content: "";

  position: absolute;

  top: 0;

  right: 0;

  width: 192%;

  height: 100%;

  background: linear-gradient(90deg, #f5f9f9 0%, transparent 100%);

  z-index: 1;

}



.appointment-cta-v2 .appointment-banner-img img {

  width: 192%;

  height: 100%;

  object-fit: cover;

  display: block;

  top: 0;

  bottom: 0;

  right: 0;

}



.appointment-cta-v2 .banner-decoration {

  position: absolute;

  top: 42px;

  left: 42px;

  width: 100px;

  height: 100px;

  pointer-events: none;

  background-color: #006A67;

  opacity: 0.08;

  -webkit-mask-image: url(../img/svg/calander.svg);

  mask-image: url(../img/svg/calander.svg);

  -webkit-mask-size: contain;

  mask-size: contain;

  -webkit-mask-repeat: no-repeat;

  mask-repeat: no-repeat;

  z-index: 0;

}



.appointment-cta-v2 .banner-decoration img {

  display: none;

}



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

.faq-section .sec-head {

  margin-bottom: 30px;

}



.faq-accordion {

  max-width: 872px;

  margin: 0 auto;

  border-radius: 0;

}



.faq-accordion .accordion-item {

  background: linear-gradient(180deg, rgba(245, 249, 249, 0.8) 0%, rgba(245, 249, 249, 0) 100%);

  border: 1px solid #E6F1F0;

  border-radius: 12px !important;

  padding: 25px 30px;

  margin-bottom: 10px;

  overflow: hidden;

  transition: all 0.3s ease;

}



.faq-accordion .accordion-item:last-child {

  margin-bottom: 0;

}



/* Active item */



/* Fallback for older browsers without :has */





.faq-accordion .accordion-button {

  background-color: transparent;

  color: var(--secondary-color);

  font-weight: 600;

  font-size: 18px;

  padding: 0;

  padding-right: 20px;

  box-shadow: none !important;

}



/* Custom Plus/Minus Icon */

.faq-accordion .accordion-button::before {

  content: "";

  display: block;

  position: absolute;

  right: 0;

  width: 16px;

  height: 16px;

  background: url('../img/svg/plus.svg') no-repeat center center / contain;

  transition: transform 0.3s ease, opacity 0.3s ease;

  opacity: 1;

  transform: rotate(0deg);

  z-index: 2;

}



/* Override default Bootstrap accordion arrow with minus icon */

.faq-accordion .accordion-button::after {

  content: "";

  display: block;

  position: absolute;

  right: 0;

  width: 16px;

  height: 16px;

  background: url('../img/svg/minus.svg') no-repeat center center / contain !important;

  /* Important to override bootstrap background-image */

  transition: transform 0.3s ease, opacity 0.3s ease;

  opacity: 0;

  transform: rotate(-90deg);

  z-index: 1;

}



.faq-accordion .accordion-button:not(.collapsed) {

  color: var(--secondary-color);

  border-bottom: none;

}



.faq-accordion .accordion-button:not(.collapsed)::before {

  opacity: 0;

  transform: rotate(90deg);

}



.faq-accordion .accordion-button:not(.collapsed)::after {

  opacity: 1;

  transform: rotate(0deg);

}



.faq-accordion .accordion-body {

  padding: 17px 0 0 0;

  color: var(--text-color);

  background-color: transparent;

}



.faq-accordion .accordion-body p {

  font-family: 'Rethink Sans', sans-serif;

  font-size: 16px;

  font-weight: 400;

  font-style: normal;

  line-height: 1.6;

  margin-bottom: 0;

}



.faq-accordion .accordion-item .accordion-collapse {

  background-color: transparent;

}



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

.overview-head {

  margin-bottom: 0;

}



.overview-content .cms-con h4 {

  margin-bottom: 16px;

}



.overview-btn {

  margin-top: 30px;

}



.overview-images-wrapper {

  display: flex;

  align-items: center;

  gap: 12px;

}



.overview-images-col {

  display: flex;

  flex-direction: column;

  gap: 12px;

  width: 50%;

}



.overview-img-box {

  border-radius: 12px;

  overflow: hidden;

}



.overview-img-box img {

  width: 100%;

  height: auto;

  display: block;

}



/* ================== Overview Grid Section ===================== */

.overview-grid-title {

  font-size: 22px;

  font-weight: 600;

  color: var(--text-dark);

  margin-bottom: 18px;

}



.overview-card {

  background: var(--white);

  border: 1px solid #E6F1F0;

  border-radius: 22px;

  padding: 30px 40px;

  height: 100%;

}



.overview-card-number {

  display: flex;

  align-items: end;

  gap: 10px;

  margin-bottom: 25px;

}



.overview-card-number .num {

  font-size: 40px;

  font-weight: 700;

  font-family: 'Rethink Sans', sans-serif;

  color: transparent;

  -webkit-text-stroke: 1px #5B605F33;

  line-height: 1;

  letter-spacing: .1em
}



.overview-card-number .line {

  width: 24px;

  height: 1px;

  background-color: #5B605F33;

  margin-bottom: .3em;

}



.overview-card-title {

  font-size: 22px;

  font-weight: 600;

  color: var(--text-dark);

  margin-bottom: 12px;

}



.xy-row {

  --bs-gutter-x: 24px;

  --bs-gutter-y: 24px;

}



.second-container {

  margin-top: 70px;

}



/* ==================== Procedure Overview & Benefits Section ==================== */



.procedure-benefits-sec .bg-light-wrap,

.procedure-benefits-sec .bg-dark-wrap {

  border: 1px solid #E6F1F0;

  border-radius: 22px;

  padding: 50px;

  background: linear-gradient(90deg, transparent 0%, rgba(230, 241, 240, 0.5) 100%);

  overflow: hidden;

}



.procedure-benefits-sec .bg-dark-wrap {

  margin-top: 30px;

  background: linear-gradient(90deg, rgba(230, 241, 240, 0.5) 0%, rgba(230, 241, 240, 0) 100%);

  overflow: hidden;

}



.procedure-benefits-sec .bg-dark-wrap .right {

  padding-left: 60px;

}



.recover-image-shadow-wrap {

  position: relative;

  z-index: 1;

}



.recover-image-shadow-wrap img {

  border-radius: 22px;

  box-shadow: -30px 30px 0px 0px #0031611A;

  width: 100%;

  min-height: 480px;

  object-fit: cover;

}



.procedure-benefits-sec .bg-dark-wrap .left .cms-con ul li {

  width: 100%;



}



.procedure-benefits-sec .bg-dark-wrap .left .cms-con ul li:last-child {

  margin-bottom: 0;

}



.procedure-benefits-sec .bg-dark-wrap .sec-head {

  margin-bottom: 30px;

}



.procedure-benefits-sec .bg-dark-wrap .cms-con {

  padding-top: 10px;

}



.procedure-benefits-sec .sec-head {

  margin-bottom: 40px;

}



.procedure-benefits-sec .sec-head p {

  margin-top: 20px;

}



.benefit-list-item {

  display: flex;

  gap: 20px;

  margin-bottom: 22px;

  align-items: flex-start;

}



.benefit-list-item:last-child {

  margin-bottom: 0;

}



.benefit-icon {

  width: 54px;

  height: 54px;

  background: #006A6714;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.benefit-icon img {

  width: 32px;

  height: 32px;

}



.benefit-text h5 {

  font-family: 'Blauer Nue', sans-serif;

  font-weight: 600;

  color: var(--secondary-color);

  margin-bottom: 5px;

}



.procedure-benefits-sec .specialty-card {

  background-color: var(--white);

  border: 1px solid #E6F1F0;

  padding-bottom: 20px;

}



.row-gap-20 {

  --bs-gutter-y: 20px;

  --bs-gutter-x: 20px;

}



/* ================== Patient Success Slider ===================== */

.patient-success-sec .container-fluid {

  padding-inline: 0;

}



.patient-slider .slick-list {

  padding-block: 20px;

  overflow: visible;

}



.patient-slider .slick-track {

  display: flex;

  align-items: center;

}



/* Adjust Gap between slides - Center mode gap */

.patient-slider .slick-slide {

  padding: 0 12px;

  /* Total 24px gap */

  transition: all 0.5s ease;

}



.patient-card {

  border-radius: 22px;

  overflow: hidden;

  position: relative;

  background-color: #00000033;

  opacity: 0.4;

  transition: all 0.5s ease;

  user-select: none;

}



.slick-center .patient-card {

  background-color: #000000;

  opacity: 1;

}



.slick-center .patient-card .box {

  height: 346px;

}



.patient-card .box {

  position: relative;

  height: 320px;

  display: flex;

  transition: var(--transition);

  flex-direction: column;

}



.patient-video-thumb {

  position: absolute;

  inset: 0;

  z-index: 1;

}



.patient-video-thumb img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.5s ease;

}



.slick-center .patient-video-thumb img {

  opacity: 1;

}



/* Linear gradient overlay */

.patient-card .box::before {

  content: "";

  position: absolute;

  inset: 0;

  background: #00000033;

  z-index: 2;

  transition: all 0.5s ease;

}



.slick-center .patient-card .box::before {

  background: #0000001A;

  z-index: -1;

}



.patient-overlay {

  position: absolute;

  bottom: 20px;

  left: 18px;

  z-index: 3;

  width: calc(100% - 60px);

}



.patient-overlay .author-info {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 12px 12px;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);

  border-radius: 100px;

  width: 100%;

}



.patient-overlay .author-info h5 {

  color: var(--white);

  font-size: 15px;

  font-weight: 600;

  margin-bottom: 2px;

}



.patient-overlay .author-info span {

  color: var(--white);

  font-size: 13px;

}



.patient-overlay .avatar img {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  object-fit: cover;

}



/* Play Icon Styling */

.play-btn-wrap {

  position: absolute;

  top: 50%;

  left: 50%;

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

  z-index: 4;

}



.play-btn {

  width: 60px;

  height: 60px;

  background: var(--white);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  position: relative;

  transition: all 0.3s ease;

  z-index: 10;

}



.play-btn img {

  width: 22px;

  height: 22px;

  object-fit: contain;

  margin-left: 3px;

  /* visual center for play icon */

}



/* Animations with before/after - Infinite Ripple */

.play-btn::before,

.play-btn::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  z-index: -1;

  pointer-events: none;

}



.play-btn::before {

  animation: playRipple 2s infinite;

  border: 1px solid rgba(255, 255, 255, 0.4);

}



.play-btn::after {

  animation: playRipple 2s infinite 1s;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



@keyframes playRipple {

  0% {

    transform: scale(1);

    opacity: 0.8;

  }



  100% {

    transform: scale(1.8);

    opacity: 0;

  }

}



.slick-center .play-btn {

  z-index: 5;

}



.patient-card:hover .play-btn {

  transform: scale(1.1);

  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);

}







@media (max-width: 1400px) {

  .patient-card .box {

    height: 420px;

  }

}



@media (max-width: 991px) {

  .patient-card .box {

    height: 380px;

  }



  .patient-overlay {

    left: 20px;

    bottom: 20px;

    width: calc(100% - 40px);

  }

}



@media (max-width: 575px) {

  .patient-card .box {

    height: 320px;

  }

}



/* ==================== Hospital Page Styles ==================== */

.hospital-hero-sec {

  padding-block: 60px 0;

}



.hospital-tab-wrapper {

  display: flex;

  gap: 20px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  margin-bottom: 40px;

  border: none;

}



.hospital-tab {

  flex: 1;

}



.hospital-tab .nav-link {

  background: #f9fafc;

  border: 1px solid rgba(0, 0, 0, 0.1) !important;

  color: inherit;

  width: 100%;

  text-align: left;

  padding: 20px 24px;

  border-radius: 12px;

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

}





.hospital-tab .nav-link:hover,

.hospital-tab .nav-link.active {

  background: var(--primary-light);

  border: 1px solid var(--primary-color) !important;

}



.hospital-name {

  font-size: 24px;

  font-weight: 700;

  color: var(--secondary-color);

  margin-bottom: 10px;

  transition: 0.3s ease;

}



.hospital-location {

  display: flex;

  align-items: start;

  font-size: 14px;

  color: var(--text-color);

  opacity: 0.7;

  transform: translateY(5px);

  transition: 0.3s ease;

}



.hospital-location span {

  margin-top: 1px;

}



.hospital-tab .nav-link:hover .hospital-location,

.hospital-tab .nav-link.active .hospital-location {

  opacity: 1;

  transform: translateY(0);

}



.hospital-location img {

  margin-right: 8px;

  vertical-align: middle;

}



.hospital-detail-card {

  background: transparent;

  padding: 0;

  border-radius: 0;

  box-shadow: none;

  height: auto;

}



.hospital-info-list {

  margin: 30px 0;

}



.hospital-info-item {

  margin-bottom: 20px;

  padding-bottom: 15px;

  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);

}



.hospital-info-item:last-child {

  border-bottom: none;

}



.hospital-info-item .label {

  display: block;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--primary-color);

  font-weight: 700;

  margin-bottom: 5px;

}



.hospital-info-item p {

  font-size: 18px;

  font-weight: 600;

  color: var(--secondary-color);

  margin: 0;

}



.row.same .testimonial-card {

  padding: 0 !important;

}



.testimonial-page {

  background: none;

}



.testimonial-page::before {

  opacity: 1;

  background-color: var(--primary-dark);

}



.testimonial-page::after {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 330px;

  height: 100%;

  transform: rotate(180deg);

  z-index: 0;

  pointer-events: none;

  background-image: url(../img/awards-decoration.png);

  background-position: bottom left;

  background-repeat: no-repeat;



}


/* extra css for acl page */
.full-width li {
  width: 100% !important;
}

.diff-color-bg {
  background-color: #f1f1f1;
}

.cms-con ul li li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.cms-con ul li li {
  padding-left: 15px;
  font-size: .94em;
}

.cms-con ul li ul {
  margin-top: 15px;
  padding-bottom: 0;
}

.cms-con ul li ul li:last-child {
  margin-bottom: 0;
}

.cms-con h6 {
  margin-bottom: 15px;
}

.cms-con ul {
  padding-bottom: 10px;
}

.cms-con h4 {
  font-size: 22px;
}

.pod {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pod .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.min-auto img {
  min-height: auto;
}

.procedure-benefits-sec .specialty-card .letter {
  color: var(--primary-color) !important;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Rethink Sans', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}

.min-auto img {
  border-radius: 22px;
  border: 1px solid #006A67;
  box-shadow: -30px 30px 0px 0px #0031611A;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  margin-bottom: 30px;
}

.bg-contain {
  object-fit: contain !important;
  background-color: #fff;
}

.cta-box.position-relative {
  height: 350px !important;
  /* background-color: #fff; */
}

.cta-box.position-relative img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.specialty-sec .cms-con h6 {
  margin-top: 20px;
}

/* ==========================================================================
   Premium Table & Product Comparison Styling for CMS Content (.cms-con)
   ========================================================================== */

.cms-con table {
  width: 100%;
  margin: 28px 0 32px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 106, 103, 0.12);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 49, 97, 0.04), 0 1px 3px rgba(0, 106, 103, 0.02);
  font-family: "Rethink Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* Table Header Styles */
.cms-con table thead tr,
.cms-con table tr:first-child:not(tbody tr) {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #00468b 100%);
}

.cms-con table th {
  color: var(--white);
  font-family: 'Blauer Nue', 'Rethink Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 24px;
  text-align: left;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}

/* Ensure first child TH has proper corners if it's the absolute first element */
.cms-con table tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius);
}
.cms-con table tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius);
}

/* Table Cells */
.cms-con table td {
  padding: 16px 24px;
  color: var(--text-color);
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 106, 103, 0.07);
  vertical-align: middle;
  font-weight: 400;
  transition: var(--transition);
}

/* Zebra striping for modern feel */
.cms-con table tr:nth-child(even) td {
  background-color: var(--light-more);
}

/* Interactive Hover state */
.cms-con table tr:hover td {
  background-color: var(--primary-light);
  color: var(--text-dark);
}

/* Correct bottom corners on the last row */
.cms-con table tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius);
}
.cms-con table tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius);
}
.cms-con table tr:last-child td {
  border-bottom: none;
}

/* Headings or highlight elements inside tables */
.cms-con table td strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Standard Lists inside tables */
.cms-con table td ul {
  padding-left: 0;
  padding-bottom: 0;
  margin: 0;
  list-style: none;
}

.cms-con table td ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
}

.cms-con table td ul li:last-child {
  margin-bottom: 0;
}

.cms-con table td ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 15px;
}

/* Compact CTA button style in tables */
.cms-con table td a.btn-table,
.cms-con table td a.button {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(0, 106, 103, 0.15);
  transition: var(--transition);
  border: none;
  text-align: center;
}

.cms-con table td a.btn-table:hover,
.cms-con table td a.button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 49, 97, 0.2);
  color: var(--white) !important;
}

/* Product Comparison Specific Utilities */
.cms-con table td.highlight-column {
  background-color: rgba(0, 106, 103, 0.03);
  font-weight: 500;
  color: var(--primary-color);
  border-left: 1px solid rgba(0, 106, 103, 0.1);
  border-right: 1px solid rgba(0, 106, 103, 0.1);
}

.cms-con table tr:hover td.highlight-column {
  background-color: rgba(0, 106, 103, 0.06);
}

/* Modern Pill Badges */
.cms-con table td .badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cms-con table td .badge-success {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.cms-con table td .badge-info {
  background-color: #e3effb;
  color: var(--secondary-color);
}

/* Clean styling for standard checks and crosses */
.cms-con table td .tick-icon,
.cms-con table td .check-icon {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.cms-con table td .cross-icon {
  color: #e74c3c;
  font-weight: 700;
  font-size: 18px;
}

/* Responsive Table handling on Mobile screens */
@media (max-width: 767px) {
  .cms-con table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }
  
  .cms-con table th,
  .cms-con table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.form-group p{
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}