@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&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');

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1140px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.wrapper {
  overflow-x: hidden;
}

/* topbar-css-start */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e91e63;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  overflow: hidden;
}

.phone-icon {
  color: #fff;
  font-size: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-family: "Merriweather Sans", sans-serif;
}

/* Phone section */
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Divider line */
.divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
}

/* Social icons */
.social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  color: #e91e63;
  background-color: #fff;
  /* border-right: 1px solid #fff; */
  text-align: center;
  padding: 2px;
}

.icon:hover {
  background-color: #740c35;
  color: #fff;
  transition: 0.3s;
}

/* Right side scrolling */
.topbar-right {
  width: 60%;
  overflow: hidden;
  position: relative;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 14px;
  color: #fff;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollLeft 20s linear infinite;
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .topbar-left {
    gap: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff85;
    display: none;
  }

  .topbar-right {
    width: 100%;
  }

  .scroll-text {
    animation-duration: 15s;
  }
}


/* topbar-css-end */


/* navbar-css-start*/
/* Default navbar */
.navbar {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}

/* When scrolled */
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

/* LOGO */
.logo img {
  height: 65px;
}

/* CENTER NAV */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  font-family: "Merriweather Sans", sans-serif;
  background-color: #e91e63;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 25px;
  border: 1px solid #e91e63;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links a:hover {
  color: #e91e63;
  background-color: transparent;
  border: 1px solid #e91e63;
  transition: 0.3s;
}

/* .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff4d6d;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
} */

/* RIGHT AREA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* BUTTON */
.book-btn {
  background: linear-gradient(120deg, #e91e63, #fc5e7b, #f10b35, #e91e63);
  background-size: 300% 300%;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.5px;

  transition: all 0.4s ease;
  animation: gradientFlow 6s ease infinite;
}

/* ✨ Smooth flowing animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 🔥 Hover Luxury Effect */
.book-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
}

/* MENU ICON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 600;
}

/* 🔥 OFFCANVAS */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgb(0 0 0 / 30%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    z-index: 9999;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #eee;
  font-family: "Merriweather Sans", sans-serif;
}

.offcanvas-menu a:hover {
  color: #e91e63;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 28px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 15px;
  color: #e91e63;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.canvas-logo {
  width: 60%;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: #e91e63;
  }

  .book-btn {
    display: none;
  }

  .book-btn-two {
    margin-top: 50px;
    /* display: none; */
    text-align: center;
  }

  .book-btn-two {
    background: linear-gradient(45deg, #e91e63, #ff4d6d);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: 0.3s;
    text-decoration: none;
    margin-bottom: 20px;
  }
}

/* navbar-css-end */

/* banner-text-css-start */

.banner-text-area {
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  /* background: linear-gradient(120deg, #e91e63, #ff4d6d, #f79dad, #e91e63); */
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  position: absolute;
  z-index: 99;
  width: 80%;
  /* height: 100%; */
  margin-top: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin: 7% 5%; */
  margin-left: 13%;
}

/* TEXT */
.banner-text-area h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

.banner-text-area h1 span {
  font-style: italic;
  color: #e91e63;
  font-weight: 800;
}

.banner-text-area h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Merriweather Sans", sans-serif;
}

/* BUTTON GROUP */
.banner-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* CALL BUTTON */
.call-btn-two {
  background: #fff;
  color: #e91e63;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.call-btn-two:hover {
  background: #ffe4ec;
  transform: translateY(-3px);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

/* SMOOTH BACKGROUND ANIMATION */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .banner-text-area {
    padding: 45px 15px;
  }

  .banner-text-area h1 {
    font-size: 28px;
  }

  .banner-text-area h2 {
    font-size: 16px;
  }

  .banner-btns {
    flex-direction: column;
    gap: 10px;
  }

  .call-btn-two,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }
}

/* banner-text-css-end */

/* banner-section-css-start */

.banner-area {
  position: relative;
}

.banner-gallery {
  width: 100%;
  height: 600px;
}

