@import url("../fonts/font-awesome/css/font-awesome.css");
@import url("variables.css");
/* REMINDER: if I change anything on root I must to change it on variables.css too */
/*HEADER************/
body {
  width: 100vw !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
html {
  width: 100vw !important;
}
.scroll-animate-left {
  opacity: 0;
  transform: translateX(-600px);
  transition: all 1s ease-out;
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

nav {
  background-color: #ffffff !important;
  color: white;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgb(36, 36, 36) !important;
}

.cus-nav-container {
  margin: 0 auto;
  margin-top: -10px;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cus-logo {
  width: 400px;
  z-index: 1000;
}

.cus-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: black;
  z-index: 1000;
}

.cus-nav-items {
  list-style: none;
  display: flex;
  gap: 2rem;
  z-index: 10;
  padding-top: 20px;
}

.cus-nav-items li {
  position: relative;
}

.cus-nav-items > li > a {
  text-decoration: none;
  color: rgb(31, 31, 31);
  padding: 0.5rem 0;
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.cus-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444444c6;
  backdrop-filter: blur(10px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  font-weight: 200 !important;
}

.cus-dropdown a {
  padding: 0.35rem 1rem;
  color: white;
  text-decoration: none;
  transition: all 200ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cus-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.551);
  color: black;
}

.cus-nav-items li:hover .cus-dropdown {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Styles --- */
@media (max-width: 997px) {
  .cus-nav-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .cus-menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    margin-top: 0.5rem;
  }

  .cus-nav-items {
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .cus-nav-items.cus-open {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
  }

  .cus-nav-items li {
    width: 100%;
  }

  .cus-dropdown {
    position: static;
    background-color: #ffffff;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .cus-dropdown a {
    color: black;
    border-color: rgba(0, 0, 0, 0.186);
  }

  .cus-nav-items li.cus-open .cus-dropdown {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
  .cus-logo:after {
    width: 0px !important;
    height: 0px;
  }
}

.navbar {
  background-color: transparent;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  color: #ffffff;
}
.navbar-brand img {
  width: 350px !important;
}

.navbar-brand span {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
}

.nav-link {
  color: #ffffff !important;
  margin: 0 10px;
  font-size: 14px !important;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b30086 !important;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  border-radius: 2px !important;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  transform: translateY(0);
}

@media (min-width: 992px) {
  /* Hover dropdown only on large screens */
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  nav.navbar.navbar-expand-lg {
    background-color: #181818 !important;
  }
}
/* END HEADER*********** */

section {
  padding: 80px 10px;
}

.cus-logo {
  position: relative;
}
.cus-logo:after {
  content: "";
  position: absolute;
  bottom: 0rem;
  top: -10px;
  right: 0;
  width: 1px;
  height: 105px;
  background: rgb(3, 3, 3);
}

footer {
  background: var(--accent-color) !important;
}

.contactForm-box {
  background-color: white;
  border: 1px solid rgb(75, 75, 75);
  padding: 4rem 2rem;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
} */

#hero .container-fluid {
  z-index: 2;
}

/* .col-lg-5.animated-section img {
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
}

.col-lg-5.animated-section img.animated {
  opacity: 1;
  transform: scale(1);
}
.therapy-section .col-lg-5 img {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(0.95);
}

.therapy-section .col-lg-5 img.animated {
  opacity: 1;
  transform: scale(1);
} */

.therapy-section .custom-animation {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.therapy-section .testimonial-box {
  animation: floatBox 4s ease-in-out infinite alternate;
}

.therapy-section img {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(0.95);
}

.therapy-section img.animated {
  opacity: 1;
  transform: scale(1);
}

/* Keyframes (compartidos) */
@keyframes floatBox {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

#hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  position: relative;
  width: 100%;
  height: 85vh;
  /* top: -40px !important; */
  margin-top: -120px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero {
  background-image: url(z-images/img/88.jpg);
}

#hero.inner {
  height: 70vh;
}

.item1 {
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.position-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100% !important;
  min-height: 500px;
}
.position-bg-blog {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 70vh;
  top: 0;
  margin-top: -120px;
  padding-top: 120px;
}

.cus-d-flex {
  display: flex;
  align-items: stretch;
}

/* END HEADER*********** */
.main-btns-container {
  margin-bottom: 30px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.logos-container2 {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.logos-container a {
  transition: all 120ms ease-in-out;
}
.logos-container a:hover {
  transform: scale(1.1);
}
.form-margin {
  margin-top: -450px !important;
}
#section1 {
  background-color: white;
  background: linear-gradient(
    0deg,
    rgba(253, 253, 253, 1) 0%,
    rgba(217, 217, 205, 0.8) 50%,
    rgba(252, 252, 252, 1) 100%
  );
}

.bg-image1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: 100%;
  background: url(z-images/animations/bg.svg);
}

.custom-play-icon {
  border: 2px solid black;
  border-radius: 50%;
  padding: 1.34rem 1.5rem;
  margin-right: 0.3rem;
}

.main-btns-container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.service-text-wrapper {
  color: white;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-text {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out;
}

.podcast-link a {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 17px;
  transition: all 300ms ease-in-out;
}
.podcast-link a:hover {
  color: var(--trd-color);
}
.podcast-link a:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -40px;
  background: url(assets/img/play-icon-teal.svg) center/contain no-repeat;
  width: 28px;
  height: 28px;
}

#section2-2 {
  margin-top: -150px;
}
#section2-2 .row {
  border-radius: 10px;
}
#section2-2 img,
#section2-2 #jarallax-container-1 {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#section2-2 .text-container {
  padding-inline: 2rem;
}

#section3 {
  background-color: var(--accent-color);
}

