    /* HERO */
   /* HERO SLIDER */

.hero-slider{
    position:relative;

    width:100%;
    height:800px;

    overflow:hidden;
}

/* SLIDE */

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;

    transition:1s ease-in-out;
}

/* ACTIVE */

.slide.active{
    opacity:1;
    visibility:visible;
}

/* IMAGE */

.slide img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.overlay{
    position:absolute;

    inset:0;

    background:rgba(0, 0, 0, 0.233);
}

/* CONTENT */

.hero-content{
    position:absolute;
    top:70%;
    left:120px;
    transform:translateY(-50%);
    z-index:10;
    color:white;
    max-width:750px;
}

.hero-sub-title{
    font-size:22px;
    font-style:italic;
    margin-bottom:20px;
    margin-top: 10px;
}

.hero-content h1{
    font-size:80px;
    line-height:1;
    font-weight:600;
}

/* BUTTONS */

.slider-buttons{
    position:absolute;
    bottom:50px;
    right:80px;
    z-index:20;
    display:flex;
    gap:15px;
}

.slider-buttons button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#adddec42;
    color:rgba(255, 255, 255, 0.555);
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

.slider-buttons button:hover{
    background:#adddec42;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content{
        left:40px;
        right:40px;
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .hero-slider{
        height:80vh;
    }

    .hero-content h1{
        font-size:38px;
    }

    .sub-title{
        font-size:20px;
    }

    .slider-buttons{
        right:30px;
        bottom:30px;
    }

}

/* ABOUT SECTION */

.about-section{
    width:100%;
    background:#f5f5f5;
    padding:120px 0;
}

/* CONTAINER */

.about-container{
    width:100%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    padding:0 100px;
}

/* LEFT */

.about-images{
    position:relative;
    min-height:700px;
}

/* DOTS */

