
body,html {
  background-color: #000;
}

/* NAVIGATION */
@font-face {
    font-family: 'Akrobat';
    font-style: normal;
    font-weight: bold;
    src: url("../webfonts/Akrobat.ttf") format('truetype');
  }

.logo-style {
    font-family: 'Akrobat', 'Helix',sans-serif;
    margin-left: 10px;
  }

.logo-img {
  width: 40px;
}
#navbar {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  transition: background-color 0.3s ease;
}

/* Scrolled navbar */
#navbar.scrolled {
  background-color: #0e0e0d; /* Solid dark color */
}

.nav-item {
  margin-left: 20px;
}

/* HERO SECTION */
/* Ensure the video container is responsive */
.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
  background: #000;
  border-radius: 0 0 100px 100px;
}

/* Style the video to cover the container */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Better fit for video */
  opacity: 0.5;
}

/* Hero section absolute positioning for overlay */
.hero-section {
  position: absolute;
  top: 50%;  /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust to center */
  z-index: 10; /* Ensure it's on top of the video */
  color: white;

}

/* Custom button styling */
.custom-btn {
  background-color: #27db0f; /* Button color */
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 50px;
}


/* Optional: Add some animations */
/* .hero-section h1, .hero-section p {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */
.bg-primary {
  background-color: green !important;
}

.bg-secondary {
  background-color: #191c24  !important;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Service ***/
.service-item .btn {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 50px;
  height: 50px;
  color: var(--primary);
  background: var(--dark);
  opacity: 0;
  transition: all 1s ease-in-out;
}

.service-item:hover .btn {
  right: 0;
  bottom: 0;
  opacity: 1;
}


/* PARTNERS IMG  */
/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


.img-fluid {
  width: 100%;
  height: auto;
}

.img-partners {
  width: 100%;
  height: 150px;
  object-fit: fill;
}

.img-treatment {
  width: 100%;
  height: 350px;
}


/* Media query for viewport widths less than 992px */
@media (max-width: 991.98px) {
  #navbarCollapse {
    background-color: black; /* Black background for collapsed navbar */
  }

  /* Optionally, change the text color if necessary */
  .navbar-collapse .nav-link {
    color: white; /* White text for links in collapsed mode */
  }

  .navbar-collapse .dropdown-menu {
    background-color: black; /* Black background for dropdown menu */
  }

  .navbar-collapse .dropdown-item {
    color: white; /* White text for dropdown items */
  }
}

#header-section {
  position: relative;
  height: 40vh; /* Adjust as needed */
  width: 100%;
}

#header-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#header-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.718); /* Optional overlay for better readability */
  display: flex;
  justify-content: center;
  align-items: center;
}

#header-section h1 {
  color: rgb(42, 221, 14);
  font-size: 3rem;
  z-index: 3; /* Ensure it's above the image and overlay */
}


/* current treatment video  */
.position-relative {
  position: relative;
  overflow: hidden;
}

.treatment-video {
  width: 100%;
  height: 350px; /* Maintain aspect ratio */
  object-fit: cover; /* Cover the container while maintaining aspect ratio */
}

@media (max-width: 768px) {
  .navbar-brand.logo-style {
      font-size: 20px; /* Font size for mobile */
  }
  .logo-img {
  width: 30px;
  }
  .navbar-toggler {
    padding: 5px;
  }
}

