@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  position: relative;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-circle {
  width: 90px;
  height: 90px;
  border: 4px solid rgba(22, 163, 74, 0.2);
  border-top: 4px solid #16a34a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-icon i {
  color: #16a34a;
  font-size: 28px;
}

.loader-content h5 {
  margin-top: 25px;
  color: #0f172a;
  font-weight: 600;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* Hide loader */
.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.gym-btn {
  position: fixed;
  z-index: 9999;
  padding: 5px;
  background: #fff;
  bottom: 13%;
  right: 2%;
  border: 1px solid #6B565A;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  animation: float 2s ease-in-out infinite;
}
.gym-btn img {
  width: 40px;
}

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #6B565A;
  /* calming green */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background: #6B565A;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

#backToTop:active {
  transform: translateY(0);
}

.routine-modal .modal-body {
  height: 700px;
  overflow: auto;
}
.routine-modal .modal-body::-webkit-scrollbar {
  width: 3px;
}
.routine-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.routine-modal .modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.routine-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.routine-modal .daily-routine {
  background: #f8fafc;
}
.routine-modal .daily-routine .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0;
  letter-spacing: 1px;
}
.routine-modal .daily-routine .section-title p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.routine-modal .daily-routine .routine-timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.routine-modal .daily-routine .routine-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #6B565A;
}
.routine-modal .daily-routine .routine-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 40px;
}
.routine-modal .daily-routine .time-badge {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100px;
  height: 100px;
  background: #6B565A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.routine-modal .daily-routine .routine-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.routine-modal .daily-routine .routine-card img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.routine-modal .daily-routine .routine-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}
.routine-modal .daily-routine .routine-card p {
  color: #666;
  line-height: 1.8;
}
.routine-modal .daily-routine {
  /* Responsive */
}
@media (max-width: 768px) {
  .routine-modal .daily-routine .routine-item {
    padding-left: 0;
  }
  .routine-modal .daily-routine .time-badge {
    position: relative;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
  .routine-modal .daily-routine .section-title h2 {
    font-size: 32px;
  }
}

.title-area h6 {
  color: #6B565A;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.title-area h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: inherit;
  color: #6B565A;
}
.title-area p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  line-height: inherit;
  width: 950px;
  margin: auto;
}

.hero-section {
  background: #F9f1E7;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  margin-bottom: 7%;
}
.hero-section .schedule-btn {
  background-color: #6B565A;
  color: #fff;
}
.hero-section .schedule-btn:hover {
  transform: translateY(-3px);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/banner-bg.jpg") center center/cover;
  opacity: 0.15;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.slide {
  display: none;
  animation: fade 0.8s ease;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-content h1 {
  color: #6B565A;
  font-size: 52px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 25px;
}

.hero-content p {
  color: rgba(51, 51, 51, 0.6235294118);
  font-size: 22px;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.schedule-btn {
  background: #6B565A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
}
.schedule-btn:hover {
  transform: translateY(-3px);
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003d8f;
  font-size: 22px;
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.support-box {
  position: absolute;
  right: -100px;
  bottom: 25px;
  background: #fff;
  border-radius: 60px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.support-icon {
  width: 50px;
  height: 50px;
  background: #6B565A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.support-box small {
  color: #555;
  display: block;
  margin-bottom: 4px;
}

.support-box h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 55px 10px 0px 10px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content {
    margin-bottom: 50px;
  }
  .support-box {
    position: relative;
    left: 0;
    margin: 30px 0 auto auto;
    padding: 3px 21px;
    width: 200px;
    min-width: 200px;
    bottom: 100px;
  }
  .support-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .support-box small {
    margin-bottom: 0;
  }
  .support-box h5 {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .schedule-btn {
    padding: 8px 16px;
    font-size: 12px;
    text-align: center;
  }
  .play-icon {
    width: 60px;
    height: 60px;
  }
}
header {
  /* TOPBAR */
}
header .schedule-btn {
  background-color: #6B565A;
}
header .topbar {
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0;
  font-size: 18px;
}
header .topbar-left {
  color: #16213e;
  font-weight: 500;
  font-size: 18px;
}
header .topbar-left i {
  margin-right: 8px;
  color: #16213e;
}
header .topbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}
header .topbar-right a {
  color: #16213e;
  text-decoration: none;
  font-weight: 500;
}
header .topbar-right i {
  margin-right: 8px;
}
header .divider {
  color: #d5d5d5;
}
header .logo {
  position: absolute;
  z-index: 99;
  top: 10%;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 150px;
}
header {
  /* NAVBAR */
}
header .main-navbar {
  background: #fff;
  padding: 10px 0;
}
header .navbar-brand img {
  height: 50px;
}
header .navbar-nav {
  gap: 30px;
}
header {
  /* NAV ITEM */
}
header .navbar-nav .nav-link {
  font-size: 22px;
  font-weight: 500;
  color: #16213e;
  position: relative;
  transition: 0.3s;
}
header {
  /* DESKTOP HOVER DROPDOWN */
}
@media (min-width: 992px) {
  header .service-dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
header {
  /* DROPDOWN */
}
header .custom-dropdown {
  min-width: 260px;
  border: none;
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
}
header {
  /* BOOTSTRAP CLICK STATE */
}
header .custom-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header {
  /* MENU ITEMS */
}
header .custom-dropdown .dropdown-item {
  position: relative;
  padding: 14px 25px 14px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #16213e;
  transition: all 0.3s ease;
}
header {
  /* LINE ANIMATION */
}
header .custom-dropdown .dropdown-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #00c389;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
header {
  /* HOVER EFFECT */
}
header .custom-dropdown .dropdown-item:hover {
  color: #00c389;
  background: transparent;
  padding-left: 50px;
}
header .custom-dropdown .dropdown-item:hover::before {
  width: 15px;
}
header {
  /* DROPDOWN ARROW ANIMATION */
  /* Hamburger */
}
header .navbar-toggler {
  border: none;
  box-shadow: none !important;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header {
  /* Mobile */
}
@media (max-width: 991px) {
  header .navbar-collapse {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  header .navbar-nav {
    gap: 0;
  }
  header .nav-item {
    border-bottom: 1px solid #f2f2f2;
  }
  header .nav-link {
    padding: 15px 0;
  }
  header .book-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
  header {
    /* Dropdown */
  }
  header .custom-dropdown {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    background: #f8f9fa;
  }
  header .custom-dropdown .dropdown-item {
    padding: 12px 15px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    transition: all 0.4s ease;
  }
  .collapsing {
    transition: height 0.35s ease;
  }
}
@media (max-width: 991px) {
  .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
  }
  .custom-dropdown.show {
    display: block;
  }
  .custom-dropdown .dropdown-item {
    padding: 12px 15px 12px 35px;
  }
}
.about-section {
  margin-bottom: 10%;
}
.about-section .cards {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #6B565A;
  padding: 10px;
  border-radius: 20px;
  position: absolute;
  z-index: 1;
  left: 9%;
  top: 85%;
  width: 330px;
  gap: 20px;
  animation: float 3s ease-in-out infinite;
}
.about-section .cards p {
  font-size: 16px;
  color: #333;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 0;
}
.about-section .cards i {
  background: #6B565A;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 24px;
}
.about-section h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: inherit;
  color: #6B565A;
}
.about-section p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  line-height: inherit;
}
.about-section img {
  border-radius: 20px;
}

.why-choose-section {
  margin-bottom: 10%;
}
.why-choose-section .why-card {
  background: #fff;
  padding: 35px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}
.why-choose-section .why-card i {
  font-size: 50px;
  color: #6B565A;
  margin-bottom: 20px;
}
.why-choose-section .why-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.why-choose-section .why-card p {
  font-size: 18px;
  letter-spacing: 0.6px;
  font-weight: 400;
  margin-bottom: 0px;
}
.why-choose-section .why-card:hover {
  transform: translateY(-10px);
}

.journey-section {
  background-color: #F9F1E7;
  margin-bottom: 10%;
  padding: 4% 0%;
}
.journey-section .journey-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
.journey-section .journey-card img {
  width: 72%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: none;
  margin: auto;
  display: flex;
  border-radius: 50%;
}
.journey-section .step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6B565A;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-section .journey-card h4 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 15px 0;
}
.journey-section .journey-card p {
  padding: 0 20px 20px;
}
.journey-section .journey-card:hover {
  transform: translateY(-10px);
}

.services-section {
  background: rgba(9, 100, 236, 0.0196078431);
}
.services-section .sub-heading {
  color: #6B565A;
  font-weight: 600;
  letter-spacing: 1px;
}
.services-section .service-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}
.services-section .service-row.reverse {
  flex-direction: row-reverse;
}
.services-section .service-image {
  flex: 1;
}
.services-section .service-image img {
  width: 100%;
  border-radius: 25px;
  display: block;
}
.services-section .service-content {
  flex: 1;
}
.services-section .service-number {
  font-size: 70px;
  font-weight: 800;
  color: rgba(107, 86, 90, 0.2196078431);
  line-height: 1;
}
.services-section .service-content h3 {
  font-size: 34px;
  font-weight: 700;
  margin: 15px 0;
  color: #6B565A;
}
.services-section .service-content p {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.services-section .service-content a {
  text-decoration: none;
  color: #6B565A;
  font-weight: 600;
  font-size: 17px;
}
.services-section .service-content a:hover {
  letter-spacing: 1px;
}
.services-section {
  /* Responsive */
}
@media (max-width: 991px) {
  .services-section .service-row,
  .services-section .service-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .services-section .service-content {
    text-align: center;
  }
  .services-section .service-row {
    padding: 20px;
    margin-bottom: 10px;
  }
  .services-section .services-section h2 {
    font-size: 20px;
  }
  .services-section .service-number {
    font-size: 40px;
  }
  .services-section .services-section .service-content h3 {
    font-size: 20px;
    color: #6B565A;
  }
  .services-section .services-section .service-content p {
    font-size: 14px;
    line-height: inherit;
  }
}

.conditions-section {
  background: #fff;
  margin-bottom: 6%;
}
.conditions-section .condition-image img {
  width: 100%;
  border-radius: 25px;
}
.conditions-section .condition-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.conditions-section .condition-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 25px;
  background: #f8fafc;
  border-radius: 15px;
  transition: 0.4s;
  cursor: pointer;
}
.conditions-section .condition-item span {
  width: 40px;
  height: 40px;
  background: #6B565A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}
.conditions-section .condition-item h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.conditions-section .condition-item:hover {
  transform: translateX(10px);
  background: #6B565A;
}
.conditions-section .condition-item:hover h4 {
  color: #fff;
}

.team-section {
  margin-bottom: 5%;
}
.team-section .team-section {
  background: #f8fafc;
}
.team-section .featured-doctor {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.team-section .doctor-image img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}
.team-section .doctor-content {
  padding: 30px;
}
.team-section .doctor-content span {
  color: #6B565A;
  font-weight: 600;
}
.team-section .doctor-content h3 {
  margin: 15px 0 0px;
  font-size: 18px;
  font-weight: 700;
}
.team-section .doctor-content p {
  color: #666;
  line-height: 1.8;
}

.testimonial-section .testimonial-wrapper {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.testimonial-section .quote-icon {
  position: absolute;
  top: -25px;
  right: 50px;
  width: 80px;
  height: 80px;
  background: #6B565A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-section .quote-icon i {
  color: #fff;
  font-size: 32px;
}
.testimonial-section .testimonial-content {
  text-align: center;
}
.testimonial-section .patient-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #6B565A;
}
.testimonial-section .stars {
  margin: 25px 0;
}
.testimonial-section .stars i {
  color: #ffc107;
  margin: 0 2px;
}
.testimonial-section .testimonial-text {
  font-size: 22px;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
}
.testimonial-section .testimonial-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonial-section .testimonial-content span {
  color: #6B565A;
  font-weight: 600;
}

.about-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 8%;
  background: url("../img/about/banner.jpeg") center top/cover no-repeat;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 63, 0.75);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

/* Tablet */
@media (max-width: 991px) {
  .about-hero {
    min-height: 450px;
    padding: 80px 0;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content p {
    font-size: 18px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .about-hero {
    min-height: 400px;
    padding: 60px 20px;
  }
  .hero-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
}
.our-story-section {
  margin-bottom: 7%;
}
.our-story-section .section-subtitle {
  display: inline-block;
  color: #15803d;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.our-story-section .story-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.our-story-section .story-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}
.our-story-section {
  /* Timeline */
}
.our-story-section .story-timeline {
  position: relative;
  padding-left: 40px;
}
.our-story-section .story-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #28a745;
}
.our-story-section .timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.our-story-section .timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: #28a745;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #28a745;
}
.our-story-section .timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 8px;
}
.our-story-section .timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.our-story-section .timeline-content h4 {
  margin-bottom: 10px;
  font-weight: 700;
}
.our-story-section .timeline-content p {
  margin: 0;
  color: #666;
}
.our-story-section {
  /* Responsive */
}
@media (max-width: 991px) {
  .our-story-section .story-content {
    margin-bottom: 50px;
  }
  .our-story-section .story-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .our-story-section .story-content h2 {
    font-size: 30px;
  }
  .our-story-section .story-timeline {
    padding-left: 30px;
  }
}

.facilities-section {
  background-color: #6B565A;
  margin-bottom: 7%;
}
.facilities-section h6, .facilities-section h2, .facilities-section p {
  color: #fff;
}
.facilities-section .facility-image img {
  width: 100%;
  border-radius: 25px;
  display: block;
}
.facilities-section .facility-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}
.facilities-section .facility-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facilities-section .facility-icon i {
  color: #fff;
  font-size: 28px;
}
.facilities-section .facility-item h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.facilities-section .facility-item p {
  margin: 0;
}
@media (max-width: 991px) {
  .facilities-section .facilities-section h2 {
    font-size: 36px;
  }
  .facilities-section .facility-image {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .facilities-section .facilities-section h2 {
    font-size: 30px;
  }
  .facilities-section .facility-item {
    flex-direction: column;
    text-align: center;
  }
  .facilities-section .facility-icon {
    margin: auto;
  }
}

.vision-mission-section {
  margin-bottom: 7%;
  background-color: #F9F1E7;
  padding: 4% 0%;
}
.vision-mission-section .vm-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.vision-mission-section .vm-card:hover {
  transform: translateY(-10px);
}
.vision-mission-section .vm-icon {
  width: 90px;
  height: 90px;
  background: #6B565A;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-mission-section .vm-icon i {
  color: #fff;
  font-size: 34px;
}
.vision-mission-section .vm-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.vision-mission-section .vm-card p {
  color: #666;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: inherit;
}
.vision-mission-section .vm-image {
  text-align: center;
}
.vision-mission-section .vm-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.vision-mission-section {
  /* Responsive */
}
@media (max-width: 991px) {
  .vision-mission-section .vision-mission-section h2 {
    font-size: 36px;
  }
  .vision-mission-section .vm-image {
    margin: 40px 0;
  }
}
@media (max-width: 576px) {
  .vision-mission-section .vision-mission-section h2 {
    font-size: 30px;
  }
  .vision-mission-section .vm-card {
    padding: 30px 20px;
  }
  .vision-mission-section .vm-card h3 {
    font-size: 24px;
  }
  .vision-mission-section .vm-image img {
    max-width: 280px;
  }
}

.services-pages .robotic-banner {
  background: #6B565A;
  overflow: hidden;
  padding: 100px 0px;
}
.services-pages .robotic-banner .robotic-banner .container {
  position: relative;
  z-index: 2;
}
.services-pages .robotic-banner .banner-content {
  color: #fff;
}
.services-pages .robotic-banner .banner-subtitle {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.services-pages .robotic-banner .banner-content h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
}
.services-pages .robotic-banner .banner-content p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}
.services-pages .robotic-banner .banner-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.services-pages .robotic-banner .btn-primary-custom {
  background: #6B565A;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
.services-pages .robotic-banner .btn-primary-custom:hover {
  transform: translateY(-3px);
  background: #6B565A;
  color: #fff;
}
.services-pages .robotic-banner .banner-features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.services-pages .robotic-banner .banner-features span {
  font-size: 16px;
  color: #fff;
}
.services-pages .robotic-banner {
  /* Responsive */
}
@media (max-width: 991px) {
  .services-pages .robotic-banner .robotic-banner {
    min-height: 600px;
  }
  .services-pages .robotic-banner .banner-content h1 {
    font-size: 48px;
  }
  .services-pages .robotic-banner .banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .services-pages .robotic-banner .robotic-banner {
    min-height: 550px;
  }
  .services-pages .robotic-banner .banner-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }
  .services-pages .robotic-banner .banner-content p {
    font-size: 14px;
    line-height: inherit;
    margin-bottom: 20px;
  }
  .services-pages .robotic-banner .banner-btns {
    margin-bottom: 5px;
  }
  .services-pages .robotic-banner .btn-primary-custom {
    text-align: center;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  .services-pages .robotic-banner .banner-features {
    flex-direction: row;
    gap: 10px;
  }
}
.services-pages .robotic-gallery {
  margin-bottom: 5%;
  margin-top: 5%;
}
.services-pages .robotic-gallery .section-heading {
  max-width: 800px;
  margin: auto;
}
.services-pages .robotic-gallery .section-heading .sub-title {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.services-pages .robotic-gallery .section-heading h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}
.services-pages .robotic-gallery .section-heading p {
  color: #666;
  line-height: 1.8;
}
.services-pages .robotic-gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.services-pages .robotic-gallery .gallery-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.services-pages .robotic-gallery .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: 0.4s;
}
.services-pages .robotic-gallery .gallery-overlay h5 {
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.services-pages .robotic-gallery .gallery-card:hover img {
  transform: scale(1.1);
}
.services-pages .robotic-gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.services-pages .robotic-gallery {
  /* Responsive */
}
@media (max-width: 991px) {
  .services-pages .robotic-gallery .section-heading h2 {
    font-size: 36px;
  }
  .services-pages .robotic-gallery .gallery-card img {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .services-pages .robotic-gallery .section-heading h2 {
    font-size: 30px;
  }
  .services-pages .robotic-gallery .gallery-card img {
    height: 220px;
  }
}

footer {
  background: #F9f1E7;
  color: #333;
  padding: 40px 0;
  text-align: center;
}
footer p {
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: inherit;
}

.recovery-cta {
  position: relative;
  padding: 50px 0;
  background: #F9f1E7;
  overflow: hidden;
  margin-bottom: 5%;
}

.recovery-cta::before {
  content: "";
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: center;
  margin: auto;
  color: #333;
}

.cta-subtitle {
  display: inline-block;
  color: #333;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.cta-content h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6B565A;
}

.cta-content p {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: rgba(51, 51, 51, 0.6235294118);
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary-custom {
  background: #6B565A;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  transform: translateY(-3px);
}

.btn-outline-custom {
  border: 2px solid #6B565A;
  color: #6B565A;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .recovery-cta {
    padding: 30px 0;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .btn-primary-custom {
    padding: 10px;
  }
  .btn-outline-custom {
    padding: 10px;
  }
}
/* Contact Banner */
.contact-banner {
  background: #6B565A;
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 5%;
}
.contact-banner .banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.contact-banner .banner-content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-banner .banner-btn {
  background: #15803d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.contact-banner .banner-btn:hover {
  background: #15803d;
  color: #fff;
}
.contact-banner .banner-image img {
  max-width: 100%;
  animation: floatImg 4s ease-in-out infinite;
  border-radius: 20px;
}
@keyframes floatImg {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.contact-banner {
  /* Responsive */
}
@media (max-width: 991px) {
  .contact-banner .contact-banner {
    text-align: center;
    padding: 60px 0;
  }
  .contact-banner .banner-content h1 {
    font-size: 40px;
  }
  .contact-banner .banner-image {
    margin-top: 40px;
  }
}

.contact-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}

.contact-section p {
  color: #666;
  line-height: 1.8;
}

.contact-info {
  margin-top: 40px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info-box i {
  width: 60px;
  height: 60px;
  background: #6B565A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-box h5 {
  margin-bottom: 4px;
  font-weight: 600;
}

.info-box span {
  color: #666;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  border-color: #6B565A;
  box-shadow: none;
}

.submit-btn {
  width: 100%;
  border: none;
  background: #6B565A;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #6B565A;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section h2 {
    font-size: 36px;
  }
  .contact-form-box {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 30px;
  }
  .contact-form-box {
    padding: 20px;
  }
  .info-box {
    align-items: flex-start;
  }
}
/* Mobile */
@media (min-width: 320px) and (max-width: 767px) {
  .gym-btn {
    right: 5%;
  }
  #backToTop {
    right: 5%;
  }
  .section-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .title-area h2 {
    font-size: 24px;
    letter-spacing: 0px;
  }
  .title-area p {
    width: 100%;
    font-size: 14px;
  }
  .title-area h6 {
    font-size: 14px;
    letter-spacing: 0px;
  }
  .hero-content h1 {
    margin-bottom: 5px;
  }
  .hero-content p {
    margin-bottom: 15px;
  }
  .hero-btns {
    margin-bottom: 20px;
  }
  header .topbar-left {
    font-size: 10px;
  }
  header .topbar-right {
    justify-content: center;
  }
  header .topbar-right a {
    font-size: 12px;
  }
  header .logo {
    position: relative;
    width: 80px;
    top: -10%;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content {
    width: 100%;
  }
  .about-section {
    padding: 20px;
    margin-bottom: 10%;
  }
  .about-section img {
    width: 240px;
    display: flex;
    justify-content: end;
    margin: 0 0 auto auto;
  }
  .about-section h2 {
    font-size: 24px;
  }
  .about-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .why-choose-section {
    padding: 10px;
  }
  .why-choose-section .why-card {
    padding: 15px 10px;
  }
  .why-choose-section .why-card h4 {
    font-size: 20px;
  }
  .why-choose-section .why-card p {
    font-size: 14px;
  }
  .journey-section {
    padding: 20px;
  }
  .services-pages .robotic-banner {
    padding: 50px 0px;
  }
  .services-pages .robotic-banner .banner-content h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .services-pages .robotic-banner .banner-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .services-pages .robotic-banner .banner-btns {
    width: 50%;
    padding: 5px;
  }
  .about-section .cards {
    top: 65%;
    left: 0%;
    width: 290px;
  }
  .about-section .cards p {
    font-size: 14px;
  }
  .services-section .service-content h3 {
    font-size: 20px;
  }
  .services-section .service-content p {
    font-size: 16px;
  }
  .conditions-section .condition-image img {
    margin-bottom: 20px;
  }
  .conditions-section .condition-item {
    padding: 10px;
  }
  .conditions-section .condition-item h4 {
    font-size: 18px;
  }
  .vision-mission-section .vm-card p {
    font-size: 15px;
  }
  .testimonial-section .quote-icon {
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .testimonial-section .testimonial-wrapper {
    padding: 20px;
  }
}
/* Tablet */
/* Laptop */
/* Desktop */
/* Large Desktop *//*# sourceMappingURL=styles.css.map */