.dots{
    position:absolute;
    width:120px;
    height:120px;
    background-image:radial-gradient(#77c8b4 1.5px, transparent 1.5px);
    background-size:14px 14px;
}

.dots-1{
    top:40px;
    left:140px;
}

.dots-2{
    right:20px;
    bottom:180px;
}

/* IMAGE BOX */

.img-box{
    position:absolute;

    overflow:hidden;
}

.img-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* IMAGE POSITIONS */

.img-1{
    width:220px;
    height:240px;

    top:120px;
    left:0;
}

.img-2{
    width:320px;
    height:380px;

    top:10px;
    left:250px;
}

.img-3{
    width:250px;
    height:260px;

    bottom:0;
    left:50px;
}

.img-4{
    width:220px;
    height:220px;

    bottom:40px;
    left:330px;
}


/* RIGHT */

.about-content{
    position:relative;
}

.sub-title{
    color:#0e96c4;
    font-size:18px;
    font-weight:400;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.about-content h2{
    font-size:65px;
    line-height:1.1;
    font-weight:600;
    color:#414141;
    margin-bottom:10px;
}

.about-text{
    font-size:18 px;
    font-weight: 300;
    line-height:1.4;
    color:#414141;
    margin-bottom:10px;
    max-width:650px;
}

/* FEATURES */

.feature-list{
    margin-bottom:45px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:10px;
    font-size:18px;
    color:#333;
}

.square{
    width:12px;
    height:12px;
    background:#0e96c4;
}

/* AUTHOR */

.author-section{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:30px;
}

.author-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.author-left img{
    width:80px;
    height:80px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #f8c53a;
}

.author-left h4{
    font-size:34px;
    font-weight:800;

    margin-bottom:5px;
}

.author-left p{
    font-size:20px;
    color:#666;
}

/* BADGE */

.badge img{
    width:140px;
}

/* SIGNATURE */

.signature img{
    width:220px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:35px;
    }

}

@media(max-width:768px){

    .about-container{
        padding:0 20px;
    }

    .about-images{
        min-height:900px;
    }

    .img-1{
        width:180px;
        height:200px;
    }

    .img-2{
        width:240px;
        height:300px;
        left:120px;
    }

    .img-3{
        width:200px;
        height:220px;
    }

    .img-4{
        width:180px;
        height:180px;
        left:180px;
    }

    .call-box{
        left:50px;
        bottom:0;
    }

    .about-content h2{
        font-size:35px;
    }

    .feature-item{
        font-size:18px;
    }

}

/* QUALITY SECTION */

.quality-section{
    width:100%;

    background:#e4e4e4;

    padding:120px 0;

    overflow:hidden;
}

/* CONTAINER */

.quality-container{
    width:100%;
    max-width:1400px;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding:0 100px;
}

/* LEFT */

.quality-content{
    max-width:650px;
}


/* TITLE */

.quality-content h2{
    font-size:45px;
    line-height:1.1;

    font-weight:600;

    color:#414141;

    margin-bottom:28px;
}

/* TEXT */

.quality-text{
    font-size:16px;
    font-weight: 300;
    line-height:1.4;
    color:#414141;
    margin-bottom:35px;
}

/* RIGHT */

.quality-images{
    position:relative;

    min-height:650px;
}


/* MAIN IMAGE */

.main-image{
    position:absolute;

    bottom:0;
    right:40px;

    width:520px;
    height:600px;

    transform:rotate(0deg);

   

    overflow:hidden;

    z-index:1;
}

.main-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* TOP IMAGE */

/* .top-image{
    position:absolute;

    top:20px;
    right:0;

    width:520px;
    height:200px;

    transform:rotate(0deg);


    overflow:hidden;

    z-index:2;
}

.top-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}
 */


/* RESPONSIVE */

@media(max-width:1200px){

    .quality-container{
        grid-template-columns:1fr;
    }

    .quality-content h2{
        font-size:52px;
    }

}

@media(max-width:768px){

    .quality-container{
        padding:0 20px;
    }

    .quality-content h2{
        font-size:38px;
    }

    .quality-text{
        font-size:18px;
    }

    .feature{
        font-size:18px;
    }

    .discover-link{
        font-size:20px;
    }

    .quality-images{
        min-height:500px;
    }

    .main-image{
        width:90%;
        height:250px;
        right:0;
    }

    .top-image{
        width:80%;
        height:180px;
    }

}

/* HEALTH TOURISM */

.health-tourism{
    width:100%;

    background:#f7f7f7;

    padding:100px 0;

    /* background-image:url('https://www.transparenttextures.com/patterns/brick-wall.png'); */
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:45px;
    font-weight:600;
    color:#414141;
    margin-bottom:5px;
}

.title-icon img{
    width:90px;
}

/* BOX */

.tourism-box{
    width:100%;
    max-width:1200px;
    margin:auto;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

/* TABS */

.tourism-tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-bottom:1px solid #e5e5e5;
}

/* BUTTON */

.tab-btn{
    background:#fff;
    border:none;
    padding:22px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    cursor:pointer;
    transition:.3s;
    border-right:1px solid #e5e5e5;
}

.tab-btn:last-child{
    border-right:none;
}

.tab-btn img{
    width:200px;
    height:100px;
    object-fit:contain;
}

.tab-btn span{
    font-size:18px;
    font-weight:400;
    color:#414141;
}

/* ACTIVE */

.tab-btn.active{
    background:#12a6c8;
}

.tab-btn.active span{
    color:#fff;
}

/* CONTENT */

.tab-content{
    display:none;
    grid-template-columns:1.1fr .8fr;
    gap:40px;
    align-items:center;
    padding:40px;
}

.tab-content.active{
    display:grid;
}

/* LEFT */

.content-left h3{
    font-size:35px;
    color:#328AD5;
    margin-bottom:25px;
    font-weight:400;
}

.main-text{
    font-size:16px;
    font-weight: 300;
    line-height:1.4;
    color:#414141;
    margin-bottom:25px;
}

.sub-text{
    font-size:16px;
    font-weight: 300;
    line-height:1.4;
    color:#414141;
    margin-bottom:35px;
}

/* LIST */

.medical-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom: 20px;
}

.medical-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    color:#666;
}

.square{
    width:10px;
    height:10px;
    background:#12a6c8;
    display:block;
}
/* BUTTON */

.details-btn{
    display:inline-block;
    padding:16px 34px;
    background:#12a6c8;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.details-btn:hover{
    background:#0b8aa7;
}

/* IMAGE */

.content-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .tab-content{
        grid-template-columns:1fr;
    }

    .content-left h3{
        font-size:30px;
    }

}

