/********** Template CSS **********/
:root {

    --primary: #E06BAF;
    --bs-primary: #E06BAF;
    --secondary: #545454;
    --light: #ffd6e8;
    --dark: #ffe6f0;
    --font-display: "Playfair Display", serif;
    --font-body: "Source Serif 4", serif;
}
body{
  font-family: var(--font-body);
}
h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4,.display-5,.display-6,
.h1,.h2,.h3,.h4,.h5,.h6{
  font-family: var(--font-display);
}
/* === Layout Fixes: Remove Top Space & Center Line === */
.hero,
.intro,
.banner,
.section,
.container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.footer::after,
.section::after,
.container::after {
  display: none !important;
  content: none !important;
}

.section,
.hero,
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Sticky navbar style */
.nav-sticky {
  background: #fff0f6 !important;
  box-shadow: 0 4px 20px rgba(255, 77, 166, 0.15);
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 55px;
  width: auto;
  border-radius: 50%;
  margin-right: 10px;
}

.site-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
}

.site-menu > li > a {
  color: #E06BAF;
  font-weight: 600;
  transition: 0.3s;
}

.site-menu > li > a:hover {
  color: #E06BAF;
}


.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%; }
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .sticky-wrapper .site-navbar .site-menu-toggle {
    color: #E06BAF; }
  .sticky-wrapper .site-navbar .site-logo a {
    color: #E06BAF; }
  .sticky-wrapper .site-navbar .site-menu > li > a {
    color: rgba(0, 0, 0, 0.8) !important; }
    .sticky-wrapper .site-navbar .site-menu > li > a:hover, .sticky-wrapper .site-navbar .site-menu > li > a.active {
      color: #E06BAF !important; }
  .sticky-wrapper.is-sticky .burger:before, .sticky-wrapper.is-sticky .burger span, .sticky-wrapper.is-sticky .burger:after {
    background: #E06BAF;
    -webkit-transition: .0s all ease;
    -o-transition: .0s all ease;
    transition: .0s all ease; }
  .sticky-wrapper.is-sticky .site-navbar {
    background: #E06BAF;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
    .sticky-wrapper.is-sticky .site-navbar .site-logo a {
      color: #E06BAF !important; }
    .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
      color: #E06BAF !important; }
      .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
        color: #1A374D !important; }
    .sticky-wrapper.is-sticky .site-navbar .site-menu > li.active a {
      color: #1A374D !important; }
  .sticky-wrapper .shrink {
    padding-top: 0px !important;
    padding-bottom: 0px !important; }


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 92px;
    z-index: 99;
    background:#E06BAF;
    border-color:#E06BAF;
    color:#fff;
}
.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active,
.back-to-top:focus-visible{
    background:#e63f96;
    border-color:#e63f96;
    color:#fff;
    box-shadow:none;
    outline:none;
}

.whatsapp-float{
  position:fixed;
  right:30px;
  bottom:20px;
  z-index:98;
}
.whatsapp-float a{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  position:relative;
  text-decoration:none;
}
.whatsapp-float a:hover{color:#fff; background:#1fb657}
.whatsapp-float i{font-size:26px; line-height:1}
.whatsapp-float .wa-tooltip{
  position:absolute;
  right:72px;
  top:50%;
  transform:translateY(-50%) translateX(6px);
  background:#1f1f1f;
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-size:13px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.whatsapp-float a:hover .wa-tooltip,
.whatsapp-float a:focus-visible .wa-tooltip{
  opacity:1;
  transform:translateY(-50%) translateX(0);
}
@media (max-width: 576px){
  .back-to-top{right:18px; bottom:84px}
  .whatsapp-float{right:18px; bottom:18px}
  .whatsapp-float .wa-tooltip{display:none}
}


/* === Navbar Always Visible + Mobile Fix === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff0f6;
  box-shadow: 0 4px 20px rgba(255, 77, 166, 0.15);
  padding: 10px 0;
}



/* Logo alignment */
.site-navigation .logo-image {
  height: 60px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 77, 166, 0.3);
}

/* Desktop Menu */
.site-menu > li {
  display: inline-block;
  margin-left: 25px;
}

.site-menu > li > a {
  color: #E06BAF;
  font-weight: 600;
  transition: 0.3s;
}

.site-menu > li > a:hover {
  color: #E06BAF;
}

/* Hide mobile menu body by default */
.site-mobile-menu {
  display: none;
}

/* === Mobile Fix === */
@media (max-width: 991px) {
  .site-nav {
    background: #fff0f6 !important;
  }

  .site-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .burger {
    display: block !important;
    cursor: pointer;
  }

  .site-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(255, 77, 166, 0.2);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .site-menu.active {
    display: flex;
  }

  .site-menu > li {
    margin: 10px 0;
  }

  .site-menu-toggle span,
  .site-menu-toggle::before,
  .site-menu-toggle::after {
    background: #E06BAF !important;
  }
}

/* Ensure hero image starts below navbar */
.hero, .intro, .banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #fff !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--light);
    z-index: -1;
}


/*** Service ***/
.service-item,
.service-item * {
    transition: .3s;
}

/* === Fix Rounded Images in Service Section === */
.service-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.service-item .position-relative {
  border-radius: inherit;
  overflow: hidden; /* ensures image corners stay clipped */
  flex: 1 1 auto;
}

.service-item img {
  border-radius: inherit !important;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary) !important;
}

.service-item:hover * {
    color: var(--light);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*** Project ***/
.project-item {
    position: relative;
}

.project-item a{
    display:block;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #fff;
    transition: .5s;
    border-radius: 50px;
}

.project-item:hover .project-title {
    color: #fff;
    background: var(--primary);
}


/*** Team ***/
.team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #fff transparent;
}

@media (min-width: 576px) {
    .flex-sm-row .team-img::after,
    .flex-lg-row-reverse .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #fff transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #fff;
    }
}

/* === Mobile Navbar Fix === */
@media (max-width: 991px) {
  .site-navbar {
    background: #fff0f6 !important;
  }

  .site-navbar .site-menu {
    background: #fff0f6;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 77, 166, 0.2);
  }

  .site-menu-toggle {
    color: #E06BAF !important;
  }

  .site-navbar .site-menu > li > a {
    color: #E06BAF !important;
  }

  .site-navbar .site-menu > li > a:hover {
    background-color: #ffd6e8 !important;
    border-radius: 10px;
  }
}


@media (min-width: 992px) {
    .flex-lg-row-reverse .team-img::after,
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #fff;
    }

    .flex-sm-row-reverse.flex-lg-row .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #fff transparent transparent;
    }
}
.site-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff0f6;
  box-shadow: 0 4px 20px rgba(255, 77, 166, 0.15);
  border-bottom: 2px solid #ffd6e8;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #fff !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}


/* === Pink Theme Enhancements === */
body {

  background-color: #fff0f6;
  color: #4a4a4a;
}

.btn {
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 77, 166, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #E06BAF !important;
  transform: scale(1.05);
}

.service-item, .fact-item, .project-item, .team-img::after, .testimonial-item {
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(255, 77, 166, 0.2);
}

.site-navbar, .footer {
  border-radius: 20px;
  background: linear-gradient(145deg, #ffe6f0, #ffd6e8);
  box-shadow: 0 5px 20px rgba(255, 77, 166, 0.2);
}

.footer .btn.btn-link:hover {
  color: #E06BAF !important;
}

.service-item:hover {
  background: #E06BAF !important;
  color: #fff !important;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  background: #E06BAF !important;
  color: #fff !important;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: #ffd6e8 !important;
  color: #E06BAF !important;
}


/* === Rounded Image Style === */
img {
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 77, 166, 0.15);
  transition: all 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff0f6;
  box-shadow: 0 4px 20px rgba(255, 77, 166, 0.15);
  z-index: 9999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* ✅ ensures perfect vertical centering */
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 12px;    /* match bootstrap container gutter */
  height: 86px;
}

.logo img {
  height: 76px;
  border-radius: 50%;
  display: block;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  align-items: center;   /* ✅ vertically center links with logo */
}

.nav-links a {
  color: #E06BAF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: 0.3s;
  line-height: 1;
}

.nav-links a:hover {
  color: #E06BAF;
}

.nav-links .nav-icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#ffe6f0;
  color:#E06BAF;
  box-shadow:0 4px 12px rgba(214,51,132,.15);
  font-size:0.95rem;
}
.nav-links .nav-icon-btn:hover{
  background:#ffd6e8;
  color:#E06BAF;
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;    /* ✅ center the bars horizontally */
  width: 30px;            /* ✅ fixed width to stop clipping */
  height: 25px;           /* ✅ fixed height for spacing */
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  height: 4px;
  width: 100%;
  background: #E06BAF;
  border-radius: 10px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 90px; /* ✅ sits perfectly below navbar */
    left: 0;
    width: 100%;
    background: #fff0f6;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-login{
    width:100%;
    display:flex;
    justify-content:center;
  }
}