.banner-img1 {
  width: 100%;
  height: 600px;
  background-image: url(../img/banner/banner.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-img2 {
  width: 100%;
  height: 600px;
  background-image: url(../img/banner/banner03.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-img3 {
  width: 100%;
  height: 600px;
  background-image: url(../img/banner/banner02.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000a2;
}

.banner-gallery .owl-nav {
  width: 94%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 45%;
  margin-left: 3%;
}

.banner-gallery .owl-nav .owl-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-prev span {
  font-size: 40px;
  color: #fff;
  margin-bottom: 23%;
}

.banner-gallery .owl-nav .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-next span {
  font-size: 40px;
  color: #fff;
  margin-bottom: 23%;
}

@media (max-width: 768px) {

  .banner-img1 {
    width: 100%;
    height: 350px;
  }

  .banner-img2 {
    width: 100%;
    height: 350px;
  }

  .banner-img3 {
    width: 100%;
    height: 350px;
  }

  .banner-gallery {
    width: 100%;
    height: 350px;
  }

  .banner-gallery .owl-nav .owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff !important;
    transition: 0.3s;
  }

  .banner-gallery .owl-nav .owl-prev span {
    font-size: 20px;
    color: #fff;
    margin-bottom: 23%;
    transition: 0.3s;
  }

  .banner-gallery .owl-nav .owl-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff !important;
    transition: 0.3s;
  }

  .banner-gallery .owl-nav .owl-next span {
    font-size: 20px;
    color: #fff;
    margin-bottom: 23%;
    transition: 0.3s;
  }



}

/* banner-section-css-end */

/* our-service-css-start */

.services-section {
  background: #fff;
  padding: 80px 0px;
}

.services-section .subtitle {
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  margin-bottom: 7px;
}

.services-section .title {
  font-size: 36px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  color: #000;
}

.services-section .title span {
  color: #00a8a8;
  font-style: italic;
}

.service-card2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
  transition: 0.4s ease;
  text-align: center;
}

/* IMAGE */
.service-card2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* BODY */
.service-card2 .card-body {
  padding: 15px;
}

.service-card2 h5 {
  font-size: 16px;
  font-weight: 600;
}

.service-card2 p {
  font-size: 13px;
  color: #666;
  margin: 8px 0 15px;
}

/* BUTTON */
.call-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #e91e63, #e56053);
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  transform: scale(1.05);
  color: #fff;
}

/* HOVER EFFECT */
.service-card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.service-card2:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-card2 img {
    height: 180px;
  }

  .service-card2 h5 {
    font-size: 14px;
  }

  .service-card2 p {
    font-size: 12px;
  }
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
  border-radius: 10px;
  border: 1px solid #e91e6228;
}

/* CONTENT BOX */
.card-content {
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 80%;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.card-content h5 {
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #666;
}

/* ARROW BUTTON */
.arrow {
  margin-top: 10px;
  background: #00a8a8;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  margin-inline: auto;
  transition: 0.3s;
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #00a8a8;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.arrow-btn:hover {
  background: #ff4d6d;
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.4);
  /* transform: translate(10px, 10px); */
  transform: rotate(-90deg);
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .card-content {
  bottom: 10px;
}

.service-card:hover .arrow {
  background: #ff4d6d;
}

.see-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.see-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
  color: #fff;
}

/* Shine Effect */
.see-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.see-all-btn:hover::before {
  left: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .card-content {
    width: 90%;
    left: 5%;
  }
}

/* our-service-css-end*/


/* work-section-css-start */

/* SECTION */
.work-section {
  background: #f434680d;
  padding: 80px 0px;
}

/* TITLE */
.work-section .subtitle {
  color: #000;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  margin-bottom: 7px;
}

.work-section .title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

.work-section .title span {
  font-size: 36px;
  color: #00a8a8;
  font-weight: 600;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-style: italic;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5d3d3;
}

