#preloader,
body {
  background: var(--gs-bg);
}
.btn-primary-gs,
.card-gs,
.footer,
.hero,
.project-card {
  overflow: hidden;
}
.footer-links a,
.footer-social a,
a {
  text-decoration: none;
}
.btn-primary-gs,
.page-title,
.stat,
.value-card {
  text-align: center;
}
.brand-mark,
.icon-badge,
.preloader-core,
.scroll-top,
.team-social a,
.theme-toggle {
  place-items: center;
}
:root {
  --gs-bg: #EBE1D7;
  --gs-fg: #1E3335;
  --gs-muted: #586C6D;
  --gs-border: #dfe7dc;
  --gs-primary: #CA894F;
  --gs-primary-hover: #15803d;
  --gs-secondary: #284447;
  --gs-accent: #D8AC82;
  --gs-accent-glow: #a3e635;
  --gs-earth: #a16207;
  --gs-card: #ffffff;
  --gs-card-hover: #fafff7;
  --gs-radius: 1rem;
  --gs-radius-lg: 1.5rem;
  --gs-radius-xl: 2rem;
  --gs-radius-full: 999px;
  --gs-gradient: linear-gradient(135deg, #D9AC82 0%, #CA894F 100%);
  --gs-gradient-subtle: linear-gradient(
    135deg,
    rgba(202, 137, 79, 0.08) 0%,
    rgba(216, 172, 130, 0.06) 100%
  );
  --gs-gradient-dark: linear-gradient(
    135deg,
    #0f2a1d 0%,
    #14532d 50%,
    #0f2a1d 100%
  );
  --gs-hero: linear-gradient(
    135deg,
    rgba(15, 42, 29, 0.78) 0%,
    rgba(40, 68, 71, 0.5) 60%,
    rgba(15, 42, 29, 0.65) 100%
  );
  --gs-shadow-sm: 0 2px 8px rgba(15, 42, 29, 0.06);
  --gs-shadow-md: 0 8px 32px rgba(15, 42, 29, 0.1);
  --gs-shadow-lg: 0 20px 56px rgba(40, 68, 71, 0.18);
  --gs-shadow-xl: 0 32px 80px rgba(40, 68, 71, 0.25);
  --gs-shadow-btn: 0 10px 30px -8px rgba(202, 137, 79, 0.5);
  --gs-glass: rgba(255, 255, 255, 0.7);
  --gs-glass-border: rgba(255, 255, 255, 0.55);
  --gs-blur: blur(16px);
  --gs-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gs-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-bs-theme="dark"] {
  --gs-bg: #284447;
  --gs-fg: #eaf5ec;
  --gs-muted: #9fb3a5;
  --gs-border: #1e2e25;
  --gs-card: #1E3335;
  --gs-card-hover: #233C3F;
  --gs-glass: rgba(30, 51, 53, 0.75);
  --gs-glass-border: rgba(255, 255, 255, 0.08);
  --gs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --gs-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --gs-shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.45);
  --gs-shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.55);
  --gs-hero: linear-gradient(
    135deg,
    rgba(40, 68, 71, 0.85) 0%,
    rgba(18, 35, 24, 0.6) 60%,
    rgba(40, 68, 71, 0.7) 100%
  );
  --gs-gradient-subtle: linear-gradient(
    135deg,
    rgba(70, 120, 125, 0.6) 0%,
    rgba(35, 60, 63, 0.08) 100%
  );
}
* {
  border-color: var(--gs-border);
}
html {
  scroll-behavior: smooth;
    
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
html {
    overflow-x: clip;
}

body {
    overflow-x: visible;
}
main{overflow-x:hidden;}
body {
  color: var(--gs-fg);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transition: background 0.4s, color 0.4s;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s, visibility 0.55s;
  pointer-events: all;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-icon {
  width: 72px;
  height: 72px;
}
.preloader-icon .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(202, 137, 79, 0.25);
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) infinite preloader-ring;
}
.preloader-icon .ring:nth-child(2) {
  inset: 10px;
  animation-delay: 0.3s;
  border-color: rgba(202, 137, 79, 0.45);
}
.preloader-icon .ring:nth-child(3) {
  inset: 20px;
  animation-delay: 0.6s;
  border-color: rgba(202, 137, 79, 0.7);
}
.preloader-icon .center-dot {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: transparent;
  animation: 1.8s ease-in-out infinite preloader-dot;
}
@keyframes preloader-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: 1.4s linear infinite preloaderSpin;
}
.preloader-ring:first-child {
  width: 120px;
  height: 120px;
  border-top-color: #D9AC82;
  border-right-color: rgba(202, 137, 79, 0.4);
  animation-duration: 1.6s;
}
.preloader-ring:nth-child(2) {
  width: 94px;
  height: 94px;
  border-bottom-color: #84cc16;
  border-left-color: rgba(216, 172, 130, 0.4);
  animation-duration: 1.1s;
  animation-direction: reverse;
}
.preloader-ring:nth-child(3) {
  width: 66px;
  height: 66px;
  border-top-color: #22c55e;
  border-right-color: rgba(34, 197, 94, 0.35);
  animation-duration: 0.85s;
}
.preloader-core {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gs-gradient);
  display: grid;
  color: #fff;
  font-size: 1.3rem;
  z-index: 2;
  animation: 1.2s ease-in-out infinite preloaderPulse;
  box-shadow: 0 0 40px rgba(202, 137, 79, 0.5);
}
.preloader-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  animation: 8s linear infinite preloaderSpin;
}
.preloader-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9AC82;
  opacity: 0.7;
}
.btn-primary-gs,
.card-gs,
.section-y,
.section-y > * {
  position: relative;
}
.preloader-dot:first-child {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #84cc16;
}
.preloader-dot:nth-child(2) {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
}
.preloader-dot:nth-child(3),
.preloader-dot:nth-child(4),
.search-box i {
  top: 50%;
  transform: translateY(-50%);
}
.preloader-dot:nth-child(3) {
  left: 8px;
  background: #D9AC82;
}
.preloader-dot:nth-child(4) {
  right: 8px;
  background: #84cc16;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(202, 137, 79, 0.5);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 60px rgba(202, 137, 79, 0.7);
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant", Inter, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}
a {
  color: inherit;
  transition: var(--gs-transition);
}
.container-x {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .container-x {
    padding-inline: 2rem;
  }
}
.section-y, section-ywave {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .section-y, .section-ywave {
    padding-block: 7rem;
  }
}
.section-y::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(120px);
}
.section-y > * {
  z-index: 1;
}
.section-alt::before {
  width: 500px;
  height: 500px;
  background: rgba(202, 137, 79, 0.07);
  top: -180px;
  right: -200px;
}
.section-alt2::before {
  width: 400px;
  height: 400px;
  background: rgba(216, 172, 130, 0.08);
  bottom: -140px;
  left: -160px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;

 
  color: var(--gs-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.btn-outline-gs,
.btn-primary-gs, .cog-button {
  align-items: center;
  font-weight: 600;
  gap: 0.55rem;
  cursor: pointer;
}
.btn-outline-gs,
.card-gs-glass {
  backdrop-filter: var(--gs-blur);
}
.btn-primary-gs, .cog-button {
  background-image: var(--gs-gradient);
  color: #fff;
  border: 0;
  border-radius: var(--gs-radius-full);
  padding: 0.85rem 1.7rem;
  box-shadow: var(--gs-shadow-btn);
  transition: var(--gs-bounce);
  display: inline-block;
}
.btn-outline-gs,
.cert-badge {
  border-radius: var(--gs-radius-full);
}
.btn-primary-gs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn-primary-gs:hover, .cog-button:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 40px -8px rgba(202, 137, 79, 0.55);
}
.btn-primary-gs:hover::after,
.card-gs:hover::before,
.value-card:hover::before {
  opacity: 1;
}
.btn-primary-gs:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(202, 137, 79, 0.4);
}
.btn-outline-gs {
  display: inline-flex;
  padding: 0.8rem 1.55rem;
  border: 1.5px solid rgba(202, 137, 79, 0.55);
  color: var(--gs-fg);
  background: rgba(30, 51, 53, 0.75);
  transition: var(--gs-bounce);
}
.card-gs,
.card-gs-glass {
  padding: 1.75rem;
  transition: var(--gs-bounce);
}
.btn-outline-gs:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: translateY(-2px);
  box-shadow: var(--gs-shadow-btn);
}
.card-gs {
  background: var(--gs-card);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
}
.card-gs::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-gradient-subtle);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
  pointer-events: none;
}
.blog-card:hover,
.card-gs:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(202, 137, 79, 0.25);
}
.card-gs-glass {
  background: var(--gs-glass);
  border: 1px solid var(--gs-glass-border);
  border-radius: var(--gs-radius-lg);
}
.card-gs-glass:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(202, 137, 79, 0.3);
}
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: grid;
  background: var(--gs-gradient);
  color: #fff;
  font-size: 1.3rem;
  transition: var(--gs-bounce);
  box-shadow: 0 8px 24px rgba(202, 137, 79, 0.3);
}
.card-gs:hover .icon-badge,
.contact-info-card:hover .icon-badge {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(202, 137, 79, 0.45);
}
.navbar-gs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--gs-bg) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  
  transition: 0.35s;
}
.brand,
.nav-link {
  transition: var(--gs-transition);
}
.brand img{
    max-width: 150px;
}

