@import url('https://fonts.googleapis.com/css2?family=Gotu&family=Inter:ital,opsz@0,14..32;1,14..32&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:wght@500&display=swap');

:root{
    --primary-color: #742c5b;
    --secondary-color: #C497A2;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Gotu", sans-serif;
    /* overflow-x: hidden; */
    /* overflow: hidden; Prevent scrollbars */
}


/* common css */
.as_padderall50{
    padding: 50px;
}
.as_padderTop10{
    padding-top: 10px;
}
.as_padderTop20{
    padding-top: 20px;
}
.as_padderTop30{
    padding-top: 30px;
}
.as_padderTop40{
    padding-top: 40px;
}
.as_padderTop50{
    padding-top: 50px;
}
.as_padderTop60{
    padding-top: 60px;
}
.as_padderTop70{
    padding-top: 70px;
}
.as_padderTop80{
    padding-top: 80px;
}
.as_padderTop90{
    padding-top: 90px;
}
.as_padderTop100{
    padding-top: 100px;
}
.as_padderTop140{
    padding-top: 140px;
}
.as_padderBottom5{
    padding-bottom: 5px;
}
.as_padderBottom10{
    padding-bottom: 10px;
}
.as_padderBottom20{
    padding-bottom: 20px;
}
.as_padderBottom30{
    padding-bottom: 30px;
}
.as_padderBottom40{
    padding-bottom: 40px;
}
.as_padderBottom50{
    padding-bottom: 50px;
}
.as_padderBottom60{
    padding-bottom: 60px;
}
.as_padderBottom70{
    padding-bottom: 70px;
}
.as_padderBottom80{
    padding-bottom: 80px;
}
.as_padderBottom90{
    padding-bottom: 90px;
}
.as_padderBottom100{
    padding-bottom: 90px;
}



.Contacts-top {
    background-color: #6b2d5c;
    color: #fff;
position: relative;
    z-index: 1;
}

.header-btn {
    border: none;
    color: #000;
    background-color: #fff;
    margin-right: 15px;

}

.header-btn:hover {
    background-color: #783766 !important;
    border: none;
    color: #fff !important;
}

.contact-item h6,
.contact-item p {
    font-size: 19px !important;
}

.s-head-2 {
    color: #783766;
    font-size: 55px ;
    font-weight: 400;
}

.c-heading {
    color: #783766;
    font-size: 23px;
    font-weight: 400;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;  /* Zoomed slightly to allow movement */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: bgPan 25s ease-in-out infinite alternate;
}

@keyframes bgPan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 15px;
}



/* .hero {
    position: fixed;
    position: relative;
   
	height: 85vh;
    
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
	overflow-x: hidden;
   animation: bgMove 25s ease-in-out infinite alternate;

} */
/* @keyframes bgMove {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }

    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }

    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
} */

/* .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
} */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.swiper-slide{
    background: none !important;
}

.home-nav {
    background: transparent;
    top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}
/* Navbar when scrolled */
.navbar.scrolled {
    background: white !important; /* Change background to white */
    top: 0px; /* Adjust position */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
}

.navbar.scrolled .nav-link {
    color: var(--primary-color) !important; /* Change text color */
}

.navbar.scrolled .btn-outline-light {
    border: 1px solid var(--primary-color);
    color:var(--primary-color);
}

.navbar.scrolled .btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
}
/* end of css */

.home-nav .nav-link {
    color: #fff;
}

.home-nav .btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

.home-nav .btn-outline-light:hover {
    background: #fff;
    color: #000;
}

.about-nav {
    background: #fff;
    /* border-bottom: 1px solid #ddd; */
}

.about-nav .nav-link {
    color: #500d3a;
}

.about-nav .btn-outline-light {
    border: 1px solid #500d3a;
    color: #500d3a;
}

.about-nav .btn-outline-light:hover {
    background: #500d3a;
    color: #fff;
}
.navbar-nav .nav-item {
    position: relative;
    padding: 0 20px;
    /* Increased padding for better spacing */
}

/* .navbar-nav .nav-link {
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
} */

.navbar-nav .nav-link::before {
/*    content: '\2022';
    color: #fff;
    position: absolute;
    left: 17px;*/
    /* Adjusted dot distance */
    top: 50%;
    transform: translateY(-50%);
}

/* .navbar-nav .nav-link:hover {
    color: #ffffff;
} */

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    font-weight: 700;
    background: #ffffff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.7);
    border: none;
}