/* SERVICE BOX */
.beauty-service {
  text-align: center;
  padding: 30px 10px;
  border: 1px solid #e5d3d3;
  transition: 0.4s ease;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* TEXT */
.beauty-service p {
  margin-top: 10px;
  font-size: 14px;
  color: #5a2d2d;
  transition: 0.3s;
}

/* HOVER EFFECT ✨ */
.beauty-service:hover {
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  color: #fff;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.beauty-service:hover p {
  color: #fff;
}

/* WORK HOURS */
.work-hours {
  padding-left: 30px;
}

.work-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #d8bcbc;
  font-size: 16px;
  color: #5a2d2d;
  transition: 0.3s;
}

/* HOVER LINE EFFECT */
.work-row:hover {
  color: #e91e63;
}

/* CLOSED */
.closed {
  color: #e91e63;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-hours {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .title {
    font-size: 26px;
  }
}


/* work-section-css-end */


/* natural-buaty-css-start */

.natural-beauty {
  background: #fff;
  padding: 80px 0px;
}

.natural-beauty .section-title {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  margin-bottom: 7px;
  color: #000;
}

.natural-beauty .section-subtitle {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  text-transform: capitalize;
}


.natural-beauty .section-subtitle span {
  color: #00a8a8;
  font-style: italic;
}

/* NEW CARD STYLE */
/* CARD */
.beauty-card2 {
  perspective: 1000px;
  height: 180px;
}

/* INNER FLIP */
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* HOVER / TOUCH EFFECT */
.beauty-card2:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT + BACK */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  border: 1px solid #e91e637d;
  box-shadow: 0px 0px 15px #e91e634d;
}

/* FRONT IMAGE */
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BACK DESIGN */
.flip-back {
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  text-align: center;
  padding: 10px;
}

/* TEXT */
.flip-back p {
  font-size: 11px;
  margin: 0;
}

.flip-back h6 {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 600;
}

/* MOBILE TOUCH SUPPORT */
@media (hover: none) {
  .beauty-card2:active .flip-inner {
    transform: rotateY(180deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .beauty-card2 {
    height: 120px;
  }

  .flip-back h6 {
    font-size: 11px;
  }
}

/* SMALL IMAGE HEIGHT */
.beauty-card2 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.5s ease;
  border-radius: 12px;
}

/* OVERLAY MODERN */
.card-overlay2 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.card-overlay2 p {
  font-size: 10px;
  margin: 0;
  color: #e91e63;
  font-weight: 500;
}

.card-overlay2 h6 {
  font-size: 13px;
  margin: 2px 0 0;
  color: #000;
  font-weight: 600;
}

/* HOVER EFFECT */
.beauty-card2:hover img {
  transform: scale(1.1);
}

.beauty-card2:hover .card-overlay2 {
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
}

.beauty-card2:hover .card-overlay2 p,
.beauty-card2:hover .card-overlay2 h6 {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .beauty-card2 img {
    height: 120px;
  }

  .card-overlay2 h6 {
    font-size: 11px;
  }
}

.card-overlay p {
  margin: 0;
  font-size: 12px;
  color: #000;
  transition: 0.3s;
}

.card-overlay h5 {
  margin: 5px 0 0;
  color: #000;
  transition: 0.3s;
}

/* Hover Effect */
.beauty-card:hover .card-overlay {
  background: #e91e63;
  color: #fff;
  transition: 0.3s;
}

.beauty-card:hover .card-overlay p {
  color: #fff;
  transition: 0.3s;
}

.beauty-card:hover .card-overlay h5 {
  color: #fff;
  transition: 0.3s;
}

.view-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  transition: 0.3s;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
  color: #fff;
}

/* 🔥 SHINE EFFECT */
.view-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.view-btn:hover::before {
  left: 100%;
}