.navbar-gs.scrolled {
  box-shadow: var(--gs-shadow-md);
  background: color-mix(in oklab, var(--gs-bg) 92%, transparent);
}
.navbar-gs.scrolled .brand img {
  max-width: 80px;
}
.offcanvas-header .brand img{
    max-width:50% !important;
}
.nav-link {
  color: var(--gs-fg);
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background: var(--gs-gradient);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
 .nav-link:hover {
  color: var(--gs-primary);
}
 .nav-link:hover::after {
  transform: scaleX(1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Cormorant";
  font-weight: 800;
  font-size: 1.35rem;
}
.brand-mark,
.scroll-top.show {
  display: grid;
}
.brand-mark,
.project-card,
.theme-toggle {
  transition: var(--gs-bounce);
}
.brand:hover {
  transform: scale(1.03);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 0.8rem;
  background: var(--gs-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(202, 137, 79, 0.35);
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.08);
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gs-border);
  background: var(--gs-card);
  color: var(--gs-fg);
  display: grid;
  cursor: pointer;
}
.footer-social a,
.scroll-top {
  border-radius: 50%;
  color: #fff;
}
.footer h5,
.footer h6,
.hero {
  color: #fff;
}
.theme-toggle:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: rotate(20deg);
  box-shadow: var(--gs-shadow-btn);
}
.project-card:hover,
.scroll-top:hover {
  transform: translateY(-4px);
}
.hero,
.project-card:hover {
  box-shadow: var(--gs-shadow-xl);
}
.hero {
  position: relative;
  border-radius: var(--gs-radius-xl);
  isolation: isolate;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 8s;
}
.blog-card:hover img,
.hero:hover img.bg {
  transform: scale(1.06);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gs-hero);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  z-index: -1;
  pointer-events: none;
}
.project-card {
  position: relative;
  border-radius: var(--gs-radius-lg);
  display: block;
  box-shadow: var(--gs-shadow-md);
}
.faq .accordion-button,
.project-overlay,
img {
  transition: var(--gs-transition);
}
.project-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.scroll-top,
.team-card {
  transition: var(--gs-bounce);
}
.project-card:hover .project-overlay {
  transform: translateY(-3px);
}
.work-title {
  color: #000 !important;
}
.faq .accordion-button {
  color: var(--gs-fg);
}
.blog-card:hover,
.team-card:hover {
  box-shadow: var(--gs-shadow-lg);
}
a:hover .chip {
  background: rgba(202, 137, 79, 0.2);
}
[data-bs-theme="dark"] a:hover .chip {
  background: rgba(255, 255, 255, 0.8);
}

