header {
  background-color: #f8f3ec; /* Example background color */
  padding: 20px 0; /* Adjust padding as needed */
}

.header-content {
  display: flex;
  align-items: center; /* Vertically align items */
  justify-content: center; /* Horizontally center content */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  color: azure;
}

.logo {
  /* max-height: 80px; Adjust as needed */
  max-width: 100%;
  height: auto;
  padding-right: 40px;
  padding-left: 30px;
  margin-right: 20px; /* Space between logo and text */
}
/* Adjust the logo size for smaller screens */
@media (max-width: 768px) {
  .logo {
    max-width: 175px; /* Adjust this value as needed */
    padding-left: 50px;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: #d82753; /* Pink Color 🔥 */
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: #ff69b4; /* Light Pink */
}

.header-text h1 {
  font-family: "Playwrite IT Moderna", serif; /* Or your chosen font */
  margin-bottom: 5px;
  font-size: 2rem; /* Adjust size as needed */
  font-weight: normal; /* Prevent default bolding */
  padding-top: 0px;
  padding-right: 0px;
  background-image: linear-gradient(
    to right,
    #e96443,
    #904591,
    #f53844
  ); /* Initial gradient */
  -webkit-background-clip: text; /* Apply gradient to text */
  -webkit-text-fill-color: transparent; /* Make text transparent */
  animation: gradientAnimation 5s linear infinite; /* Animate the gradient */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%; /* Start position */
  }
  100% {
    background-position: 100% 50%; /* End position */
  }
}
.head_therapy {
  padding-bottom: 10px;
}

.with {
  color: aqua;
  font-family: "Delius", cursive;
  font-size: 1.1em;
  text-align: center;
  padding-left: 1vh;
  background-image: linear-gradient(
    to right,
    #e96443,
    #904591,
    #f53844
  ); /* Initial gradient */
  -webkit-background-clip: text; /* Apply gradient to text */
  -webkit-text-fill-color: transparent; /* Make text transparent */
  animation: gradientAnimation 5s linear infinite; /* Animate the gradient */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%; /* Start position */
  }
  100% {
    background-position: 100% 50%; /* End position */
  }
}

header h1 {
  margin-bottom: 5px; /* Space below heading */
}
.founder {
  font-size: 3rem;
  font-style: italic;
}

/* Nav Styles */
nav {
  background-color: #f8f3ec; /* Initial background color */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.nav-content {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: space-between; /* Space links and menu */
  align-items: center;
  padding: 10px 20px;
  transition: all 0.3s ease; /* Smooth transition for content */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  display: flex; /* Horizontal links initially */
}

nav li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #d82753;
  transition: color 0.3s ease; /* Smooth color transition */
}

nav a:hover {
  color: #035e61; /* Example hover color */
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none; /* Hide on larger screens */
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease; /* Smooth rotation */
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease; /* Smooth bar animations */
}

/* Hamburger to X animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  /* Adjust breakpoint as needed */
  .nav-content {
    justify-content: center; /* Center the entire nav content */
  }

  nav ul {
    display: flex; /* Ensure horizontal layout */
    justify-content: center; /* Center the links within the ul */
  }

  nav li {
    margin: 0 15px; /* Adjust spacing between links */
  }

  .menu-toggle {
    display: none; /* Hide hamburger menu on larger screens */
  }
}

/* Mobile Styles (Hamburger Menu) */
@media (max-width: 767px) {
  /* Adjust breakpoint as needed */
  .nav-content {
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align left */
  }

  nav ul {
    display: none; /* Hide links initially */
    flex-direction: column; /* Stack links vertically */
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  nav ul.active {
    /* Show links when menu is toggled */
    display: flex;
  }

  nav li {
    margin: 10px 0; /* Space between links */
  }

  .menu-toggle {
    display: flex; /* Show hamburger menu */
  }
}

/* QUOTE START */
.quote-section {
  text-align: center;
  margin: 50px auto;
  padding: 20px;
  font-family: "Georgia", serif; /* Elegant font */
  color: #333;
  max-width: 800px;
}

.quote-text {
  font-size: 28px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}

.quote-open,
.quote-close {
  font-size: 40px;
  color: #f7639f; /* Pinkish shade */
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

.quote-author {
  font-size: 20px;
  font-style: italic;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-text {
    font-size: 20px;
    line-height: 1.4;
  }
  .quote-open,
  .quote-close {
    font-size: 30px;
  }
  .quote-author {
    font-size: 16px;
  }
}

/* QUOTE END */
