body {
  /* font-family: "Inter"; */
  font-family: "Karla", sans-serif;
  font-size: 15px;
  line-height: 25px;
  overflow-x: hidden;
}

@font-face {
  font-family: 'Wasted Vindey';
  src: url('../fonts/WASTED-VINDEY.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Bookman Old Style';
  src: url('../fonts/BOOKOS.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
#modalText{
  padding: 0 10px;
}
.modal-body::-webkit-scrollbar {
    width: 8px;
}
/* Scrollbar background */
.modal-body::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 10px;
}

/* Scroll handle */
.modal-body::-webkit-scrollbar-thumb {
    background: #FBB833;
    border-radius: 10px;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.header-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  /* padding: 20px 0; */
}

.header-area {
  position: relative;
}

.navbar {
  background: transparent !important;
  width: 100%;
  padding-top: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Close icon ONLY when collapse is shown */
    .navbar-collapse.show ~ .navbar-toggler .navbar-toggler-icon,
    .navbar-collapse.collapsing ~ .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-width='2' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
    }

.nav-link.active {
  color: #FBB833 !important;
}

.navbar-nav .nav-link {
  position: relative;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.navbar-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
     margin-left: 0 !important;
}

ul.navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Karla", sans-serif;
}
.navbar-nav .dropdown-menu {
    width: 300px;
    background: #ffffff;
    border-radius: 5px;
    border: transparent;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
#homepage .navbar-nav{
        width: 100%;
}
.navbar .dropdown-item:hover{
    background-color: #fbb833;
}
.navbar-nav .dropdown-item:hover{
    background-color: #fbb833;
}
.navbar-nav .dropdown-toggle::after{
  display: none;
}
i.fa.fa-chevron-down {
    font-size: 15px;
    vertical-align: middle;
    margin-left: 3px;
}
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .logo {
  width: 300px;
} */

.logo img {
  width: 100%;
}
.enquiry-btn.desktop {
  width: 180px;
  margin-top: 10px;
}
.enquiry-btn img {
  width: 100%;
  cursor: pointer;
}

.enquiry-btn {
  width: 150px;
  display: flex;
}
.enquiry-btn.desktop {
    background: linear-gradient(to bottom, #ffcb71 0%, #ffdea5 50%, #ffeac6 100%);
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.enquiry-btn.desktop a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
}


/* Full Background Image */
.inner-banner {
  position: relative;
  height: 110vh;
  background: url("../images/home-banner.jpg") no-repeat center center;
  background-size: cover;
}

.row.banner-text h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 60px;
  /* line-height: 235px; */
  /* font-weight: 600; */
  display: flex;
  flex-direction: column;
   pointer-events: none;
}

.row.banner-text h5 {
  font-family: "Karla", sans-serif;
  color: #fff;
  font-size: 20px;
      font-weight: 300;
       pointer-events: none;
}

/* Fade animation */
.fade-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeDown 1s ease forwards;
}

/* Third line delay */
.fade-down.delay {
    animation-delay: 7.5s;
     animation-fill-mode: forwards; /* IMPORTANT */
    margin-top: 30px;
}

/* Typing text */
#typeText{
    min-height: 90px;
    margin-top: 20px;
    line-height: 1.4;
    color: #fff;

    display: inline-block;
}