/* Add space below navbar */
body {
  padding-top: 50px;
}

  body { background:#fff4f8; color:#333;}

  /* --- Submenu: desktop hover / mobile accordion --- */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > .sub-toggle { display: inline-flex; align-items: center; }
.nav-links .has-sub > .sub-toggle::after {
  content: '▾'; font-size: .8rem; margin-left: .35rem; transform-origin: center; transition: transform .2s;
}

/* Desktop: open on hover/focus, no layout change */
@media (min-width: 901px){
  .nav-links .has-sub .sub-menu{
    position: absolute; left: 0; top: 100%;
    min-width: 220px; background: #fff; border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.08);
    padding: 6px; margin-top: 8px; display: none; z-index: 20;
  }
  .nav-links .has-sub:hover > .sub-menu,
  .nav-links .has-sub:focus-within > .sub-menu { display: block; }
  .nav-links .has-sub:hover > .sub-toggle::after,
  .nav-links .has-sub:focus-within > .sub-toggle::after { transform: rotate(180deg); }
  .nav-links .sub-menu li { list-style: none; }
  .nav-links .sub-menu a { display:block; padding:10px 12px; border-radius:10px; text-decoration:none; }
.nav-links .sub-menu a:hover { background: #fff0f6; } /* matches your pink theme */

/* === Force brand color on all breakpoints (mobile included) === */
:root{
  --primary:#E06BAF;
  --bs-primary:#E06BAF;
}
@media (max-width: 1200px){
  :root{
    --primary:#E06BAF;
    --bs-primary:#E06BAF;
  }
  .btn-primary,
  .btn.btn-primary,
  .cta-book,
  .plan-cta,
  .svc-btn.primary,
  .cb-btn.primary{
    background:#E06BAF !important;
    border-color:#E06BAF !important;
    color:#fff !important;
  }
  .home-review-name,
  .home-reviews-title span,
  .rvw-stars .s.on{
    color:#E06BAF !important;
  }
  .home-reviews-quote,
  .home-reviews-nav .swiper-pagination-bullet-active{
    background:#E06BAF !important;
  }
}
}

/* Mobile: become accordion inside the opened nav */
@media (max-width: 900px){
  .nav-links .has-sub .sub-menu{
    position: static; display: none; padding: 4px 0 0; margin: 4px 0 0;
    border: 0; box-shadow: none;
  }
  .nav-links .has-sub.open > .sub-menu { display: block; }
  .nav-links .has-sub.open > .sub-toggle::after { transform: rotate(180deg); }
  .nav-links .sub-menu li { list-style: none; }
  .nav-links .sub-menu a { display:block; padding:10px 12px; border-radius:10px; }
}


  .cb-msg{display:none;margin:0 0 10px;border-radius:14px;padding:12px 14px;font-weight:700}
  .cb-msg.success{display:block;background:#e7f8ef;color:#116d3b}
  .cb-msg.fail{display:block;background:#fde7ee;color:#a01145}
/* Page load reveal (client-side pages) */
.page-animate .reveal{
  opacity: 0;
  transform: translateY(18px);
  animation: pageReveal .85s ease forwards;
  animation-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}
@keyframes pageReveal{
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .page-animate .reveal{
    animation: none;
    opacity: 1;
    transform: none;
  }
}