@media(max-width:768px){

    .health-tourism{
        padding:70px 20px;
    }

    .section-title h2{
        font-size:45px;
    }

    .tourism-tabs{
        grid-template-columns:1fr 1fr;
    }

    .tab-content{
        padding:25px;
    }

    .content-left h3{
        font-size:30px;
    }

    .main-text,
    .sub-text{
        font-size:18px;
    }

    .medical-list{
        grid-template-columns:1fr;
    }

}

/* HOSPITAL SECTION */

.hospital-section{
    width:100%;
    background:#ffffff;
    padding:80px 0;
    overflow:hidden;
    
}

/* TITLE */

.hospital-title{
    text-align:center;
    margin-bottom:10px;
}

.hospital-title h2{
    font-size:45px;
    font-weight:600;
    color:#414141;
    margin-bottom:0px;
}

.hospital-icon img{
    width:90px;
}

/* SLIDER */

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* TRACK */

.logo-track{
    display:flex;
    align-items:center;
    gap:8px;
    width:max-content;
    animation:scrollLogo 25s linear infinite;
}
.logo-slider:hover .logo-track{
    animation-play-state: paused;
}
/* LOGO CARD */

.logo-item{
    width:220px;
    height:250px;
    background:#e9e9e9;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:20px;
    border-radius:2px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
    margin: 20px;
}

.logo-item:hover{
    transform:translateY(-5px);
}

/* IMAGE */

.logo-item img{
    width:200px;
    height:200px;

    object-fit:contain;
}

/* TITLE */

.logo-item h4{
    font-size:22px;
    font-weight:300;
    
    color:#222;
}
/* ANIMATION */

@keyframes scrollLogo{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .hospital-title h2{
        font-size:45px;
    }

    .logo-item{
        width:140px;
        height:75px;
    }

    .logo-track{
        gap:20px;
    }

}


/* WHY INDIA */

.why-india{
    width:100%;
    background:#f5f5f5;
    padding:80px 0;
}

/* TITLE */

.why-title{
    text-align:center;
    margin-bottom:30px;
}

.why-title h2{
    font-size:45px;
    font-weight:600;
    color:#414141;
    margin-bottom:15px;
}

.title-icon img{
    width:90px;
}

/* CONTAINER */

.why-container{
    width:100%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 500px 1fr;
    align-items:center;
    gap:40px;
    padding:0 80px;
}

/* LEFT & RIGHT */

.why-left,
.why-right{
    display:flex;
    flex-direction:column;
    gap:55px;
}

/* ITEM */

.why-item{
    display:flex;
    align-items:center;
    gap:28px;
}

/* LEFT ALIGNMENT */

.why-left .why-item{
    justify-content:flex-end;
    text-align:right;
}

/* RIGHT ALIGNMENT */

.why-right .why-item{
    justify-content:flex-start;
    text-align:left;
}

/* TEXT */

.why-text{
    font-size:18px;
    font-weight: 300;
    line-height:1.4;
    color:#000000;
    max-width:420px;
}

/* ICON */

.why-icon{
    min-width:50px;
    width:50px;
    height:50px;
    border:2px solid #12a6c8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    color:#12a6c8;

    transition:.3s;
}

.why-item:hover .why-icon{
    background:#12a6c8;
    color:#fff;

    transform:translateY(-5px);
}

/* MAP */

.india-map{
    display:flex;
    align-items:center;
    justify-content:center;
}