#section3 .row {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(255, 255, 255, 0.171);
}

#section3 .row.team {
  /* border: 1px solid rgba(255, 255, 255, 0.349); */
  background-color: rgba(0, 0, 0, 0.425);
}
#section3 .dr-gaddy-info {
  padding-inline: 2rem;
}
#section3 .team-info {
  padding-inline: 2rem;
}

.project-name {
  color: white !important;
  font-family: var(--title-font);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 300;
}

footer {
  background: url(./z-images/bg6.jpg);
  /* background-repeat: no-repeat;
    background-size: cover; */
}

.testimonial-carousel {
  background: linear-gradient(to bottom, #ff1d77, #2e87c8);
  padding: 60px 30px;
  color: #4b006e;
  text-align: center;
  font-family: Georgia, serif;
  border-radius: 12px;
}

.testimonial-carousel blockquote {
  max-width: 800px;
  margin: 0 auto !important;
  text-align: left !important;
  padding-inline: 1rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #4b006e;
}

.author {
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4b006e;
}

.bubble {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.bubble-news {
  position: absolute;
  bottom: -20px !important;
  left: 20px;
  width: 50%;
  transition: transform 1.8s ease;
  z-index: 1000;
}

.bubble2 {
  position: absolute;
  bottom: -80px;
  left: 20px;
  width: 900px;
  transition: transform 0.8s ease;
  z-index: 1000;
}

.scroll-up {
  transform: translateY(-80px);
}

.scroll-down {
  transform: translateY(80px);
}

/* GENERAL ANIMATIONS********************************** */
.custom-animation {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.custom-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
/* GENERAL ANIMATIONS********************************** */

.overlay-bg.custom {
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 50%,
    black 100%
  );
}

.procedure-item img {
  height: 30px;
  width: 30px;
  margin: 0 8px;
  margin-right: 10px;
  margin-bottom: 15px;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce-side;
}

.procedure-item {
  margin-top: 40px;
}
.procedure-item a {
  font-size: 25px;
}
.procedure-item a:hover {
  color: #747474;
}

@keyframes bounce-side {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(-5px);
  }
}

/* SERVICES************* */
.custom-service-item {
  position: relative;
  overflow: hidden;
  margin-inline: 2.5px;
  transition: all 400ms ease-in-out;
}

.custom-service-item .overlay-bg {
  opacity: 0.7;
  transition: all 700ms ease;
}

.custom-service-item:hover .overlay-bg {
  opacity: 1;
}

.testimonial {
  padding-inline: 2rem;
}

.custom-service-item img {
  transition: all 700ms ease-in-out;
}

.custom-services-item h3.service-title {
  /* margin-bottom: 50px; */
  font-weight: 400 !important;
}

.custom-service-item:hover img {
  transform: scale(1.1);
}

.nav-pills .nav-link.active {
  background-color: transparent;
  border: 1px solid #d8b454;
}

/* #service2 .background-image{
        background: url(./z-images/bg-07.jpg);
    } */
/* SERVICES************* */

#jarallax-container-0 {
  top: -20px !important;
}

.vertical-text {
  font-family: "Hussar", sans-serif;
  writing-mode: vertical-rl; /* Texto en dirección vertical */
  transform: rotate(180);
  text-orientation: sideways; /* Orientación del texto */
  font-size: 120px;
  letter-spacing: 0.5rem;
  font-weight: 600;
  position: relative;
  opacity: 0; /* Ocultar el texto inicialmente */
  transition: opacity 1s;
  color: transparent;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.479);
  margin-left: 220px;
}

