:root{
  --primary-pink : #DD1C7F;
  --secondary-skyeblue : #009BDB;
  --success-color : #6ABB6C;
  --white-color: #fff;
  --yellow-color: #F39C12;
  --whatsapp-green: #00E576;
  --bggrey: #F4F2F2;
  --black-color:#000;
  --red-color:#EE5D73;
  --green-color:#B3CA2C;
  --text-lightgrey:#828282;
  --text-grey:#3c3c3c;
  --purple-color:#550964;
  --lightgreen-color: #4B9D7C;
}

/* global resets + scrollbar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--text-grey) #ddd; /* fixed: requires thumb + track */
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #ddd;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--text-grey);
  border-radius: 50px;
  border: 2px solid var(--text-grey);
}

/* fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

/* Baloo 2 & Poppins loaded via next/font/google in layout.tsx */

html, body{ overflow-x: hidden; max-width: 100%; }
body{ font-family: var(--font-poppins), 'Poppins', sans-serif; }
.fs-14{ font-size: 14px !important; }

/* floating action buttons */
.floating-buttons{
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  transition: bottom 0.4s ease;
}
.sticky-cta-active .floating-buttons{
  bottom: 80px;
}
@media (max-width: 767px){
  .sticky-cta-active .floating-buttons{
    bottom: 75px;
  }
}
.floating-call{
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--secondary-skyeblue);
  box-shadow: 0 4px 14px rgba(0,155,219,0.35);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-call:hover{
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,155,219,0.5);
}
.floating-whatsapp{
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2s infinite;
}
.floating-whatsapp:hover{
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes wa-pulse{
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* header */
.header{
  background: var(--primary-pink);
  position: relative;
  padding: 0 5% 30px; /* consolidated padding */
}
.header::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  height: 184px;
  bottom: -173px;
  background: url(/images/headerborder.svg) top center no-repeat;
  z-index: 9;
}
.header h3,
.header .brand-tagline{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}
.nav-dropdown-view-all{
  border-top: 1px solid #eee;
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 600;
  color: var(--primary-pink);
}
.header .navbar-brand{
  background: var(--white-color);
  position: relative;
  z-index: 9;
  border-radius: 0 0 30px 30px;
  padding: 0 10px 10px;
}
.header .navbar-brand img{ max-width: 95px; }
.header .navbar-nav{ margin-top: 10px; }
.header li.nav-item { margin: 0 0 0 18px; }
.header li.nav-item .nav-link{ padding: 0; }

/* Hide mobile-only nav-link icons + caret on desktop */
@media (min-width: 992px){
  .header .nav-link-icon,
  .header .nav-caret,
  .mobile-drawer-header,
  .mobile-drawer-cta,
  .mobile-drawer-backdrop{ display: none !important; }
}

/* marquee-style image scrollers */
.mainbox{
  display:flex;
  flex-wrap:nowrap;
  overflow:hidden;
  align-items:center;
}
.mainbox ul{
  list-style:none;
  display:flex;
  padding:0;
  flex-wrap:nowrap;
  align-items:center;
  /* start aligned so first list is visible */
  transform:translateX(0);
  animation:Ticker_slide-to-left__oS_Sq 45s linear infinite;
}
/* second row offset so the two rows don't scroll in lock-step */
.mainbox.secondlist ul{
  animation-duration: 55s;
  animation-delay: -22s;
}
.mainbox ul li{
  width:208px;
  height:249px;
  display:inline-block;
  margin-right:15px;
  border-radius:15px;
  overflow:hidden;
}
.mainbox ul li img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* smooth effect */
}