.india-map img{
    width:100%;
    max-width:480px;
    object-fit:contain;
    animation:floatMap 4s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatMap{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:1200px){

    .why-container{
        grid-template-columns:1fr;
    }

    .why-left .why-item,
    .why-right .why-item{
        justify-content:center;
        text-align:center;
    }

    .why-item{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .why-title h2{
        font-size:38px;
    }

    .why-container{
        padding:0 20px;
    }

    .why-text{
        font-size:18px;
    }

    .why-icon{
        width:70px;
        height:70px;

        font-size:28px;
    }

}

/* SECTION */

.treatment-section{
    width: 1300px;
    background:#ffffff;
    padding:90px 0;
    overflow:hidden;
    margin:0 auto;
}

/* TITLE */

.treatment-title{
    text-align:center;
    margin-bottom:30px;
}

.treatment-title h2{
    font-size:45px;
    font-weight:600;
    margin-bottom:12px;
    color: #414141;
}

.title-icon img{
    width:50px;
}

/* SLIDER */

.treatment-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* TRACK */

.treatment-track{
    display:flex;
    gap:25px;

    animation:slideCards 20s infinite;
}

/* CARD */

.treatment-card{
    width:300px;
    background:#f5f5f5;
    border-bottom:4px solid #12a6c8;
    overflow:hidden;
    transition:.4s;
    flex-shrink:0;
}

.treatment-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.treatment-image{
    position:relative;
    height:220px;
}

.treatment-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ICON */

.treatment-icon{
    position:absolute;
    left:50%;
    bottom:-55px;
    transform:translateX(-50%);
    width:100px;
    height:100px;
    border-radius:50%;
    background:#005d85;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:#fff;

    border:8px solid rgba(255,255,255,0.2);
}

/* CONTENT */

.treatment-content{
    text-align:center;
    padding:85px 20px 30px;
}

.treatment-content h3{
    font-size:22px;
    font-weight:400;
    margin-bottom:12px;
}

.treatment-content p{
    font-size:18px;
    color:#ff4a4a;
}

/* STEP BY STEP SCROLL */

@keyframes slideCards{

    0%,15%{
        transform:translateX(0);
    }

    20%,35%{
        transform:translateX(-300px);
    }

    40%,55%{
        transform:translateX(-630px);
    }

    60%,75%{
        transform:translateX(-950px);
    }

    80%,95%{
        transform:translateX(-1280px);
    }

    100%{
        transform:translateX(0);
    }

}

/* PAUSE ON HOVER */

.treatment-slider:hover .treatment-track{
    animation-play-state:paused;
}

/* RESPONSIVE */

@media(max-width:768px){

    .treatment-card{
        min-width:280px;
    }

    .treatment-title h2{
        font-size:45px;
    }

}


.ayur-program-section {
  background-image: url('https://elements-.envatousercontent.com/envato-dam-assets-production/EVA/TRX/f0/a1/24/cb/14/v1_E10/E109F14V.jpg?w=1600&cf_fit=scale-down&mark-alpha=18&mark=https%3A%2F%2Felements-assets.envato.com%2Fstatic%2Fwatermark4.png&q=85&format=auto&s=c315e79f7243dd32b33f739152559b4afcae193f35d0276cab00875abbec5674');
  background-color: #000000;
  background-size: cover;          /* Makes image fill properly */
  background-position: center;     /* Centers image */
  background-repeat: no-repeat;
  padding: 170px 170px;
  overflow: hidden;
  z-index:1;
}



/* SLIDER STRUCTURE */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 1200px;
}

/* CARD (3 visible) */
.program-card {
  min-width: 33.3333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;

}
.content-overlay-5 {
  position:absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern/pattern-gray.png') no-repeat center;
  background-size: cover;
 opacity: 0.2;
  z-index: 0;
}
.card-content {
  position: relative;
  z-index: 6; /* Ensure content is above the overlay */
}

.card-content {
  background: white;
  padding: 25px;
 height: 300px;
  text-align: left;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.card-content h3{
  font-size: 28px;
  margin-bottom: 10px;
  color: #328ad5;
  font-weight: 400;
  z-index: 6;
  margin-top: 10px;
 
}
.card-content p {
  flex-grow: 1;
   z-index: 6;
   font-weight: 300;
   font-size: 16px;
   color: #414141;
   line-height: 1.4;
  
}

.btn {
  padding: 12px 30px;
  background: #42b2f3;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 13px;
}

/* ARROWS */
.nav {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nav img {
  width: 45px;
  height: 45px;
}

.prev { left:   -60px; }
.next { right: -60px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .program-card { max-width: 50%; }
  .prev { left:   -90px; }
.next { right: -90px; }
.ayur-program-section {
  padding: 70px 110px;
} 
}


@media (max-width: 800px) {
  .program-card { max-width: 100%; }
}
@media (max-width: 623px) {
  .program-card { max-width: 30%; }
}

@media (max-width: 606px) {
  .program-card { width: 250px; }
   .ayur-program-section {
  padding: 70px 0px;
}
.prev { display: none; }
.next { display: none;}
}
.rejuvenation-content{
  font-size: 45px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}
