@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* :root {
  --lt-color-gray-100: #f8f9fc;
  --lt-color-gray-200: #f1f3f9;
  --lt-color-gray-300: #dee3ed;
  --lt-color-gray-400: #c2c9d6;
  --lt-color-gray-500: #8f96a3;
  --lt-color-gray-600: #5e636e;
  --lt-color-gray-700: #2f3237;
  --lt-color-gray-800: #1d1e20;
  --lt-color-gray-900: #111213;
  --lt-shadowDefault: 0 2px 6px -1px rgba(0, 0, 0, 0.16),
    0 1px 4px -1px rgba(0, 0, 0, 0.04);
  --lt-shadowActive: 0 0 8px -2px rgba(0, 0, 0, 0.1),
    0 6px 20px -3px rgba(0, 0, 0, 0.2);
  --lt-color-white: #fff !important;
  --lt-color-black: #111213 !important;
  --lt-color-transparent: rgba(255, 255, 255, 0) !important;
  --lt-color-background-light: var(--lt-color-gray-100) !important;
  --lt-color-background-default: var(--lt-color-gray-200) !important;
  --lt-color-background-dark: var(--lt-color-gray-300) !important;
  --lt-color-border-light: var(--lt-color-gray-200) !important;
  --lt-color-border-default: var(--lt-color-gray-300) !important;
  --lt-color-border-dark: var(--lt-color-gray-400) !important;
  --lt-color-text-very-light: var(--lt-color-gray-500) !important;
  --lt-color-text-light: var(--lt-color-gray-600) !important;
  --lt-color-text-default: var(--lt-color-gray-700) !important;
  --lt-color-text-dark: var(--lt-color-gray-800) !important;
  --lt-color-overlay-default: #fff !important;
  --lt-color-overlay-dark: #fff !important;
  --lt-color-overlay-transparent: rgba(0, 0, 0, 0.1) !important;
  --lt-shadow-website-overlay: 0 0 7px 0 rgba(0, 0, 0, 0.3) !important;
} */

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  min-width: 320px;
  color: #333;
  overflow-x: hidden;
  width: 100%;
}


*, *::before, *::after {
  box-sizing: border-box;
}

.fixed-contact-btns{
  display: none;
}

.fixed-Btn{
  display: none;
}

.fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #8b806e;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.fixed-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  margin: 0 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #0b3d2e; /* Text color */
  background-color: #d8c29f; /* Same as parent, adjust if needed */
  transition: background 0.3s;
}

.fixed-buttons .btn:hover {
  background-color: #c1b185;
}

.commutes {
  align-content: stretch;
  color: #202124;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  height: 100%;
  min-height: 256px;
  min-width: 360px;
  overflow: auto;
  width: 100%;
}

.commutes-info {
  flex: 0 0 110px;
  max-width: 100%;
  overflow: hidden;
}

.commutes-initial-state {
  border-radius: 8px;
  border: 1px solid #dadce0;
  display: flex;
  height: 98px;
  margin-top: 8px;
  padding: 0 16px;
}

.commutes-initial-state svg {
  align-self: center;
}

.commutes-initial-state .description {
  align-self: center;
  flex-grow: 1;
  padding: 0 16px;
}

.commutes-initial-state .description .heading {
  font: 22px/28px Arial, sans-serif;
  margin: 0;
}

.commutes-initial-state .description p {
  color: #5f6368;
  font: 13px/20px Arial, sans-serif;
  margin: 0;
}

.commutes-initial-state .add-button {
  align-self: center;
  background-color: #1a73e8;
  border-color: #1a73e8;
  border-radius: 4px;
  border-style: solid;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  fill: #fff;
  padding: 8px 16px 8px 8px;
  white-space: nowrap;
}

.commutes-initial-state .add-button .label {
  font: normal 600 15px/24px Arial, sans-serif;
  padding-left: 8px;
}

@media (max-width: 535px) {
  .commutes-initial-state svg {
    display: none;
  }

  .commutes-initial-state .description {
    padding-left: 0;
  }

  .commutes-initial-state .description .heading {
    font-weight: bold;
    font-size: 15px;
    line-height: 24px;
  }
}

.commutes-destinations {
  display: none;
  position: relative;
  width: 100%;
}

.commutes-destinations:hover .visible {
  display: block;
}

.commutes-destinations .destinations-container {
  display: flex;
  overflow-x: auto;
  padding: 8px 8px 4px 8px;
  white-space: nowrap;
  width: 100%;
}

.commutes-destinations .destinations-container::-webkit-scrollbar {
  display: none;
}

.commutes-destinations .destinations-container::-webkit-scrollbar-thumb {
  background-color: #dadce0;
  width: 4px;
}

.commutes-destinations .destination-list {
  display: flex;
  flex-grow: 1;
}

.commutes-destinations .right-control,
.commutes-destinations .left-control {
  background-color: #fff;
  border-radius: 40px;
  border-style: none;
  bottom: 35px;
  box-shadow: 0 2px 3px 0 rgb(60 64 67 / 30%), 0 6px 10px 4px rgb(60 64 67 / 15%);
  cursor: pointer;
  fill: #616161;
  height: 40px;
  padding: 8px;
  position: absolute;
  width: 40px;
  z-index: 100;
}

.commutes-destinations .right-control:hover,
.commutes-destinations .left-control:hover {
  background-color: #f1f3f4;
}

.commutes-destinations .left-control {
  left: 16px;
}

.commutes-destinations .right-control {
  right: 16px;
}

.commutes-destinations .add-button {
  align-items: center;
  background-color: #e8f0fe;
  border-radius: 8px;
  border-color: #e8f0fe;
  border-style: solid;
  color: #1967d2;
  cursor: pointer;
  display: flex;
  fill: #1967d2;
  flex-direction: column;
  flex-grow: 1;
  font-weight: bold;
  gap: 4px;
  justify-content: center;
  min-width: 156px;
  padding: 20px 16px;
}