.footer {
  position: relative;
  background: var(--gs-gradient);
  color: #ffffff;
  padding: 20px 0 20px;
}
[data-bs-theme="dark"] .footer{
    background: var(--gs-bg);
}
.page-title,
.scroll-top {
  background: var(--gs-gradient);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}
.footer h5 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}
.stat b,
.timeline-year {
  font-family: "Cormorant";
  font-weight: 800;
}
.footer p {
  line-height: 1.9;
}
.footer-text {
  max-width: 360px;
}
.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 14px;
}
.footer-links a {
  color: #c8d8cb;
  transition: 0.3s;
  position: relative;
}
.footer-links a::before {
  content: "➜";
  opacity: 0;
  margin-right: 0;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #67d47a;
  padding-left: 8px;
}
.footer-links a:hover::before {
  opacity: 1;
  margin-right: 8px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
}
.footer-contact i {
  color: #67d47a;
  font-size: 18px;
  margin-top: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
    background: rgba(202, 137, 79, 0.12);
  color: var(--gs-secondary);
  
  transition: 0.35s;
}
[data-bs-theme="dark"] .footer-social a, .footer .footer-social a {
    background: rgba(70, 120, 125, 0.8);
  color: #ffffff;
}
.footer-social a:hover {
  background: var(--gs-gradient);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(202, 137, 79, 0.45);
}
.newsletter input {
  height: 52px;
  border: none;
  background: #fff;
}
.newsletter .btn {
  width: 56px;
  border-radius: 10px;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 55px 0 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 15px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #c8d8cb;
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom-links a:hover {
  color: #67d47a;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 70px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .newsletter form {
    flex-direction: column;
  }
  .newsletter .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 12px;
  }
}
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  z-index: 60;
  box-shadow: 0 10px 30px -8px rgba(202, 137, 79, 0.6);
  cursor: pointer;
}
.page-title::after,
.page-title::before,
.stats-band::after,
.stats-band::before {
  border-radius: 50%;
  pointer-events: none;
  content: "";
  position: absolute;
}
.scroll-top:hover {
  box-shadow: 0 16px 40px -6px rgba(202, 137, 79, 0.7);
}
.page-title {
  border-radius: 0 0 var(--gs-radius-xl) var(--gs-radius-xl);
}
hr {
  opacity: 0.5;
}
::selection {
  background: rgba(202, 137, 79, 0.25);
  color: var(--gs-fg);
}
.page-title,
.stats-band {
  background: var(--gs-gradient-dark);
  overflow: hidden;
}
:focus-visible {
  outline: 2px solid var(--gs-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .hero,
  .stats-band {
    border-radius: var(--gs-radius-lg);
  }
  .hero {
    min-height: 420px !important;
  }
  .hero h1 {
    font-size: 2rem !important;
  }
  .section-y, .section-ywave {
    padding-block: 3.5rem;
  }
}
@media (max-width: 576px) {
  .hero {
    border-radius: 1rem;
    min-height: 360px !important;
  }
  .hero h1 {
    font-size: 1.55rem !important;
  }
  .btn-outline-gs,
  .btn-primary-gs {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .card-gs {
    padding: 1.25rem;
  }
}
.page-title h1,
.stat b {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.offcanvas {
  height: 700px !important;
}
.page-title {
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  border-radius: 0 0 var(--gs-radius-xl) var(--gs-radius-xl);
  position: relative;
}
.page-title::before {
  width: 400px;
  height: 400px;
  background: rgba(216, 172, 130, 0.1);
  top: -120px;
  right: -100px;
}
.page-title::after {
  width: 250px;
  height: 250px;
  background: rgba(202, 137, 79, 0.15);
  bottom: -80px;
  left: -60px;
}
.page-title h1 {
  position: relative;
  z-index: 1;
}
.breadcrumb-gs {
  display: inline-flex;
  display: inline-flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.breadcrumb-gs a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.breadcrumb-gs a:hover {
  color: #a3e635;
}
.stats-band {
  border-radius: var(--gs-radius-xl);
  padding: 3.5rem 1rem;
  color: #fff;
  position: relative;
  box-shadow: var(--gs-shadow-lg);
}
.timeline,
.timeline-item {
  position: relative;
  padding-left: 2rem;
}
.stats-band::before {
  width: 300px;
  height: 300px;
  background: rgba(216, 172, 130, 0.15);
  top: -100px;
  right: -80px;
}
.stats-band::after {
  width: 200px;
  height: 200px;
  background: rgba(202, 137, 79, 0.2);
  bottom: -60px;
  left: -40px;
}
.stat {
  color: #fff;
  position: relative;
  z-index: 1;
}
.stat b {
  display: block;
  background: linear-gradient(180deg, #fff 0, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-card {
  border-radius: var(--gs-radius-lg);
  background: var(--gs-card);
  border: 1px solid var(--gs-border);
  box-shadow: var(--gs-shadow-sm);
}
.team-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.team-meta {
  backdrop-filter: blur(10px);
  transition: var(--gs-transition);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gs-gradient);
  border-radius: 999px;
  opacity: 0.4;
}
.timeline-item {
  padding-bottom: 2.5rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -1.45rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gs-gradient);
  box-shadow: 0 0 0 6px rgba(202, 137, 79, 0.15);
  z-index: 1;
}
.search-box,
.team-card,
.value-card {
  position: relative;
}
.cert-badge,
.value-card {
  background: var(--gs-card);
  transition: var(--gs-bounce);
}
.blog-card,
.team-card {
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
}
.timeline-year {
  font-size: 1.1rem;
  color: var(--gs-primary);
  margin-bottom: 0.25rem;
}
.value-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 1.75rem;
  overflow: hidden;
}
.value-card:hover .icon-badge-sm {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 12px 32px rgba(202, 137, 79, 0.45);
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.2rem;
  border: 1.5px solid var(--gs-border);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default;
}
.cert-badge:hover {
  border-color: var(--gs-primary);
  box-shadow: var(--gs-shadow-md);
  transform: translateY(-2px);
}
.cert-badge i {
  color: var(--gs-primary);
  font-size: 1.1rem;
}
.chip {
  border-radius: var(--gs-radius-full);
  color: var(--gs-secondary);
  transition: var(--gs-transition);
}
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-content p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--gs-muted);
}
.blog-content ol,
.blog-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}
.blog-content ol li,
.blog-content ul li {
  margin-bottom: 0.5rem;
  color: var(--gs-muted);
}
.blog-content blockquote {
  background: var(--gs-gradient-subtle);
  border-left: 4px solid var(--gs-primary);
  padding: 1.2rem 1.8rem;
  border-radius: 0 var(--gs-radius) var(--gs-radius) 0;
  margin: 2rem 0;
  font-style: italic;
}

