:root {
    --primary-color: #7B5E57;
    --secondary-color: #2E2E2E;
    --dark-color: #2c2c2c;
    --light-gray: #f8f9fa;
    --text-muted: #6c757d;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    font-family:inherit;
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}

p {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}
.navbar {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color) !important;
    font-family: 'Cormorant Garamond', serif;
}
.nav-link {
    color: var(--dark-color) !important;
    margin: 0 15px;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.btn-contact {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
}
.hero-content .highlight {
    font-style: italic;
    font-weight: 500;
    position: relative;
}
.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.wellness-section {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
}
.wellness-image img {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.btn-treatments {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-treatments:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0;
}
footer a {
    color: #ccc;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.about-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #fff;
}

.about-section .display-3 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.about-section .btn-outline-dark {
    border: none;
    font-weight: 500;
    letter-spacing: 1px;
    background-color:#c5a47e;
    transition: all 0.3s ease;
}

.about-section .btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-section .display-3 {
        font-size: 2.5rem;
    }
    
    .about-section {
        min-height: auto;
        padding: 4rem 0;
    }
}

 .project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img {
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.btn-learn-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.btn-learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-learn-more:hover::after {
    width: 100%;
}

.card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .project-img {
        height: 250px;
    }
}

/* Team Section */
.team-section {
    background-color: rgba(123,94,27,0.4);
}

.member-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.member-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.img-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.member-info {
    margin-top: -30px;
    position: relative;
    border: 1px solid #eee;
}

.team-section .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffc107;
    color: white;
    transform: translateY(-3px);
}

.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .member-img-wrapper {
        width: 150px;
        height: 150px;
    }
}
/* Why us */
.services-section {
    background: #f8f9fa;
    overflow: hidden;
}

.workspace-image {
    position: relative;
}

.workspace-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: rgba(0,0,0,0.05);
    border-radius: 1rem;
    z-index: -1;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background-color:var(--secondary-color);
    color:white;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 24px;
}




.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}
.service-card:hover i,
.service-card:hover p {
    
    color:rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

.logo{
    height:60px;
}
.section-padding{
    padding-top:120px;
    padding-bottom:30px;
}

@media (max-width : 768px ){
    .section-padding{
        padding-top:120px;
        padding-bottom:30px;
    }
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: white;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: #c5a47e;
    color: white;
    transform: rotate(90deg);
}

#galleryModal .modal-content {
    background: transparent;
    border: none;
}

#galleryModal .modal-body {
    padding: 0;
}

#galleryModal img {
    width: 100%;
    border-radius: 10px;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    min-height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 50px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.parallax-content .subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: #c5a47e;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.parallax-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #c5a47e;
    border-color: #c5a47e;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating elements effect */
[data-speed] {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: 2.5rem;
    }
}
/* CTA */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    position: relative;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c5a47e;
    display: block;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-button {
    position: relative;
    z-index: 2;
    text-align: center;
}

.btn-primary {
    background: #c5a47e;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.offer-text {
    display: block;
    color: white;
    margin-top: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cta-bg {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-button {
        margin-top: 30px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: rgba(123,94,27,0.4);
    position: relative;
}

.section-header .subtitle {
    color: #c5a47e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.testimonial-item {
    padding: 40px;
    position: relative;
}

.client-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.client-image::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: #c5a47e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: serif;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.client-name {
    color: #333;
    margin-bottom: 5px;
}

.client-role {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    position: relative;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary-color);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

.carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px;
    }
    
    .client-image {
        width: 100px;
        height: 100px;
    }
    
    .quote {
        font-size: 1rem;
    }
}

/* Footer */
.footer-section {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #c5a47e;
}
.footer-widget p{
    color:#999;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #c5a47e;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c5a47e;
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 15px;
    color: #999;
}

.contact-info i {
    color: #c5a47e;
    margin-right: 10px;
    width: 20px;
}


.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    padding: 12px 20px;
}

.newsletter-form .btn {
    background: #c5a47e;
    border: none;
    padding: 12px 25px;
}



.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c5a47e;
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
        text-align: left;
    }
    
    .footer-bottom-links a {
        margin: 0 20px 0 0;
    }
}

/* Contact */
    .contact-wrapper {
      display: flex;
      min-height: 100vh;
    }

    .contact-wrapper .contact-info {
      color: #fff;
      padding: 60px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-wrapper .contact-info h5 {
      margin-top: 30px;
      font-weight: 600;
    }

    .contact-wrapper .contact-info p, .contact-info a {
      color: #fff;
      font-size: 15px;
      margin-bottom: 10px;
    }

    .contact-form-section {
      background-color: #fff;
      padding: 60px;
      flex: 1;
    }

    .form-control {
      border-radius: 0;
      border: 1px solid #ccc;
      font-size: 15px;
      padding: 12px;
    }

    .btn-submit {
      background-color: #28a745;
      color: #fff;
      padding: 12px 30px;
      border: none;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #218838;
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
      .contact-wrapper .contact-info{
          display:none;
      }
    }

.text-custom{
    color: #c5a47e;
} 
.policies a:hover{
    color: #c5a47e;
}
.back-button{
    border-radius:50%;
}
textarea{
    resize:none;
}    
.social-icon{
    font-size:30px;
    color:white;
}
.text-custom{
    font-size:18px;
}

/* description section */
.description-section-inner {
  display: flex;
  min-height: 100vh;
  flex-wrap: nowrap;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
  overflow-y: auto;
  max-height: 100vh;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
  .description-section-inner {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }

  .content-block {
    max-height: none;
    overflow-y: visible;
  }
}

.about-tag h4{
    
}