.dropdown-menu a {
    color: #fff;
}

.dropdown-menu a:hover {
    background-color:#c497a2;
    color: #fff;
}

.btn-outline-light {
    border: 1px solid #fff;
    padding: 12px 50px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000;
}

.search-icon i {
    color: #fff;
    font-size: 23px;
    margin-right: 10px;
}

.h-heading {
    font-weight: 500;
}



.contact-section {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 40px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

/* Responsive fix */
@media (max-width: 767.98px) {
    .contact-section {
        /* position: static; */
        /* transform: none; */
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        padding: 20px;
        border-radius: 12px;
        /* box-shadow: none; */
    }

    .divider {
        display: none;
    }

    .contact-item {
        width: 100%;
    }
}


.contact-item {
    text-align: center;
}

.contact-item h5,
.contact-item h6 {
    margin: 0;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    margin: 5px 0;
    font-size: 0.9rem;
}

.divider {
    height: 30px;
    width: 1px;
    background: #ccc;
}

/* .c-number {
    font-size: 27px;
} */

.c-number {
    white-space: nowrap;
    font-size: clamp(16px, 3vw, 28px); /* responsive from mobile to desktop */
    display: inline-block;
}


.hero-section-about {
    background-image: url(../../assets/images/home-2-background-2.webp);
    padding: 85px 0 0 0 ;
    background-size: 100% 100%;
}
/*.welcome-img{
    height: 720px;
}*/

.welcome-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 300px 300px 20px 20px;
}

.hero-image img {
    border-radius: 300px 300px 20px 20px;
}

.icon-circle {
    position: relative;
    top: -84px;
    /* left: 50%; */
    transform: translateX(-50%);
}

.icon-circle2 {
    position: relative;
    top: 60px;
    /* left: 50%; */
    transform: translateX(-50%);
}

.counter-section {
    padding: 0 0 50px 0;
    background: #fff;
}

.counter {
    font-size: 4.5rem;
    color: #742c5b;
}

.counter-text {
    font-size: 1.5rem;
    color: #742c5b;
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 20px;
    /* background-color: #5b1f46; */
}

.accordion-button {
    background: #fff;
    color: #5b1f46;
    box-shadow: none !important;
    border-radius: 10px !important;
    padding: 30px;
    font-size: 23px;
    font-weight: 700;
    
}
.photo-p{
    font-size: 23px;
}
.photo-g, .photo-p{
    color: #742c5b;
}
/* .accordion-button::after{
    background-image: var('images/arrow-up.png') !important;
} */
.accordion-button:hover{
    background: #5b1f46;
    color: #fff;
}
.accordion-button:not(.collapsed) {
    background: #5b1f46;
    color: #fff;
    box-shadow: none !important;
    border-radius: 10px 10px 0 0 !important;
    /* border-bottom: 1px solid #fff; */

}

.accordion-body {
    background: #5b1f46;
    border-radius: 0 0 10px 10px !important;
    color: #fff;

}
.a-item-new{
    background-color: transparent !important;
    border-bottom: 2px solid #b8b8b8 ;
    
    
    
}
.a-collapse-new , .a-body-new{
    background-color: transparent !important;
    color: #3a3939;
}
.a-btn-new{
    background-color: transparent !important;
    color: #742c5b !important;
    font-weight: 400;
    font-size: 28px;
    padding-bottom: 15px ;
}

.box-d {
    border-radius: 10px !important;
}

.hero-image-2 {
    margin-top: -80px;
    /* position: absolute; */
}

