@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* ================= RESET ================= */
:root{
  --primary-color:#c5ad7d;
  --bg-color:#f2ffff;
  --black-color:#000;
  --white-color:#fff;
  --text-color:#111;
  --secondary-color:#573a29;
  --tertiary-color:#573a29;
  --primary-font:"playfair display", sans-serif;
  --secondary-font:"montserrat", sans-serif;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.menu-item {
    color: #000 !important;
}

body{
  overflow-x:hidden !important;
  font-family: var(--secondary-font);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--primary-font);
  scroll-behavior: smooth;
}
/* ================= HEADER ================= */
.header.active .logo img {
    padding: 10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    color: var( --white-color);
    background: transparent;
}
.menu-toggle {
    padding-left: 40px;
}
/* Center logo */



.logo{
  font-size:24px;
  font-weight:700;
  opacity:0;
  transition:opacity 0.6s ease;
}


.header.active .logo{
  opacity:1;
  transition-delay:0.6s; /* delay to match sidebar opening */
}

.menu .menu-items-label {
    position: absolute;
    left: 12%;
    top: 29%;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    opacity:0;
transition:opacity 0.6s ease;
}

.menu-items-label.active{
    opacity:1;
    transition-delay:0.6s;
}
/* ================= HAMBURGER ================= */

svg.icon.icon-hamburger {
    height: 2.5rem;
    width: 2.5rem;
    stroke: #fff;
}
svg.icon.icon-hamburger:hover {
    
    cursor: pointer;
}
/* .menu-toggle:hover{
background: #4a8d8d7a;
} */
.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var( --primary-color);
    margin: 7px 0;
    transition: 0.4s;
}
.icon-close{
    display:none;
}
.menu-toggle.active .icon-open{
    display:none;
}

.menu-toggle.active .icon-close{
    display:block;
}
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-read span {
  transition: transform 0.3s ease;
}
.section-title__inner a {
    margin-bottom: 30px;
}

.btn-read:hover span {
  transform: translateX(5px);
}

.btn-read:hover {
  background: var(--tertiary-color);
}

.header.scrolled .logo {
    opacity: 1;
}
.header.scrolled .logo img {
    width: 115px;
}
.footer-col.footer-brand img {
    filter: invert(1);
    width: 200px;
    margin-bottom: 20px;
}
/* ================= HERO ================= */

.hero{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  min-width:100%;
  min-height:100%;
  transform:translate(-50%,-50%);
  object-fit:cover;
}

/* CLOUD MASK OVERLAY */

.hero-mask{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  pointer-events:none;

  -webkit-mask-image: radial-gradient(
      circle 200px at 50% 50%,
      transparent 0%,
      black 100%
  );
  mask-image: radial-gradient(
      circle 200px at 50% 50%,
      transparent 0%,
      black 100%
  );
}


/* ================= MENU ================= */
.scroll span a{
    color: var(--primary-color);
}
.scroll span a:hover{
    color: #fff;
}
.wellness-content a:hover{
    color: #000;
}

.logo img {
    width: 130px;

}
/* Show logo when scrolled */
.header.scrolled {
    background: var(--white-color);
    border-bottom: 1px solid var(--primary-color);
}

/* Center logo perfectly */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}



.menu{
  position:fixed;
  inset:0;
  visibility:hidden;
  z-index:2500;
}

.menu-bg{
  position:absolute;
  inset:0;
  background:var(--white-color);
  clip-path:circle(0% at 100% 0%);
}

.menu-inner{
  position:relative;
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
    padding: 0 10% 0 15%;
  color:#111;
  }

/* MENU ITEMS */

.menu-item{
  position:relative;
  font-size:2.5rem;
  margin: 10px 0 10px 40px;
  font-weight:600;
  height:75px;
    line-height:75px;
  overflow:hidden;
  cursor:pointer;
  opacity:0;
  transform:translateX(-80px);
}

.menu-item .text{
  display:block;
  height:75px; 
transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-item .bottom{
  position:absolute;
  left:0;
}

.menu-item:hover .top{
  transform:translateY(-100%);
  color:var(--tertiary-color);
}

.menu-item:hover .bottom{
  transform:translateY(-100%);
 color:var(--tertiary-color);
}

/* RIGHT SIDE */
.menu-right a:hover{
  color:var(--secondary-color);
}
.menu-right{
  width:30%;
  opacity:0;
  transform:translateX(80px);
}

.menu-right a{
  text-decoration:none;
  color:#111;
  font-size:1rem;
  font-family: var(--secondary-font);
}
p.reveal-text {
    font-size: 51px;
    font-family: var(--secondary-font);
    font-weight: 400;
    text-transform: uppercase;
}

/* ================= RESPONSIVE ================= */




/* HERO SECTION */
.hero{
  position:relative;
  height:100vh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#d4af37;
  overflow:hidden;
}

/* Background Image */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
 filter:brightness(0.5);
  animation:zoomBg 20s ease-in-out infinite alternate;
  z-index:-1;
}