.view-btn:hover {
  background: #00a8a8;
  color: #fff;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

/* natural-buaty-css-end */



/* mission-vision-css-start */




.mission-vision {
  background: linear-gradient(135deg, #f9f6f3, #fff);
  padding: 80px 0;
}

/* CENTER HEADING */
.mv-subtitle {
  text-align: center;
}

.mv-title {
  text-align: center;
  margin-bottom: 10px;
}

/* TEXT ALIGN LEFT FOR CONTENT */
.mv-box {
  text-align: left;
}

/* IMAGE CARD MODERN */
.mv-card {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  height: 220px;
}

.mv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.mv-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY GLOW */
.mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(233, 30, 99, 0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

.mv-card:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-box {
    text-align: center;
  }

  .mv-card {
    height: 180px;
  }
}

/* Box style */
.mv-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.mv-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(193, 154, 107, 0.15), transparent);
  opacity: 0;
  transition: 0.5s;
}

.mv-box:hover::before {
  opacity: 1;
}

.mv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}




/* Section spacing */
.mission-vision {
  background: linear-gradient(135deg, #f9f6f3, #fff);
  padding: 80px 0;
  text-align: center;
}

.mv-subtitle {
  font-size: 14px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.mv-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  text-transform: capitalize;
}


.mv-title span {
  color: #00a8a8;
  font-style: italic;
}

/* Highlight text */
/* .mv-highlight {
  font-size: 18px;
  color: #111;
  font-weight: 500;
  margin-bottom: 15px;
} */


/* Features */
.mv-features {
  margin-top: 15px;
}

.mv-features div {
  margin-bottom: 8px;
  color: #444;
  font-size: 15px;
}



/* Heading */
.mv-heading {
  font-size: 20px;
  color: #e91e63;
  margin-bottom: 10px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

/* Text */
.mv-text {
  color: #000;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
}

/* Features */
.mv-features {
  margin-top: 10px;
}

.mv-features div {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
  font-family: "Merriweather Sans", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-box {
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mv-title {
    font-size: 28px;
    text-align: center;
  }

  .mv-highlight,
  .mv-text {
    /* text-align: center; */
  }

  .mv-features {
    /* text-align: center; */
  }

  .mv-btn {
    display: block;
    margin: auto;
  }
}

/* IMAGE CARDS IMPROVED */
.mv-card {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.mv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Smooth zoom + rotate */
.mv-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

/* Gradient overlay */
.mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: 0.4s;
}

.mv-card:hover::after {
  opacity: 1;
}


/* mission-vision-css-end*/

/* look-section-css-start -*/

/* PARALLAX SECTION */
.parallax-section {
  background: url(../img/img-banner.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.parallax-title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  color: #fff;
}

.parallax-subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

/* BUTTON */
.whatsapp-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* MOBILE FIX (important for parallax) */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 350px;
  }

  .parallax-title {
    font-size: 26px;
  }
}

/* look-section-css-end*/


/* testimonial-section-css-start */

.testimonial-section {
  background: #fff;
  padding: 80px 0px;
}

/* TITLE */
.sub-title {
  font-size: 14px;
  font-weight: 400;
  font-family: "Merriweather Sans", sans-serif;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.main-title {
  font-size: 36px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  color: #000;
}

.main-title span {
  color: #e91e63;
  font-style: italic;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e91e631f;
}

/* IMAGE */
.client-img {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 15px;
}

.client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e91e63;
}

/* TEXT */
.client-review {
  font-size: 14px;
  color: #000;
  margin: 15px 0;
  font-family: "Merriweather Sans", sans-serif;
}

.client-name {
  font-weight: 600;
  margin: 5px 0;
  font-family: "Merriweather Sans", sans-serif;
}

.client-role {
  font-size: 13px;
  color: #999;
  font-family: "Merriweather Sans", sans-serif;
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }
}


.testimonial-gallery {
  position: relative;
}

.testimonial-gallery .owl-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  gap: 5px;
  /* margin-left: 3%; */
}

.testimonial-gallery .owl-dots .owl-dot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff !important;
  transition: 0.3s;
  background-color: #00a8a8;
}