/* Cursor */
.cursor{
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

/* Cursor blink */
@keyframes blink{
    50%{
        opacity: 0;
    }
}

/* Fade down animation */
@keyframes fadeDown {

    from{
        opacity: 0;
        transform: translateY(-30px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.main-heading {
  color: #FBB833;
  font-family: 'Karla';
  font-size: 22px;
  margin-bottom: 15px !important;
    font-weight: 300;
            letter-spacing: 3px;
}
.course-heading-date{
  color: #363636;
   font-family: 'Karla';
   font-size: 18px;
   font-weight: 500;
}
.course-heading-date span{
  color: #FBB833;
}
.sub-heading {
  font-family: 'Wasted Vindey', serif;
  color: #363636;
  font-size: 40px;
}

.intro-section {
  background-image: url('../images/leaf-right.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: 8%;
  height: 400px;
}

/* ===============================
   TRUE APPEND STACK STYLE
=============================== */
.focus-stack{
  max-width: 820px;
  margin: auto;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top: 30px;
}

.focus-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    margin: 0;
    text-align: center;
    font-family: 'Bookman Old Style', serif;
    font-size: 22px;
    line-height: 1.5;
    color: #363636;
    font-weight: 100;
    transition: opacity .8s ease, transform .8s ease;
}

.focus-item.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* .focus-item.active {
    font-weight: 600;
} */

@keyframes rise{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.solution div {
  background-image: linear-gradient(to bottom, #FEFAF5, #FFF2DC);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Initial state */
.calm-text {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When visible */
.calm-text.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Optional soft glow */
.calm-text.show {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.solution h1 {
  color: #FBB833;
  font-family: 'Playfair Display';
  font-style: italic;
  text-align: center;
     font-size: 25px;
    line-height: 45px;
  /* margin: 30px 0 !important; */
}

.solution p {
 height: 40px;
  width: 1px;
  background-color: #fbb833;
  margin-bottom: 0;
}



/* Card Styling */
.custom-card {
  background-color: #FEFAF5;
  border: 1px solid #DFCEB1;
      border-radius: 20px;
    padding: 80px 20px 30px;
    overflow: visible;
}

/* Oval Image Wrapper */
.oval-img-wrapper {
  position: absolute;
  top: -80px;
  /* overlap */
  left: 50%;
  transform: translateX(-50%);
}

/* Oval Shape */
.oval-img {
  width: 180px;
  object-fit: cover;
}

/* Button Styling */
.btn-danger {
  background-color: #ff1a1a;
  border: none;
}

.btn-danger:hover {
  background-color: #e60000;
}

.card-title {
  color: #FBB833;
  font-family: 'Karla';
  font-weight: 600;
}

.card-body img {
  width: 150px;
  margin-top: 20px;
}

.service-section {
  background-image: url('../images/leaf-right.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 8%;
}

.courses-workshops {
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}

.testimonial {
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}

/* .courses-workshops .row {
  padding-top: 150px;
} */

.courses-workshops .main-heading {
  font-size: 24px;
}

.courses-workshops .sub-heading {
  font-size: 35px;
}
.courses-workshops .myCourseSlider .sub-heading {
    font-size: 28px;
}
.guidance {
  background-image: url('../images/leaf-right.png');
  background-position: top right 3%;
  background-repeat: no-repeat;
  background-size: 8%;
}

.guidance .sub-heading {
  font-family: 'Wasted Vindey', serif;
}

.guidance .dropdown-menu {
  width: 270px;
  background: #ffffff;
  border-radius: 0px;
  border: 1px solid #DFCEB1;
  color: #000;
}

.guidance .dropdown-item {
  color: #000;
  transition: 0.3s;
}

.guidance .dropdown-item:hover {
  background: #fbb833;
  color: #fff;
}

.guidance .dropdown-toggle::after {
  display: none;
}

button.btn.btn-secondary.dropdown-toggle {
  background-color: #fff;
  color: #000;
  border: 1px solid #DFCEB1;
  border-radius: 30px;
  width: 100%;
  height: 50px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
      padding-left: 25px;
    padding-right: 25px;
}

.guidance input {
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  border: 1px solid #DFCEB1;
  height: 50px;
  width: 100%;
      padding-left: 25px;
    font-size: 17px;
}
.guidance i.fa-solid.fa-chevron-down {
    font-size: 12px;
}

/* Make image touch screen edge */
.img-wrapper {
  margin-left: calc(-35vw + 50%);
}

.img-wrapper img {
  border-radius: 20px;
}

.about-us {
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}

.contact-us {
  background-image: url('../images/leaf-right.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 8%;
}

.about-us h5 {
  font-family: "Playfair Display", serif;
}

.about-us .sub-heading {
  font-family: 'Wasted Vindey', serif;
}

.why-us {
  background: linear-gradient(to right,
      /* Direction: left → right */
      #ffe3b3,
      /* First color */
      #ffd284,
      /* Second color */
      #ffc767
      /* Third color */
    );
}

.why-us h5 {
  position: relative;
  /* display: inline-block; */
  overflow: hidden;
}
.why-us p{
     font-size: 15px;
    line-height: 25px;
}
/* Shine layer */
.why-us h5::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: skewX(-20deg);
}

/* Trigger on hover */
.why-us .col-md-3:hover h5::after {
  animation: shine 1.5s ease;
}

/* Animation */
@keyframes shine {
  100% {
    left: 125%;
  }
}

/**************title animation **********************/

.slow-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}

.slow-down.show {
  opacity: 1;
  transform: translateY(0);
}

.blur-in {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
  transition: all 0.8s ease;
}

.blur-in.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.why-us .col-md-3 img {
  transition: transform 0.6s ease;
}

/* Hover on entire column */
.why-us .col-md-3:hover img {
  transform: rotateY(180deg);
}

.why-us .col-md-3:nth-child(4) img {
  transition: none;
}

.why-us .col-md-3:nth-child(4):hover img {
  transform: none;
}

.custom-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift */
.custom-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


.btn-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Shine layer */
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent);
  transform: skewX(-20deg);
}

/* Hover animation */
.btn-shine:hover::after {
  animation: btnShine 1s ease;
}

/* Keyframes */
@keyframes btnShine {
  100% {
    left: 120%;
  }
}

.courses-enroll-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LEFT animation */
.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

/* RIGHT animation */
.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

/* When visible */
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

.pulse {
  display: inline-block;
}

.pulse img {
  animation: pulseLoop 2s infinite;
}

@keyframes pulseLoop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}
#testimonialModal h5{
font-size: 1.25rem;
}
.testimonial-card {
  background: #FEFAF5;
  padding: 25px;
  border-radius: 20px;
  min-height: 340px;
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}
.testimonialSlider{
  padding-bottom: 50px;
}
.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}

/* Indicators style */
.carousel-indicators [data-bs-target] {
  background-color: #d9c3a5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #c59d5f;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}


/****************** About me **************************/

#about_page .about-us {
  background-image: url('../images/leaf-right.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 8%;
}

#about_page .service-section {
  background-image: none;
}

#about_page .service-section .leaf-bg {
  background-image: url('../images/leaf-left-inner-services.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 17%;
}


.header-area.inner-pages .navbar a {
  color: #000;
}

.pendulum {
  width: 70px;
  display: inline-block;
  transform-origin: top center;
  /* pivot point */

  /* animation starts immediately on load */
  animation: swing 4s ease-in-out infinite;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.desktop.service-section .box-wrap a{
  text-decoration: none;
  color:#363636;
}
.mobile.service-section .service-card a{
  text-decoration: none;
  color:#363636;
}
.mobile.service-section .img-box img {
    width: 250px;
}
#about_page .service-section .main-heading {
  color: #363636;
}

.img-box {
  width: 220px;
}

.img-box img {
  width: 100%;
}

.img-box h5 {
  color: #363636 !important;
  font-size: 20px;
}

.quick-connect h2 {
  font-family: 'Wasted Vindey', serif;
}

.quick-connect h5 {
  font-size: 14px;
}

.courses .row {
  background-color: #FEFAF5;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
   border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.courses h3 {
  font-family: "Playfair Display", serif;
  color: #363636;
  font-size: 25px;
}

.courses h5 {
  font-family: "Karla", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #363636;
}

.courses p {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: #363636;
}

.course-content img {
  width: 170px;
}
.learn-btn{
    color: #363636 !important;
    text-decoration: none;
    border-bottom: 2px solid #FBB833;

}


.myCourseSlider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.myCourseSlider .swiper-wrapper {
  display: flex;
}

.myCourseSlider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  /* padding: 20px; */
}

.myCourseSlider .row {
  margin-top: 23px;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Pagination bullets */
.myCourseSlider .swiper-pagination {
  position: relative;
  margin-top: 15px;
  text-align: center;
}

.myCourseSlider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 6px !important;
  transition: 0.3s;
}

.myCourseSlider .swiper-pagination-bullet-active {
  background: #FBB833;
  width: 28px;
  border-radius: 20px;
}
.swiper-pagination-bullet{
  background:#363636!important;
}
.swiper-pagination-bullet-active {
  background: #FBB833!important;
  width: 28px;
  border-radius: 20px;
}


/************************************/

.more-text {
  display: none;
}

.read-more-btn {
 color: #363636 !important;
    text-decoration: none;
    border-bottom: 2px solid #FBB833;
}

.read-more-text.active .more-text {
  display: inline;
}

.read-more-text.active .read-more-btn {
  font-size: 0;
}

/* Read */
.read-more-text.active .read-more-btn::before {
  content: "Read ";
  font-size: 16px;
}

/* Less */
.read-more-text.active .read-more-btn::after {
  content: "Less";
  font-size: 16px;
}

.box-wrap {
  cursor: pointer;
  padding: 25px;
}

/* Oval image box only */
.box-wrap .img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50% / 38%;
  /* oval shape */
}

/* Image default black & white */
.box-wrap .img-box img {
  width: 100%;
  display: block;
  /* filter: grayscale(100%); */
  transition: filter 0.8s ease;
}

/* Blind reveal inside oval only */
/* .box-wrap .img-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #bebebe30;
  border-radius: inherit;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.8s ease;
} */

/* Hover */
.box-wrap:hover .img-box img {
  filter: grayscale(0%);
}

.box-wrap:hover .img-box::after {
  transform: translateY(-100%);
}

/* title dissolve */
.box-wrap h5 {
  transition: 0.4s ease;
  font-size: 20px;
  letter-spacing: 0px;
  font-weight: 700;
}


.box-wrap:hover h5 {
  transform: translateY(-8px);
  color: #00674f;
  text-shadow: 0 6px 18px rgba(251, 184, 51, .35);
}

/* arrow poke */
.box-wrap:hover .arrow-icon {
  animation: pokeArrow .8s infinite ease-in-out;
}

@keyframes pokeArrow {
  0% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(12px);
  }

  60% {
    transform: translateX(12px);
  }

  100% {
    transform: translateX(0);
  }
}

#contact-us p {
  font-size: 18px;
}
.contact-details a{
  color: #212529;
  text-decoration: none;
}

.faqs {
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}


/* wrapper */
.contact-img-wrapper {
  position: relative;
  width: 280px;
  /* overflow: hidden; */
  border-radius: 50% / 38%;
  /* oval shape */
}

/* image */
.contact-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

/* ONLY moving particles */
/* .contact-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background:
    radial-gradient(circle, rgba(255, 180, 70, .95) 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 220, 120, .75) 1.5px, transparent 3px),
    radial-gradient(circle, rgba(255, 140, 0, .8) 2px, transparent 4px);

  background-size: 120px 120px, 180px 180px, 220px 220px;
  background-position: 0 100%, 40px 80%, 80px 100%;

  mix-blend-mode: screen;
  animation: floatParticles 7s linear infinite;
} */

/* remove old after layer */
.contact-img-wrapper::after {
  display: none;
}

@keyframes floatParticles {
  0% {
    background-position: 0 100%, 40px 90%, 80px 100%;
    opacity: .5;
  }

  50% {
    opacity: 1;
  }

  100% {
    background-position: 0 -20%, 40px -10%, 80px -25%;
    opacity: .3;
  }
}



.whyMobileSlider {
  padding: 20px 0 40px;
}

.whyMobileSlider .col-box {
  background: linear-gradient(to right,
      /* Direction: left → right */
      #ffe3b3,
      /* First color */
      #ffd284,
      /* Second color */
      #ffc767
      /* Third color */
    );
  border-radius: 25px;
  padding: 20px 15px 30px;
  min-height: 200px;
}

.serviceMobileSlider {
  padding-bottom: 40px;
}
.serviceMobileSlider .swiper-slide {
  overflow: hidden;
}

.serviceMobileSlider .swiper-slide {
  padding: 0 10px;
}

.serviceMobileSlider .col-box {
  padding-top: 15px;
}

/* Fix image cutting in mobile slider */
/* .serviceMobileSlider .custom-card {
  overflow: visible !important;
} */

.serviceMobileSlider .swiper-slide {
  padding-top: 70px;
}

.serviceMobileSlider .oval-img-wrapper {
  overflow: visible !important;
}

.serviceMobileSlider .oval-img {
  max-width: 100%;
  height: auto;
}



.services-title {
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}
.services-title h6{
 font-family: "Karla", sans-serif;
  font-size: 16px;
}
.inner-service-intro-pic{
  position: relative;
  width: 280px;
  /* overflow: hidden; */
  border-radius: 50% / 38%;
  /* oval shape */
}
.inner-service-intro-pic img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.inner-service-main h2{
 font-family: 'Wasted Vindey', serif;
 color: #FBB833;
     margin-bottom: 15px;
}
.causes{
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}
.causes-info p{
  font-size: 17px;
}
.causes-points h4{
  font-size: 19px;
      margin-bottom: 12px;
}
.number p{
      color: #FBB833;
    font-family: 'Wasted Vindey';
    font-size: 30px;
    background-color: #363636;
        border-radius: 50%;
        padding: 12px;
    width: 50px;
        text-align: center;
}
.inner-service-main h4{
  font-size: 18px;
  color: #363636;
  font-weight: 600;
}
.know-cause{
   background-image: url('../images/leaf-right.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 8%;
}
.therapy-points p{
font-size: 15px;
}
.therapy-points .row{
  background-image: url('../images/is-this-right-for-you.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-past-regression .row{
background-image: url('../images/is-this-right-for-you-past-regression.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-lives-regression .row{
background-image: url('../images/is-this-right-for-you-lives-regression.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-neuro-linguistic .row{
  background-image: url('../images/is-this-right-for-you-neuro-linguistic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-inner-child-work .row{
  background-image: url('../images/is-this-right-for-you-inner-child-work.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-systemic-coaching .row{
   background-image: url('../images/is-this-right-for-you-systemic-coaching.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.therapy-points-systemic-coaching p{
font-size: 15px;
}
.therapy-points-neuro-linguistic p{
font-size: 15px;
}
.therapy-points-lives-regression p{
font-size: 15px;
}
.therapy-points-past-regression p{
font-size: 15px;
}
.therapy-points-inner-child-work p{
font-size: 15px;
}
.the-benefits{
  background-image: url('../images/leaf-left.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 8%;
}
.the-benefits-data{
   background-image: url('../images/the-benefits-family-pic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;

}

.the-benefits-data h5{
  font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-data .img-container{
  width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.guiding-your-path h5, .guiding-your-path p{
color: #fff;
}
.guiding-your-path-mobile h5, .guiding-your-path-mobile p{
color: #fff;
    text-align: center;
}
.connect-me {
    width: 350px;
        background-color: #FFFFFF;
        border-radius: 15px;
}
.connect-me h4 {
  font-family: "Playfair Display", serif;
    background-color: #FBB833;
        border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 10px;
    text-align: center;
}
.connect-me h6{
  color: #363636;
  font-size: 18px;
  font-weight: 600;
}
.connect-me p{
  color: #363636;
}
.social-media {
    display: flex;
    gap: 15px;
}
.guiding-your-path .leaf-bg{
    background-image: url(../images/leaf-left-inner-services.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 17%;
    padding: 60px;
}
.guiding-your-path-mobile .leaf-bg{
    background-image: url(../images/leaf-left-inner-services.png);
    background-position: top left;
    background-repeat: no-repeat;
       background-size: 25%;
    padding: 20px;
}

.the-benefits-data-regression{
  background-image: url('../images/the-benefits-girl-pic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;
}
.the-benefits-data-regression h5{
  font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-data-regression .img-container{
 width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.the-benefits-data-lives-regression{
  background-image: url('../images/the-benefits-men-pic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;
}
.the-benefits-data-lives-regression h5{
  font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-data-lives-regression .img-container{
 width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.the-benefits-data-neuro{
  background-image: url('../images/the-benefits-men-pic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;
}
.the-benefits-inner-child-work{
  background-image: url('../images/mother-childpic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;
}
.the-benefits-systemic-soul{
  background-image: url('../images/live-happily-women-pic.png');    
  background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 650px;
}
.the-benefits-inner-child-work h5{
   font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-data-neuro h5{
  font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-systemic-soul  h5{
  font-family: "Playfair Display", serif;
      font-size: 22px;
          margin-bottom: 12px;
}
.the-benefits-data-neuro .img-container{
  width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.the-benefits-systemic-soul .img-container{
width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.the-benefits-inner-child-work .img-container{
 width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.icon-box {
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    /* align-items: center; */
}
.therapy-points .img-container {
    width: 75px;
}
.cause-card{
  padding-bottom: 30px;
}
.causes-mobile-slider .swiper-pagination{
      top: 130px !important;
}
.causesSlider{
      padding-bottom: 40px;
}
.the-benefits-dataSlider h5{
  font-family: "Playfair Display", serif;
      margin-top: 10px;
    font-size: 20px;
}

.therapy-points-past-regression .img-container {
    width: 75px;
}
.therapy-points-lives-regression .img-container {
    width: 75px;
}
.therapy-points-neuro-linguistic .img-container {
    width: 75px;
}
.therapy-points-inner-child-work .img-container {
    width: 75px;
}
.therapy-points-systemic-coaching .img-container {
    width: 75px;
}
.workshops-tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    border-bottom: 2px solid #FBB833;
    background: transparent!important;
}
.workshops-tabs .nav-pills .nav-link{
color: #fff;
}


/* Dissolve effect */
.dissolve-text{
    opacity: 0;
    filter: blur(12px);
    letter-spacing: 8px;

    transition:
        opacity 1.8s ease,
        filter 1.8s ease,
        letter-spacing 1.8s ease;
}

/* When visible */
.dissolve-text.show{
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
}

/* LEFT animation */
.inner-service-intro .fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 4s ease;
}

/* When visible */
.inner-service-intro .fade-left.show {
  opacity: 1;
  transform: translateX(0);
}



        /* Sticky WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 25px;
    z-index: 9999;
    animation: floatPulse 2s infinite;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Pulse Animation */
@keyframes floatPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.disclaimer-btn a{
  color: #000;
    background-color: #fff;
    padding: 5px 8px;
    border-radius: 15px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 70px;
        right: 10px;
    }
}

.modal-content{
  border-radius: 40px;
}