.commutes-destinations .add-button:hover {
  background-color: #d2e3fc;
  border-color: #d2e3fc;
  color: #185abc;
  fill: #185abc;
}

.commutes-destinations .destination-container {
  cursor: pointer;
  display: flex;
  flex: 1 1 0;
  position: relative;
}

.commutes-destinations .destination {
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  color: #5f6368;
  fill: #5f6368;
  height: 72px;
  justify-content: space-between;
  margin-right: 8px;
  min-width: 256px;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: 100%;
}

.commutes-destinations .active:after {
  background-color: #4285f4;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.commutes-destinations .active + .destination-controls .directions-button {
  fill: #4285f4;
}

.commutes-destinations .active + .destination-controls .edit-button {
  opacity: 1;
}

.commutes-destinations .active .metadata .location-marker {
  background-color: #fce8e6;
  color: #d93025;
}

.commutes-destinations .destination-container:hover,
.commutes-destinations .destination-container:focus-within
{
  background-color: #f8f9fa;
}

.commutes-destinations .destination-container:hover .edit-button,
.commutes-destinations .destination-container:focus-within .edit-button
{
  opacity: 1;
}

.commutes-destinations .destination .destination-content {
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
}

.commutes-destinations .destination .metadata {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
  gap: 4px;
}

.commutes-destinations .destination-container svg {
  height: 18px;
  width: 18px;
}

.commutes-destinations .destination .location-marker {
  background-color: #f1f3f4;
  border-radius: 8px;
  color: #616161;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
  width: 16px;
}

