@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*,::before,::after {
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}
:root {
  --heading-font: "Gentium Basic", sans-serif;
  --content-font: "Montserrat", sans-serif;
}
body {
  font-family: var(--content-font);
  overflow-x: hidden;
}
.nav-logo {
    max-height: 80px;
}
header{
    background-image: url('../images/about-bg-img.jpg');
    background-position: center;
    background-position: center;
    background-size: cover;
}
.banner-section{
    /* background-image: url('../images/about-bg-img.jpg');
    background-position: center;
    background-position: center;
    background-size: cover; */
    padding: 5rem 3rem;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.background-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 26, 26, 0.5); 
    z-index: 0;
}
.web-svg{
    width: 50px;
    height: 30px;
    color: #FBDAC7;
    margin-bottom: 2rem;
}
.banner-content {
    text-align: left;
    z-index: 1;
    position: relative;
}
.banner-heading{
    font-size: 2.18rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    font-family: var(--content-font);
    line-height: 2rem;
    letter-spacing: 1.2;
}
.banner-desc{
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--content-font);
    margin-bottom: 1.2rem;
}
.banner-form{
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    z-index: 2;
}
.form-control{
    max-width: fit-content;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    background-color: #fff;
    z-index: 1;
}
.btn.book-btn{
    padding: 0.7rem 2rem;
    background-color: #fff;
    color: #2E2E38;
    border: 1px solid #fff;
    border-radius: 0;
    min-width: 9.37rem;
    font-family: var(--content-font);
    font-weight: 500;
    font-size: 1.1rem;
}
.btn.book-btn:hover{
    background-color: #FECBAE;
    color: #2E2E38;
    border: 1px solid #FECBAE;
    box-shadow: none;
    outline: none;
}
/* about section */
.about-section{
    padding: 0;
    background-image: url('../images/about-bg-img.jpg');
    background-position: center;
    background-position: center;
    background-size: cover;
}
.about-image{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content{
    padding: 3rem;
    padding-left: 3.8rem;
    justify-content: start;
}
.about-heading{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.93rem;
}
.about-sub-heading{
    font-size: 2.18rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #2E2E38;
}
.about-desc{
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666a6c;
    font-weight: 400;
}
.about-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-list li {
    position: relative;
    padding-left: 1.56rem;
    margin-bottom: 0.625rem; 
}
.about-list li::before {
    content: "\2713"; /* Unicode for a checkmark */
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 900;
    color: #000; /* You can change the color if desired */
    font-size: 1.2rem;
} 
.btn.about-btn {
    background: #FFCACA;
    padding: .625rem  1rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    width: fit-content;
    /* width: 80%; */
    margin-top: 2rem;
    color: #2E2E38;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: left;
    justify-content: start;
    /* Added this to ensure left alignment */
    text-align: left;
}

.btn.about-btn:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Slightly larger */
    }
    100% {
        transform: scale(1);
    }
}
.btn.about-btn::before{
    background: linear-gradient(to right, rgba(216, 182, 182, 0) 0%, #FBDAC7);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    animation: slide 3s ease-in-out infinite;
}
@keyframes slide {
    0% {
        left: -75%; /* Start off-screen on the left */
    }
    100% {
        left: 125%; /* Move off-screen to the right */
    }
}
.play-btn-container{
    position: absolute;
    top: 50%; /* Vertically centered */
    left: -6%; /* Positioned to the right */
    transform: translateY(-50%); /* Adjust vertical alignment to exactly center */
    background-color: #FFCACA;
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.play-btn-container i {
    color: #000; 
    font-size: 2rem;
    cursor: pointer; 
}
.modal-video {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    
}

.modal-content-video {
    
    margin: 10% auto;
    width: 80%;
    max-width: 700px;
    border-radius: 0;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}
iframe{
    height: 70vh;
    width: 100%;
    /* max-width: 100%; */
    object-fit: cover;
    
}

/* expertise section */
.expertise-section{
    overflow: hidden;
    padding: 3rem;
    justify-content: center;
}
.expertise-section .section-headings{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2E2E38;
    font-family: var(--content-font);
    text-align: start;
}
.pos-rel{
    position: relative;
    text-align: center;
}
.back-image{
    position: absolute;
    left: calc(50% - 30px);
    transform: translateX(-50%);
    top: 30px;
    height: 100%;
    width: 80%;
    z-index: -1;
}
.expertise-left-img{
    max-width: 80%;
    /* box-shadow: -20px 20px 20px #FFCACA; */
}

.certification-section{
    overflow: hidden;
    padding: 3rem;
    justify-content: center;
}
.certification-images-cont img{
    max-height: 8rem;
    max-width: 100%;
    margin: auto;

}
.location-section video{
    border-radius: 3%;
    cursor: pointer;
}
.location-section .play-cont{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FECBAE;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    border: none;
    outline: none;
}

/* Who Should Join Section */
.who-to-join-section{
    overflow: hidden;
    padding: 3rem;
    justify-content: center;
}
.who-card{
    /* background-color: #FFCACA; */
    background-color: #f7f7f7;
    border-radius: 3%;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: #000;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
}
.who-card h6{
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFCACA;
}
.who-card:hover{
    background-color: #FFCACA;
}
.who-card:hover h6{
    color: #000;
}

/* Why Attend Section */
.why-attend-section{
    overflow: hidden;
    padding: 3rem;
    justify-content: center;
}
.why-card{
    text-align: center;
    position: relative;
}
/* .why-card::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100% + 1px);
    transition: 0.5s;
	transform-style: preserve-3d;
    background: transparent;
}
.why-card:hover::before{
    transform: rotateX(180deg);
    background: #FFCACA;
} */
.why-card:hover p{
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 100%;
    /* padding: 1rem; */
}
.why-attend-section h6{
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    text-align: left;
}
.acc-img.active {
    visibility: visible;
    animation: fadeInUp 2s both; /* Use the fadeInUp animation */
}
/* diseases-section */
.diseases-section{
    overflow: hidden;
    padding: 3rem;
    justify-content: center;
}
.section-headings{
    font-size: 2.18rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2E2E38;
    font-family: var(--content-font);
    text-align: start;
}
.diseases-card{
    padding: 3rem 1rem;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-radius: 8px;
    background-color: #ffff;
    box-shadow: 0 0 3px 3px #FECBAE;
    height: 100%;
}
.diseases-card {
    visibility: hidden;
}
.color-card{
    /* background-color: #FECBAE; */
    background-color: #FCF4ED;
    height: 100%;
    
}
.color-card .disease-icon{
    color: #000;
}
/* Show and animate when 'active' class is added */
.diseases-card.active {
    visibility: visible;
    animation: fadeInUp 2s both; /* Use the fadeInUp animation */
}
.col-gap{
    margin-top: 2rem;
}
.card-margin-bottom{
    margin-bottom: 2rem;
}
.diseases-svg{
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}
.disease-icon{
    color: #FECBAE;
    font-size: 2.8rem;
   
}
.disease-heading{
    color: #2E2E38;
    font-size: 1.3rem;
    margin-bottom: 0rem;
    text-transform: capitalize;
}
.disease-desc{
    font-size: 0.9rem;
    color: #6f6f6f;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
/* Pricing Section */
.session-pricing p::before{
    content: '\2714';
    display: inline-block;
    margin-right: 0.4rem;
}
.session-pricing p:not(:last-child){
    padding: 0.1rem 0;
}
.package-heading{
    font-size: 1.3rem;
    font-weight: 700;
}
.pricing-section{
    padding: 4rem 3rem;
    background-image: url('../images/about-bg-img.jpg');
    background-position: center;
    background-position: center;
    background-size: cover;
}
.pricing-card{
    border: 1px solid #ededed;
}
.animation-card{
    visibility: hidden;
}
.animation-card.active {
    visibility: visible;
    animation: fadeInUp 2s both; /* Use the fadeInUp animation */
}
.pricing-bg-black{
    background-color: #2e2e38;
    padding: .625rem 0;
    justify-content: center;
    align-items: center;
    display: flex;
}
.pricing-bg-pink{
    background-color: #FFCACA;
    padding: .625rem 0;
    justify-content: center;
    align-items: center;
    display: flex;
}
.pricing-white-heading{
    color: #fff;
    margin-bottom: 0;
}
.pricing-bg-tranparent{
    padding: 35px;
    justify-content: center;
    align-items: center;
}
.pricing-section .btns-row{
    margin-bottom: 2rem;
}
.pricing-section .btn.btn-inr,
.pricing-section .btn.btn-usd,
.pricing-section .btn.btn-treat,
.pricing-section .btn.btn-schd{
    box-shadow: none;
    background-color: #fff;
    color: #000;
    border-radius: 0;
    padding-inline: 1rem;
}
.pricing-section .btn.active{
    background-color: #FFCACA;
}
.pricing-count{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0;
}
.pricing-text{
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}
.list-content{
    background-color: hsl(0, 0%, 100%);
    padding: 1.875rem;
    justify-content: center;
    text-align: center;
}
.list-style-none{
    list-style: none;
    padding: 0;
}
.list-style-none li{
    text-align: center;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list-style-none li p{
    margin-bottom: 0;
    font-size: 0.87rem;
    color: #6f6f6f;
}
.btn.pricing-btn{
    background: transparent;
    border: 1px solid #2e2e38;
    color: #2e2e38;
    margin-top: 2rem;
    font-size: 0.87rem;
    text-transform: uppercase;
    border-radius: 0;
}
.btn.pricing-btn:hover,
.btn.pricing-btn:focus{
    background-color: #2e2e38;
    color: #fff;
    box-shadow: none;
    outline: none;
}
.btn.pricing-btn.pink{
    background-color: #FFCACA;
    border: 1px solid #FFCACA;
    color: #000;
}
.btn.pricing-btn.pink:hover,
.btn.pricing-btn.pink:focus{
    background-color: transparent;
    color: #000;
}
.pricing-card.highlight{
    box-shadow: 0px 0px 40px rgba(200, 200, 200, 0.3);
    transform: scale(1.10);
    -webkit-transform: scale(1.10);
}
.pricing-card.highlight .pricing-white-heading{
    color: #000;
    font-weight: bold;
}
.pricing-section .accordion-button span {
    color: #FFCACA;
    font-weight: 800;
    margin-right: 0.6rem;
}
.accordion-button{
    font-weight: 600;
    background: transparent;
    box-shadow: none;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    background: transparent;
    color: #000;
}
.accordion-item{
    background: transparent;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/chevron-down-solid.svg);
}
.accordion-item table.table td:not(:first-child){
    text-wrap: nowrap;
}
/* Location section */
.location-section{
    padding: 3rem;
}
.location-img-container{
    max-width: 100%;
    max-height: 100%;
    position: relative;
    overflow: hidden;
}
.location-img-container:hover .location-image {
    filter: brightness(50%) contrast(120%);
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.location-image{
    width: 100%;
    height: 80vh;
    object-fit: cover;
}
.location-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
     opacity: 0.8;
    background-color: #FCF4ED;
}
.location-img-container:hover .location-content{
    background-color: transparent;
}
.location-heading{
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #2e2e38;
    min-width: 200px;
    margin-bottom: 0;
    padding: 0.3rem 1.25rem 0.48rem 1.25rem;
}
.location-img-container:hover .location-heading{
    color: #fff;
}
/* Gallery-section */
.gallery-section{
    padding: 3rem;
}
.custom-gap{
    padding: .6rem;
}
.image-container{
    position: relative;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    margin-bottom: 0rem;
}
.gallery-card{
    visibility: hidden;
}
.gallery-card.active{
    visibility: visible;
    animation: fadeInUp 2s both;
}
.image-container img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 200px;
    /* transition: transform 0.3s ease; */
}
.image-container:hover img {
    transform: scale(1.1); 
}
/* .gallery-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFCACA;
    height: 0;
    overflow: hidden;
    padding: 0 3rem;
    text-align: center;
    transition: all 0.2s ease;
} */
/* .seperater-line{
    height: 0.063rem;
    background-color: #ff214f;
    width: 3.125rem;
    display: inline-block;
    margin-bottom: 1.4rem;
} */
.gallery-content-heading{
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #2e2e38;
    margin-top: 0.5rem;
    margin-bottom: 0rem;
    text-transform: uppercase;
}
.gallery-content-desc{
    font-size: 0.8rem;
    color: #6f6f6f;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
}
.image-container:hover .gallery-content{
    height: 100%;
    z-index: 1;
    background-color: #FFCACA; 
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s ease;
}
.gallery-section .btn.about-btn{
    background: #FFCACA;
    padding: .625rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    width: fit-content;
    /* width: 80%; */
    margin-top: 2rem;
    color: #2E2E38;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: left;
    justify-content: start;
    /* Added this to ensure left alignment */
    text-align: left;
}

.gallery-section .btn.about-btn:hover {
    transform: scale(1.05);
}

/* Services */
.services-section{
    padding: 3rem;
}
.image-carousel-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.image-carousel-card{
    visibility: hidden;
    background-color: #FFCACA;
}
.image-carousel-card.active{
    visibility: visible;
    animation: fadeInUp 2s both;
}
.hover-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 60vh;
}
.image-border-text {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    /* background-color: #FECBAE; */
    background-color: #FFCACA;
    /* height: 3.75rem; */
    overflow: hidden;
    padding: 1rem 3rem;
    text-align: center;
    transition: height 0.3s ease-out;
}
.bottom-heading {
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    text-align: center;
    color: #000;
}
.image-border-text p{
    width: 100%;
    color: #000;
    /* display: none; */
    transition: all 0.2s ease-out;
    margin-bottom: 0;
}
.image-carousel-card:hover .image-border-text{
    height: 100%;
    z-index: 1;
    background-color: #FFCACA;
    opacity: 0.9;
    color: white;
    transition: height 0.5s ease-out;
}
/* Form Section */
.form-section{
    padding: 3rem;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.form-section.active{
    opacity: 1;
}
.form-content{
    color: #fff;
    padding-right: 3rem;
    /* left: 50%;
  transform: translateX(-50%);
    width: 80%;
    overflow: hidden;
    
      */
}
/* .form-content.visible {
    opacity: 1; 
    width: 100%;
} */
.form-top-text{
    color: #6f6f6f;
    font-size: 1rem;
    margin-bottom: 0.9rem;
    font-weight: 500;
}
.form-main-heading{
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.form-desc{
    color: #6f6f6f;
    font-size: 1rem;
}
.form-info-container{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}
.icon-box{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    height: 110px;
}
.form-icon{
    color: #ff214f;
    font-size: 2.18rem;
    padding-right: 1.3rem;
}
.form-info-text{
    padding-left: .8rem;
    font-size: 1rem;
    margin-bottom: 0;
}
.form-info-text span{
    font-size: .8rem;
    color: #6f6f6f;
    margin-bottom: 0;
}
.contact-form{
    background-color: #fff;
    border-radius: 0.37rem;
    padding: 4rem;
    justify-content: center;
    text-align: center;
}
.contact-form-heading{
    margin-bottom: 30px;
    font-weight: 600;
    color: #232323;
    font-size: 18px;
}
.contact-form.form-control{
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #adadb1;
    padding: 0.625rem 1.25rem;
    margin-bottom: 0.938rem;
    max-width: 100%;
    text-align: start;
}
.contact-form.form-control::placeholder{
    color: #2e2e38;
}
.contact-form.form-control:hover,
.contact-form.form-control:focus{
    box-shadow: none;
    outline: none;
    border: 1px solid #2e2e38;
}
.form-label{
    color: #2e2e38;
}
.form-check-label{
    text-align: start;
    /* color: #212529 */
    color: #2e2e38;
}
.form-check-input:checked {
    background-color: #FECBAE;
    box-shadow: none;
    outline: none;
    border: 1px solid #FECBAE;
}
.btn.send-btn{
    padding: 0.4rem 2rem;
    background-color: #FFCACA;
    color: #2E2E38;
    border: 1px solid #FFCACA;
    border-radius: 0;
    min-width: 9.37rem;
    font-family: var(--content-font);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
}
.btn.send-btn:hover{
    background-color: #FECBAE;
    color: #000;
}
.contact-info-section{
    padding: 3rem;
}
.contact-info-heading{
    color: #000;
    font-size: 0.8rem;
    line-height: 1.667em;
    font-weight: 600;
    font-family: var(--content-font);
    letter-spacing: .6rem;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}
.contact-info-desc{
    color: #000;
    font-size: .93rem;
    margin: 0.625rem 0;
    cursor: pointer;
    text-align: center;
}
/* .contact-info-desc:hover{
    border-bottom: 1px solid #000;
    width: fit-content;
    justify-content: center;
    text-align: center;
} */
.swal2-container button.swal2-styled.swal2-confirm{
    color: #000;
}
.loader{
    background: transparent;
}
/* Animations */
@keyframes fadeInLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fadeInRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .animate__fadeInLeft {
    visibility: hidden;
  }
  .animate__fadeInRight {
    visibility: hidden;
  }
  .active .animate__fadeInLeft {
    visibility: visible;
    animation: fadeInLeft 2s forwards;
  }
  .active .animate__fadeInRight {
    visibility: visible;
    animation: fadeInRight 2s forwards;
  }
  .animate__fadeInLeft,
  .animate__fadeInRight {
    animation-fill-mode: forwards;
  }

  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0); /* Moves from below */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0); /* Final position */
    }
}

/* Optional: Adding a class for the animation */
/* .animate__fadeInUp {
    visibility: hidden;
    
}
.active .animate__fadeInUp{
    visibility: visible;
    animation: fadeInUp 2s both;
} */