.testimonial-gallery .owl-dots .owl-dot.active {
  font-size: 40px;
  color: #fff;
  transition: 0.3s;
  background-color: #e91e63;
}









/* testimonial-section-css-end */


/* footer-css-start */

.footer-section {
  background: #111;
  color: #fff;
  padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  color: #fff;
}

/* SOCIAL */
.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e91e63;
  transform: translateY(-5px);
}

/* LINKS */
.footer-box h5 {
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 600;
  color: fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.footer-links a i {
  margin-right: 6px;
  color: #e91e63;
}

.footer-links a:hover {
  color: #e91e63;
  padding-left: 5px;
}

/* GALLERY */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  transition: 0.4s;
}

.footer-gallery img:hover {
  transform: scale(1.1);
}

/* CONTACT */
.footer-box p {
  font-size: 13px;
  color: #fff;
  font-weight: 300;
  font-family: "Merriweather Sans", sans-serif;
}

.footer-box i {
  color: #e91e63;
  margin-right: 8px;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #e91e63;
  transform: scale(1.05);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom p {
  font-size: 14px;
  color: #fff;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
  margin: 0;
}

.footer-bottom p span a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-gallery img {
    height: 60px;
    border: 1px solid #fc466b;
    box-shadow: 0px 0px 15px #ed266561;
  }

}

/* footer-css-end */


/* about-banner-section-start */

.about-banner {
  height: 300px;
  text-align: center;
  position: relative;
  /* background: #D98E70; */
  /* background: linear-gradient(to right, #D98E70, #F5B59B); */
}

.breadcrumbs-area {
  width: 100%;
  float: left;
  text-align: center;
  /* padding-top: 16%; */
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 999;
}


.breadcrumbs-area h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  font-family: "Merriweather Sans", sans-serif;
}

.breadcrumbs-color {
  padding: 1% 43%;
}

.bread-text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  border: 2px solid #fff;
  padding: 6% 0%;
  border-radius: 10px;
  font-family: "Merriweather Sans", sans-serif;
}

.bread-text a {
  text-decoration: none;
  color: #fff;
  font-family: "Merriweather Sans", sans-serif;
}

.bread-text span {
  font-size: 14px;
  color: #fff;
  font-family: "Merriweather Sans", sans-serif;
}

.bread-text a:hover {
  text-decoration: none;
  color: #1c9903;
}

.breadcrumb-gradient {
  min-height: 100%;
  background: linear-gradient(-45deg, #e91e63, #ff4d6d, #ff758f, #e91e63);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* SMOOTH GRADIENT FLOW */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 🌟 SOFT PINK GLOW TOP */
.breadcrumb-gradient::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  top: -150px;
  left: -150px;
  animation: glowMove 12s linear infinite;
}

/* 🌟 SECOND GLOW (PINK TONE) */
.breadcrumb-gradient::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.25), transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: glowMove2 10s linear infinite;
}

/* FLOATING MOTION */
@keyframes glowMove {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(200px, 120px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes glowMove2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-180px, -100px);
  }

  100% {
    transform: translate(0, 0);
  }
}



@media (max-width: 768px) {

  .breadcrumbs-color {
    padding: 1% 30%;
  }

  .breadcrumbs-area h2 {
    font-size: 32px;
  }

}

/* about-banner-section-end */


/* about-main-css-start */

.about-us {
  padding: 80px 0;
  background: #fff;
}

/* IMAGE */
.about-img {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e91e63;
  box-shadow: 0px 0px 15px #e91e627a;
  margin: 3%;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  transition: 0.6s;
}

.about-img:hover img {
  transform: scale(1.08);
}

/* TEXT */
.about-subtitle {
  font-size: 14px;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  font-family: "Merriweather Sans", sans-serif;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-title span {
  color: #e91e63;
  font-style: italic;
}

.about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  margin: 20px 0;
}

.about-features div {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #e91e63, #ff4d6d);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    text-align: center;
  }
}

/* about-main-css-end */

/* gallery-about-css-start */