/* gallery hover overlay */
.gallery-thumb, .gallery-thumb-static{
  position: relative; overflow: hidden;
}
.gallery-overlay{
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}
.gallery-overlay-text{
  color: #fff; font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 16px; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center; padding: 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-thumb:hover .gallery-overlay,
.gallery-thumb-static:hover .gallery-overlay{
  background: rgba(0,0,0,0.55);
}
.gallery-thumb:hover .gallery-overlay-text,
.gallery-thumb-static:hover .gallery-overlay-text{
  opacity: 1; transform: translateY(0);
}
/* keep existing zoom on marquee images */
.mainbox ul li img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  border-radius: 15px;
}
/* static gallery images sizing */
.gallery-thumb-static{ display: inline-block; }
.gallery .custom-left-images .gallery-thumb-static img{
  width: 284px; height: 242px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.gallery .custom-right-image .gallery-thumb-static img{
  width: 299px; height: 505px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.gallery .custom-left-images .gallery-thumb-static .gallery-overlay,
.gallery .custom-right-image .gallery-thumb-static .gallery-overlay{
  border-radius: 20px;
}

@keyframes Ticker_slide-to-right__TU154 {
  0% { transform: translate3d(-100%,0,0) }
  100% { transform: translateZ(0) }
}
@keyframes Ticker_slide-to-left__oS_Sq {
  0% { transform: translateZ(0) }
  100% { transform: translate3d(-100%,0,0) }
}

/* top banner */
.topbanner{
  padding: 80px 0 60px;
  background-color: #F4F2F2;
  position: relative;
}
.topbanner::after{
  display: none; /* wave moved to .trustbadges::after */
}
.topbanner h1{
  font-size: 56px;
  line-height: 1.2;
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  position: relative;

  background-image: url(/images/teddy.png);
  background-repeat: no-repeat;
  background-position: right 0 top 70px;
  background-size: 70px 70px;

}

.topbanner .btn-primary{
  display: inline-flex; align-items: center;
  background: var(--secondary-skyeblue); border: none; padding: 10px 20px;
}
.topbanner .btn svg{ margin-right: 5px; }
.topbanner .btn-success{
  display: inline-flex; align-items: center; background: #00E576; border:none;
  padding: 10px 20px; margin-right: 10px;
}
.topbanner .btn-success svg{ margin-right: 10px; }

/* CTA buttons */
.btn-cta{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 16px;
  font-weight: 600; letter-spacing: 0.3px; color: #fff; text-decoration: none;
  transition: opacity .2s ease;
}
.btn-cta:hover{ opacity: 0.9; color: #fff; }
.btn-cta--whatsapp{ background: #00E576; margin-right: 12px; }
.btn-cta--primary{ background: var(--secondary-skyeblue); }
.topbanner p{
  font-size: 18px; line-height: 1.7; margin: 15px 0; color: #3c3c3c;
}

/* about us */
.aboutus{ padding: 160px 0 100px; position: relative; z-index: 2; }
.aboutus h4{ font-weight: 700; color: var(--secondary-skyeblue); font-size: 16px; }
.aboutus h2{ font-family: var(--font-baloo2), 'Baloo 2', cursive; color: var(--black-color); font-size: 38px; }
.aboutus p{ color: #737373; margin: 0; }
.aboutus .featbox{ border-radius: 12px; padding: 25px 20px; text-align: center; min-height: 270px; margin-top: 35px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.aboutus .featbox p{ font-size: 12px; font-weight: 400; margin: 0; }
.aboutus .featbox h6{ margin: 14px 0; }

.aboutus .featbox.border-yellow {
  border: 2px solid rgba(253, 191, 19, 0.35);
  background: rgba(253, 191, 19, 0.10);
}
.aboutus .featbox.border-red {
  border: 2px solid rgba(238, 93, 115, 0.35);
  background: rgba(238, 93, 115, 0.10);
}
.aboutus .featbox.border-green {
  border: 2px solid rgba(98, 190, 115, 0.35);
  background: rgba(98, 190, 115, 0.12);
}
.aboutus .featbox.border-skyblue {
  border: 2px solid rgba(20, 185, 197, 0.35);
  background: rgba(20, 185, 197, 0.10);
}
.aboutus .swiper{ padding-bottom: 50px; }

/* candy gradients */
.candy-lightpink { background: linear-gradient(135deg, #ffe6f0 0%, #ffb6c1 100%); }
.candy-mint      { background: linear-gradient(135deg, #dff7eb 0%, #a0eec0 100%); }
.candy-sky       { background: linear-gradient(135deg, #e6f2ff 0%, #a0c4ff 100%); }
.candy-yellow    { background: linear-gradient(135deg, #fff9e6 0%, #ffe680 100%); }

/* icon box */
.icon-circle{
  width: 80px; height: 80px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  font-size: 40px; transition: transform .25s ease, box-shadow .25s ease;
}
.icon-circle:hover{
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

/* generic featbox card style (non-aboutus) */
.featbox {
  padding: 22px; border-radius: 14px; background: #ffffff;
  min-height: 120px; text-align: center;
}
.featbox h6 { margin-top: 6px; margin-bottom: 6px; }
.featbox p  { margin: 0; color: #555; font-size: 14px; }

/* gallery + custom layout */
.gallery .custom-layout-with-text {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: 30px; margin-bottom: 80px;
}
.gallery .custom-images { display: flex; gap: 21px; }
.gallery .custom-left-images { display: flex; flex-direction: column; gap: 21px; }
.gallery .custom-left-images img {
  width: 284px; height: 242px; object-fit: cover;
  border-radius: 20px; border: 0 solid #fff; box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.gallery .custom-right-image img {
  width: 299px; height: 505px; object-fit: cover;
  border-radius: 20px; border: 0 solid #007aff; box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.gallery .custom-text-section { max-width: 500px; color: white; }
.gallery .custom-text-section h2 {
  font-size: 38px; font-weight: 900; margin-bottom: 20px; margin-top: 30px; line-height: 1.2;
}
.gallery .custom-text-section p {
  font-size: 16px; margin-bottom: 30px; line-height: 1.6; color: #ffffff;
}
.gallery .custom-text-section .btn {
  background-color: white; color: #4B9D7C; font-weight: bold; border: none;
  padding: 15px 30px; border-radius: 40px; font-size: 16px; text-decoration: none; display: inline-block; transition: background-color 0.3s ease;
}
.gallery .custom-text-section .btn:hover { background-color: #ddd; }

.gallery .cloudimg.last{ top: auto; bottom: -96px; }
.gallery .cloudimg{
  position: absolute; top: -120px; left: 0; right: 0; width: 100%; overflow: hidden; line-height: 0;
}
.gallery .cloudimg img{
  width: 100%; height: auto; display: block;
}
.gallery{ padding: 120px 0 120px; background: var(--lightgreen-color); position: relative; }
.gallery ul.leftside {
  padding: 0; margin: 0; list-style: none;
  display: inline-flex; flex-direction: column;
}
.gallery .centerlogo{
  width: 187px; height: 187px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden;
}
.gallery .centerlogo img{ width: 100%; height: 100%; }

.gallery ul.leftside li{
  max-width: 287px; width: 287px; height: 206px;
  border: 4px solid #FFFFFF; box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); border-radius: 5px;
}
.gallery ul.leftside li img{ width: 100%; height:100%; object-fit:cover; }
.gallery ul.leftside li:nth-child(2){ margin-top: -130px; margin-left: 150px; }
.gallery ul.leftside li:nth-child(3){ margin-left: 300px; margin-top: -130px; }
.gallery .btn-default{ background: var(--white-color); padding: 10px 25px; color: var(--lightgreen-color); margin-top: 40px; }

.gallery ul.rightside{
  padding: 0; margin: 0; list-style: none; display: inline-flex; flex-direction: column-reverse;
}
.gallery ul.rightside li{
  max-width: 287px; width: 287px; height: 206px;
  border: 4px solid #FFFFFF; box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); border-radius: 5px;
}
.gallery ul.rightside li img{ width: 100%; height:100%; object-fit:cover; }
.gallery ul.rightside li:nth-child(2){ margin-top: -130px; margin-left: 150px; }
.gallery ul.rightside li:last-child{ margin-left: 300px; }
.gallery ul.rightside li:first-child{ margin-top: -130px; }

/* services */
.services{
  padding: 100px 0 80px;
  background: linear-gradient(0deg, rgba(255,240,229,1) 0%, rgba(255,240,229,0) 100%);
}
.services h2{
  font-size: 36px; color: #2E0336; font-family: var(--font-baloo2), 'Baloo 2', cursive;
  margin-bottom: 40px;
}
.services .servicebox{
  position: relative;
  padding: 20px; background: var(--white-color);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border-radius: 18px; margin-bottom: 24px;
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.services .servicebox:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.services .servicebox .ser_img{
  border-radius: 14px; width: 100%; height: 170px; overflow: hidden;
}
.services .servicebox .ser_img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.services .servicebox:hover .ser_img img{
  transform: scale(1.06);
}
.services .servicebox h3,
.services .servicebox h5,
.services .servicebox .h5{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-weight: 700; font-size: 18px; line-height: 1.3;
  margin: 18px 0 8px; color: var(--text-grey);
}
.services .service-meta{
  display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap;
}
.services .service-meta-item{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: #5a5a5a;
  background: #f8f4ff; padding: 4px 10px; border-radius: 20px;
}
.services .service-meta-item svg{ color: var(--primary-pink); }
.services .service-benefits{
  list-style: none; padding: 0; margin: 0 0 auto;
}
.services .service-benefits li{
  font-size: 13px; color: var(--text-grey); padding: 3px 0;
  padding-left: 22px; position: relative;
}
.services .service-benefits li::before{
  content: '✓'; position: absolute; left: 0; top: 3px;
  color: var(--success-color); font-weight: 700; font-size: 14px;
}
.services .service-desc{
  font-size: 13px; font-weight: 400;
  font-family: 'Poppins', sans-serif; color: #5a5a5a;
  letter-spacing: 0.3px; margin: 0 0 auto; flex: 1;
}
.services .btn-book-session{
  display: block; text-align: center; margin-top: 14px;
  background: #28a745; color: #fff; border: none;
  padding: 10px 20px; border-radius: 25px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.services .btn-book-session:hover{
  background: #218838; color: #fff; transform: translateY(-2px);
}

/* services mobile slider */
.services-swiper{ padding-bottom: 45px; }
.services-swiper .swiper-slide{ height: auto; }
.services-swiper .servicebox{ height: 100%; }

/* equal height on desktop grid */
.services .d-md-flex > [class*="col-"]{ margin-bottom: 30px; }
.services .d-flex .servicebox{ display: flex; flex-direction: column; }

/* our team */
.ourteam{
  padding: 200px 0 90px 0;
  background: linear-gradient(0deg, rgba(229,229,229,1) 0%, rgba(229,229,229,0) 100%);
  position: relative;
}
.ourteam .container{ position: relative; z-index: 9; }
.ourteam:before{
  position: absolute; content: ''; left: 0; z-index: 0; right: 0; top: 0; bottom: 0;
  background: url(/images/ourteambg.svg) top 5% center no-repeat;
}
.ourteam h2{
  font-size: 36px; color: var(--black-color); font-family: var(--font-baloo2), 'Baloo 2', cursive;
  margin-bottom: 40px;
}
.ourteam .d-md-flex > [class*="col-"]{ margin-bottom: 30px; }

/* new team card */
.team-card-new{
  border-radius: 20px; padding: 30px 20px; text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%; cursor: pointer;
}
.team-card-new:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.team-photo{
  width: 130px; height: 130px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.team-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.team-name{
  font-family: var(--font-baloo2), 'Baloo 2', cursive; font-size: 20px; font-weight: 700;
  color: var(--primary-pink); margin: 0 0 4px; letter-spacing: 0.5px;
}
.team-role{
  font-size: 14px; font-weight: 600; color: var(--text-grey);
  margin: 0 0 8px;
}
.team-degrees{
  font-size: 13px; color: var(--text-lightgrey); margin: 0;
  line-height: 1.5;
}

/* team mobile slider */
.team-swiper{ padding-bottom: 45px; }
.team-swiper .swiper-slide{ height: auto; }
.team-swiper .team-card-new{ height: 100%; }

/* customer review */
.customerreview{
  background: var(--primary-pink) url(/images/customerreviewbg.png) top center no-repeat;
  background-size: 100%;
  padding: 60px 0 30px; position: relative;
}
.customerreview:before{
  position: absolute; left: 0; content: ''; right: 0; top: -41px; height: 43px;
  background: url(/images/customerreviewborder.svg) top center no-repeat; background-size: cover;
}
.customerreview:after{
  position: absolute; left: 0; content: ''; right: 0; bottom: -41px; height: 43px;
  background: url(/images/customerreviewborder.svg) top center no-repeat; background-size: cover; transform: rotate(180deg);
}
.customerreview h4,
.customerreview .section-eyebrow{
  font-size: 20px; font-family: var(--font-baloo2), 'Baloo 2', cursive; color: var(--white-color);
  margin: 0; letter-spacing: 0.5px;
}
.customerreview .ratingbox span{ line-height: 24px; }
.customerreview .ratingbox strong{ margin: 0 10px; line-height: 6px; margin-top: 0px; }
.customerreview .ratingbox{
  margin-bottom: 30px; font-size: 14px; color: var(--white-color);
}
.customerreview h2{
  font-size: 36px; color: var(--white-color); font-family: var(--font-baloo2), 'Baloo 2', cursive; margin-bottom: 25px;
}
.customerreview .review_img img{ object-fit: cover; height: 66px; }
.customerreview .review_img {
  border-radius: 50%; overflow: hidden; width: 66px; height: 66px;
  border: 1px solid #710A85; box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.customerreview .testomonialscard{
  background: var(--white-color); border-radius: 40px; padding: 30px; min-height:308px;
}
.customerreview .testomonialscard a{ display: inline-block; font-size: 14px; }
.customerreview .testomonialscard p{
  display: inline-block; color: var(--text-lightgrey); font-size: 14px;
}
.customerreview .testomonialscard h4{ color: var(--primary-pink); margin: 15px 0 10px; }
.customerreview .swiper{ padding-bottom: 60px; }
.customerreview .swiper .swiper-pagination-bullet{ background: var(--white-color); }

/* pop-in on load */
.customerreview .ratingbox{
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.55rem .85rem; border-radius:12px;
  background: rgba(255,255,255,.08);
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  position:relative; overflow:hidden;
  transform:translateZ(0);
  will-change:transform, box-shadow;
  animation:rb-in .45s ease-out both;
}
@keyframes rb-in{
  from{ transform:translateY(6px) scale(.98); opacity:0; }
  to  { transform:none; opacity:1; }
}

/* lift + shine on hover */
.customerreview .ratingbox:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}
.customerreview .ratingbox::after{
  content:""; position:absolute; inset:0 -120% 0 0;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.55) 26%,transparent 52%);
  transform:skewX(-20deg); opacity:0; pointer-events:none;
}
.customerreview .ratingbox:hover::after{
  animation:rb-shine .9s ease forwards;
}
@keyframes rb-shine{
  0%  { transform:translateX(-60%) skewX(-20deg); opacity:0; }
  30% { opacity:1; }
  100%{ transform:translateX(60%)  skewX(-20deg); opacity:0; }
}


/* get in touch */
.getintouch{ padding: 80px 0 40px; }
.getintouch .innerbox{
  padding: 50px 80px 85px; position: relative;
  background:#FFE7C0 url(/images/contactstars.svg) center center no-repeat;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-radius: 0 0 20px 20px;
}
.getintouch .innerbox h2{
  font-size: 42px; color: var(--purple-color); font-family: var(--font-baloo2), 'Baloo 2', cursive; margin-bottom: 40px;
}
.getintouch .innerbox h4{
  font-size: 16px; color: var(--yellow-color); font-family: var(--font-baloo2), 'Baloo 2', cursive;
}
.getintouch .innerbox:before{
  position: absolute; content: ''; left: 0; right: 0; top: -55px; height: 56px;
  background:url(/images/contactustopborder.svg) top center no-repeat;
}
.getintouch .innerbox .form-group{ margin-bottom: 20px; }
.getintouch .innerbox .form-label{
  font-weight: 600; margin-bottom: 6px; color: #374151; font-size: 15px;
}
.getintouch .innerbox .btn-secondary{
  background: var(--yellow-color); border-radius: 12px; border: none;
  padding: 16px 36px; font-size: 16px; font-weight: 600; min-width: 260px; transition: all 0.3s ease;
}
.getintouch .innerbox .btn-secondary:hover{
  background: #ff8a00; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.getintouch .innerbox .form-control{
  background: #ffffff !important; border: 1px solid #e5e7eb !important; border-radius: 10px;
  box-shadow: none; font-weight: 400; color: #333;
  height: 50px; min-height: 50px; padding: 14px 16px; font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.getintouch .innerbox .form-control::placeholder{ color: #9ca3af; font-size: 15px; }
.getintouch .innerbox .form-control:focus{
  border-color: #ff4f9a !important; box-shadow: 0 0 0 3px rgba(255,79,154,0.15) !important; outline: none;
}
.getintouch .innerbox .input-icon-wrap{
  position: relative;
}
.getintouch .innerbox .input-icon-wrap .input-icon{
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #9ca3af; font-size: 16px; pointer-events: none;
}
.getintouch .innerbox .input-icon-wrap .form-control{
  padding-left: 42px;
}
.getintouch .innerbox select.form-control{
  height: 50px; padding-right: 44px;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.getintouch .innerbox textarea.form-control{ min-height: 140px; resize: none; }
.getintouch .trust-line{
  text-align: center; font-size: 14px; color: #6b7280; margin-bottom: 24px;
}

/* footer */
.footer{
  background: #171717; padding-top: 45px;
}
.footer ul.timinglist{ list-style: none; padding: 0; margin: 0; }
.footer .btn-success{
  display: inline-flex; align-items: center; background: #00E576; border:none;
  padding: 10px 20px; margin-top: 20px; display: inline-block;
}
.footer .btn-success svg{ margin-right: 5px; }
.footer ul.timinglist li{
  margin-bottom: 5px; color: #e0e0e0; font-size: 14px;
}
.footer .timinglist{ color: #e0e0e0; font-size: 14px; }
.footer .mapbox{
  position: relative;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-skyeblue));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  overflow: hidden;
}
.footer .mapbox::before{
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}
.footer .mapbox iframe{
  margin: 0; display: block;
  border-radius: 12px;
  width: 100%;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.5s ease;
}
.footer .mapbox:hover iframe{ transform: scale(1.01); }
.footer .mapbox__badge{
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.7);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer .mapbox__badge svg{ color: var(--primary-pink); }
.footer h4{
  color: var(--white-color); font-family: var(--font-baloo2), 'Baloo 2', cursive; font-size: 20px; margin-bottom: 15px;
}
.footer ul.contactlist{ padding: 0; margin: 0; list-style: none; }
.footer ul.contactlist li {
  color: var(--white-color); font-size: 14px; position: relative; padding-left: 30px; margin-bottom: 18px;
}
.footer ul.contactlist li svg{ position: absolute; left: 0; }
.footer ul.contactlist li a{ color: var(--white-color); text-decoration: none; }
.footer ul.sociallist { margin-top: 40px !important; gap: 12px; }
.footer ul.sociallist li { margin-right: 0; }
.footer ul.sociallist li a{
  width: 42px; height: 42px; display: flex; justify-content: center; align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 16px; text-decoration: none;
  transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.footer ul.sociallist li a i{ color: #fff; line-height: 1; }
.footer ul.sociallist li a:hover{
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(221,28,127,0.35);
}
.footer ul.sociallist li a:hover i{ color: #fff; }
.footer .btn-secondary svg{ margin-right: 15px; }
.footer .btn-secondary {
  background: var(--yellow-color); padding: 8px 10px; color: var(--white-color);
  border-radius: 10px; font-size: 18px; margin-top: 18px; display: flex; align-items: center; justify-content: center; border:none;
}
.footer .copyright {
  margin-top: 20px; padding: 15px 0; border-top: 1px solid var(--text-grey);
}
.footer .copyright p{ margin: 0; color: var(--text-lightgrey); }
.footer .copyright p a{ color: var(--red-color); }

/* rating + interactive bits used in customer view / services */
.ratingbox {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 0; flex-wrap: wrap;
}
.rating-number { font-size: 20px; font-weight: 400; color: white; }
.rating-stars .star { font-size: 20px; color: #bbbbbb; }
.rating-stars .star.filled { color: #ffb800; }
.review-count {
  font-size: 16px; color: #80d4ff; margin-left: 0; font-weight: 500;
}

/* scroll reveal */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.animate-on-scroll.show { opacity: 1; transform: translateY(0); }
.swiper-slide .animate-on-scroll { opacity: 1; transform: none; }

/* testimonial grid (customer new view) */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}

/* testimonial card redesign */
.customerreview .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-height: 220px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.customerreview .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.customerreview .testimonial-text {
  margin-bottom: 0;                 /* remove variable gap */
  display: -webkit-box;             /* optional: keep heights more uniform */
  -webkit-line-clamp: 4;            /* show up to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  min-height: calc(1.6em * 4);      /* reserves space for 4 lines */
}
.customerreview .stars {
  margin-bottom: 10px; font-size: 1.2rem;
}
.customerreview .testimonial-user {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;                 /* pushes this block to the bottom */
  padding-top: 12px;
}
.customerreview .testimonial-user img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; box-shadow: 0 3px 8px rgba(0,0,0,.15);
}
.customerreview .testimonial-user-info strong {
  display: block; font-size: 15px; color: var(--primary-pink); font-weight: 600;
}
.customerreview .testimonial-user-info span {
  font-size: 13px; color: #777;
}


/* review mobile slider */
.review-swiper{ padding-bottom: 45px; }
.review-swiper .swiper-slide{ height: auto; }
.review-swiper .testimonial-card{ height: 100%; }

.stars { margin-bottom: 0.5rem; }
.stars span { font-size: 16px; margin-right: 1px; }
.testimonial-text { color: #333; font-size: 12px; line-height: 1.4; font-family: 'Poppins', sans-serif; margin-bottom: 5px; }
.testimonial-text .read-more { display: inline; font-size: 9px; color: #454444; text-decoration: none; margin-left: 6px; }
.testimonial-user { display: flex; align-items: center; gap: 8px; }
.testimonial-user img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #eee;
}
.testimonial-user-info { line-height: 1.2; }
.testimonial-user-info strong { display: block; font-size: 14px; color: #111; }
.testimonial-user-info span { font-size: 13px; color: #777; }

/* testimonial pagination dots (small) */
.testimonial-pagination{
  display:flex; justify-content:center; align-items:center; gap:8px;
  margin:16px 0 6px;
}
.testimonial-pagination .dot{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,.5); /* on pink bg */
  border: 1px solid rgba(255,255,255,.75);
  cursor:pointer; display:inline-block;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  opacity:.8;
}
.testimonial-pagination .dot:hover{ transform: scale(1.2); opacity:1; }
.testimonial-pagination .dot[aria-current="true"]{
  background:#fff; transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,.18);
}

/* dark-on-light fallback if you reuse dots elsewhere */
.customerreview .testimonial-pagination .dot{
  /* uses white since section bg is pink */
}


/* responsive tweaks */
@media (max-width : 1600px) {
  .gallery .cloudimg{ top: -97px; }
  .gallery .cloudimg.last { top: auto; bottom: -76px; }
}

@media (max-width: 768px) {
  .gallery .custom-layout { flex-direction: column; align-items: center; text-align: center; }
  .gallery .custom-left-images img,
  .gallery .custom-left-images .gallery-thumb-static img { width: 162px; height: 141px; }
  .gallery .custom-right-image img,
  .gallery .custom-right-image .gallery-thumb-static img { width: 169.5px; height: 303px; }
  .gallery .custom-layout-with-text { flex-direction: column; align-items: center; padding: 0 20px; }
  .gallery .custom-images { margin-top: 20px; align-items: center; display: flex; gap: 10px; }
  .gallery .custom-text-section h2 { font-size: 25px; text-align: center; }
  .gallery .custom-text-section p, .gallery .custom-text-section { text-align: center; }
}

@media (max-width : 1367px) {
  .gallery .centerlogo{ margin: 0 auto -80px; }
}

@media (max-width : 990px) {
  .footer ul.sociallist{ margin-bottom: 30px !important; }
  .footer .btn-success{ margin-bottom: 30px; }

  .gallaryslider{ margin-top:120px; }
  .gallaryslider .gall_img {
    border: 4px solid #FFFFFF; box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px; overflow:hidden;
  }
  .gallaryslider .gall_img img {
    height: 300px; width: 100%; object-fit: cover; object-position: top;
  }
}

@media (max-width : 767px) {
  .customerreview .testomonialscard{ min-height:328px; }

  .team-card-new{ padding: 16px 16px 28px; }
  .team-photo{ width: 110px; height: 110px; }
  .gallaryslider{ margin-top:30px; }
  .gallaryslider .gall_img img {
    height: 250px; width: 100%; object-fit: cover; object-position: top;
  }

  /* ============================================================
     Mobile drawer menu (slide-in from right, fullscreen overlay)
     ============================================================ */
  .header .navbar-collapse{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 360px;
    background: linear-gradient(180deg, var(--primary-pink) 0%, #b8156a 100%);
    z-index: 1050;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .header .navbar-collapse.show,
  .header .navbar-collapse.collapsing{
    transform: translateX(0);
    visibility: visible;
  }
  body.mobile-menu-open{
    overflow: hidden;
  }

  /* Backdrop */
  .mobile-drawer-backdrop{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    border: none;
    padding: 0;
    cursor: pointer;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: drawer-fade-in 0.3s ease;
  }
  @keyframes drawer-fade-in{
    from{ opacity: 0; }
    to{ opacity: 1; }
  }
  .navbar-collapse.show ~ .mobile-drawer-backdrop,
  .navbar-collapse.collapsing ~ .mobile-drawer-backdrop{
    display: block;
  }

  /* Drawer header (logo + close X) */
  .mobile-drawer-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .mobile-drawer-brand{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
  }
  .mobile-drawer-brand img{
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    object-fit: contain;
  }
  .mobile-drawer-brand strong{
    display: block;
    font-family: var(--font-baloo2), 'Baloo 2', cursive;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 2px;
  }
  .mobile-drawer-brand span{
    display: block;
    font-size: 11px;
    opacity: 0.85;
    line-height: 1.2;
  }
  .mobile-drawer-close{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mobile-drawer-close:hover,
  .mobile-drawer-close:focus{
    background: rgba(255,255,255,0.25);
  }

  /* Nav list inside drawer */
  .header .navbar-nav{
    margin: 0;
    padding: 8px 0;
    background: transparent;
    list-style: none;
    flex: 1;
    border-radius: 0;
    position: static;
  }
  .header .navbar-nav .nav-item{
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header .navbar-nav .nav-item:last-child{
    border-bottom: none;
  }
  .header .navbar-nav .nav-link{
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 16px 22px !important;
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s, padding-left 0.2s;
  }
  .header .navbar-nav .nav-link:hover,
  .header .navbar-nav .nav-link:focus{
    background: rgba(255,255,255,0.1);
    padding-left: 28px !important;
  }
  .header .navbar-nav .nav-link-icon{
    flex-shrink: 0;
    opacity: 0.85;
  }
  .header .navbar-nav .nav-link span{
    flex: 1;
  }
  .header .navbar-nav .nav-caret{
    opacity: 0.7;
    transition: transform 0.2s;
  }

  /* Mobile dropdown — always expanded (accordion-style) inline */
  .header .nav-dropdown-menu{
    display: block !important;
    position: static !important;
    background: rgba(0,0,0,0.18) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 4px 0 8px !important;
    min-width: 0 !important;
  }
  .header .nav-dropdown-menu a{
    color: rgba(255,255,255,0.85) !important;
    padding: 10px 22px 10px 56px !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .header .nav-dropdown-menu a:last-child{
    border-bottom: none;
  }
  .header .nav-dropdown-menu a:hover{
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
  }
  .header .nav-dropdown-menu .nav-dropdown-view-all{
    border-top: 1px solid rgba(255,255,255,0.15) !important;
    margin-top: 4px;
    padding-top: 12px !important;
    color: #ffd6e8 !important;
    font-weight: 600;
  }

  /* CTA buttons at bottom of drawer */
  .mobile-drawer-cta{
    display: flex;
    gap: 10px;
    padding: 16px 20px 22px;
    background: rgba(0,0,0,0.12);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-drawer-cta__btn{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .mobile-drawer-cta__btn--call{
    background: #fff;
    color: var(--primary-pink);
  }
  .mobile-drawer-cta__btn--whatsapp{
    background: #25D366;
    color: #fff;
  }
  .mobile-drawer-cta__btn:hover,
  .mobile-drawer-cta__btn:focus{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  .header h3{ font-size: 14px; }
  .header .header-title{
    font-size: 16px; font-family: var(--font-baloo2), 'Baloo 2', cursive;
    letter-spacing: 0.5px; line-height: 1.4;
    padding: 5px 0; margin-left: 12px;
  }
  .header .navbar-toggler{
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.5); padding: 6px 10px; border-radius: 8px;
  }
  .header .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-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px; height: 24px;
  }

  .gallery .cloudimg { top: -30px; }
  .gallery .cloudimg img{ width: 100%; height: auto; display: block; }
  .gallery .cloudimg.last { top: auto; bottom: -20px; }

  .topbanner .btn-primary,.topbanner .btn-success{ font-size: 14px; }
  .btn-cta{ font-size: 14px; padding: 10px 18px; }
  .btn-cta--whatsapp{ margin-right: 8px; margin-bottom: 8px; }
  .header .navbar-brand img{ max-width: 75px; }
  .header .navbar-brand{ border-radius: 0 0 15px 15px; }

  .getintouch .innerbox{ padding:30px 30px; }
  .aboutus h2{ font-size: 38px; }
  .services h2,.getintouch .innerbox h2{ font-size: 30px; }
  .getintouch .innerbox .btn-secondary{ padding: 14px 20px; width: 100%; border-radius: 12px; }

  .team-name{ font-size: 18px; }
  .team-role{ font-size: 13px; }

  .services .servicebox { margin: 0; border-radius: 16px; padding: 12px 16px 20px; }
  .services .servicebox .ser_img{ height: 150px; border-radius: 12px; }
  .services .servicebox h3,
  .services .servicebox h5,
  .services .servicebox .h5{ font-size: 16px; margin: 18px 0 10px; }
  .ourteam:before{ background: url(/images/ourteambg.svg) top 1% center no-repeat; }
  .ourteam{ padding: 140px 0 70px 0; }

  .services{ padding: 50px 0; }

  .gallery ul.leftside{ text-align:center; }
  .gallery ul.leftside li{ max-width: 100%; }
  .gallery ul.leftside li:nth-child(2){ margin-left: 0; margin-top: 20px; }
  .gallery ul.leftside li:nth-child(3){ margin-left: 0; margin-top: 20px; }

  .gallery .centerlogo{ margin: 0 auto 30px; }

  .gallery ul.rightside{
    width: 100%; flex-direction: column; text-align:center; align-items:center;
  }
  .gallery ul.rightside li{ max-width: 100%; }
  .gallery ul.rightside li:first-child{ margin-left: 0; margin-top: 20px; }
  .gallery ul.rightside li:last-child{ margin-left: 0; margin-top: 20px; }
  .gallery ul.rightside li:nth-child(2){ margin-top: 20px; margin-left: 0; }

  .gallery{ padding: 50px 0; text-align: center; }
  .aboutus{ padding: 70px 0 50px; }
  .aboutus h3{ font-size: 26px; word-break: break-word; }
  .trustbadges::after{ height: 40px; bottom: -38px; background-size: 100% 100%; }
  .aboutus .fs-14{ font-size: 13px; }
  .aboutus .featbox{ min-height: 270px; padding: 40px 18px 24px; margin-top: 20px; }
  .aboutus .featbox p{ font-size: 11px; }
  .aboutus .featbox h6{ font-size: 14px; margin: 10px 0; }
  .aboutus .swiper{ padding-bottom: 40px; }
  .icon-circle{ width: 80px; height: 80px; border-radius: 16px; font-size: 40px; margin-bottom: 12px; }
  .topbanner{ padding: 20px 0 40px; }
  .topbanner h1{ font-size: 36px; margin-top: 30px; background-position: right bottom; }
  .topbanner .toprightimg{ margin-top: 0; }
  .header{ padding: 0 3% 15px; }
  .topbanner::after{ display: none; }

}

/* Extra small phones */
@media (max-width: 480px) {
  .aboutus{ padding: 35px 0; }
  .aboutus h4{ font-size: 14px; }
  .aboutus h2{ font-size: 34px; }
  .aboutus .fs-14{ font-size: 12px; }
  .aboutus .featbox{ min-height: 245px; padding: 35px 14px 20px; margin-top: 15px; }
  .aboutus .featbox h6{ font-size: 13px; }
  .icon-circle{ width: 70px; height: 70px; border-radius: 14px; font-size: 34px; }
}

/* Auto-hover on mobile/touch for the active/visible slide */
@media (hover: none), (pointer: coarse) {
  #featslider .swiper-slide-active .icon-circle,
  #featslider .swiper-slide-visible .icon-circle {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
  }
}

/* Optional: a gentle pulse on the gradient backgrounds when active */
@media (hover: none), (pointer: coarse) {
  #featslider .swiper-slide-active .icon-circle.candy-lightpink,
  #featslider .swiper-slide-active .icon-circle.candy-mint,
  #featslider .swiper-slide-active .icon-circle.candy-sky,
  #featslider .swiper-slide-active .icon-circle.candy-yellow {
    animation: candyPulse 2.2s ease-in-out infinite;
  }
}

@keyframes candyPulse {
  0%   { transform: translateY(-6px) scale(1.08); filter: brightness(1); }
  50%  { transform: translateY(-8px) scale(1.12); filter: brightness(1.06); }
  100% { transform: translateY(-6px) scale(1.08); filter: brightness(1); }
}


/* base swing (desktop) */
.gallery .custom-right-image .gallery-thumb-static {
  overflow: visible;               /* let the rotated card show fully */
  transform-origin: 50% 0%;        /* top center pivot, like a hanging swing */
  animation: jcdcSwing 7.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes jcdcSwing {
  0%   { transform: rotate(-4deg); }
  50%  { transform: rotate(4deg); }
  100% { transform: rotate(-4deg); }
}

/* smaller swing on small screens (use a different keyframe name) */
@keyframes jcdcSwingSm {
  0%   { transform: rotate(-3deg); }
  50%  { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}

@media (max-width: 768px) {
  .gallery .custom-right-image .gallery-thumb-static {
    animation-name: jcdcSwingSm;   /* switch to the mobile keyframes */
    animation-duration: 8.5s;      /* slightly slower */
  }
}

/* accessibility + nice-to-have */
@media (prefers-reduced-motion: reduce) {
  .gallery .custom-right-image .gallery-thumb-static { animation: none; }
}
@media (hover:hover) and (pointer:fine) {
  .gallery .custom-right-image .gallery-thumb-static:hover { animation-play-state: paused; }
}

/* trust badges */
.trustbadges{
  padding: 0 0 40px;
  background-color: #F4F2F2;
  position: relative;
  z-index: 1;
}
.trustbadges::after{
  position: absolute;
  bottom: -106px;
  width: 100%;
  left: 0;
  right: 0;
  content: '';
  height: 112px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='91' viewBox='0 0 1440 91' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4H1440V20C1440 20 1226.82 108.186 888.5 88C638.485 73.0831 354.5 21.5 235 20C115.5 18.5 0 75 0 75V4Z' fill='%23DD1C7F'/%3E%3Cpath d='M0 0H1440V11C1440 11 1226.82 99.1857 888.5 79C638.485 64.0831 354.5 12.5 235 11C115.5 9.5 0 66 0 66V0Z' fill='%23F4F2F2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: 9;
}
.trust-card{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.trust-icon{
  font-size: 42px;
  margin-bottom: 10px;
  line-height: 1;
}
.trust-number{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 0 0 4px;
}
.trust-label{
  font-size: 14px;
  color: var(--text-grey);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px){
  .trustbadges{ padding: 0 0 30px; }
  .trust-card{ padding: 20px 12px; margin-bottom: 12px; }
  .trust-icon{ font-size: 34px; }
  .trust-number{ font-size: 18px; }
  .trust-label{ font-size: 12px; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES (SEO multi-page structure)
   ═══════════════════════════════════════════════ */

/* inner page base */
.inner-page{
  padding-top: 0;
  min-height: 60vh;
}

/* page hero banner */
.page-hero{
  background: var(--primary-pink);
  padding: 100px 0 60px;
  position: relative;
  color: #fff;
}
.page-hero::after{
  position: absolute; content: ''; left: 0; right: 0;
  height: 60px; bottom: -59px;
  background: url(/images/headerborder.svg) top center no-repeat;
  background-size: cover;
  z-index: 2;
}
.page-hero h1{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 42px; font-weight: 700;
  margin-bottom: 16px; line-height: 1.2;
}
.page-hero p{
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
}

/* breadcrumb */
.breadcrumb-nav{
  background: var(--primary-pink);
  padding: 0 0 8px;
}
.breadcrumb-list{
  list-style: none; display: flex; flex-wrap: wrap;
  padding: 0; margin: 0; gap: 6px;
  font-size: 14px;
}
.breadcrumb-list li{ display: flex; align-items: center; }
.breadcrumb-list li + li::before{
  content: '›'; margin-right: 6px; color: rgba(255,255,255,0.6);
}
.breadcrumb-list a{
  color: rgba(255,255,255,0.8); text-decoration: none;
}
.breadcrumb-list a:hover{ color: #fff; text-decoration: underline; }
.breadcrumb-list span[aria-current]{ color: #fff; font-weight: 500; }

/* content sections */
.content-section{
  padding: 80px 0;
}
.content-section:nth-child(even){
  background: #f9f7f7;
}
.content-section h2{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 32px; color: var(--purple-color);
  margin-bottom: 24px;
}
.content-section h3{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 24px; color: var(--text-grey);
  margin-bottom: 16px;
}
.content-section p{
  font-size: 15px; line-height: 1.8; color: #555;
}

/* check list */
.check-list{
  list-style: none; padding: 0; margin: 0;
}
.check-list li{
  position: relative; padding: 8px 0 8px 30px;
  font-size: 15px; color: var(--text-grey); line-height: 1.6;
}
.check-list li::before{
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--success-color); font-weight: 700; font-size: 16px;
}

/* warning list (for signs/symptoms) */
.warning-list{
  list-style: none; padding: 0; margin: 0;
}
.warning-list li{
  position: relative; padding: 8px 0 8px 30px;
  font-size: 15px; color: var(--text-grey); line-height: 1.6;
}
.warning-list li::before{
  content: '⚠'; position: absolute; left: 0; top: 8px;
  font-size: 14px;
}

/* info cards grid */
.info-card{
  background: #fff; border-radius: 16px;
  padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.info-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.info-card h3{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px; color: var(--primary-pink);
  margin-bottom: 10px;
}
.info-card p{
  font-size: 14px; color: #666; line-height: 1.6;
  margin: 0;
}
.info-card a{
  display: inline-block; margin-top: 12px;
  color: var(--secondary-skyeblue); font-weight: 600;
  text-decoration: none; font-size: 14px;
}
.info-card a:hover{ text-decoration: underline; }

/* session details box */
.session-detail-box{
  background: linear-gradient(135deg, #fff5f9 0%, #f0f7ff 100%);
  border-radius: 16px; padding: 30px;
  display: flex; gap: 40px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
.session-detail-item{
  text-align: center;
}
.session-detail-item .icon{
  font-size: 36px; margin-bottom: 8px;
}
.session-detail-item .label{
  font-size: 13px; color: var(--text-lightgrey);
  text-transform: uppercase; letter-spacing: 1px;
}
.session-detail-item .value{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px; font-weight: 700;
  color: var(--primary-pink);
}

/* related links */
.related-links{
  display: flex; flex-wrap: wrap; gap: 12px;
}
.related-link{
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 30px;
  background: #fff; border: 2px solid #eee;
  color: var(--text-grey); font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.related-link:hover{
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  background: #fff5f9;
}

/* FAQ accordion */
.faq-section .faq-item{
  background: #fff; border-radius: 12px;
  padding: 20px 24px; margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-section .faq-question{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 18px; color: var(--text-grey);
  margin: 0 0 10px; font-weight: 600;
}
.faq-section .faq-answer{
  font-size: 14px; line-height: 1.7; color: #666;
  margin: 0;
}

/* CTA section */
.cta-section{
  background: linear-gradient(135deg, var(--primary-pink) 0%, #a8156a 100%);
  padding: 80px 0;
  color: #fff;
}
.cta-section h2{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 36px; margin-bottom: 16px;
  color: #fff;
}
.cta-section p{
  font-size: 17px; color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-buttons{
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.cta-section .btn-cta--primary{
  background: #fff; color: var(--primary-pink);
}
.cta-section .btn-cta--primary:hover{
  opacity: 0.95; color: var(--primary-pink);
}

/* testimonial grid (inner page) */
.testimonial-grid-page{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card-page{
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card-page:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.testimonial-card-page .stars{
  margin-bottom: 10px; font-size: 18px;
}
.testimonial-card-page .testimonial-text{
  font-size: 14px; line-height: 1.6; color: #555;
  margin-bottom: 16px;
}
.testimonial-card-page .testimonial-author{
  display: flex; align-items: center; gap: 12px;
}
.testimonial-card-page .testimonial-author img{
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid #eee;
}
.testimonial-card-page .author-name{
  font-weight: 600; font-size: 15px; color: var(--primary-pink);
}
.testimonial-card-page .author-date{
  font-size: 13px; color: #999;
}

/* gallery grid (inner page) */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-grid-item{
  border-radius: 16px; overflow: hidden;
  position: relative; height: 240px;
}
.gallery-grid-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid-item:hover img{
  transform: scale(1.06);
}

/* contact page */
.contact-info-card{
  background: #fff; border-radius: 16px; padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height: 100%;
}
.contact-info-card h3{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 22px; color: var(--primary-pink);
  margin-bottom: 20px;
}
.contact-info-item{
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 15px; color: var(--text-grey);
}
.contact-info-item .icon{
  font-size: 20px; flex-shrink: 0; margin-top: 2px;
}

/* blog coming soon */
.coming-soon{
  padding: 100px 0; text-align: center;
}
.coming-soon h2{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 42px; color: var(--primary-pink);
  margin-bottom: 16px;
}
.coming-soon p{
  font-size: 17px; color: #666; max-width: 600px;
  margin: 0 auto 30px;
}

/* FAQ category */
.faq-category{
  margin-bottom: 40px;
}
.faq-category-title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 24px; color: var(--primary-pink);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid #f0e0ea;
}

/* about page specific */
.about-values{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.about-value-card{
  background: #fff; border-radius: 16px; padding: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.about-value-card:hover{ transform: translateY(-6px); }
.about-value-card .icon{ font-size: 42px; margin-bottom: 14px; }
.about-value-card h3{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px; color: var(--primary-pink);
  margin-bottom: 10px;
}
.about-value-card p{
  font-size: 14px; color: #666; margin: 0;
}

/* team grid — old grid removed, now uses Bootstrap row/col */
.team-member-card{
  border-radius: 20px; padding: 30px 20px;
  text-align: center; border: 2px solid transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.team-member-card .team-photo{
  width: 130px; height: 130px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.team-member-card .team-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.team-member-card .team-name{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px; font-weight: 700;
  color: var(--primary-pink); margin: 0 0 4px;
}
.team-member-card .team-role{
  font-size: 14px; font-weight: 600;
  color: var(--text-grey); margin: 0 0 8px;
}
.team-member-card .team-degrees{
  font-size: 13px; color: var(--text-lightgrey);
  margin: 0; line-height: 1.5;
}

/* privacy policy */
.privacy-content h2{
  font-size: 24px; margin-top: 40px;
}
.privacy-content p,
.privacy-content li{
  font-size: 15px; line-height: 1.8; color: #555;
}

/* navbar dropdown for inner pages */
.nav-dropdown{
  position: relative;
}
.nav-dropdown-menu{
  display: none; position: absolute;
  top: 100%; left: 0; min-width: 240px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 12px 0; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu{
  display: block;
}
.nav-dropdown-menu a{
  display: block; padding: 8px 20px;
  color: var(--text-grey); font-size: 14px;
  text-decoration: none; transition: background 0.2s;
}
.nav-dropdown-menu a:hover{
  background: #fff5f9; color: var(--primary-pink);
}

/* footer quick links */
.footer-quick-links{
  list-style: none; padding: 0; margin: 0;
}
.footer-quick-links li{
  margin-bottom: 8px;
}
.footer-quick-links a{
  color: #e0e0e0; text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-quick-links a:hover{
  color: var(--primary-pink);
}

/* inner page responsive */
@media (max-width: 767px){
  .page-hero{ padding: 70px 0 40px; }
  .page-hero h1{ font-size: 28px; }
  .page-hero p{ font-size: 15px; }
  .content-section{ padding: 50px 0; }
  .content-section h2{ font-size: 26px; }
  .session-detail-box{ gap: 20px; padding: 20px; }
  .cta-section{ padding: 50px 0; }
  .cta-section h2{ font-size: 28px; }
  .testimonial-grid-page{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .gallery-grid-item{ height: 180px; }
  .about-values{ grid-template-columns: 1fr; }
  /* team-grid now uses Bootstrap row/col */
}

/* ═══════════════════════════════════════════════
   PAGE HERO BANNER (unified across all inner pages)
   ═══════════════════════════════════════════════ */
.page-hero-banner{
  position: relative;
  background: linear-gradient(135deg, #DD1C7F 0%, #a8156a 40%, #550964 100%);
  padding: 40px 0 50px;
  color: #fff;
  overflow: hidden;
}

/* decorative shapes */
.page-hero-banner__shapes{
  position: absolute; inset: 0;
  pointer-events: none;
}
.page-hero-banner__circle{
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
}
.page-hero-banner__circle--1{
  width: 300px; height: 300px;
  top: -100px; right: -60px;
  background: rgba(255,255,255,0.04);
}
.page-hero-banner__circle--2{
  width: 180px; height: 180px;
  bottom: -60px; left: 10%;
  background: rgba(255,255,255,0.03);
}
.page-hero-banner__circle--3{
  width: 100px; height: 100px;
  top: 30%; right: 20%;
  border-color: rgba(255,255,255,0.06);
}

.page-hero-banner__dot{
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.page-hero-banner__dot--1{ top: 25%; left: 8%; }
.page-hero-banner__dot--2{ bottom: 30%; right: 12%; }

.page-hero-banner__star{
  position: absolute;
  font-size: 18px;
  color: rgba(255,255,255,0.12);
  animation: heroBannerTwinkle 3s ease-in-out infinite;
}
.page-hero-banner__star--1{ top: 20%; left: 15%; }
.page-hero-banner__star--2{ bottom: 25%; right: 25%; animation-delay: 1.5s; }

@keyframes heroBannerTwinkle{
  0%, 100%{ opacity: 0.12; transform: scale(1); }
  50%{ opacity: 0.3; transform: scale(1.3); }
}

/* breadcrumb inside hero */
.page-hero-banner__breadcrumb{
  margin-bottom: 24px;
}
.page-hero-banner__breadcrumb ol{
  list-style: none; display: flex; flex-wrap: wrap;
  padding: 0; margin: 0; gap: 6px;
  font-size: 14px;
}
.page-hero-banner__breadcrumb li{
  display: flex; align-items: center;
}
.page-hero-banner__breadcrumb li + li::before{
  content: '/'; margin-right: 6px; color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500;
}
.page-hero-banner__breadcrumb a{
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.2s;
}
.page-hero-banner__breadcrumb a:hover{
  color: #fff; text-decoration: underline;
}
.page-hero-banner__breadcrumb span[aria-current]{
  color: #fff; font-weight: 500;
}

/* content */
.page-hero-banner__content{
  position: relative; z-index: 1;
  max-width: 800px;
}
.page-hero-banner__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 46px; font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.page-hero-banner__description{
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 650px;
}

/* extra content slot (e.g. service meta badges) */
.page-hero-banner__extra{
  margin-top: 20px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.page-hero-banner__badge{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: 30px;
  font-size: 14px; font-weight: 500;
  color: #fff;
}

/* mobile */
@media (max-width: 767px){
  .page-hero-banner{ padding: 30px 0 36px; }
  .page-hero-banner__title{ font-size: 30px; }
  .page-hero-banner__description{ font-size: 15px; }
  .page-hero-banner__breadcrumb{ margin-bottom: 16px; }
  .page-hero-banner__circle--1{ width: 180px; height: 180px; top: -60px; right: -40px; }
  .page-hero-banner__circle--2{ width: 120px; height: 120px; }
  .page-hero-banner__star--1{ display: none; }
}

/* ===== SERVICES PAGE – Card Grid ===== */

/* Section layout */
.svc-section{
  padding: 80px 0;
}
.svc-section--alt{
  background: #fdf2f8;
}
.svc-section__header{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.svc-section__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.svc-section__subtitle{
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Service Card */
.svc-card{
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0e4ec;
  box-shadow: 0 4px 20px rgba(221, 28, 127, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DD1C7F, #a8156a, #550964);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(221, 28, 127, 0.14);
}
.svc-card:hover::before{
  opacity: 1;
}

/* Icon */
.svc-card__icon-wrap{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fce4ef, #f8d0e3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #DD1C7F;
  transition: background 0.3s ease, color 0.3s ease;
}
.svc-card:hover .svc-card__icon-wrap{
  background: linear-gradient(135deg, #DD1C7F, #a8156a);
  color: #fff;
}

/* Title */
.svc-card__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

/* Description */
.svc-card__desc{
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* Meta tags (age, duration) */
.svc-card__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.svc-card__tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdf2f8;
  color: #b5176b;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Learn More Button */
.svc-card__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DD1C7F;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid #DD1C7F;
  border-radius: 30px;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.svc-card__btn:hover{
  background: #DD1C7F;
  color: #fff;
}
.svc-card__btn i{
  font-size: 12px;
  transition: transform 0.3s ease;
}
.svc-card__btn:hover i{
  transform: translateX(4px);
}

/* ===== Why Choose JCDC Section ===== */
.svc-why{
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
}
.svc-why .svc-section__title{
  color: #fff;
}
.svc-why__card{
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.svc-why__card:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.svc-why__icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DD1C7F, #a8156a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: #fff;
}
.svc-why__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.svc-why__text{
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* Services page mobile */
@media (max-width: 767px){
  .svc-section{ padding: 40px 0; }
  .svc-section__title{ font-size: 28px; }
  .svc-card{ padding: 24px 20px; border-radius: 16px; }
  .svc-card__icon-wrap{ width: 52px; height: 52px; font-size: 22px; border-radius: 12px; }
  .svc-card__title{ font-size: 19px; }
  .svc-why{ padding: 40px 0; }
  .svc-why__card{ padding: 24px 18px; }
}

/* ===== CONDITIONS PAGE – Card Grid ===== */

.cond-section{
  padding: 80px 0;
  background: #fafbfd;
}

/* Condition Card */
.cond-card{
  background: #fff;
  border-radius: 20px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cond-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(221, 28, 127, 0.12);
}

/* Card header with icon + title */
.cond-card__head{
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #f8d5e8;
}
.cond-card__icon-wrap{
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #DD1C7F, #a8156a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cond-card__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
}

/* Signs section */
.cond-card__signs{
  padding: 20px 24px;
  flex: 1;
}
.cond-card__signs-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #DD1C7F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.cond-card__signs-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.cond-card__signs-list li{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}
.cond-card__signs-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DD1C7F;
  opacity: 0.5;
}

/* Learn More button */
.cond-card__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DD1C7F;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 24px;
  border-top: 1px solid #f0e4ec;
  transition: all 0.3s ease;
  margin-top: auto;
}
.cond-card__btn:hover{
  background: #fdf2f8;
  color: #a8156a;
  padding-left: 30px;
}
.cond-card__btn i{
  font-size: 12px;
  transition: transform 0.3s ease;
}
.cond-card__btn:hover i{
  transform: translateX(4px);
}

/* Conditions page mobile */
@media (max-width: 767px){
  .cond-section{ padding: 40px 0; }
  .cond-card__head{ padding: 22px 18px 16px; gap: 12px; }
  .cond-card__icon-wrap{ width: 46px; height: 46px; min-width: 46px; font-size: 18px; border-radius: 12px; }
  .cond-card__title{ font-size: 18px; }
  .cond-card__signs{ padding: 16px 18px; }
}

/* ===== OUR TEAM PAGE ===== */

.team-grid{
  padding: 80px 0;
  background: #fafcff;
}

/* Team Card */
.team-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(221,28,127,0.12);
}

/* Image wrapper with hover overlay */
.team-card__img-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}
.team-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__img{
  transform: scale(1.05);
}

/* Hover overlay */
.team-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(221,28,127,0.85) 0%, rgba(85,9,100,0.92) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-card__overlay{
  opacity: 1;
}
.team-card__overlay-content{
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card__overlay-label{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.team-card__overlay-label:first-child{
  margin-top: 0;
}
.team-card__overlay-value{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* Social icons on hover */
.team-card__socials{
  display: flex;
  gap: 10px;
}
.team-card__social-link{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.team-card__social-link:hover{
  background: #fff;
  color: #DD1C7F;
  transform: scale(1.1);
}

/* Info section */
.team-card__info{
  padding: 18px 16px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card__name{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.team-card__role{
  font-size: 14px;
  color: #DD1C7F;
  font-weight: 600;
  margin: 0 0 12px;
}

/* Badges */
.team-card__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}
.team-card__badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fdf2f8;
  color: #b5176b;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  white-space: nowrap;
}
.team-card__badge i{
  font-size: 10px;
}

/* Team page mobile */
@media (max-width: 767px){
  .team-grid{ padding: 40px 0; }
  .team-card__overlay-value{ font-size: 14px; }
  .team-card__overlay-label{ font-size: 10px; }
  .team-card__name{ font-size: 15px; }
  .team-card__role{ font-size: 12px; }
  .team-card__badge{ font-size: 10px; padding: 3px 8px; }
  .team-card__info{ padding: 14px 10px 16px; }
}

/* ===== ABOUT PAGE – Timeline ===== */

.about-timeline{
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%);
}

.timeline{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
/* Vertical line */
.timeline::before{
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #DD1C7F, #a8156a, #550964);
  border-radius: 3px;
}

.timeline__item{
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
.timeline__item:last-child{
  margin-bottom: 0;
}

/* Marker (icon + year) */
.timeline__marker{
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  position: relative;
  z-index: 1;
  margin-left: -40px;
}
.timeline__icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DD1C7F, #a8156a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(221,28,127,0.3);
  border: 3px solid #fff;
}
.timeline__year{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 800;
  color: #DD1C7F;
  margin-top: 6px;
}

/* Content card */
.timeline__content{
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0e4ec;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline__content:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(221,28,127,0.1);
}
.timeline__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.timeline__desc{
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Timeline mobile */
@media (max-width: 767px){
  .about-timeline{ padding: 40px 0; }
  .timeline{ padding-left: 30px; }
  .timeline::before{ left: 14px; }
  .timeline__marker{ margin-left: -30px; min-width: 50px; }
  .timeline__icon{ width: 34px; height: 34px; font-size: 13px; }
  .timeline__year{ font-size: 14px; }
  .timeline__content{ padding: 18px 20px; }
  .timeline__title{ font-size: 17px; }
  .timeline__item{ gap: 16px; margin-bottom: 32px; }
}

/* ===== STICKY CTA BAR ===== */

.sticky-cta{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta--visible{
  transform: translateY(0);
}
.sticky-cta__inner{
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.sticky-cta__text{
  color: #fff;
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-cta__text i{
  color: #fbbf24;
  font-size: 20px;
}
.sticky-cta__buttons{
  display: flex;
  gap: 10px;
}
.sticky-cta__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-cta__btn:hover{
  transform: scale(1.05);
}
.sticky-cta__btn--primary{
  background: #DD1C7F;
  color: #fff;
}
.sticky-cta__btn--primary:hover{
  box-shadow: 0 4px 16px rgba(221,28,127,0.4);
  color: #fff;
}
.sticky-cta__btn--whatsapp{
  background: #25D366;
  color: #fff;
}
.sticky-cta__btn--whatsapp:hover{
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  color: #fff;
}

@media (max-width: 767px){
  .sticky-cta__inner{ padding: 12px 16px; gap: 10px; }
  .sticky-cta__text{ font-size: 14px; display: none; }
  .sticky-cta__buttons{ width: 100%; }
  .sticky-cta__btn{ flex: 1; justify-content: center; padding: 12px 16px; font-size: 13px; }
}

/* ===== SERVICE DETAIL PAGE SECTIONS ===== */

.service-about-section,
.service-benefits-section,
.service-audience-section,
.service-details-section,
.service-related-section{
  padding: 80px 0;
}
.service-benefits-section{
  background: #fdf2f8;
}
.service-audience-section{
  background: #fff;
}
.service-details-section{
  background: #fafbfd;
}
.service-related-section{
  background: #fff;
}
.service-related-section--services{
  background: #fafbfd;
}

/* Section headings */
.service-about-section__heading,
.service-benefits-section__heading,
.service-audience-section__heading,
.service-details-section__heading,
.service-related-section__heading,
.service-faq-section__heading{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* Text blocks */
.service-about-section__text,
.service-benefits-section__intro,
.service-benefits-section__note,
.service-audience-section__intro,
.service-audience-section__note,
.service-details-section__text,
.service-related-section__intro{
  font-size: 15.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Benefits list */
.service-benefits-section__list{
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.service-benefits-section__item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(221,28,127,0.1);
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.service-benefits-section__icon{
  color: #DD1C7F;
  min-width: 20px;
  margin-top: 3px;
}

/* Audience list */
.service-audience-section__list{
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-audience-section__item{
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.service-audience-section__item::before{
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #DD1C7F;
  font-size: 14px;
}

/* Session detail cards */
.service-details-card{
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  height: 100%;
}
.service-details-card__label{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 14px;
  font-weight: 600;
  color: #DD1C7F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.service-details-card__value{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.service-details-card__description{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Related tags */
.service-related-section__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.service-related-section__tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #fdf2f8;
  color: #b5176b;
  border: 1px solid #f0e4ec;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-related-section__tag:hover{
  background: #DD1C7F;
  color: #fff;
  border-color: #DD1C7F;
}

/* Related service cards */
.service-related-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}
.service-related-card:hover{
  border-color: #DD1C7F;
  box-shadow: 0 4px 16px rgba(221,28,127,0.1);
}
.service-related-card__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
}
.service-related-card__arrow{
  color: #DD1C7F;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.service-related-card:hover .service-related-card__arrow{
  transform: translateX(4px);
}

/* ===== FAQ ACCORDION (Service Pages) ===== */

.service-faq-section{
  padding: 80px 0;
  background: #fdf2f8;
}
.service-faq-section__heading{
  text-align: center;
  margin-bottom: 40px;
}
.service-faq-section__list{
  max-width: 700px;
  margin: 0 auto;
}
.service-faq-section__item{
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid #f0e4ec;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.service-faq-section__item[open]{
  box-shadow: 0 4px 20px rgba(221,28,127,0.1);
}
.service-faq-section__question{
  padding: 20px 24px;
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s ease;
}
.service-faq-section__question::-webkit-details-marker{
  display: none;
}
.service-faq-section__question::after{
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: #DD1C7F;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}
.service-faq-section__item[open] .service-faq-section__question::after{
  transform: rotate(180deg);
}
.service-faq-section__item[open] .service-faq-section__question{
  color: #DD1C7F;
}
.service-faq-section__answer{
  padding: 0 24px 20px;
}
.service-faq-section__answer p{
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Service detail mobile */
@media (max-width: 767px){
  .service-about-section,
  .service-benefits-section,
  .service-audience-section,
  .service-details-section,
  .service-related-section,
  .service-faq-section{ padding: 50px 0; }
  .service-about-section__heading,
  .service-benefits-section__heading,
  .service-audience-section__heading,
  .service-details-section__heading,
  .service-related-section__heading,
  .service-faq-section__heading{ font-size: 26px; }
  .service-audience-section__list{ grid-template-columns: 1fr; }
  .service-details-card__value{ font-size: 22px; }
  .service-faq-section__question{ font-size: 15px; padding: 16px 18px; }
  .service-faq-section__answer{ padding: 0 18px 16px; }
}

/* ============================================================
   Utility classes (extracted from inline styles for SEO/perf)
   ============================================================ */

/* Footer extras */
.footer-section-spaced{ margin-top: 20px; }
.footer-privacy-link{ color: #d4d4d4; }
.footer-map-iframe{ border: 0; }

/* Home contact form */
.input-icon-large{ font-size: 18px; }
.input-icon-textarea{ top: 24px; transform: none; }
.form-cta-block{ margin-top: 12px; }
.form-secure-line{ font-size: 13px; color: #6b7280; margin-top: 14px; }
.form-direct-call{ font-size: 14px; color: #555; margin-top: 8px; }
.form-direct-call a{ color: var(--primary-pink); font-weight: 600; }

/* Testimonials */
.testimonial-link-clean{ text-decoration: none; }
.testimonial-avatar-img{ border-radius: 50%; object-fit: cover; }
.testimonial-avatar-fallback{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #ddd;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}
.star-filled{ color: #00b67a; }
.star-empty{ color: #ccc; }

/* 404 page */
.error-404__code{
  font-size: 6rem; font-weight: 800;
  color: var(--primary-pink);
  line-height: 1;
}
.error-404__lead{ max-width: 640px; margin: 0 auto; }
.error-404__list{ line-height: 2; }

/* ============================================================
   JCDC Toast / Notification (replaces native alert())
   ============================================================ */
.jcdc-toast-container{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}
.jcdc-toast{
  background: #fff;
  color: #2c2c2c;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  pointer-events: auto;
  border-left: 4px solid var(--primary-pink);
  animation: jcdc-toast-in 0.35s cubic-bezier(0.21, 1.02, 0.73, 1);
  font-size: 14px;
  line-height: 1.45;
  font-family: var(--font-poppins), 'Poppins', sans-serif;
}
.jcdc-toast--error{   border-left-color: var(--primary-pink); }
.jcdc-toast--success{ border-left-color: var(--success-color); }
.jcdc-toast--info{    border-left-color: var(--secondary-skyeblue); }
.jcdc-toast--warning{ border-left-color: var(--yellow-color); }
.jcdc-toast.is-leaving{ animation: jcdc-toast-out 0.3s ease forwards; }
.jcdc-toast__icon{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.jcdc-toast__msg{
  flex: 1;
  word-wrap: break-word;
}
.jcdc-toast__title{
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 2px;
  color: #1a1a1a;
}
.jcdc-toast__close{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #999;
  padding: 0;
  line-height: 1;
  margin-left: 4px;
  align-self: flex-start;
  transition: color 0.2s;
}
.jcdc-toast__close:hover{ color: #333; }
@keyframes jcdc-toast-in{
  from{ transform: translateX(120%); opacity: 0; }
  to{   transform: translateX(0);    opacity: 1; }
}
@keyframes jcdc-toast-out{
  to{ transform: translateX(120%); opacity: 0; }
}
@media (max-width: 480px){
  .jcdc-toast-container{
    right: 10px; left: 10px; top: 10px;
    max-width: none;
  }
  .jcdc-toast{
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   Why Choose JCDC content block (SEO + visually rich)
   ============================================================ */
.why-choose-jcdc{
  position: relative;
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #fff 0%, #fff5fa 50%, #fff 100%);
  overflow: hidden;
}
.why-choose-jcdc__shapes{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.why-choose-jcdc__shape{
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
}
.why-choose-jcdc__shape--1{
  width: 240px; height: 240px;
  top: -60px; left: -80px;
  background: radial-gradient(circle, rgba(221,28,127,0.18), transparent 70%);
}
.why-choose-jcdc__shape--2{
  width: 320px; height: 320px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,155,219,0.15), transparent 70%);
}
.why-choose-jcdc__shape--3{
  width: 160px; height: 160px;
  top: 40%; right: 8%;
  background: radial-gradient(circle, rgba(243,156,18,0.18), transparent 70%);
}
.why-choose-jcdc .container{ position: relative; z-index: 1; }
.why-choose-jcdc__heading{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  color: var(--primary-pink);
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 6px 0 20px;
  line-height: 1.2;
}
.why-choose-jcdc__lead{
  max-width: 820px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-grey);
}
.why-choose-jcdc__lead strong{ color: var(--primary-pink); font-weight: 600; }

/* Stats row */
.why-choose-jcdc__stats{
  margin: 0 0 60px;
  --gap: 18px;
  row-gap: var(--gap);
}
.why-stat{
  background: #fff;
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.why-stat::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-pink);
}
.why-stat--pink   { border-color: rgba(221,28,127,0.15); }
.why-stat--pink::before  { background: var(--primary-pink); }
.why-stat--blue   { border-color: rgba(0,155,219,0.15); }
.why-stat--blue::before  { background: var(--secondary-skyeblue); }
.why-stat--green  { border-color: rgba(106,187,108,0.15); }
.why-stat--green::before { background: var(--success-color); }
.why-stat--yellow { border-color: rgba(243,156,18,0.15); }
.why-stat--yellow::before{ background: var(--yellow-color); }
.why-stat:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}
.why-stat__num{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat--pink   .why-stat__num{ color: var(--primary-pink); }
.why-stat--blue   .why-stat__num{ color: var(--secondary-skyeblue); }
.why-stat--green  .why-stat__num{ color: var(--success-color); }
.why-stat--yellow .why-stat__num{ color: var(--yellow-color); }
.why-stat__label{
  font-size: 14px;
  color: var(--text-grey);
  font-weight: 500;
}

/* Card pair */
.why-choose-jcdc__cards{
  --gap: 24px;
  row-gap: var(--gap);
  margin-bottom: 24px;
}
.why-card{
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.1);
}
.why-card__icon-wrap{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card__icon-wrap svg{
  width: 32px;
  height: 32px;
}
.why-card--pink .why-card__icon-wrap{
  background: linear-gradient(135deg, #ffe1ee 0%, #ffd4e7 100%);
  color: var(--primary-pink);
}
.why-card--blue .why-card__icon-wrap{
  background: linear-gradient(135deg, #d8f0fb 0%, #c4e8f7 100%);
  color: var(--secondary-skyeblue);
}
.why-card__title{
  font-family: var(--font-baloo2), 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #1a1a1a;
}
.why-card--pink .why-card__title{ color: var(--primary-pink); }
.why-card--blue .why-card__title{ color: var(--secondary-skyeblue); }

.why-jcdc-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-jcdc-list li{
  position: relative;
  padding: 9px 0 9px 32px;
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.why-jcdc-list li:last-child{ border-bottom: none; }
.why-jcdc-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--success-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 6px rgba(106,187,108,0.3);
}
.why-card--pink .why-jcdc-list li::before{
  background-color: var(--primary-pink);
  box-shadow: 0 2px 6px rgba(221,28,127,0.3);
}
.why-card--blue .why-jcdc-list li::before{
  background-color: var(--secondary-skyeblue);
  box-shadow: 0 2px 6px rgba(0,155,219,0.3);
}

/* Footer copy + CTA */
.why-choose-jcdc__footer{
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-grey);
  margin: 0 auto 16px;
  max-width: 880px;
}
.why-choose-jcdc__footer em{
  font-style: italic;
  color: var(--secondary-skyeblue);
}
.why-choose-jcdc__cta{
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(221,28,127,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-choose-jcdc__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(221,28,127,0.35);
}

@media (max-width: 767px){
  .why-choose-jcdc{ padding: 45px 0 20px; }
  .why-choose-jcdc__lead{ margin-bottom: 32px; font-size: 15px; }
  .why-choose-jcdc__stats{ margin-bottom: 36px; }
  .why-card{ padding: 28px 22px; }
  .why-card__icon-wrap{ width: 56px; height: 56px; }
  .why-card__icon-wrap svg{ width: 28px; height: 28px; }
  .why-card__title{ font-size: 20px; }
}
