/* Hero Section Styles */
/* Navbar Styles */
:root {
  --primary-gradient: linear-gradient(
    90deg,
    #be9d4e 0%,
    #d1b66a 25%,
    #be9d4e 50%,
    #d1b66a 75%,
    #be9d4e 100%
  );
  /* --primary-gradient: linear-gradient(
  90deg,
  #372c24 0%,
  #4a3c32 25%,
  #372c24 50%,
  #4a3c32 75%,
  #372c24 100%
); */
  --primary-color: #be9d4e;
  --primary-color-banner: #be9c4ebd;
  --primary-color-light: #be9c4ed3;
  --primary-color-lighter: #be9c4e31;
  --secondary-color: #faf3e3;
  --text-color: #372c24;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.content-wrapper {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}
nav {
  position: relative;
  background-color: #ffffff; /* Your white background */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove any shadow */
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Slightly thinner for subtlety */
  background: var(--primary-gradient);
}
.navbar {
  background-color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove shadow */
}
.text-color {
  color: var(--text-color);
}
.navbar-brand {
  padding: 0;
}

.logo-nav {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}
.navbar.scrolled .logo-nav {
  height: 50px !important; /* Smaller size when scrolled */
}
.navbar .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 6px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* Replace underline with hover background */
.navbar .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

.navbar .nav-link.active {
  color: var(--primary-color);
  font-weight: 700;
}

.navbar .nav-link.btn {
  padding: 8px 20px;
  border-radius: 4px;
  margin-left: 15px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.navbar .nav-link.btn:hover {
  background-color: var(--primary-color-light);
  border-color: var(--primary-color-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Fixed navbar toggler styles */
.navbar-toggler {
  border: none !important;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent !important;
  outline: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled navbar style */
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.navbar.scrolled .logo-nav {
  height: 50px;
}

/* Mobile navbar styles */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 20px;
    border-radius: 8px;

    margin-top: 15px;
  }

  .navbar .nav-link {
    margin: 8px 0;
    padding: 10px 15px;
  }

  .navbar .nav-link.btn {
    margin: 8px 0;
    display: inline-block;
  }
}

/* Footer Styles */
footer {
  background-color: white; /* Match navbar white background */
  color: #333; /* Dark text for contrast */
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative; /* For the border positioning */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Same as navbar */
  background: var(--primary-gradient);
}

.footer-logo {
  max-width: 180px;
  height: auto;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.footer-link {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000;
}

.footer-link-small {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link-small:hover {
  color: #000;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-footer:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.social-icon-footer i {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  background-color: #f8f9fa;
}
.section-grey-nopadding {
  background-color: #f8f9fa;
}
.section-grey {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-white {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* .hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.01) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
} */

.hero-content {
  z-index: 2;
}

/* Logo animation */
.logo-animation {
  max-width: 300px;
  animation: fadeInDown 1s ease-out;
}

/* Text reveal animations */
.text-reveal {
  animation: fadeInUp 0.8s ease-out 0.3s both;
  opacity: 0;
}

.text-reveal-delayed {
  animation: fadeInUp 0.8s ease-out 0.6s both;
  opacity: 0;
}

/* Button styles */
.btn-hover-effect {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-primary:hover {
  background-color: var(--primary-color-light) !important;
  border-color: var(--primary-color-light) !important;
}
.btn-outline-dark {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline-dark:hover {
  border-color: var(--primary-color-light);
  background-color: var(--primary-color-light);
  color: white;
}
.btn-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
  max-width: 450px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.9s both;
  opacity: 0;
}
.hero-btn {
  width: 100%;
}
@media (min-width: 576px) {
  .hero-btn {
    width: auto;
    min-width: 180px;
  }
}
/* Animated shapes */
.shape {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.03);
  z-index: 0;
}

/* Sound wave shape */
.shape-1 {
  width: 500px;
  height: 300px;
  top: -100px;
  right: -100px;
  border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
  animation: floatAnimation 20s infinite alternate ease-in-out;
}

/* Music note shape */
.shape-2 {
  width: 250px;
  height: 350px;
  bottom: -150px;
  left: -50px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatAnimation 15s infinite alternate-reverse ease-in-out;
}

/* Singing bowl shape */
.shape-3 {
  width: 200px;
  height: 140px;
  top: 40%;
  right: 10%;
  border-radius: 50% 50% 50% 50% / 25% 25% 75% 75%;
  animation: floatAnimation 12s infinite alternate ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.05);
  }
  100% {
    transform: translate(-20px, -20px) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-animation {
    max-width: 220px;
  }
}

/* Add these additional styles to your CSS */
/* General mobile adjustments */
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    display: block;
  }

  .hero-content {
    padding-top: 20px;
  }

  .logo-animation {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* Extra small devices like iPhone SE */
@media (max-width: 375px) {
  /* More aggressive adjustments for tiny screens */
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  /* Further reduce text size */
  .hero .display-4 {
    font-size: 1.8rem;
  }

  .hero .lead {
    font-size: 1rem !important;
  }

  /* Reduce logo size further */
  .logo-animation {
    max-width: 150px;
    margin-bottom: 0.5rem !important;
  }

  /* Adjust button size */
  .hero-btn {
    font-size: 0.9rem;
    padding: 0.375rem 1rem !important;
  }

  /* Add more space between stacked buttons */
  .hero-buttons .mt-3 {
    margin-top: 0.75rem !important;
  }

  /* Reduce margins and padding throughout */
  .hero-content .mb-4 {
    margin-bottom: 0.75rem !important;
  }

  .hero-content .mb-5 {
    margin-bottom: 1rem !important;
  }
}
/* Make hero content scale down on short screens */
@media (max-height: 600px) {
  .hero-content img {
    max-width: 140px !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }

  .hero-buttons .btn {
    font-size: 0.95rem !important;
    padding: 0.5rem 1.2rem !important;
  }
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.icon-circle i {
  font-size: 28px;
  color: var(--primary-color);
  transition: var(--transition);
}
@media (max-width: 576px) {
  .icon-circle {
    width: 50px; /* Make icons smaller on mobile */
    height: 50px;
  }

  .icon-circle i {
    font-size: 20px;
  }
}

/* Testimonials Section Styles */
.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  margin: 20px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -25px;
  left: -10px;
  z-index: -1;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.8;
  position: relative;
}

.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: #666;
  margin-bottom: 5px;
}

.testimonial-rating {
  margin-top: 5px;
  color: #ffd700;
}

.testimonial-rating i {
  margin-right: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.text-primary {
  color: var(--primary-color) !important;
}
.carousel-control-prev,
.carousel-control-next {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 1;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0 5px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-color-light);
}

.carousel-control-icon {
  color: white;
  font-size: 16px;
  line-height: 1;
}

.testimonial-indicators {
  position: relative;
  justify-content: center;
  margin-top: 20px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
}

.testimonial-indicators button.active {
  background-color: var(--primary-color);
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* these are styles for the property banner */
.property-banner {
  background: linear-gradient(
    var(--primary-color),
    var(--primary-color-banner)
  );
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
}
.custom-header-margin {
  margin-top: 100px;
}
.success-header-margin {
  margin-top: 150px;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 1;
}
.btn-close.btn-close-white {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='M2.146 2.146a.5.5 0 0 1 .708 0L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed) {
  color: var(--bs-body-color); /* Keep text color consistent */
  background-color: var(
    --primary-color-lighter
  ); /* Light gold background based on your primary color */
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); /* Keep the bottom border */
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125); /* Default border color */
  outline: 0;
}

/* Remove focus ring for all accordion components */
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-collapse {
  outline: none !important;
}

/* For WebKit browsers (Chrome, Safari) */
.accordion-button:focus-visible {
  outline: none;
}
/* Change the arrow color when open */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23be9d4e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
@media (max-width: 991.98px) {
  .sound-wave-container {
    display: none;
  }
}
#sessionTypeTabs .nav-link {
  min-width: 120px; /* Adjust the width as needed */
  white-space: nowrap;
  text-align: center;
}

.bg-secondary {
  background-color: rgb(168, 168, 168) !important;
}
.card-img-top {
  height: 350px; /* Set your desired height */
  object-fit: cover; /* Crop and fill the area */
  width: 100%; /* Make sure it fills the card width */
  border-radius: 1rem; /* Match your .rounded-4 if needed */
}
.privacy-margin {
  margin-top: 100px;
}