.gallery-section {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.gallery-subtitle {
  font-size: 14px;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
  font-family: "Merriweather Sans", sans-serif;
}

.gallery-title {
  font-size: 36px;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

.gallery-title span {
  color: #e91e63;
  font-style: italic;
}

/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(233, 30, 99, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

.gallery-overlay h5 {
  color: #fff;
  transform: translateY(20px);
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay h5 {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-card img {
    height: 300px;
    /* object-fit: contain; */
  }
}

/* gallery-about-css-end */


/* contact-about-css-start */

.contact-section {
  padding: 80px 0;
  background: #fff5f8;
}

/* BOX */
.contact-box {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.contact-subtitle {
  font-size: 14px;
  text-decoration: underline 1px dashed #e91e63;
  text-underline-offset: 5px;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-text {
  font-size: 15px;
  color: #000;
  margin-bottom: 30px;
}

/* CONTACT ITEMS */
.contact-info {
  display: flex;
  /* flex-direction: column; */
  gap: 15px;
  align-items: center;
  justify-content: center;
}

/* BUTTON STYLE */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px;
  border-radius: 50px;
  background: #e91e63;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.contact-item i {
  font-size: 18px;
}

/* PHONE HOVER */
.contact-item:hover {
  background: #f1f1f1;
  color: #000;
}

/* WHATSAPP SPECIAL */
.contact-item.whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-item.whatsapp:hover {
  background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-box {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* contact-about-css-end */


/* services-section-start */

.services-section {
  padding: 80px 0;
  background: #fff;
}

/* HEADING */
.service-subtitle {
  font-size: 14px;
  text-decoration: underline dashed #e91e63;
}

.service-title {
  font-size: 34px;
  font-weight: 700;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #e91e63;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.service-btn:hover {
  background: #c2185b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-title {
    font-size: 26px;
  }
}

/* services-section-end */


/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  right: 25px;
  /* slightly off-screen */
  bottom: 90px;
  /* ABOVE back-to-top button */
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 9998;
  /* below top button if needed */
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  /* slide fully into view */
  transform: scale(1.08);
  color: #FFFFFF;
}



/* top_to_bottam-css-start */

#scroll {
  position: fixed;
  right: 24px;
  bottom: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #e91e63;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 9999;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: #00a8a8;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* top_to_bottam-css-end */

/* ph-widget-css-start */

.call-now-btn {
    position: fixed;
    bottom: 20px;
    left: 15px;
    background: linear-gradient(45deg, #e91e63, #e74e58);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
    animation: floatY 2.5s ease-in-out infinite;
}

/* Smooth up-down */
@keyframes floatY {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
/* Hover */
/* Hover (desktop) + Active (mobile tap) */
.call-now-btn:hover,
.call-now-btn:active {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
/* Icon */
.call-now-btn i {
    font-size: 18px;
}

/* 📱 Show ONLY on mobile */
@media (min-width: 768px) {
    .call-now-btn {
        display: none;
    }
}




/* ph-widget-css-end */


/* PRELOADER BACKGROUND */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e91e63, #ff4d6d, #f8a5c2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* CENTER CONTENT */
.loader-content {
  text-align: center;
  color: #fff;
}

/* SCISSOR ICON ANIMATION */
.scissor {
  font-size: 40px;
  animation: rotateScissor 1.5s infinite ease-in-out;
}

/* TEXT */
.loader-content h2 {
  margin-top: 10px;
  font-family: "Abhaya Libre", serif;
  letter-spacing: 2px;
}

/* LOADING BAR */
.loader-bar {
  width: 150px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin: 15px auto 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-bar::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: #fff;
  animation: loadingMove 1.5s infinite;
  border-radius: 10px;
}

/* ANIMATIONS */
@keyframes rotateScissor {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(25deg);
  }
}

@keyframes loadingMove {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .scissor {
    font-size: 30px;
  }

  .loader-content h2 {
    font-size: 18px;
  }

  .loader-bar {
    width: 120px;
  }
}