.commutes-destinations .destination .address {
  margin-bottom: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commutes-destinations .destination .address abbr {
  text-decoration: none;
}

.commutes-destinations .destination .destination-eta {
  color: #202124;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
}

.commutes-destinations .destination-container .destination-controls {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  min-width: 70px;
  position: absolute;
  right: 20px;
  text-align: right;
  top: 12px;
  white-space: nowrap;
}

.commutes-destinations .destination-container .directions-button {
  align-items: center;
  background-color: #fff;
  border-radius: 32px;
  border: 1px solid #dadce0;
  cursor: pointer;
  display: flex;
  fill: #5f6368;
  height: 32px;
  justify-content: center;
  margin: 0;
  width: 34px;
}

.commutes-destinations .destination-container .directions-button:hover {
  background-color: #e8f0fe;
  fill: #4285f4;
}

.commutes-destinations .destination-container .edit-button {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #dadce0;
  opacity: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  margin: 8px 0 0 0;
  padding: 3px 12px 3px 5px;
  fill: #616161;
  color: #616161;
  cursor: pointer;
}

.commutes-destinations .destination-container .edit-button svg {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  vertical-align: middle;
}

.commutes-destinations .destination-container .edit-button:hover {
  background-color: #f1f3f4;
}

.commutes-map {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.commutes-map .map-view {
  background-color: rgb(229, 227, 223);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.commutes-modal-container {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.commutes-modal {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12);
  height: 256px;
  position: absolute;
  width: 360px;
}

.commutes-modal .content {
  padding: 24px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commutes-modal .heading {
  font: 24px/32px Arial, sans-serif;
  margin: 0;
}

.commutes-modal input {
  font: 16px/24px Arial, sans-serif;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
}

.commutes-modal .error {
  background-color: #fce4e4;
  border: 1px solid #c03;
}

.commutes-modal .error-message {
  color: #c03;
  display: inline-block;
  font: 12px/14px Arial, sans-serif;
  margin: 0 0 5px;
}

.commutes-modal .travel-modes {
  display: flex;
  flex-direction: row;
  height: 40px;
  margin-bottom: 12px;
  padding: 0;
  width: 100%;
}

.commutes-modal .travel-modes [type=radio] {
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.commutes-modal .travel-modes label {
  align-items: center;
  border: solid #dadce0;
  border-width: 1px 0.031em;
  cursor: pointer;
  display: inline-flex;
  fill: #5f6368;
  flex: 1;
  justify-content: center;
  padding: 6px;
  position: relative;
  transition: background 0.5s, fill 0.5s;
}

.commutes-modal .travel-modes label:hover {
  background-color: #f1f3f4;
}

.commutes-modal .travel-modes svg {
  height: 24px;
  width: 24px;
}

.commutes-modal .travel-modes .left-label {
  border-left-width: 1px;
  border-radius: 4px 0 0 4px;
}

.commutes-modal .travel-modes .right-label {
  border-radius: 0 4px 4px 0;
  border-right-width: 1px;
}

.commutes-modal .travel-modes input[type=radio]:checked+label {
  background: #e8f0fe;
  fill: #1967d2;
}

.commutes-modal .travel-modes input[type=radio]:focus-visible+label {
  outline: 2px solid Highlight;
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -2px;
}

.commutes-modal .modal-action-bar {
  display: flex;
  justify-content: flex-end;
}

.commutes-modal .modal-action-bar button {
  background: #ffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 32px;
}

.commutes-modal .modal-action-bar .delete-destination-button {
  color: #c5221f;
  left: 18px;
  position: absolute;
}

.commutes-modal .modal-action-bar .cancel-button {
  color: #0000008a;
}

.commutes-modal .modal-action-bar .add-destination-button,
.commutes-modal .modal-action-bar .edit-destination-button {
  color: #1a73e8;
}

.hide {
  display: none;
}



/* ========== NAVBAR STYLES ========== */
.navbar {
  background-color: transparent !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 40px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: #1f3d56 !important;
  padding: 15px 0;
  border-bottom: 2px solid white;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.navbar .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar .logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navbar .logo-text {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle .menu-text {
  color: #91c6e5;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: lowercase;
  border-bottom: 2px solid #d2bc8a;
  padding-bottom: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1f3d56;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 36px;
  position: relative;
  overflow: hidden;
}

/* Background SVG pattern for mobile menu */
.mobile-menu-content::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  background: url(hero_img2.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.15;
  z-index: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.mobile-menu-header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu-header .logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mobile-menu-header .logo-text {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.close-menu {
  background: none;
  border: none;
  color: #91c6e5;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid #d2bc8a;
  padding-bottom: 2px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.mobile-nav-links li {
  margin-bottom: 15px;
}

.mobile-nav-links li a {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links li:nth-child(3) a {
  color: #d2bc8a;
}

.mobile-nav-links li a:hover {
  color: #91c6e5;
}

.sections-swiper {
  height: calc(100vh - 1px);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}

.home-hero {
  background: #1f3d56;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.home-hero .bg-holder {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.home-hero .bg-holder > img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border-style: none;
}

.home-hero .bg-holder:after {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #787878);
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.home-hero .hero-wrap {
  bottom: 200px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.container {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 36px;
  width: 100%;
  overflow-x: hidden;
}

.home-hero .hero-title {
  color: #fff;
  display: block;
  font-size: 40px;
  line-height: 1.09;
  margin: 0 -10px;
  text-align: center;
  width: auto;
}

.anim-title.ready,
.main-nav li > a.ready {
  opacity: 1;
}

.anim-title,
.main-nav li > a {
  opacity: 1;
  overflow: hidden;
  width: 100%;
}

b,
strong {
  font-weight: bolder;
}

.home-hero .hero-title span {
  color: #91c6e5;
}

.home-hero .bg-holder:before {
  background: url(hero_img2.svg) no-repeat 0 0;
  background-size: 552px 742px;
  content: "";
  height: 742px;
  opacity: 0.3;
  position: absolute;
  right: -175px;
  top: 125px;
  width: 552px;
  z-index: 1;
}

.home-services {
  background: #1f3d56;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
}

.home-services .head-text {
  margin-bottom: 30px;
}

.home-services h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.11;
  text-align: right;
}

.home-services h1 span {
  color: #91c6e5;
}

.home-services .book-services {
  margin: 0;
}

.home-services .book-services .block {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.home-services .book-services .service-text {
  border-bottom: 2px solid #cddfeb;
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 13px;
}

.home-services .book-services .service-text a {
  color: #fff;
}

.home-services .book-services .book-link {
  font-family: Poppins, Helvetica Neue, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-left: 9px;
  text-align: right;
  text-transform: uppercase;
  width: 80px;
}

.home-services .book-services .book-link a {
  color: #d2bc8a;
  padding: 0 1px 2px;
  position: relative;
}

.home-services .book-services .book-link a:after {
  background: #91c6e5;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.home-services .book-services .book-link a:hover {
  color: #fff;
}

.home-services .book-services .text-right {
  padding-top: 23px;
}

.home-intro {
  background: #1f3d56;
  color: #fff;
  padding-bottom: 50px;
  padding-top: 50px;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.home-intro h1 {
  color: #fff;
  font-size: 41px;
  line-height: 0.9512;
}

.home-intro p {
  margin-bottom: 1.7em;
}

.btn.btn-primary {
  background: #fff;
  color: #1f3d56;
}

.btn {
  border: 5px solid #d2bc8a;
  border-radius: 24px;
  display: inline-block;
  font-family: Poppins, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.25;
  padding: 7px 16px;
}

.btn,
.footer .copy {
  text-align: center;
  text-transform: uppercase;
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a {
  color: #91c6e5;
  transition: color 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    background 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}

a {
  background-color: transparent;
}

.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}

.home-services {
  background: #1f3d56;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.home-services .head-text {
  margin-bottom: 30px;
}

.anim-title.ready,
.main-nav li > a.ready {
  opacity: 1;
}

.home-services h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.11;
  text-align: right;
}

.anim-title,
.main-nav li > a {
  opacity: 0;
  overflow: hidden;
  width: 100%;
}

.home-services h1 span {
  color: #91c6e5;
}

.home-services .book-services {
  margin: 0;
}

.home-services .book-services .block {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.home-services .book-services .service-text {
  border-bottom: 2px solid #cddfeb;
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 13px;
}

.home-services .book-services .service-text a {
  color: #fff;
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a {
  color: #91c6e5;
  transition: color 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    background 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}

a {
  background-color: transparent;
}

.home-services .book-services .book-link {
  font-family: Poppins, Helvetica Neue, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-left: 9px;
  text-align: right;
  text-transform: uppercase;
  width: 80px;
}

.home-services .book-services .book-link a {
  color: #d2bc8a;
  padding: 0 1px 2px;
  position: relative;
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a {
  color: #91c6e5;
  transition: color 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    background 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}

a {
  background-color: transparent;
}

.home-services .book-services .text-right {
  padding-top: 23px;
}

.text-right {
  text-align: right;
}

.btn-link {
  color: #d2bc8a;
  display: inline-block;
  font-family: Poppins, Helvetica Neue, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 7px;
  position: relative;
}

.home-services h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.11;
  text-align: right;
}

.anim-title.ready,
.main-nav li > a.ready {
  opacity: 1;
}

.anim-title.ready,
.main-nav li > a.ready {
  opacity: 1;
}

.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}
.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}

.doctor-section {
  background: #d2bc8a;
  color: #fff;
  padding-bottom: 85px;
  padding-top: 1px;
  position: relative;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.doctor-section .doctor-wrap {
  position: relative;
}
.doctor-section .doctor-wrap {
  position: relative;
}

.doctor-section .image-holder {
  margin-right: -36px;
  margin-top: 0;
  padding-top: 158%;
  position: relative;
}

.doctor-section .image-holder img {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.doctor-section .image-holder img {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.doctor-section .image-holder:after {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #787878);
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 15%;
}
.doctor-section .image-holder:after {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #787878);
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 15%;
}

.doctor-section .desc-holder {
  bottom: 22px;
  left: 11px;
  position: absolute;
}

.doctor-section h1 {
  color: #fff;
  font-size: 48px;
  line-height: 0.8542;
  margin-bottom: 1rem;
}

/* Scroll-based horizontal animation for doctor heading (large screens only) */
@media (min-width: 992px) {
  .doctor-section h1.scroll-animate-h1 {
    will-change: transform;
    transition: transform 0.1s ease-out;
  }
}

.doctor-section .btn {
  margin-bottom: 24px;
  padding: 6px 24px;
}
.btn.btn-primary:hover,
.btn.btn-secondary {
  background: #1f3d56;
  color: #fff;
}

.doctor-section .text {
  display: block;
  font: 400 22px / 1 Poppins, Helvetica Neue, Arial, sans-serif;
  text-transform: uppercase;
}

.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}
.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}

.patients-section {
  background: #d2bc8a;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  overflow: visible;
  z-index: 0;
}

/* Hide overflow only on large screens to prevent scroll-Y */
@media (min-width: 992px) {
  .patients-section {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }

  .patients-section .container {
    overflow: hidden !important;
  }

  .patient-slider {
    overflow: hidden !important;
  }
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-horizontal {
  touch-action: pan-y;
}
.swiper {
  margin-left: auto;
  /* margin-right: auto; */
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper {
  margin-left: auto;
  /* margin-right: auto; */
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.patients-section .patient-slider .swiper-wrapper {
  z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.patients-section .image-outer {
  padding-left: 22px;
  padding-top: 32px;
  position: relative;
  overflow: visible;
}
.patients-section .image-holder {
  height: 257px;
  margin: 0 auto 35px;
  position: relative;
  width: 257px;
  overflow: visible;
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}
a {
  color: #91c6e5;
  transition: color 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    background 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}

a {
  background-color: transparent;
}

.patients-section .rotate-text-holder {
  height: 120%;
  width: 120%;
  /* left: -15%;
  top: -15%; */
  right: -10%;
   bottom: -10%; 
   font-size: 22px;
  position: absolute;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.circular-text-svg{
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  fill: #1f3d56;
}

/* Clip overflow on large screens but allow circular text to show */
@media (min-width: 992px) {
  .patients-section .image-outer {
    overflow: visible;
  }

  .patients-section .image-holder {
    overflow: visible;
  }
}

.patients-section .circular-text-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.patients-section .circular-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  fill: #1f3d56;
}

/* Hide circular text on mobile */
@media (max-width: 991px) {
  .patients-section .rotate-text-holder {
    display: none;
  }
}

.patients-section .swiper-button-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  top: auto;
  bottom: 25px;
  transform: translateX(-50%);
  width: 280px;
  z-index: 100;
  pointer-events: none;
}
/* Duplicate removed - see line 961 for rotate-text-holder styles */

.patients-section .image-holder img {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.patients-section .image-holder a:after {
  background: rgba(31, 61, 86, 0.69);
  border-radius: 100%;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    visibility 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  visibility: hidden;
}

.patients-section .desc-holder {
  font: 500 16px / 1.5625 Poppins, Helvetica Neue, Arial, sans-serif;
  padding: 0 4px;
}

.patients-section .desc-holder p {
  margin-bottom: 10px;
}

.patients-section .desc-holder .name {
  color: #1f3d56;
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}

.patients-section .desc-holder .btn-link {
  color: #1f3d56;
  font-size: 13px;
  padding-bottom: 5px;
}

.btn-link:after {
  background: #91c6e5;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.patients-section .swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.patients-section .swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.patients-section .swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.patients-section .swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.patients-section .image-holder img {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.patients-section .image-holder a:after {
  background: rgba(31, 61, 86, 0.69);
  border-radius: 100%;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95),
    visibility 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  visibility: hidden;
}

.patients-section .desc-holder .btn-link {
  color: #1f3d56;
  font-size: 13px;
  padding-bottom: 5px;
}

.btn-link {
  color: #d2bc8a;
  display: inline-block;
  font-family: Poppins, Helvetica Neue, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 7px;
  position: relative;
}

.btn-link:after {
  background: #91c6e5;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.patients-section .swiper-button-holder .swiper-button-next,
.patients-section .swiper-button-holder .swiper-button-prev {
  background: #1f3d56;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 58px;
  left: auto;
  right: auto;
  top: auto;
  /* margin-right: 100px; */
  position: relative;
  transition: background 0.35s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* .patients-section .swiper-button-holder .swiper-button-next:hover,
.patients-section .swiper-button-holder .swiper-button-prev:hover {
  background: #2a5070;
  transform: scale(1.05);
} */
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top:   calc(0px - (var(--swiper-navigation-size) / 2));
  /* margin-right: 80px; */
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

/* .patients-section .swiper-button-holder .swiper-button-next:after,
.patients-section .swiper-button-holder .swiper-button-prev:after {
  color: #d2bc8a;
  content: "";
  font-family: icomoon;
  font-size: 24px;
  left: 47%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
} */
/* .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
} */
/* .swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
} */

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: 100%;
}
/* .swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
} */

/* .patients-section .swiper-button-holder .swiper-button-next:after {
  content: "";
  left: 53%;
} */
/* .patients-section .swiper-button-holder .swiper-button-next:after,
.patients-section .swiper-button-holder .swiper-button-prev:after {
  color: #d2bc8a;
  content: "";
  font-family: icomoon;
  font-size: 24px;
  left: 47%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
} */
/* .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
} */

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.patients-section:after {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 15%;
  z-index: -1;
}

.patients-section .image-outer {
  padding-left: 22px;
  padding-top: 32px;
  position: relative;
}

.sections-swiper > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
}

.contact-section {
  background: #f0f0f0;
  color: #1f3d56;
  text-align: right;
}

.swiper-slide.contact-section {
  display: flex !important;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
}

.contact-section .desc-holder {
  padding-bottom: 50px;
  padding-top: 50px;
  padding-right: 60px;
  width: 50% !important;
  flex: 0 0 50% !important;
  box-sizing: border-box;
}

.contact-section h1 {
  font-size: 64px !important;
  font-weight: 600;
  line-height: 1.0625;
  margin-bottom: 47px;
  max-width: 100%;
}

.contact-section .contact-details {
  font: 600 23px / 1.3043 Poppins, Helvetica Neue, Arial, sans-serif;
}

.contact-section .holder:first-child {
  border-top: 1px solid #a2a0a0;
}

.contact-section .holder {
  border-bottom: 1px solid #a2a0a0;
  padding: 17px 0;
}

.contact-section .holder a {
  color: #1f3d56;
}

.contact-section .map-holder {
  width: 50% !important;
  flex: 0 0 50% !important;
  min-height: 500px;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

.contact-section .map-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sections-swiper > .swiper-wrapper > .swiper-slide .map-holder {
  background: #fff;
  height: 100%;
  position: relative;
}

.sections-swiper > .swiper-wrapper > .swiper-slide .map-holder img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.contact-section .map-holder img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Contact Section - Mobile Responsive */
@media (max-width: 991px) {
  .swiper-slide.contact-section {
    flex-direction: column !important;
  }

  .contact-section .desc-holder {
    width: 100% !important;
    flex: 0 0 100% !important;
    padding-right: 36px;
  }

  .contact-section .map-holder {
    width: 100% !important;
    flex: 0 0 100% !important;
    min-height: 400px;
  }
}

.anim-title.ready,
.main-nav li > a.ready {
  opacity: 1;
}

.anim-title {
  opacity: 1;
}

.map-holder {
  display: block;
}

.footer {
  background: #fff;
  padding-bottom: 90px;
  padding-top: 42px;
}

.footer .footer-logo {
  margin-bottom: 10px;
  width: 120px;
}

.footer .footer-links {
  width: 50%;
  text-align: right;
}
.about-content ul,
.contact-section .social-networks,
.exams-content ul,
.footer .footer-links,
.header .main-nav,
.header .main-nav .sub-nav ul,
.header .social-networks,
.meet-content .recognition-block .reco-logos,
.services-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer .footer-links li {
  font: 600 14px / 1.428 Poppins, Helvetica Neue, Arial, sans-serif;
  margin-bottom: 14px;
  text-align: right;
  text-transform: uppercase;
}

footer .footer-links li a {
  color: #91c6e5;
}

.btn,
.footer .copy {
  text-align: center;
  text-transform: uppercase;
}
.footer .copy {
  color: #1f3d56;
  font: 600 11px / 1.3636 Poppins, Helvetica Neue, Arial, sans-serif;
}

.footer .footer-holder {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 18px;
}

.buttons-block {
  background: #fff;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  margin: 0 -2px;
  position: fixed;
  right: 0;
  z-index: 999;
}

.buttons-block .wrap {
  padding: 0 2px;
  width: 50%;
}

.buttons-block a {
  background: #d2bc8a;
  color: #003132;
  display: block;
  font: 500 19px / 1.2631 Lexend, Helvetica Neue, Arial, sans-serif;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}

.buttons-block {
  display: none;
}

.hidden {
  display: none !important;
}

/* ========== MOBILE RESPONSIVE - All sections visible ========== */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .navbar{
    background-color: #1f3d56 !important;
  }

  .sections-swiper {
    height: auto !important;
    /* overflow: visible !important; */
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .sections-swiper > .swiper-wrapper {
    display: block !important;
    flex-direction: column !important;
    transform: none !important;
    width: 100% !important;
  }

  .sections-swiper > .swiper-wrapper > .swiper-slide {
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    padding: 0 20px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .home-hero {
    min-height: 100vh;
    height: auto;
    overflow: hidden;
  }

  .home-hero .bg-holder {
    height: 100vh;
    min-height: 500px;
  }

  .home-hero .bg-holder:before {
    display: none;
  }

  .home-hero .hero-wrap {
    bottom: 100px;
  }

  .home-hero .hero-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 200px;
    padding: 50px 10px;
  }

  .home-intro {
    padding: 40px 0;
  }

  .home-intro h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .home-intro p {
    font-size: 14px;
  }

  .home-services {
    padding: 40px 0;
  }

  .home-services h1 {
    font-size: 24px;
    text-align: center;
  }

  .home-services .head-text {
    margin-bottom: 30px;
  }

  .home-services .book-services .service-text {
    font-size: 16px;
  }

  .home-services .book-services .book-link {
    font-size: 11px;
    width: 65px;
  }

  .doctor-section {
    padding: 20px 0 60px;
    overflow: hidden;
  }

  .doctor-section .image-holder {
    padding-top: 120%;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .doctor-section h1 {
    font-size: 32px;
  }

  .doctor-section .text {
    font-size: 16px;
  }

  .patients-section {
    padding: 40px 0;
    overflow: visible !important;
  }

  .patients-section .image-outer {
    padding-left: 0 !important;
    overflow: visible !important;
  }

  .footer {
    padding: 30px 0 100px;
  }

  .footer .footer-holder {
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-logo {
    margin: 0 auto 15px;
  }

  .footer .footer-links {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .footer .footer-links li {
    text-align: center;
  }

  .footer .copy {
    text-align: center;
  }

  .hide-desktop {
    display: none !important;
  }

  .contact-section .desc-holder {
    padding: 30px 20px !important;
    text-align: center;
  }

  .contact-section h1 {
    text-align: center;
  }

  .contact-section .contact-details {
    text-align: center;
  }

  .contact-section .holder {
    text-align: center;
  }

  .btn-link {
    font-size: 16px;
  }

  .swiper-slide{
    height: 100vh;
    width: 100%
  }

  .timing{
    display: none;
  }

  .contact-section h1 {
    font-size: 38px !important;
  }

}

/* ========== LARGE MOBILE (480px - 767px) ========== */
@media (min-width: 480px) and (max-width: 767px) {
  .home-hero .hero-title {
    font-size: 40px;
    /* padding-bottom: 50px; */
  }

  .home-intro h1 {
    font-size: 34px;
  }

  .home-services h1 {
    font-size: 28px;
  }

  .home-services .book-services .service-text {
    font-size: 18px;
  }

  .home-services .book-services .book-link {
    font-size: 12px;
    width: 75px;
  }

  .doctor-section h1 {
    font-size: 40px;
  }

  .doctor-section .text {
    font-size: 18px;
  }

  .contact-section h1 {
    font-size: 38px;
  }

  .patients-section .image-holder {
    width: 250px !important;
    height: 250px !important;
  }

  .patients-section .swiper-button-holder {
    width: 230px !important;
  }
}

@media (min-width: 768px) {
  .sections-swiper {
    height: auto;
  }

  .navbar{
    background-color: transparent !important;
  }

  .fixed-contact-btns{
  position: fixed;
  bottom: 0px;
  /* right: 20px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
  width: 100%;
  background-color: black;
  /* height: 50px; */
}

.fixed-Btn{
  background-color: #d2bc8a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 0;
  width: 60px;
  height: 50px;
  z-index: 1002;
}

  #footer,
  .sections-swiper > .swiper-wrapper {
    display: block;
  }

  .home-hero .bg-holder {
    height: 100vh;
    margin-left: 22.8%;
  }

  .home-hero .hero-wrap {
    bottom: 25px;
  }

  .home-hero .hero-title {
    font-size: 70px;
    line-height: 1.1;
    max-width: 660px;
    margin-bottom: 50px;
    text-align: left;
  }

  .home-hero .bg-holder:before {
    background-size: 510px 634px;
    height: 634px;
    right: -37px;
    top: 12px;
    width: 510px;
  }

  .home-intro {
    padding-bottom: 34px;
    padding-top: 85px;
  }

  .home-intro .holder {
    line-height: 1.75;
    max-width: 550px;
  }

  .home-intro h1 {
    font-size: 55px;
    line-height: 1.03636;
    margin-bottom: 19px;
  }

  .home-intro p {
    margin-bottom: 1.9em;
  }

  .home-intro .btn {
    padding: 8px 24px;
  }

  .home-services {
    padding-bottom: 219px;
    padding-top: 34px;
  }

  .home-services .head-text {
    margin-bottom: 81px;
    margin-left: auto;
    max-width: 600px;
  }

  .home-services h1 {
    font-size: 55px;
  }

  .home-services .book-services {
    padding: 0 27px;
  }

  .home-services .book-services .block {
    margin-bottom: 24px;
  }

  .home-services .book-services .service-text {
    font-size: 35px;
    padding-bottom: 23px;
  }

  .home-services .book-services .book-link {
    font-size: 20px;
    margin-left: 5px;
    width: 120px;
  }

  .home-services .book-services .text-right {
    padding-top: 26px;
  }

  .btn-link {
    font-size: 28px;
  }

  .home-services h1 {
    font-size: 55px;
  }

  .doctor-section {
    padding-bottom: 50px;
  }

  .doctor-section {
    padding-bottom: 50px;
  }

  .doctor-section .image-holder {
    margin-left: auto;
    margin-right: -55px;
    margin-top: -129px;
    padding-top: 85.5%;
    width: 89.4%;
  }

  .doctor-section .desc-holder {
    bottom: 42px;
    padding: 0 20px;
  }

  .doctor-section h1 {
    font-size: 70px;
    line-height: 1.0285;
    margin-bottom: 0.7rem;
    max-width: 607px;
  }

  .doctor-section .btn-holder {
    padding-right: 35px;
    text-align: center;
  }

  .doctor-section .btn {
    padding: 8px 32px;
  }

  .doctor-section .text {
    font-size: 29px;
    line-height: 1.0689;
    max-width: 607px;
  }

  .patients-section {
    padding-bottom: 40px;
    padding-top: 15px;
  }

  .patients-section {
    padding-bottom: 40px;
    padding-top: 15px;
  }

  .patients-section .holder {
    display: flex;
    flex-wrap: wrap;
  }

  .patients-section .image-outer {
    padding-bottom: 40px;
    padding-left: 42px;
  }

  .patients-section .image-holder {
    height: 296px;
    margin: 0;
    transform: rotate(-90deg);
    width: 296px;
  }

  .patients-section .image-holder img {
    transform: rotate(90deg);
  }

  .patients-section .rotate-text-holder:after {
    left: -41px;
  }

  .patients-section .desc-holder {
    align-items: center;
    display: flex;
    flex: 1;
    line-height: 1.5;
    padding: 10px 0 48px 62px;
    position: relative;
  }

  .patients-section .desc-holder p {
    margin-bottom: 5px;
  }

  .patients-section .desc-holder .name {
    font-size: 22px;
    margin-bottom: 0;
  }

  .patients-section .desc-holder .btn-link {
    bottom: 50px;
    font-size: 20px;
    left: 62px;
    padding-bottom: 2px;
    position: absolute;
  }

  .patients-section .holder {
    display: flex;
    flex-wrap: wrap;
  }

  .patients-section .image-outer {
    padding-bottom: 40px;
    padding-left: 42px;
  }

  .book-block {
    padding: 14px 0 61px;
  }

  .patients-section .image-holder img {
    transform: rotate(90deg);
  }

  .patients-section .desc-holder .btn-link {
    bottom: 50px;
    font-size: 20px;
    left: 62px;
    padding-bottom: 2px;
    position: absolute;
  }

  .patients-section .swiper-button-holder {
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    bottom: 30px !important;
    transform: translateX(-50%) !important;
    width: 340px;
  }

  .btn-link {
    font-size: 28px;
  }

  .patients-section .swiper-button-holder .swiper-button-next,
  .patients-section .swiper-button-holder .swiper-button-prev {
    height: 50px;
    width: 50px;
  }

  .patients-section .swiper-button-holder .swiper-button-next:after,
  .patients-section .swiper-button-holder .swiper-button-prev:after {
    font-size: 18px;
  }

  .contact-section .desc-holder {
    padding-bottom: 63px;
    padding-top: 68px;
  }

  .contact-section h1 {
    font-size: 68px;
    line-height: 1.0588;
    margin-bottom: 38px;
    margin-left: auto;
    max-width: 640px;
  }

  .contact-section h1 {
    font-size: 34px;
    line-height: 1.1136;
    margin-bottom: 30px;
    margin-left: -5px;
  }

  .contact-section .holder {
    padding: 17px 0;
  }

  .contact-section .map-holder {
    display: block;
    padding-top: 94.3%;
  }

  #footer,
  .sections-swiper > .swiper-wrapper {
    display: block;
  }

  .footer .footer-logo {
    margin-bottom: 14px;
  }

  .footer .footer-links li {
    margin-bottom: 19px;
  }

  .footer .copy {
    font-size: 13px;
    text-align: right;
  }

  .buttons-block {
    display: flex;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 1.5556;
  }

  .home-hero .hero-wrap {
    bottom: 36px;
  }

  .home-hero .hero-title {
    font-size: 100px;
    max-width: 70%;
  }

  .home-hero .bg-holder:before {
    background-size: 899px 1125px;
    height: 1125px;
    right: -55px;
    top: 22px;
    width: 899px;
  }

  .home-intro {
    padding-bottom: 42px;
  }

  .home-intro .holder {
    line-height: 1.6667;
    max-width: 735px;
  }

  .home-intro h1 {
    font-size: 70px;
    line-height: 1.028;
    margin-bottom: 10px;
  }

  .home-intro p {
    margin-bottom: 1.3em;
  }

  .home-services {
    padding-bottom: 216px;
    padding-top: 42px;
  }

  .home-services .head-text {
    margin-bottom: 62px;
    max-width: 750px;
  }

  .home-services h1 {
    font-size: 70px;
    opacity: 1;
  }

  .home-services .book-services {
    max-width: 50%;
    padding: 0;
  }

  .home-services .book-services .text-right {
    padding-top: 32px;
  }

  .home-services h1 {
    font-size: 70px;
  }

  .doctor-section .image-holder {
    margin-right: 34px;
    padding-top: 48.2%;
    width: 69.3%;
  }

  .doctor-section .desc-holder {
    bottom: 56px;
    padding: 0;
  }

  .doctor-section h1 {
    margin-left: 220px;
    max-width: 50%;
  }

  .doctor-section .btn-holder {
    padding-left: 90px;
    padding-right: 0;
  }

  .doctor-section .text {
    max-width: 100%;
  }

  .patients-section {
    padding-bottom: 7px;
    padding-top: 3px;
  }

  .patients-section {
    padding-bottom: 7px;
    padding-top: 3px;
  }

  .patients-section .patient-slider {
    margin: 0 auto;
    max-width: 938px;
  }

  .patients-section .image-outer {
    padding-bottom: 50px;
    padding-left: 118px;
    padding-top: 52px;
  }

  .patients-section .image-holder {
    height: 385px;
    width: 385px;
  }

  .patients-section .rotate-text-holder:after {
    background-size: 360px 320px;
    height: 320px;
    left: -53px;
    top: -43px;
    width: 360px;
  }

  .patients-section .desc-holder {
    font-size: 22px;
    line-height: 1.2727;
    padding: 10px 0 48px 107px;
  }

  .patients-section .desc-holder p {
    margin-bottom: 35px;
  }

  .patients-section .desc-holder .btn-link {
    bottom: 73px;
    left: 106px;
  }

  .patients-section .image-outer {
    padding-bottom: 50px;
    padding-left: 118px;
    padding-top: 52px;
  }

  .patients-section .image-holder {
    height: 385px;
    width: 385px;
  }

  .book-block {
    padding: 34px 0 82px;
  }

  .patients-section .desc-holder .btn-link {
    bottom: 73px;
    left: 106px;
  }

  .patients-section .swiper-button-holder {
    top: auto !important;
    left: 50% !important;
    bottom: 30px !important;
    transform: translateX(-50%) !important;
    width: 440px;
  }

  .patients-section .swiper-button-holder .swiper-button-next,
  .patients-section .swiper-button-holder .swiper-button-prev {
    height: 55px;
    width: 55px;
  }

  .patients-section .swiper-button-holder .swiper-button-next:after,
  .patients-section .swiper-button-holder .swiper-button-prev:after {
    font-size: 20px;
  }

/* Duplicate contact section styles removed - see line 1312 for main styles */

  .footer {
    padding-top: 32px;
  }
}

@media (min-width: 1600px) {
  .home-intro {
    padding-bottom: 50px;
    padding-top: 127px;
  }

  .home-intro .holder {
    max-width: 975px;
  }

  .home-intro h1 {
    font-size: 90px;
    line-height: 1.0222;
    margin-bottom: 17px;
  }

  .home-intro p {
    margin-bottom: 1.9em;
  }

  .contact-section .map-holder {
    padding-top: 0;
    width: 50%;
    display: block;
  }
}

/* ========== PATIENT SLIDER FIX - Like Rise Dental ========== */
.patient-slider {
  position: relative;
  overflow: visible;
}

/* Large screen - hide overflow to prevent scroll-Y */
@media (min-width: 992px) {
  .patient-slider {
    overflow: hidden !important;
  }
}

.patient-slider .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}

.patient-slider .swiper-slide-active {
  opacity: 1 !important;
}

/* Image holder - relative positioning for buttons */
.patients-section .image-outer {
  position: relative;
}

.patients-section .image-holder {
  position: relative;
  z-index: 1;
}

/* Navigation Buttons - At bottom corners of circle like Rise Dental */
.patients-section .swiper-button-holder {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 280px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  z-index: 100 !important;
  pointer-events: none;
  top: auto !important;
  right: auto !important;
}

.patients-section .swiper-button-holder .swiper-button-next,
.patients-section .swiper-button-holder .swiper-button-prev {
  background: #1f3d56 !important;
  border-radius: 50% !important;
  width: 55px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  left: 55px !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.patients-section .swiper-button-holder .swiper-button-next:hover,
.patients-section .swiper-button-holder .swiper-button-prev:hover {
  background: #2a5070 !important;
  transform: scale(1.1);
}

.patients-section .swiper-button-holder .swiper-button-next:after,
.patients-section .swiper-button-holder .swiper-button-prev:after {
  color: #d2bc8a !important;
  font-size: 20px !important;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .patients-section {
    padding: 30px 0;
  }

  .patients-section .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .patients-section .image-outer {
    padding: 20px 0;
    position: relative;
  }

  .patients-section .image-holder {
    width: 220px !important;
    height: 220px !important;
    margin: 0 auto;
    transform: none !important;
  }

  .patients-section .swiper-button-holder {
    width: 200px !important;
    bottom: 20px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next,
  .patients-section .swiper-button-holder .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    left: 7px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next:after,
  .patients-section .swiper-button-holder .swiper-button-prev:after {
    font-size: 14px !important;
  }

  .patients-section .desc-holder {
    padding: 30px 15px 0;
    text-align: center;
  }

  .patients-section .desc-holder p {
    font-size: 15px;
    color: #1f3d56;
  }

  .patients-section .desc-holder .name {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f3d56;
  }

  /* Contact Section Mobile */
  .contact-section {
    flex-direction: column;
  }

  .contact-section .desc-holder {
    width: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .contact-section h1 {
    font-size: 34px;
    line-height: 1.1136;
    margin-bottom: 30px;
  }

  .contact-section .map-holder {
    width: 100%;
    min-height: 300px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .patients-section .image-holder {
    width: 250px !important;
    height: 250px !important;
  }

  .patients-section .swiper-button-holder {
    width: 300px !important;
  }

  .home-hero .hero-title {
    font-size: 50px;
  }

  .home-intro h1 {
    font-size: 45px;
  }

  .home-services h1 {
    font-size: 45px;
  }

  .doctor-section h1 {
    font-size: 50px;
  }

  .contact-section h1 {
    font-size: 45px;
  }
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .patients-section .image-holder {
    width: 296px !important;
    height: 296px !important;
  }

  .patients-section .swiper-button-holder {
    width: 340px !important;
  }
}

/* Large Tablet / Small Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .home-hero .hero-title {
    font-size: 80px;
  }

  .home-intro h1 {
    font-size: 60px;
  }

  .home-services h1 {
    font-size: 60px;
  }

  .contact-section h1 {
    font-size: 55px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .patients-section .image-holder {
    width: 385px !important;
    height: 385px !important;
  }

  .patients-section .swiper-button-holder {
    width: 440px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next,
  .patients-section .swiper-button-holder .swiper-button-prev {
    width: 55px !important;
    height: 55px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next:after,
  .patients-section .swiper-button-holder .swiper-button-prev:after {
    font-size: 20px !important;
  }
}

/* ========== VERY SMALL SCREENS (below 380px) ========== */
@media (max-width: 379px) {
  .container {
    padding: 0 15px !important;
  }

  .home-hero .hero-title {
    font-size: 26px;
  }

  .home-intro h1 {
    font-size: 24px;
  }

  .home-services h1 {
    font-size: 20px;
  }

  .home-services .book-services .service-text {
    font-size: 14px;
  }

  .home-services .book-services .book-link {
    font-size: 10px;
    width: 55px;
  }

  .doctor-section h1 {
    font-size: 28px;
  }

  .doctor-section .text {
    font-size: 14px;
  }

  .contact-section h1 {
    font-size: 28px;
  }

  .contact-section .contact-details {
    font-size: 16px;
  }

  .patients-section .image-holder {
    width: 180px !important;
    height: 180px !important;
  }

  .patients-section .swiper-button-holder {
    width: 160px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next,
  .patients-section .swiper-button-holder .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }

  .patients-section .swiper-button-holder .swiper-button-next:after,
  .patients-section .swiper-button-holder .swiper-button-prev:after {
    font-size: 12px !important;
  }

  .navbar .logo-img {
    width: 40px;
    height: 40px;
  }

  .navbar .logo-text {
    font-size: 8px;
  }

  .mobile-nav-links li a {
    font-size: 28px;
  }
}