.hero-image-2 img {
    border-radius: 20px 20px 300px 300px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.icon-circle-2 {
    position: relative;
    top: 70px;
    left: 70%;
    transform: translateX(-50%);
    
    transition: transform 0.6s ease, opacity 0.6s ease;

}

.Conditions-h {
    font-size: 50px;
    color: #5b1f46;
}

.home-sec-2 {
    background-image: url(../../assets/images/home-1-background-4.webp);
    background-size: 100% 100%;
}

/* team */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #F5F3EF;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

.team-card:hover img {
    filter: brightness(0.5);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .social-icons {
    opacity: 1;
}

.social-icons a {
    text-decoration: none;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icons a i {
    color: #5b1f46;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card {
    background-color: #F5F3EF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured {
    background: #742c5b;
    color: #fff;
}

.btn-primary {
    background: #742c5b;
    border: none;
}
.price-padding{
    padding: 0 30px;
}
@media (min-width: 1658px) {
  .price-card-box {
    width: 20% !important; 
    flex: 0 0 auto; 
  }
}

.price-card-box{
    /* width: 20%; */
    height: 440px;
}
.pricing-card{
    justify-content: center;
}

.price-p {
    font-size: 19px;
}

.price-d h6 {

    font-weight: 400;
}

.price-d ul {
    list-style-type: none;
    padding: 0;

}

.price-d ul li {
    font-size: 19px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.p-detail {
    color: #742c5b;
}

.pricing-card:hover:not(.featured) {
    box-shadow: 0 0 15px 0px #555555b5;
}

.head-p {
    font-size: 2.7rem;
    color: #742c5b;

}

.p-btn {
    border: none;
    background-color: #5b1f46;
    color: #fff;
    border-radius: 40px;
    padding: 10px 45px;
    font-size: 17px;
}

.p-btn:hover {
    border: 2px solid #5b1f46;
    color: #5b1f46;
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    object-fit: cover;
    height: 100%;

}

.card:hover .healing-image {
    filter: brightness(0.3);
    background-color: rgba(166, 39, 122, 0.8);
}

.healing-image {
    filter: brightness(0.5);
    transition: filter 0.3s ease, background-color 0.3s ease;

	/*  */
	aspect-ratio: 3 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-slide .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: #fff;
    text-align: left;
}

.icon {
    position: absolute;
    top: 20px;
    left: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.main-swiper {
    height: auto;
}
.swiper.review {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}



.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
}

/*.slider-first {
    width: 22% !important;
	 transition: transform 0.4s ease, box-shadow 0.4s ease;
}*/


.slider-first {
    flex: 0 0 auto;
  
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.slider-first .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
      object-position: top;
}

.new-servies {
    width: 55% !important;
    height: 500px;
}

.new-servies img {
    border-radius: 15px !important;
    box-shadow: 0 0 8px 0 #0000008c;
}

.video-image {
    cursor: pointer;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* .video-modal video {
    max-width: 90%;
    max-height: 90%;
} */

.faq {
    background-image: url(../../assets/images/home-2-background-4.webp);

    background-size: cover;
}

.blog {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 20px;
}

.o-blog h3 {
    font-size: 23px;
}

.main-article img {
    width: 100%;
    border-radius: 10px;
}

.main-article h2 {
    font-size: 1.5rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F3EF;
    padding: 10px;
    border-radius: 10px;
}

.article-preview img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
}

.more-articles {
    margin-top: 20px;
    text-align: center;
}

.more-articles button {
    background: #813b72;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.blog-date:hover{
    background-color: #742c5b;
}

.blog-date {
    background-color: #C497A2;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 2px 15px;
}

.article-preview:hover {
    box-shadow: 0 0 14px 0 #00000057;
}


.next-step-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


.treatments ,.specialist ,.appointment {
    background: #ffffff;
    color: #000000;
    text-transform: uppercase;
}



.treatments:hover ,.specialist:hover,.appointment:hover{
    background-color: #5b1f46;
    color: #FFF;
    /* text-transform: uppercase; */
}

.subtext {
    margin-top: 20px;
    font-size: 1rem;
}

.next-step-container {
    /*background-image: url(../../assets/images/home-2-background-3.webp);*/
    padding: 50px 0px !important;
     text-align: center;
    /*color: #fff;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}


.footer {
    padding: 80px 150px 0 ;
    background-repeat: no-repeat;
    background-size:cover;
    background-image: url(../images/footer-background.webp);

}
.footer-logo{
 width: 250px;
 /* padding: 0 0 32px 0; */
}

.first-footer-row{
    padding-bottom: 40px;
}
.first-row-heading{
    font-size: 36px;
}
.first-row-heading2{
    font-size: 14px ;
    padding-bottom: 4px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: normal;
}
.form-control::placeholder {
    color: var(--bs-secondary-color, #6c757d); /* Bootstrap's text-secondary color */
    opacity: 1;
}

.form-control::placeholder {
    color: #333 !important;  /* Darker text */
    opacity: 1; /* Ensure full visibility */
}
.form-control{
    padding-left: 24px; 
    box-shadow: none !important;
    /* outline: none; */
    border-radius: 35px;
    /* padding: 10px ; */
}

.E-botton{
    padding: 14px;
    background: #C497A2;
    width: 190px;
    border-radius: 35px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;

}
.E-botton:hover{
    background-color: #5b1f46 !important;
    color: #fff;
}


.first-col-p{
    padding: 0 0 32px 0;
}
.second-col-heading, .third-col-heading, .fourth-col-heading, .fifth-col-heading{
    padding: 40px 0 32px 0;
    margin-bottom: 0;
}
.second-col-li li, .third-col-li li, .fourth-col-li li{
    padding: 8px 0;
}


.footer a {
    /* color: #ffb6c1; */
    color: #ffffff;
    text-decoration: none;
    padding: 0;
}

.footer a:hover {
    color: #ffb6c1;
    padding: 0;

}
.footer-last-div{
    padding-bottom: 24px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
}







/* animation */

.animate-on-scroll {
    transform: translateY(50px);
    opacity: 0;
}

.animate-on-scroll.visible {
    transform: translateY(0);
    opacity: 1;
}


/* about page */

.about-content{
    background: url(../../assets/images/about-background-1.webp);
    height: 713px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: cover;
    border-radius: 0 20px  20px 0;
    padding:0  160px;
}

.about-page-content {
    margin-top: 100px; /* Same height as navbar */
    padding: 0 30px;
    border-radius: 30px;
    
}
.top-a-img img{
    border-radius: 20px 0 0 20px;
}
.about-heading{
    color: #742c5b;
    font-weight: 300 !important;
}
.mini-head{
    color: #5b1f46;
}
.ab-section2{
    margin-top: 120px !important;
}
.a-content{
    padding:0 0 0 160px ;
}
.ab-section2 img{
    border-radius: 20px;

}
.a-content p{
    font-weight: 500 !important;
}

.slider-about{
    background-color: #F5F3EF;
    padding: 100px 0;
}

.about-slide{
    color: #783766;
    font-weight: 800 !important;
}

.appointment-form {
    /* max-width: 800px; */
    padding: 90px !important;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #e9e9e9;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
}
.btn-custom {
    background-color: #7a4069;
    color: #fff;
    border-radius: 25px;
    padding: 12px 30px;
}
.btn-custom:hover {
    background-color: #5c2e4a;
}

.appointment-form input ,.form-select{
  border-radius: 30px;
  padding: 15px ;
  box-shadow: none !important;
}
.appointment-form h6 ,h2{
    color: #783766;

}
.appointment-form h2 {
 font-size: 38px;
 margin-top: 20px;

}
.form-label{
    font-size: 14px;
}


/* contant us */
.contant-main{
    background: url(../../assets/images/about-background-1.webp);
    background-size: cover;
    margin-top: 100px;
}


.appointment-container {
    background: #6b2d5c;
    color: white;
    padding: 40px;
    border-radius: 15px;

}
.appointment-container img{
    width: 150px;
}

.appointment-form-data .form-control, .appointment-form-data .form-select {
    border-radius: 30px;
    padding: 15px ;
    box-shadow: none;
    border-color: #ffffff;
    background-color: transparent !important;
    color: #fff;
}
.appointment-form-data .form-select option{
    color: #000;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.book-btn{
    background-color: #fff;
    border-radius: 30px;
    padding: 15px;
    color: #5b1f46;
}
.book-btn:hover{
    background-color: #e1bad2;
}

.appointment-img img{
    border-radius: 0 15px 15px 0;
    height: 100%;
}


/* COURSES PAGE CSS */
/* Card styling */
.course-card {
    border-radius: 20px;
    /* Rounded corners */
    overflow: hidden;
    /* Ensures child elements don’t overflow the card */
    position: relative;
    /* Allows absolutely-positioned elements */
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
/*     border: 1px solid #646262; */
    padding: 10px;
    padding-top: 60px;
    padding-bottom: 120px;

}


/* Make card image fill the width, keep proportions */
.course-card img {
    top: 10%;
   
    display: block;
    border-radius: 20px;
     width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: center;
}

/* Heading text on top of the image */
.course-title {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary-color);
    /* font-weight: 600; */
    font-size: 1.2rem;
    /* text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); */
}

/* “ONLINE” / “IN PERSON” badge in the top-right corner */
.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #198754;
    /* Default: green for "ONLINE" */
    color: #fff;
    padding: 0.4rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.6rem;
    text-transform: uppercase;
}

  /* Example color for "IN PERSON" badge:
     .course-badge.in-person { background-color: #0d6efd; }
  */

/* Overlay box in the center of the image */
.overlay-box {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(249, 236, 236, 0.9);
    /* Slight translucency */
    border-radius: 0.75rem;
    padding: 1rem;
    /* text-align: center; */
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    width: 80%;
    max-width: 500px;
}

/* Enroll button styling + hover effect */
.enroll-btn {
    /* font-size: 32px; */
    /* margin-top: 32px; */
    transition: background-color 0.3s ease;
    position: absolute;
    right: 35%;
    bottom: 20px;
}
.enroll-btn:hover {
    background-color: #C497A2;
    border: none;
    color: #fff;
}


.courses-hero{
    background: url(../../assets/images/сourses-1-background.webp);
    border-radius: 15px;
    margin: 16px;
    animation: none;
    position: fixed;
    position: relative;
    height: 70vh;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden;
    background-size: cover;

}
.dropdown-item:hover {
/*    color: #fff;*/
    font-weight: 800;
    
}
.header-section {
    padding: 60px 20px;
}

.header-section h1 {
    font-size: 48px;
}

.header-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.date-price {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.image-container {
   margin: 40px auto;
   max-width: 800px;
      
    
    
   
}

.image-container img{
    border-radius: 18px ;
     height: 550px;
    width: 100%;
    object-fit: cover; 
    object-position: center;
   
}


.Service-header-bg {
    padding-top: 120px;
    background: url('../images/open-event-background.webp');
    background-size: cover;
    color: #5E3B52;
    text-align: center;
    padding-bottom: 30px;
}

.details-container {
    background-color: #f5f2ee;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}
.section-title {
    font-size: 22px;
    font-weight: bold;
}
.info-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #8D6E63;
    margin-top: 10px;
}
.map-container {
    background-color: #eaeaea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-size: 18px;
    font-weight: bold;
    color: #666;
}
.service-img img{
    height: 300px;
    border-radius: 15px;
}
.courses-detail {
    background: url(../images/headline-background.webp);
    border-radius: 15px;
    margin: 16px;
    animation: none;
    position: fixed;
    position: relative;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
}
.course-details,
.booking-form {
    padding: 20px;
    border-radius: 10px;
}
.btn-book {
    background-color: #763a64;
    color: white;
}
.btn-book:hover {
    background-color: #5a2d4c;
}
.Time-detail {
    background: #f9f6f2;
    padding: 20px;
    border-radius: 10px;
}
.image-course {
    background-image: url(../images/сourses-3.webp );
    background-size: cover;
    height: 65vh;
    border-radius: 15px;
}
.course-drop {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.course-head {
    position: relative;
    border-radius: 10px;
}
.course-btn {
    background-color: #ffffff;
    color: #500d3a;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 1rem;
    box-shadow: none !important;
    border: none !important;
}
/* Border animation effect */
.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #763a64;
    transition: width 1s ease-in-out;
}
/* Show border when active */
.course-btn:not(.collapsed)::before {
    width: 100%;
}
.course-contant {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    color: #333;
}
.course-btn:not(.collapsed) {
    background-color: #ffffff !important;
    color: #333 !important;
    box-shadow: none !important;
    cursor: pointer;
}
.acourse-btn::after {
    box-shadow: none;
}
.course-btn.collapsed:hover {
    background-color: #763a64 !important;
    cursor: pointer;
    color: var();
}
.course-contant {
    padding: 20px;
    margin: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}
.accordion-button1 {
    background-color: transparent;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 1rem;
    box-shadow: none !important;
    border: none !important;
}


.accordion-body ul li a {
    color: #333;
    text-decoration: none;
}
.mentor-section {
    padding: 50px 0;
}
.mentor-text h2 {
    font-weight: bold;
}
.mentor-text {
    text-align: center;
}
.mentor-text p {
    color: #4a4a4a;
}
.join-button {
    background-color: #500d3a;
    border-color: #500d3a;
    border-radius: 50px;
    color: #fff;
    color: #fff;
    padding: 14px 25px;
    text-transform: uppercase;
}
.join-button:hover {
    background-color: #C497A2;
    color: #fff;
}
.mentor-img {
    position: relative;
}
.small-img {
    position: absolute;
    bottom: -26px;
    right: -31px;
    width: 345px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.icon-circle1 {
    position: absolute;
    top: -40px;
    right: -40px;
    background-color: #500d3a;
    color: white;
    padding: 10px;
    font-size: 60px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}


.icon-text {
    display: flex;
    align-items: center;
    gap: 15px;
}
.section {
    padding: 60px 10px !important;
    text-align: center !important;
}
.section h2 {
    font-weight: bold;
    font-weight: 800;
}
/* .icon-circle {
    background-color: #4a104a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
} */
.info-box {
    text-align: left !important;
    margin-bottom: 20px;
    border-bottom: 1px solid;
}
.rounded-img {
    position: relative;
    /* width: 250px;
    height: 250px; */
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f3db92;
}
.rounded-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-button {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
    background-color: #C497A2;
    color: white;
}
.course-icon {
    background-color: #500d3a;
    width: 145px;
    height: 80px;
    padding: 5px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}
.w-chose-us {
    background: #f3f0f3;
}
.course-box {
    background-color: #c29599;
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin-top: 24px;
    font-family: Arial, sans-serif;
}
.course-box h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.course-list {
    list-style: none;
    padding: 0;
}
.course-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.course-list li:hover {
    transform: translateX(5px);
}
.arrow {
    font-size: 18px;
}
#whatsapp-button {
    position: fixed;
    top: 400px;
    background-color: #42df5e;
    border-color: #42df5e;
}
#call-button, #whatsapp-button {
    right: 0;
    border-radius: 18px 0 0 18px;
    z-index: 2;
}
/* Footer Styling */
.footer-d {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(245, 243, 239) !important;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}

/* Disclaimer Text */
.footer-d p {
    margin: 0;
    padding: 5px;
    color: #783766;
}

/* Buttons */
.footer-d-buttons {
    margin-top: 10px;
}

.footer-d-buttons button {
    background-color: #5b1f46;
    color: white;
    border: 1px solid #5b1f46;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.footer-d-buttons .reject {
    background-color: transparent;
    color: #5b1f46;

}

.footer-d-buttons button:hover {
    opacity: 0.8;
    background-color: transparent;
    color: #5b1f46;
}

.footer-d-buttons .reject:hover {
    opacity: 0.8;
    background-color: #5b1f46;
    color: #fff;
}

/* Hide Footer-d After Accepting */
.hidden {
    display: none;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff !important;
    opacity: 1; /* Firefox */
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.footer-logo-bg {
    background: #fff;
    border-radius: 10px;
}
.footer-logo-bg img{
    width: 220px;
}
.welcome-container {
    padding: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding-bottom: 0px;
}

.testimonial-container {
       /*background-image: url(../../assets/images/footer-background.webp);*/
        /*background-size: cover;*/
        text-align: center;
        padding: 50px 20px;
        /*background-repeat:no-repeat;*/
    }
    .swiper {
        width: 100%;
        padding-bottom: 50px;
    }
   /* .testimonial-card {
        border: 3px solid #a18196;
        padding: 30px;
        text-align: center;
        border-radius: 25px;
    }
    .stars {
        color: rgb(209, 178, 3) !important;
        font-size: 20px;
    }
*/

.price-swiper .swiper-wrapper {
  display: flex !important;
}

.price-swiper .swiper-slide {
  width: 280px;  /* or 25% for responsive view */
  flex-shrink: 0;
  margin-right: 20px;
}

.price-swiper {
  overflow: hidden;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #6b2d5c;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  display: none; /* Hidden by default */
  transition: opacity 0.4s ease;
}

#scrollToTopBtn:hover {
  background-color: #343a40;
}



.testimonial-card {
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 24px;
  background: linear-gradient(135deg, #6b2d5c, #c497a2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



    .client-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-top: 15px;
    }
    .swiper-pagination-bullet {
        background: white !important;
    }
    .testimonial-card p strong{
        font-size: 16px;
        font-weight: 500;
    }

	
	.book_appointments:hover {
		color: #28a745; /* Color on hover (e.g., green) */
	}
    .main-welcome{
        max-width: 90%;
    }
     .Asmi-Icon-logo img{
            width: 450px;
        }
   
	@media (max-width: 991px) {
        .teammember-btn{
            flex-direction: column;
            display: flex;
            align-items: center;
            justify-items: center;
            margin-bottom: 10px;
        }
        .cta-button{
            padding: 14px 12px;
        }
        .Asmi-Icon-logo img{
            width: 300px;
            margin-top: 50px;
        }
        .booking-equal-overlay{
            background: rgba(0, 0, 0, 0.6);
        }
        .second-col-heading, .third-col-heading, .fourth-col-heading, .fifth-col-heading{
            padding: 20px 0;
        }
        .teammember-img-wrapper-left{
            
            border-radius:160px 160px 25px 25px !important ;
        }
        .teammember-img-wrapper{
            border-radius:25px 25px 160px 160px  !important ;
            margin-top: 20px;
        }
        .ome-nav {
	        top: 0px;
	    }
        .main-welcome{
           max-width: 100%;
        }
       /* .welcome-img{
            height: 560px;
        }*/

.welcome-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
	   
	    .block-m {
	        margin-top: 30px;
	    }
        .image-container{
            height: 400px;
            width: 100%;
        }

        .image-container img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top;
        }
        .custom-input{
            margin-bottom: 14px;
        }
        .appointment-container{
            border-radius: 15px;
        }
        .enroll-btn {
                right: 27%;
        }
        .mb-5{
            margin-bottom: 0 !important;
        }
        .m-pading{
            padding: 0 !important;
        }
        .mobile-center{
            text-align: center !important;
        }
        .mobile-center-icon{
            display: flex !important;
            justify-content: center !important;
        }
        .hero{
            height: 68vh !important;
        }
        .course-title{
            width: 82% !important;
        }
        .mobile-top{
            margin-top: 0 !important;
        }
        .swiper-slide {
  width: 100% !important; 
  box-sizing: border-box;
  padding: 10px;
  /* background: #fff; */
  /* overflow-wrap: break-word; */
}
         .navbar .btn i {
    font-size: 18px !important;
  }

  .navbar .btn {
    padding: 0.3rem 0.6rem;
    font-size: 14px;
  }
    .slider-first {
        width: 100% !important;
    }
    .imge-video-container img{
        width:400px !important;
    }
    .divider {
        height: 1px !important;
        width: 249px !important;
        background: #ccc;
    }
    .contact-section{
        bottom: -100px !important;
        flex-direction: column !important;
         padding: 13px !important;
         width: 90%;
    }
.slider-first {
    width: 100% !important;
}
.imge-video-container img{
    width:-webkit-fill-available;
}
.divider {
    height: 1px !important;
    width: 249px !important;
    background: #ccc;
}
.blog{
    grid-template-columns:none !important;
}
.hero-section .s-head-2 {
    font-size: 37px !important;
}
.header-btn{
    margin-right:0;
    margin-top: 13px;
}
br {
   display: none;
}
.head-p ,.pricing-card h3{
   font-size:2rem !important;
}
.icon-circle {
    top: -56px;
}
.icon-circle img {
    width: 110px;
}
.second-footer-row{
    text-align: center;
}
.o-blog h3 {
    font-size: 18px  !important;
}
.a-header-new .a-btn-new{
    font-size: 24px !important;
}
.btn-outline-light {
    padding: 12px 71px !important;
}
.healing-center ,.text-center-btn{
    text-align: center;
}
.mySwiper .slider-first{
    width: 100% !important;
}
.navbar-nav .nav-link::before {
    left:7px !important;
}
 .about-content {
    padding: 0 30px !important;
    height: 335px !important;
    border-radius:0 0 20px 20px !important;
}
.top-a-img img{
    border-radius: 20px 20px 0 0 !important;
}
.ab-section2{
    margin-top: 30px !important;
    /* margin-buttom:; */
}
.a-content{
    padding: 0 0 0 10px !important;
}
.ab-section2 img{
    margin-bottom: 20px;
}
.mySwiper .slider-first{
    width: 100% !important;
}
.footer{
    padding: 40px 0 0;
    /* margin-top: 24px; */
}
.navbar-nav .nav-link::before {
    left:7px !important;
}
.slider-about {
    padding: 16px !important;
}
.courses-hero{
         height: 37vh !important;
      }
      .image-course {
    background-position: center;
    margin-top:25px !important;
}
    .icon-circle1{
      right: 0px !important;
    }
     .courses-hero{
         height: 37vh !important;
      }
      .courses-hero{
         height: 37vh !important;
      }
        .header-section h1 {
    font-size: 43px !important;
}
.next-step-container-logo {
    margin-top: 62px;
}
.thm-text {
    font-size: 37px !important;
}
.elementor-box {
    margin-top: 20px;
}
.elementor-box ul{
    padding-left: 0;
}
.s-head-2{
    font-size: 50px;
}

.welcome-container {
    padding: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding-bottom: 0px;
}

}

.course-image-box{
    height: 400px;
    width: auto;
}
	
.text-thm {
    color: #40304B;
}
/*.elementor-icon-box-title {
    margin-bottom: 10px;
    color: #783766;
    text-align: center;
    font-weight: 800;
}*/

.elementor-icon-box-title {
  font-size: 28px;
  font-weight: 800;
  color: #783766;
  text-align: center;
  margin-bottom: 15px;
}

/* Optional spacing below heading */
.elementor-icon-box-title span {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .elementor-icon-box-title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .elementor-icon-box-title {
    font-size: 20px;
  }
}


.elementor-box {
    /*display: flex;*/
    height: 430px;
    gap: 10px 10px;
    row-gap: 10px;
    column-gap: 10px;
    border-radius: 30px 30px 30px 30px;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
	 transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* @media (min-width: 992px) {
    .center-offset-on-desktop {
        margin-top: -48px;
    }
} */
.center-img {
    display: block;
  margin-left: auto;
  margin-right: auto;
}

.elementor-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.elementor-box ul {
    list-style: none;
}
.elementor-box ul li {
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    /* padding: 10px 0px; */
}
.thm-text {
    font-size: 55px; line-height: 1.1em; letter-spacing: -2px; word-spacing: 0px; font-weight:normal ;
}


.pricing-card {
    background: #F5F3EF;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);  /* soft glow */
    transition: all 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.price-p {
    font-size: 14px;
    color: #666;
}

.price-d h6 {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.price-d ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-d ul li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px dashed #ddd;
}

.price-hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.p-detail {
    margin-top: 10px;
    font-weight: 500;
    color: #6b2d5c;
}

.p-detail:hover {
    color: #6b2d5c;
    text-decoration: underline;
}

/* Optional highlight */
.pricing-card.featured {
    background: linear-gradient(135deg, #6b2d5c);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured span,
.pricing-card.featured h6 {
    color: #fff;
}

.next-step-container-new{
position: relative;
					padding: 80px 20px;
					overflow: hidden;
					text-align: center;
					border-radius: 12px;
}

.next-step-container-new-bg-img{
content: '';position: absolute;
inset: 0;
background-image: url('../images/4I7A4177.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
filter: blur(8px) brightness(0.6);
z-index: 0;
transform: scale(1.05); /* avoids edge clipping after blur */

}
/* 
.booking-equal {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
	 background-color: #6b2d5c;
} */

.image-side img {
    object-fit: cover;
    height: 100%;
}

.image-side,
.content-side {
    height: auto;
    min-height: 500px;
}

@media (min-width: 768px) {
    .image-side,
    .content-side {
        height: 100%;
    }

    /* .booking-equal .row {
        height: 100%;
        flex: 1 1 auto;
    } */
}

@media (max-width: 767.98px) {
    .image-side img {
        height: auto;
        object-fit: contain;
    }

    .content-side {
		
        padding: 2rem 1rem;
    }
}


.teammember-section {
  font-family: 'Segoe UI', sans-serif;
}

.teammember-img-wrapper {
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 25px;
    max-width: 100%;
}
.teammember-img-wrapper-left{
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 160px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    max-width: 100%;
}
.behind-Asmi{
    background-image: url('../images/home-2-background-2.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.teammember-img {
    max-height: 450px;
    object-fit: cover;
    width: 100%; /* optional for full width */
}

.teammember-title {
  font-size: 2rem;
  font-weight: 600;
  color: #444;
}

.teammember-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.teammember-btn {
  background-color: #6b2d5c;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.teammember-btn:hover {
  background-color: #532347;
}

.teammember-caption {
  font-size: 0.95rem;
  color: #777;
  max-width: 90%;
  margin: 0 auto;
}
    .booking-equal {
      background: url('../images/unsure.jpg') no-repeat center center/cover;
      height: 70vh;
      position: relative;
      display: flex;
      align-items: center;
      color: white;
    }

    .booking-equal-overlay {
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      padding: 60px 30px;
      display: flex;
      align-items: center;
    }

    .booking-equal h1 {
      font-size: 3.5rem;
      font-weight: bold;
    }

    .typing-word {
      color: #b087a2;
    }

   
    @media (max-width: 768px) {
      .booking-equal h1 {
        font-size: 2.2rem;
      }
    }
    .Energy-Exchange{
        background-image: url('../images/home-1-background-3.webp');
    }
					

.mini-icon img {
      /* position: fixed; */
      transition: transform 0.1s linear;
      display: inline-block;
      width: 150px;
      /* height: 100px; */
    }