.non-surgical-container {
  height: 380px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.ns-img {
  width: 100% !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.contact-border {
  border-right: 1px solid var(--accent-color);
}

.services1-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* SECTIONS******************************************** */

.description-container {
  background-color: #d1d1d11c;
  padding: 2rem;
  border-radius: 5px;
}
.description-container2 {
  border: 1px solid rgba(255, 255, 255, 0.288);
  padding: 3rem;
  border-radius: 5px;
}

.hero-mobile {
  display: none;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px 50px;
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.popup-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.popup-left {
  width: 50%;
}

.popup-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f1f1f1;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  color: black;
}

.popup-right {
  flex: 1;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 54px;
  font-weight: 100;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-left {
  display: flex;
  flex-direction: column;
}

/* CAROUSEL*********************************************** */
.swiper {
  width: 100vw;
  height: 70vh;
}

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

.slide-content {
  display: flex;
  width: 100%;
  height: 70vh;
}

.slide-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.slide-text {
  flex: 1;
  background-color: #f9f9f9;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-text h4 {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.slide-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
}

.slide-text strong {
  font-weight: bold;
}

.slide-text button {
  padding: 12px 24px;
  background-color: #1c2a22;
  color: white;
  border: none;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
}
.swiper-button-next {
  right: 20px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
  }

  .slide-image,
  .slide-text {
    flex: none;
    width: 100%;
    height: 50vh;
  }

  .slide-text {
    padding: 20px;
    height: auto;
  }
}
/* CAROUSEL*********************************************** */

/* TESTIMONIALS*********************************************** */
.therapy-section {
  background-color: #ffffff;
  position: relative;
}

.letter-spacing {
  letter-spacing: 2px;
}

.testimonial-box {
  border: 1px solid #000;
  /* background-color: rgb(41, 23, 23) !important; */
  z-index: 2;
}

.deco-img {
  bottom: -40px;
  left: -40px;
  width: 100px;
  z-index: 0;
}
.carousel-item p {
  color: #000 !important;
}
/* TESTIMONIALS*********************************************** */

/* BLOGS***************** */
.zoom-effect {
  transition: transform 0.5s ease;
}

.blog-card:hover .zoom-effect {
  transform: scale(1.05);
}

.link-hover {
  color: #333;
  position: relative;
  padding-bottom: 2px;
}

.blog-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  border: 1px solid black;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* BLOGS***************** */
.mobile-dark {
  color: rgb(255, 255, 255) !important;
}
/* BREAKPOINTS************************************************* */

/* (default from bootstrap) */
@media (max-width: 1500px) {
  .cus-logo {
    width: 350px;
  }
  .cus-nav-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    z-index: 10;
  }
  .cus-logo:after {
    bottom: 0rem;
    top: -14.5px;
  }
}
/* (default from bootstrap) */
@media (max-width: 1400px) {
  .cus-nav-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    z-index: 10;
  }
  .cus-logo {
    width: 250px;
  }
  .cus-logo:after {
    bottom: 0rem;
    top: -26px;
  }
}

/* (default from bootstrap) */

@media (max-width: 1200px) {
  .form-margin {
    margin-top: -250px !important;
  }
}

/* (default from bootstrap) */

@media (max-width: 992px) {
  .swiper {
    width: 100vw;
    height: 100vh;
  }
  .mobile-d-none {
    display: none;
  }
  #section2-2 img,
  #section2-2 #jarallax-container-1 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .main-btns-container2 {
    flex-direction: column;
    gap: 0;
  }
  .top-header .logo {
    margin-top: 10px;
  }
  .top-header {
    position: relative !important;
  }
  header {
    top: auto;
  }
  .hero-mobile.index {
    margin-top: 80px;
  }
  .hero-mobile {
    display: block;
    height: auto;
  }
  .bg-video {
    height: 100%;
  }

  #hero {
    display: none;
  }
  .popup-content {
    flex-direction: column;
    gap: 20px;
  }
  .popup-left {
    width: 100%;
  }
  .deco-img {
    display: none;
  }
  .testimonial-box {
    margin-right: 0px !important;
  }
  .form-margin {
    margin-top: -250px !important;
  }
  .cus-logo {
    margin-top: 20px;
  }
  .cus-nav-items {
    padding-top: 10px;
  }
}

/* (default from bootstrap) */

@media (max-width: 768px) {
  .contact-border {
    border-right: none;
    border-bottom: 1px solid var(--accent-color);
  }
  .form-margin {
    margin-top: 0px !important;
  }
  .main-btns-container {
    flex-direction: column;
  }
  .mobile-dark {
    color: black !important;
  }
}

/* (default from bootstrap) */
@media (max-width: 576px) {
  header .logo {
    width: 210px;
    margin-top: 20px;
  }
  header {
    align-items: center;
  }
  .main-btns-container.btns1 {
    display: flex;
    flex-direction: column;
  }
  .cus-logo img {
    width: 200px !important;
  }
  .cus-menu-toggle {
    top: 10px;
  }
  .swiper {
    width: 100vw;
    height: 120vh;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .cus-menu-toggle {
    top: 20px;
  }
  .cus-logo {
    width: 200px;
  }
}
/* BREAKPOINTS************************************************* */