/* Background Zoom Animation */
@keyframes zoomBg{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

/* Content Styling */
.hero-content{
  max-width:1000px;
  animation:fadeIn 2s ease forwards;
  opacity:0;
  transform:translateY(30px);
}

@keyframes fadeIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.small-text{
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:15px;
  color:var(--primary-color);
}

.main-title{
  font-size:120px;
  font-weight:700;
  letter-spacing:8px;

}
.main-title img {
    width: 390px;
}
.tagline{
  font-size:16px;
  letter-spacing:3px;
  margin-top:10px;
  color:var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  font-size:14px;
  letter-spacing:2px;
    color:var(--primary-color);
}

.scroll-line{
  width:2px;
  height:60px;
  background:var(--primary-color);
  margin:10px auto 0;
  animation:scrollAnim 2s infinite;
}

@keyframes scrollAnim{
  0%{ height:0; opacity:0; }
  50%{ height:60px; opacity:1; }
  100%{ height:0; opacity:0; }
}

/* Responsive */
@media(max-width:768px){

  .main-title{
    font-size:60px;
  }
  .small-text{
    font-size:14px;
  }
}
.hero-bg{
  position:absolute;
  top:0;
  background: #000;
  left:0;
      width: 100%;
    height: 100vh;
   filter:brightness(0.50);
}
/*******************************section2**************************/
/* img{
  width: 100%;
}
.reveal-section {
  min-height: 100vh;
  padding: 150px 0 200px 0;
  position: relative;
}

.reveal-wrapper {
      position: sticky;
    top: 40%;
    max-width: 1300px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.4;
    text-align: center;
    
}
.reveal-wrapper .revel-below {
    font-size: 16px;
}
.reveal-text span {
  opacity: 0.1;
} */
a{
  text-decoration: none;
}
.happy-row{
  align-items: center;
}
.section-title__inner em {
    display: block;
    font-size: 50px;
    line-height: 60px;
}
.section-title__inner {
    padding: 0px 70px 0px 50px;
}
.section-title__inner p{
  font-size: 24px;
      margin: 15px 0px 30px 0px;
          width: 388px;
}
.img-cnt-inner {
    color: var( --white-color);
}
.img-cnt-inner span {
    font-size: 24px;
    line-height: 1.5;
}
.img-cnt-inner p {
    display: flex;
    align-items: center;
    gap: 25px;
}
.section-title__inner a {
    font-size: 15px;
    border: 1px solid var(--secondary-color);
    padding: 15px 25px;
    border-radius: 2.5em;
    background: var(--secondary-color);
    color:var( --white-color);
}
.right-imgprt {
    position: relative;
    max-width: 33rem;
    max-height: 100vh;
}
.img-cont {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}
.img-cnt-inner img {
    width: 50px;
    filter: invert(1);
}
.img-cnt-inner p {
    border-bottom: 1px solid #ffffff8a;
       padding: 0px 10px 10px;
}
.pro-read a span {
    padding-left: 5px;
}
#owl-demo .item{
  margin: 3px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
.product-title span {
    font-size: 12px;
}
.products {
    padding: 60px 0px;
}
.products .owl-dots {
    margin-top: 30px !important;
}
.product-list {
    padding: 10px 20px 30px;
    border-radius: 2em;
}
.Coconut{
  /* background: #bf9770; */
      background-image: linear-gradient(#896036, #ddc7b1);
}
.Coconuth3{
  color: #80562b;
}
.Coconut .pro-read a{
background: #80562b;
 border: 1px solid #80562b;
}
.Cauliflower {
    /* background: #bdd2ac; */
    background-image: linear-gradient(#538851, #d4eac5);
}
.Cauliflower h3{
  color: #000;
}
.Cauliflower .pro-read a{
background: #538851;
 border: 1px solid #538851;
}
.Onion{
  /* background: #b98bbc; */
  background-image: linear-gradient(#8a5987, #cf9ed1);
}
.Onion h3{
  color:#000;
}
.Onion .pro-read a{
background: #825182;
 border: 1px solid #825182;
}
.Beetroot {
  /* background: #ce9c9c; */
      background-image: linear-gradient(#986562, #dcbcbc);
}
.Beetroot .pro-read a{
background: #986562;
 border: 1px solid #986562;
}
.Drumstick {
    /* background: #d9dc89; */
        background-image: linear-gradient(#999c42, #dcddaa);
}
.Drumstick .pro-read a{
background: #999c42;
 border: 1px solid #999c42;
}
.Carrot {
    /* background: #f1ceb0; */
        background-image: linear-gradient(#af8c68, #f6e0c2);
}
.Carrot .pro-read a{
background: #af8c68;
 border: 1px solid #af8c68;
}
.Beans {
    /* background: #a9c9a4; */
        background-image: linear-gradient(#528752, #a4d5a9);
}
.Beans .pro-read a{
background: #518651;
 border: 1px solid #518651;
}
.smallonion{
  /* background: #d48ca7; */
      background-image: linear-gradient(#b14d69, #eba5bf);
}
.smallonion .pro-read a{
background: #a65b75;
 border: 1px solid #a65b75;
}
.tomato{
  /* background: #d66a71; */
      background-image: linear-gradient(#c4373c, #f18c92);

}
.tomato .pro-read a{
background: #c4545b;
 border: 1px solid #c4545b;
}
.potato{
  /* background: #d7b18c; */
      background-image: linear-gradient(#b4864a, #f1d2ae);

}
.potato .pro-read a{
background: #b4864a;
 border: 1px solid #b4864a;
}
.garlic{
  /* background: #cac3ac; */
      background-image: linear-gradient(#aa9671, #f0ead7);
}
.garlic .pro-read a{
background: #aa9671;
 border: 1px solid #aa9671;
}
h3.heading-style-h4 {
    margin: 0px;
    font-size: 2.25em;
        text-transform: uppercase;
}
.product-title {
    text-align: center;
        padding-top: 30px;
}
.pro-read a {
    padding: 8px 15px;
    display: inline-block;
    border-radius: 2.2em;
    color:var( --white-color);
    transition: background 0.3s ease;
}
.pro-read a:hover{
 transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.pro-read a span{
  transition: transform 0.3s ease;
}
.pro-read a:hover span {
  transform: translateX(5px);
}
.pro-read {
    text-align: right;
}

.happy-section {
    background: var( --bg-color);
    padding: 60px 0px;
}

.testimonial-carousel .owl-nav button:hover{
color:var(--secondary-color);
}
.testimonial-carousel .owl-nav button:hover i{
border-color:var(--secondary-color);
}
/* .testimonial-carousel .owl-stage-outer {
  overflow: visible !important;
} */
.testimonials_chocolate {
    width: 10em;
    position: absolute;
    inset: 6rem auto auto 0%;
}
.testimonial_strawberry {
    top: auto;
    left: auto;
    right: 0%;
    bottom: 1rem;
    width: 12rem;
    position: absolute;
}
.testimonial-card {
  transform: scale(0.85);
  /* opacity: 0.5; */
  transition: all 0.4s ease;
}

.owl-item.center .testimonial-card {
   transform: scale(1.05);
  opacity: 1;
}



.title {
  font-size: 56px;
  font-weight: 600;
  margin-top: 20px;
}

.tag {
  padding: 6px 20px;
  border: 1px solid #3b1d14;
  border-radius: 50px;
  font-size: 14px;
}



.testimonial-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.testimonial-card {
  padding: 60px 40px;
  border-radius: 30px;
  color: var( --white-color);
  text-align: center;
  transition: all 0.4s ease;
  transform: scale(0.85);
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 21px;
  line-height: 1.5;
}

/* Colors */
.orange { background: #753475; }
.pink { background: #538851; }
.brown { background: #83603b; }

/* Center active item */
.owl-item.center .testimonial-card {
  transform: scale(1);
  opacity: 1;
}

.parallax-img {
  background-image: url("../images/home/fooimg1.png");
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

/* Optional dark overlay */
.parallax-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.parallax-text {
  position: relative;
  font-size: 45px;
  z-index: 2;
  font-family: var(--secondary-font);
  font-weight: 400;
        width: 710px;
    margin: 0 auto;
        line-height: 44px;
}
.footerlogo img {
    width: 150px;
}
.footer-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}
.footer-links li a {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--primary-font);
    color:var(--black-color);
}
.footer-links li a:hover{
  color:var(--primary-color);
}
.footer-links img {
    width: 20px;
    margin-right: 3px;
}
p.small {
    width: 350px;
}
.pr-0{
  padding-right: 0px;
}
.resee{
  text-align: right;
  padding-right: 0px;
}
.testimonial-carousel .owl-nav i{
    border: 1px solid var( --black-color);
      padding: 14px 0px 14px 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-carousel .owl-nav i:before{
  font-size: 20px;
}
.testimonial-carousel .owl-nav button{
 margin: 20px 10px 0px;
}
.row.copyright a {
    color: var(--secondary-color);
}

footer.footer {
    background: #f8f3ed;
    
}

.foo-menus .col-md-4{
  padding-left: 4%;
}
/* .pro-read a:hover{
  background: transparent!important;
} */
.section-title__inner strong {
    color: var(--primary-color);
}
.testimonial_strawberry img {
    width: 100px;
}
.foo-menus .col-md-4 {
    padding-left: 18%;
    padding-right: 0px;
}
p.cauvery-cpy {
    font-size: 14px;
}
.menu-right hr {
    margin: 25px 0;
}

@keyframes floatUpDown {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: floatUpDown 4s ease-in-out infinite;
}
.copyright {
    border-top: 1px solid #eee;
    font-size: 14px;
        padding: 15px 0px 20px 0;
}
.site-by{
  padding-left:0px;
}
@media(max-width:3500px) and (min-width: 1920px){
video#heroVideo {
    width: 100%;
}
}
@media(max-width:1400px){
    .btnn {
    padding: 18px 20px !important;
    }
.title {
    font-size: 45px;
}
h3.heading-style-h4 {
    font-size: 2em;
}
.foo-menus .col-md-4 {
    padding-left: 16%;
}
.section-title__inner em {
    display: block;
    font-size: 40px;
    line-height: 57px;
}
.section-title__inner p {
    font-size: 22px;
        width: 260px;
}
}
@media(max-width:768px){
.reveal-wrapper {
    max-width: 100%;
}
p.reveal-text {
    font-size: 25px;
}
.section-title__inner em {
    display: block;
    font-size: 27px;
    line-height: 1.5;
}
.section-title__inner {
    padding: 0px 20px 0px 20px;
}
.img-cnt-inner span {
    font-size: 14px;
}
  .hero-content h1{
    font-size:40px;
  }

  .menu-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:120px 30px;
  }

  .menu-item{
    font-size:30px;
    height:45px;
            line-height: 45px;
  }
.menu .menu-items-label {
    left: 9%;
    top: 15%;
}
  .menu-right{
    width:100%;
    margin-top:40px;
  }
  .img-cnt-inner img {
    width: 30px;
  }
  .title
 {
    font-size: 35px;
 }
 h3.heading-style-h4 {
    font-size: 2em;
 }
 .testimonials_chocolate {
    width: 6em;
    position: absolute;
    inset: 3rem auto auto 0%;
}
.testimonial_strawberry {
    width: 7rem;
}
p.small {
    width: 100%;
}
.site-by {
    text-align: center;
}
.resee {
    text-align: center;
    padding: 10px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.5;
}
.section-title__inner p {
    font-size: 16px;
        width: 100%;

}
.foo-menus .col-md-4 {
    padding-left: 4%;
    padding-right: unset;
}
.main-title img {
    width: 150px;
}
.right-imgprt {
    position: relative;
    max-width: 100%;
    max-height: 100vh;
}
.tagline {
    font-size: 12px;
}
.parallax-text {
    font-size: 30px;
    width: 100%;
    line-height: 1.5;
}
}
@media(max-width:600px){
  
}
 .scroll .line .line-inner {
    animation: linearMove 2s cubic-bezier(.65, 0, .35, 1) infinite;
    background-color: var(--secondary-color);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
 .scroll .line {
    background-color: var(--primary-color);
    height: 95px;
    margin: 10px 0 0;
    overflow: hidden;
    position: relative;
    width: 2px;
}
 .scroll span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}
.scroll a{
    color: var(--primary-color);
}
 .scroll {
     align-items: center;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    background: var(--white-color);
       width: 40px;
    height: 40px;
    border-radius: 50px;
}
@keyframes linearMove {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(100%)
    }
}

.btn {
  background: none;
    border-radius: 0px;
    color: #fff;    
    font-size: 20px;
    border-left: 1px solid #fff;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 4px;
        padding: 25px 40px 25px 20px;
}
.header.active{
    background: var(--white-color);
    border-bottom: 1px solid #573a29;
}
.header.active .btn{
    color: #573a29;
    border-left: 1px solid #573a29;
}
.header.active .btn:hover{
    background: #573a29;
    color: var(--white-color);
}
 .header.active  svg.icon.icon-hamburger{
    stroke: #573a29;
    width:30px;

 }

.btn:hover{
    background: #573a29;
    color: var(--white-color);
}

.about-section{
    display:flex;
    align-items:center;
    min-height:700px;
    padding:100px 8%;
    gap:80px;
    background:#f8f5ef;
}

.about-image{
    flex:0 0 55%;
}

.about-image img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.about-content{
    flex:0 0 45%;
}

.sub-title{
    display:block;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
    color:#8a7b6d;
}

.about-content h2{
    font-size:56px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:400;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    color:#666;
}

.about-btn{
    display:inline-block;
    padding:14px 35px;
    border:1px solid #333;
    text-decoration:none;
    color:#333;
}

@media(max-width:991px){
    .about-section{
        flex-direction:column;
        gap:40px;
    }

    .about-image,
    .about-content{
        flex:100%;
    }

    .about-image img{
        height:auto;
    }

    .about-content h2{
        font-size:38px;
    }
}

/* services */

.services-section {
    position: relative;
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sub-title {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c3a57b;
    margin-bottom: 20px;
}

.divider {
    width: 40%px;
    height: 1px;
    background: #d7c4a5;
    margin: 0 auto 30px;
}

.main-title {
    font-size: 50px;
    font-weight: 400;
    color: #4d3d47;
    
    letter-spacing: 0px;
    font-family: var(--primary-font);
}

.description {
    max-width:42%;
        margin: 0px auto 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #5c4c57;
    text-align: center;
    font-family: var(--secondary-font);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border: 1px solid #5b3d2c;
    background: #5b3d2c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-bottom  : 30px;
}


.service-btn:hover {
    background: var(--white-color);
    color: #5b3d2c;
    border: 1px solid #5b3d2c;
}

.flower {
    font-size: 18px;
}

.bg-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 20px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

/* slider */


.wellness-card{
    background:#f7f3ef;
    border:1px solid #d3b1aa;
    overflow:hidden;
    transition:.4s;
    min-height: 550px;
    border-top-left-radius:220px;
    border-top-right-radius:220px;
}

/* Rounded top image */
.wellness-img{
    height:350px;
    overflow:hidden;
    border-top-left-radius:220px;
    border-top-right-radius:220px;
}

.wellness-img img{
    width:100%;
    height: 100%;
    object-fit:cover;
    transition:.5s ease;
}

/* Image zoom */
.wellness-card:hover img{
    transform:scale(1.08);
}

/* Content */
.wellness-content{
    text-align:center;
    padding:40px 30px;
    position:relative;
    min-height:280px;
}

.wellness-content h3{
    font-size:25px;
    font-family:serif;
    font-weight:400;
    color:#5d4a46;
    margin-bottom:7px;
    font-family: var(--primary-font);
}

/* Hidden paragraph */
.wellness-content p{
        padding-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
    opacity: 1;
    font-family: var(--secondary-font);
  
}



/* Button */
.wellness-content a{
       text-decoration: none;
    color: var(--primary-color);
    background: var(--white-color);
    font-size: 18px;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px 15px;
    font-weight: 500;
     margin-top: 10px;
    display: inline-block;
}

/* Navigation buttons */
.custom-prev,
.custom-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border-radius:50%;
   background: rgb(120 60 50 / 93%);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
    font-size:28px;
    color:#fff;
    transition:.3s;
}

.custom-prev:hover,
.custom-next:hover{
    transform:translateY(-50%) scale(1.1);
}

.custom-prev{
    left:-10px;
}

.custom-next{
    right:-10px;
}

/* Responsive */
@media(max-width:768px){

    .wellness-card{
        min-height:auto;
    }

    .wellness-img{
        height:320px;
        border-top-left-radius:140px;
        border-top-right-radius:140px;
    }

    .wellness-content h3{
        font-size:22px;
    }
}


/* about us */
.about-us{
    background:#fff;
    padding:120px 20px;
    text-align:center;
}
 
.about-container{
    max-width:850px;
    margin:0 auto;
        padding-bottom: 60px;
}
 
.about-title span{
    color:#5b3d2c;
    font-size:18px;
    letter-spacing:1px;
    font-weight: 600; 
    text-transform:uppercase;
}
 
.title-line{
    width:72%;
    max-width:720px;
    height:1px;
    background:#5b3d2c;
    margin:20px auto;
    opacity:.6;
}
 
.about-us h2{
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    color: #433741;
    padding-bottom: 10px;
}
 
.about-us p{
    max-width:64%;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#4b4350;
    font-family: var(--secondary-font);
}
 
.about-us p strong{
    color:#5b3d2c;
    font-weight:500;
}
 
.tune-btn{
     display: inline-flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    z-index: 99999999;
    left: 43%;
    padding: 8px 30px;
    border: 1px solid #5b3d2c;
    border-radius: 50px;
    text-decoration: none;
    color: #5b3d2c;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .3s;
    margin: 20px 0px 0px;
}
 
.tune-btn:hover{
    background:#5b3d2c;
    color:#fff;
}
 
@media(max-width:768px){
 
    .about-us{
        padding:80px 20px;
    }
 
    .about-us h2{
        font-size:42px;
    }
 
    .about-us p{
        font-size:17px;
        line-height:1.7;
    }
 
    .tune-btn{
        font-size:16px;
        padding:15px 25px;
    }
}

.about-us {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 80px 0px 350px;
}
.rotating-image-section {
    position: absolute;
    left: 50%;
    bottom: -460px;
    transform: translateX(-50%);
    width: 850px;
    height: 850px;
    overflow: hidden;
}

.circle-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    
}

.rotating-text {
    position: absolute;
    inset: 0;
    width: 100%;
    top: 6%;
    height: 100%;
    fill: #5b3d2c;
    font-size: 20px;
    letter-spacing: 2px;
    z-index: 1;
    animation: rotateCircle 70s linear infinite;
}

/* Crystal Image */
.center-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 650px;   /* smaller than circle */
    height: 650px;
    z-index: 2;     /* above text */
}

.center-image img {
    width: 100%;
    height: auto;
    display: block;
        padding: 25px;
}

.circle-wrapper {
    width: 730px;
    height: 730px;
    margin: 0 auto;
}

.center-image {
    width: 204px;
    height: 451px;
}

.rotating-text {
    transform-origin: center;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* concern-section */


.concerns-section{
    background:#fff;
    padding:30px 0;
    position:relative;
    overflow:hidden;
}

/* Decorative Curved Lines */
.concerns-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("images/curve-line.svg") center center no-repeat;
    background-size:cover;
    opacity:.25;
    pointer-events:none;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
    position:relative;
    z-index:2;
}

.sub-title{
    display:block;
    text-align:center;
    color:#5b3d2c;
    font-size:18px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.divider{
    width:45%;
    height:1px;
    background:#5b3d2c;
    margin:0 auto 35px;
}


.concerns-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top: 40px;
}

.concern-item{
    position:relative;
    width:290px;
    height:380px;
}

/* .concern-item::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:#c8b28a;
    border-radius:45% 55% 55% 45% / 40% 45% 55% 60%;
    top:-12px;
    left:-12px;
    z-index:0;
} */

.concern-item img{
    width:100%;
    height:90%;
    object-fit:cover;
    position:relative;
    z-index:1;
   border-radius:20px 30px 40px 20px;
}

.concern-item span{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    color:#fff;
    font-size:52px;
    font-style:italic;
    font-family:var(--primary-font);
    white-space:nowrap;
}

/* Different Organic Shapes */
.concern-item:nth-child(2) img,
.concern-item:nth-child(2)::before{
    border-radius:20px 30px 40px 20px;
}

.concern-item:nth-child(3) img,
.concern-item:nth-child(3)::before{
   border-radius:20px 30px 40px 20px;
}

.concern-item:nth-child(4) img,
.concern-item:nth-child(4)::before{
   border-radius:20px 30px 40px 20px;
}

@media(max-width:991px){

    .concerns-grid{
        gap:30px;
    }

    .concern-item{
        width:240px;
        height:310px;
    }

    .concern-item span{
        font-size:42px;
    }
}

@media(max-width:767px){

    .concern-item{
        width:280px;
        height:350px;
    }

    .divider{
        width:80%;
    }
}

/* press */
.press-section {
    background: #fff;
    padding: 70px 0;
    text-align: center;
}

.press-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-subtitle {
    display: block;
    color: #5b3d2c;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-line {
    width: 42%;
    height: 1px;
    background: #c6ab7d;
    margin: 0 auto 35px;
}

.section-title {
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 400;
   
    margin-bottom: 25px;
}

.section-desc {
    max-width: 42%;
    margin: 0 auto 60px;
    font-family: var(--secondary-font);
    color: #564753;
    font-size: 16px;
    line-height: 1.8;
}

.press-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.logo-item img {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-item img:hover {
    transform: scale(1.05);
}

/* footer */

.footer{
    background:#f4f1ed;
    color:#4a3d44;
}
 .menu-right strong {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 18px;
}
.footer-top{
    max-width:1600px;
    margin:auto;
    padding:40px 60px 30px;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.3fr;
    gap:80px;
}
@media (min-width:320px) and (max-width:767px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .footer-policy {
        display: none !important;
    }
}
 
.footer-brand{
    text-align:center;
}
 
.tagline{
     display: block;
    font-size: 16px;
    letter-spacing: 3px;
    padding-top: 25px;
}
 
.footer-brand h2{
    font-size:72px;
    font-weight:400;
    margin-bottom:25px;
    letter-spacing:4px;
}
 
.footer-brand p{
    max-width:420px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
}
 
.social-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    margin-top:40px;
    border:2px solid #c5ad7d;
    border-radius:12px;
    color:#c5ad7d;
    font-size:24px;
    text-decoration:none;
}
 
.footer-links{
    display:flex;
    flex-direction:column;
    gap:28px;
}
 
.footer-links a{
    text-decoration:none;
    color:#4a3d44;
    font-size:18px;
    transition:.3s;
}
 
.footer-links a:hover{
    color:#b28e58;
}
 

.contact-item h4{
    color:#000;
   font-family: var(--primary-font);
    font-weight:400;
    font-size:20px;
    margin-bottom:10px;
}
 
.contact-item p{
    font-size:18px;
    line-height:1.7;
}
 
.footer-bottom{
    border-top:1px solid #d8d1c8;
    padding:28px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}
 
.copyright{
    font-size:16px;
}
 
.footer-policy{
    display:flex;
    gap:40px;
}
 
.footer-policy a{
    text-decoration:none;
    color:#4a3d44;
    font-size:18px;
}
 
.footer-policy a:hover{
    color:#b28e58;
}

/* parallex */

.book-btn{
 position: absolute;
    top: 25px;
    left: 43%;
    z-index: 2;
    text-decoration: none;
    color: white;
    background:#625348;
    margin: auto;
    padding: 15px 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
}
.book-btn:hover{
    color:#c8b28a;
}

 
.content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
}
 
.content p{
    letter-spacing:15px;
    font-size:22px;
    margin-bottom:40px;
}
 
.content h1{
    font-size:180px;
    font-weight:300;
    letter-spacing:20px;
}

.service-heading{
    padding: 30px 0;
}
.menu-right p{
    font-family: var(--secondary-font);
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Full visible background */
    transform: translate(-50%, -50%);
}

.parallax-section {
    height: 100vh; /* Full screen */
    background-image: url('../images/home/parallex-2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Parallax Effect */
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* Service */
 .treatment-banner {
    position: relative;
    height: 500px;
    background: url("../images/home/ayur.png") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.wellness-banner{
     position: relative;
    height: 500px;
    background: url("../images/home/welnesbanenr.png") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}
.aesthetic-banner{
     position: relative;
    height: 500px;
    background: url("../images/home/aestheticbaner.png") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    color: #f5ece5;
    font-size: 70px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

/* Bottom Curve */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}




.massage-section {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 5%;
}

/* Left Image */
.massage-image {
    width: 52%;
}

.massage-image img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Right Content */
.massage-content {
    width: 48%;
    padding-top: 10px;
}

.massage-content h2 {
    font-size: 38px;
    font-weight: 300;
    color: #4d4048;
    line-height: 1.1;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    
}

.duration {
    color: #9d3b2c;
    font-size: 22px;
    letter-spacing: 1px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #d8d0ca;
    margin: 35px 0;
}

.massage-content p {
    font-size: 16px;
    line-height: 2;
    color: #6c6464;
    font-family: var(--secondary-font);
    margin-bottom: 30px;
}

/* Button */
.button-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
    width: 64%;
}

.book-btn-1 {
    flex: 1;
    height: 55px;
    background: #9d2417;
    color: #fff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.4s ease;
}
.book-btn-1:hover {
    background: transparent;
    color: #573a29;
    border: 1px solid #573a29;
}
.whatsapp-btn:hover {
    background: transparent;
    color: #45c556;
    border: 1px solid #45c556;
}
.whatsapp-btn {
    width: 68px;
    height: 68px;
    background: #9d2417;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}


.therapy-table-wrap {
    margin-top: 40px;
}

.therapy-table {
    width: 100%;
    border-collapse: collapse;
}

.therapy-table tr {
    border-bottom: 1px solid #ddd3cc;
}

.therapy-table td {
    padding: 10px 0;
    vertical-align: top;
}

/* Name */
.therapy-name {
    width: 60%;
    font-size: 16px;
    color: #4d4048;
    line-height: 1.4;
}

.therapy-name small {
    font-size: 14px;
    color: #666;
}

/* Time */
.therapy-time {
    width: 20%;
    text-align: center;
    font-size: 16px;
    color: #6f6666;
    white-space: nowrap;
}

/* Price */
.therapy-price {
    width: 20%;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #9d2417;
}

/* Mobile */
@media(max-width:768px) {
    .therapy-name {
        font-size: 16px;
    }

    .therapy-time,
    .therapy-price {
        font-size: 15px;
    }
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .massage-section {
        flex-direction: column;
    }

    .massage-image,
    .massage-content {
        width: 100%;
    }

    .massage-image img {
        height: 450px;
    }

    .massage-content h2 {
        font-size: 42px;
    }

    .benefit-item {
        font-size: 28px;
    }
}


/* ayuverda-parallex */


/* Ayurveda Parallax Section */
.ayurveda-parallax {
    position: relative;
    height: 80vh;
    background: url("../images/home/bannerayur.png") center center/cover no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wellness-parallax {
     position: relative;
    height: 80vh;
    background: url("../images/home/wellness-na.png") center center/cover no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.aesthetic-parallax {
     position: relative;
    height: 80vh;
    background: url("../images/home/wellness.png") center center/cover no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Content */
.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-content h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.parallax-content p {
    font-size: 22px;
    color: #f5f5f5;
    letter-spacing: 1px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .ayurveda-parallax {
        height: 50vh;
        background-attachment: scroll;
    }

    .parallax-content h2 {
        font-size: 40px;
    }

    .parallax-content p {
        font-size: 16px;
    }
}
.ayurveda-contact-section {
    padding: 30px 5% 30px;
    background: #ffff;
}
/* Heading */
.section-heading {
    text-align: center;
    max-width: 40%;
    margin: auto;
}

.section-heading span {
    font-size: 18px;
    color: var(--tertiary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.line {
    width: 55%;
    height: 1px;
    background: #573a29;
    margin: 20px auto 10px;
}

.section-heading h2 {
    font-size: 38px;
    color: #463942;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-heading p {
    font-size: 20px;
   color: #000;
   font-family: var(--secondary-font);
    
}

/* Cards */
.contact-boxes {
    display: flex;
    gap: 35px;
    margin-top: 80px;
}

.contact-card {
    flex: 1;
    background: #d6cfc8;
    border: 1px solid #eadfd5;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 25px;
    color: #4b3c45;
    font-weight: 300;
    margin-bottom: 15px;
}

.contact-card p {
    color: #9d2417;
    font-size: 16px;
    text-transform: uppercase;
}

/* Bottom */
.bottom-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid #b9aca4;
    color: #5c5555;
    font-size: 22px;
    flex-wrap: wrap;
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background: #8f8179;
}

/* Responsive */
@media(max-width:991px) {

    .contact-boxes {
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .section-heading p {
        font-size: 18px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .bottom-contact {
        flex-direction: column;
        text-align: center;
    }

    .divider-vertical {
        display: none;
    }
}

/* about us */ 



/* Hero Section */
.about-hero {
    position: relative;
    height: 450px;
    background: url("../images/home/about-banner.png") center/cover;
}
.service-hero{
    position: relative;
    height: 450px;
    background: url("../images/home/servicebanner.png") center/cover;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.overlay h1 {
    color: #fff;
    font-size: 55px;
    letter-spacing: 3px;
    font-weight: 300;
}

.wave-shape {
    position: absolute;
    bottom: -1px;
    width: 100%;
}

.wave-shape svg {
    display: block;
    width: 100%;
}



/* Section */
.our-story{
    background:#fff;
    padding: 70px 20px;
    position:relative;
}



/* Container */
.story-container{
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

/* Small Heading */
.story-heading{
    position:relative;
    margin-bottom:35px;
}

.story-heading::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    width:42%;
    height:1px;
    background:#cbb899;
}

.story-heading::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    width:42%;
    height:1px;
    background:#cbb899;
}

.story-heading span{
    color:#cbb899;
    font-size:16px;
    font-weight:400;
    letter-spacing:1px;
    text-transform:uppercase;
    background:#f6f3f0;
    padding:0 20px;
    position:relative;
    z-index:1;
}

/* Main Title */
.story-container h2{
    font-family:var(--primary-font);
    font-size:38px;
    font-weight:400;
   
    color:#4d3c3f;
    margin-bottom:35px;
    line-height:1.1;
}

.story-container h2 em{
    color:#9b2d1f;
    font-style:italic;
}

/* Paragraph */
.story-text{
    max-width:900px;
    margin:0 auto;
    color:#000;
    font-size:16px;
    line-height:1.8;
    font-weight:300;
}

/* Highlight Text */
.highlight-text{
    max-width:850px;
    margin:15px auto 0;
    color:#583a29;
    font-size:16px;
    line-height:1.8;
    font-weight:400;
}

/* Responsive */
@media(max-width:768px){

    .our-story{
        padding:50px 20px;
    }

    .story-container h2{
        font-size:48px;
    }

    .story-text{
        font-size:16px;
    }

    .highlight-text{
        font-size:18px;
    }

    .story-heading::before,
    .story-heading::after{
        width:30%;
    }
}

@media(max-width:480px){

    .story-container h2{
        font-size: 35px;
        line-height: 1.3;
    }

    .story-heading::before,
    .story-heading::after{
        width:22%;
    }
}



.team-section{
    padding:70px 0;
    background:
    linear-gradient(rgba(112,32,32,.85),rgba(112,32,32,.85)),
    url("images/bg-texture.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
}

.container{
    width:100%;
    max-width:95%;
    margin:auto;
    padding: 0px 20px;
}

.section-title{
    text-align:center;
    font-family:var(--primary-font);
    font-size:40px;
    
    font-weight:400;
    color:#f5ece6;
    margin-bottom:20px;
}

.team-wrapper{
    display:grid;
    grid-template-columns:500px 1fr;
   gap: 60px;
    align-items:center;
}

/* IMAGE AREA */
.team-image{
    display:flex;
    justify-content:center;
}

.image-shape{
    width:520px;
    height:520px;
    border-radius:42% 58% 54% 46% / 48% 40% 60% 52%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-shape::before{
    content:"";
    position:absolute;
    width:440px;
    height:440px;
    border:18px solid #f0d7b5;
    border-radius:50%;
}

.image-shape::after{
    content:"";
    position:absolute;
    width:390px;
    height:390px;
    border:8px solid rgba(255,255,255,.6);
    border-radius:50%;
}

.image-shape img{
    width:380px;
    position:relative;
    z-index:2;
}

/* CONTENT AREA */
.team-content h3{
    font-size:25px;
    font-family:var(--primary-font);
    font-weight:300;
    letter-spacing:1px;
    margin-bottom:12px;
}

.designation{
    display:block;
    font-size:16px;
    font-family:var(--secondary-font);
     
    font-weight:300;
    margin-bottom:20px;
}

.divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.6);
    margin-bottom:35px;
}

.team-content p{
    font-size:16px;
    line-height:1.8;
    color:#f7ede7;
    margin-bottom:28px;
    max-width:1050px;
    font-family:var(--secondary-font);
}

/* Second Section - Content Left, Image Right */
.team-wrapper.reverse {
    grid-template-columns: 1fr 500px;
}

.team-wrapper.reverse .team-content {
    order: 1;
}

.team-wrapper.reverse .team-image {
    order: 2;
}

/* Responsive */
@media(max-width:991px){

    .team-wrapper{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .section-title{
        font-size:52px;
    }

    .image-shape{
        width:420px;
        height:420px;
    }

    .image-shape::before{
        width:350px;
        height:350px;
    }

    .image-shape::after{
        width:310px;
        height:310px;
    }

    .image-shape img{
        width:300px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size:42px;
    }

    .image-shape{
        width:320px;
        height:320px;
    }

    .image-shape::before{
        width:260px;
        height:260px;
    }

    .image-shape::after{
        width:230px;
        height:230px;
    }

    .image-shape img{
        width:220px;
    }

    .team-content h3{
        font-size:32px;
    }

    .team-content p{
        font-size:16px;
    }
}

@media (max-width: 991px) {
    .team-wrapper,
    .team-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-wrapper.reverse .team-content,
    .team-wrapper.reverse .team-image {
        order: unset;
    }

    .team-content {
        text-align: center;
    }
}

.testimonial-section {
    padding: 80px 0 50px;
    background: #f5f5f5;
}

.container {
    width: 86%;
    max-width: 1400px;
    margin: auto;
}

/* Heading */
.testimonial-heading {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-heading h2 {
    font-size: 40px;
    color: #9e5135;

    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.testimonial-heading p {
    font-size: 20px;
    color: #000;
    font-family: var(--secondary-font);
}

.testimonial-carousel .item{
    background: #e9dfc6;
    border-radius: 20px;
}
/* Card */
.testimonial-card {
    height: 170px;
    position: relative;
    text-align: center;
    padding: 20px 30px;

}

.testimonial-content h3 {
    color: var(--tertiary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    font-family: var(--secondary-font);
    color: #000;
    margin-bottom: 10px;
}

.testimonial-content span {
    color: #9e5135;
    font-size: 18px;
    font-weight: 600;
}

/* Equal Space */
.testimonial-carousel .item {
    padding: 0 8px;
}

/* Dots */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    display: block;
    background: #c7c7c7;
    border-radius: 50%;
}

.owl-dot.active span {
    width: 30px;
    border-radius: 30px;
    background: #9e5135;
}

/* Mobile */
@media(max-width:767px){
    .testimonial-heading h2{
        font-size:32px;
    }

    .testimonial-card{
        height:auto;
        padding:40px 25px;
    }

    .testimonial-content h3{
        font-size:28px;
    }
}

.therapy-section {
    background: #fff;
    padding: 70px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-family: var(--primary-font);
    margin-bottom: 30px;
}

.therapy-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.therapy-card {
    flex: 1;
    background: #f7f3ef;
    border: 1px solid #eadfd8;
   border-radius: 20px 30px 40px 20px;
    padding: 60px 40px;
    text-align: center;

    /* Same top & bottom spacing */
    min-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.therapy-card h3 {
    font-size: 38px;
    
    font-family: var(--primary-font);
    color: #2e2744;
    margin-bottom: 10px;
}

.duration {
    display: block;
    color: #b4582e;
    font-size: 22px;
    margin-bottom: 30px;
}

.therapy-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px;
}

.btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btnn {
    padding: 18px 35px;  /* smaller button */
    border-radius: 35px;
    text-decoration: none;
    font-size: 14px;      /* smaller text */
    font-weight: 500;
    min-width: 155px;     /* same width */
    text-align: center;
    height: 55px;
    
}

.learn-btn {
    background: #c6b187;
    color: #fff;
}
 .learn-btn:hover{
     background: transparent;
    color: #573a29;
    border: 1px solid #573a29;
}



/* Responsive */
@media (max-width: 991px) {
    .therapy-cards {
        flex-direction: column;
    }

    .section-title {
        font-size: 30px;
    }
}





.why-choose{
    padding:100px 8%;
    background:#f8f8f8;
}

.why-choose .container{
    display:flex;
    align-items:center;
    gap:60px;
}

.why-image{
    flex:1;
}

.why-image img{
    width:100%;
    border-radius:20px;
    height:600px;
    object-fit:cover;
}

.why-content{
    flex:1;
}

.why-content span{
    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-content h2{
    font-size:42px;
    margin:15px 0;
}

.why-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.why-item{
    background:#fff;
    padding:16px 20px;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0px; /* space between items */
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px; /* space between tick and text */
    font-size: 16px;
    color: #333;
}

.tick-icon {
    width: 28px;
    height: 28px;
    background: var(--tertiary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}


.banner-img {
    background: url("../images/home/contact-banner.png") center center/cover no-repeat;
}

.contact-block-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.contact-info-wrapper {
    text-decoration: none;
    flex: 1;
    min-width: 250px;
}

.contact-block-content {
    padding: 30px 25px 20px;
    text-align: center;
    border-radius: 12px;
    background: #5e3f2e;
   
    cursor: pointer;
    height: 186px;
}

.contact-block-content:hover {
    transform: translateY(-5px);
}

.contact-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    line-height: 1.2;
}
.contact-content {
    font-size: 18px !important;
    color: #fff;
    
}

.small-content {
    font-size: 11px;
}
.small-content:hover{
    color:#ddd;
}


@media (max-width: 768px) {
    .contact-block-wrapper {
        flex-direction: column;
    }

    .contact-title {
        font-size: 24px;
    }
}

.contact-form.style-4 {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form.style-4 .form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-form.style-4 .form-group {
    margin-bottom: 20px;
}

.contact-form.style-4 .form-control {
    width: 100%;
    height: 60px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form.style-4 textarea.form-control {
    height: 160px;
    padding-top: 15px;
    resize: none;
}

.contact-form.style-4 .form-control:focus {
    border-color: #c59d5f;
    outline: none;
    box-shadow: none;
}

.contact-form.style-4 .form-btn {
    margin-top: 10px;
}

.contact-form.style-4 .th-btn.style2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5e3f2e;
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form.style-4 .th-btn.style2:hover {
    background: #111111;
    color: #ffffff;
}

.contact-form.style-4 .th-btn.style2 i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .contact-form.style-4 {
        padding: 30px 20px;
    }

    .contact-form.style-4 .form-title {
        font-size: 26px;
    }
}

.tune-btn:hover{
     color:#fff !important;
     background-color: var(--tertiary-color) ;

}

/* Bottom Buttons */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.nav-btn {
    padding: 14px 30px;
    border: 1px solid #7a5a50;
    background: transparent;
    color: #7a5a50;
    font-size: 16px;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.4s ease;
}

.nav-btn:hover {
    background: #7a5a50;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .content h2 {
        font-size: 38px;
    }

    .content p {
        font-size: 18px;
    }

    .slider-navigation {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 238px;
    }
}