.form-control-gs,
.related-post-card,
.share-links a {
  background: var(--gs-card);
}
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: center;


  
  margin-top: 3rem;
}
.author-bio img {
  width: 80px;
  height: 80px;
  object-fit:contain;
    
}
.share-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gs-border);
  align-items: center;
  justify-content: center;
  color: var(--gs-muted);
  transition: var(--gs-bounce);
  margin-right: 0.5rem;
}
.blog-card img,
.related-post-card img,
.team-card img {
  width: 100%;
  object-fit: cover;
}
.share-links a:hover {
  background: var(--gs-primary);
  color: #fff;
  border-color: var(--gs-primary);
  transform: translateY(-3px);
  box-shadow: var(--gs-shadow-md);
}
.related-post-card {
  display: block;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  transition: var(--gs-bounce);
}
.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(202, 137, 79, 0.25);
}
.related-post-card img {
  aspect-ratio: 16/9;
}
.form-control-gs {
  border: 1.5px solid var(--gs-border);
  color: var(--gs-fg);
  transition: var(--gs-transition);
}
.input-group {
  flex-wrap: nowrap !important;
}
.chip {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--gs-radius-full);
  background: rgba(202, 137, 79, 0.12);
  color: var(--gs-secondary);
  font-size: 0.75rem;
  font-weight: 600;
}
[data-bs-theme="dark"] .chip{
    background: rgba(255, 255, 255, 0.6);
}
.blog-card,
.faq-category-btn,
.filter-btn {
  background: var(--gs-card);
  transition: var(--gs-bounce);
}
.blog-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
}
.blog-card img {
  aspect-ratio: 16/10;
  transition: transform 0.7s;
}
.faq-category-btn,
.filter-btn {
  border: 1.5px solid var(--gs-border);
  color: var(--gs-fg);
  padding: 0.6rem 1.25rem;
  border-radius: var(--gs-radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.faq-category-btn.active,
.faq-category-btn:hover,
.filter-btn.active,
.filter-btn:hover {
  background: var(--gs-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--gs-shadow-btn);
  transform: translateY(-2px);
}
.contact-info-card,
.faq .accordion-item,
.form-control-gs,
.team-card {
  background: var(--gs-card);
}
.faq .accordion-button,
.form-control-gs {
  color: var(--gs-fg);
  transition: var(--gs-transition);
}
.form-control-gs {
  border: 1.5px solid var(--gs-border);
  border: 1.5px solid var(--gs-border);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  width: 75%;
}
#contactForm .form-control-gs {
  width: 100% !important;
}
.form-control-gs:focus {
  outline: 0;
  border-color: var(--gs-primary);
  box-shadow: 0 0 0 5px rgba(202, 137, 79, 0.12);
}
.contact-info-card {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 1.5rem;
  transition: var(--gs-bounce);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(202, 137, 79, 0.25);
}
.faq .accordion-item {
  border: 1px solid var(--gs-border);
  border-radius: 1rem !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--gs-transition);
}
.faq .accordion-item:hover {
  box-shadow: var(--gs-shadow-md);
  border-color: rgba(202, 137, 79, 0.2);
}
.faq .accordion-button {
  background: 0 0;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
}
.faq .accordion-button:not(.collapsed) {
  background: rgba(202, 137, 79, 0.08);
  color: var(--gs-secondary);
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--gs-muted);
  line-height: 1.8;
}
.faq .accordion-button i {
  margin-right: 0.75rem;
  color: var(--gs-primary);
  font-size: 1.1rem;
}
.search-box {
  margin-bottom: 2rem;
}
.search-box input {
  padding-left: 3rem;
}
.search-box i {
  position: absolute;
  left: 1.2rem;
  color: var(--gs-muted);
  font-size: 1.1rem;
}
.pricing-card.featured {
  background: var(--gs-gradient);
  color: #fff;
  border: 0;
  box-shadow: var(--gs-shadow-xl);
}
.featured .btn-primary-gs {
  background: #fff;
  color: var(--gs-primary);
}
.featured .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
.comparison-table th {
  background: rgba(202, 137, 79, 0.08);
  font-weight: 600;
}
.gallery-img {
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.02);
}
.team-card {
  border-radius: var(--gs-radius-lg);
  border: 1px solid var(--gs-border);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.team-meta,
.team-social {
  position: absolute;
  right: 1rem;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(202, 137, 79, 0.2);
}
.team-card img {
  aspect-ratio: 4/5;
  transition: transform 0.8s;
}
.team-card:hover img {
  transform: scale(1.07);
}
.team-meta {
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.team-card:hover .team-meta {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.team-social {
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.35s;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  color: var(--gs-primary);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}
.team-social a:hover {
  background: var(--gs-primary);
  color: #fff;
}
.privacy-nav-link {
  margin-bottom: 10px;
}
#navbar .active, #mnav .active {
  color: var(--gs-primary) !important;
  font-weight: 700 !important;
}
#logo-light, #logo-dark, #logom-light, #logom-dark{display:none;}
#logo-light.showlogo, #logo-dark.showlogo, #logom-light.showlogo, #logom-dark.showlogo{display:block;}

.loadlight, .loaddark{max-width:40px;}

.loaddark{display:none;}

[data-bs-theme="dark"] .loadlight{display:none;}
[data-bs-theme="dark"] .loaddark{display:inline}


.shapewave, .shapewavealt{
overflow:hidden;
position:relative;
}
.shapewave{
    background:var(--gs-muted-bg,rgba(255,255,255,.6))
}
[data-bs-theme="dark"] .shapewave{
    background:var(--gs-muted-bg,rgba(70,120,125,.6))
}
.shapewave::before, .shapewavealt::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
bottom: -1px;
left: -1px;
right: -1px;
top: -1px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 162% 28px;
background-position: 50% 0%;    
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23EBE1D7"/></svg>'); 
}

.shapewavealt::before{
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23F7F3EF"/></svg>'); 
}

[data-bs-theme="dark"] .shapewave::before{
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23284447"/></svg>'); 
}

[data-bs-theme="dark"] .shapewavealt::before{
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%233A6367"/></svg>'); 
}
@media (min-width:768px){
.shapewave::before, .shapewavealt::before{
background-size: 201% 40px;
background-position: 50% 0%;   
}  
}
 
@media (min-width:1025px){
.shapewave::before, .shapewavealt::before{ 
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 134% 34px;
background-position: 50% 0%;  
}
}
@media (min-width:2100px){
.shapewave::before, .shapewavealt::before{
background-size: 134% calc(2vw + 34px);
}
}
 

.gallery-mini .cell:hover img {
  transform: scale(1.06);
}
.gallery-mini .cell {
  border-radius: 1rem;
  overflow: hidden;
}
.gallery-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
  margin-top: 3rem;
}
.blog-card .img-wrap img,
.gallery-full .cell img,
.gallery-mini .cell img,
.therapist-detailed .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}
.gallery-full .cell.wide,
.gallery-mini .cell.wide {
  grid-column: span 2;
}
.gallery-full .cell.tall,
.gallery-mini .cell.tall {
  grid-row: span 2;
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-full .cell .cap {
  inset: auto 0 0 0;
}
.gallery-full .cell.wide2 {
  grid-column: span 2;
  grid-row: span 2;
}
@media (min-width: 768px) {
  .gallery-full,
  .gallery-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}

[data-bs-theme="dark"] .faq .accordion-button:not(.collapsed) {
    background: rgba(70, 120, 125, 0.8);
    color:#ffffff;
}

.scrollpadding{scroll-margin-top: 100px;}

.chakraspin{position:absolute; bottom:20%; right:-20%; animation: cspin 65s linear infinite;  opacity:0.1}
.heartspin{position:absolute; bottom:-10%; left:-10%; animation: cspin 65s linear infinite; opacity:0.1}
.sacralspin{position:absolute; bottom:40%; left:70%; animation: cspin 65s linear infinite; opacity:0.1}

@-webkit-keyframes cspin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes cspin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}