/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /*---- Colors ----*/
  --primary-color: #E88C9A;
  --secondary-color: #C8A96A;
  --accent: #1E88E5;
  --light-bg: #f8f5f2;
  --dark-navy: #071c33;

  /*---- Text Color ----*/
  --heading-color: #1F2937;
  --text-color: #6B7280;

  /*--- Nav Bar ----*/
  --navbar-color: #FFF;
  --navbar-text: #1F2937;

  /*----- Footer Color ----*/
  --footer-color: #071c33;
  --footer-title-color: #FFF;
  --footer-text-color: #d6e3df;

  --footer-bottom-color: #06192d;
  --footer-bottom-text: #d6e3df;
}


/* ===============================
                NAVBAR
     =============================== */

.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(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background-color: var(--navbar-color);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgb(63, 63, 63);
}

/* Scrolled state navbar (if needed)

.navbar-custom.scrolled {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
*/

.navbar .nav-link {
  color: var(--navbar-text) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #E88C9A !important;
}

.navbar-nav .nav-link.active {
  color: #E88C9A !important;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}

.brand-logo {
  width: 65px;
}

.brand-name {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 32px;
  color: #0B2D4F;
}

.brand-name span {
  font-family: 'Poppins';
  color: var(--primary-color);
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--navbar-colorr);
  color: #E88C9A;
}

.dropdown-menu .dropdown-item.active {
  background-color: #E88C9A;
  color: #000 !important;
}

.navbar .btn {
  border-radius: 5px;
  background: #E88C9A;
  color: #fff;
  font-weight: 600;
}


/* ===============================
   FOOTER
   =============================== */

.web-footer {
  background-color: var(--footer-color);
  border-top: 2px solid #C8A96A;
  color: #d6e3df;
}

.footer-logo {
  width: 60px;
}

.footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand small {
  color: #b8d4c8;
  letter-spacing: 1px;
}

.footer-text {
  color: var(--footer-text-color);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-title {
  color: var(--footer-title-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--footer-text-color);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #E88C9A;
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #e6c87a;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #E88C9A;
}

.footer-bottom {
  background-color: var(--footer-bottom-color);
  font-size: 14px;
  color: var(--footer-bottom-text);
}

/* ===============================
            Responsive
     =============================== */

/* Fix mobile dropdown overlap */
@media (max-width: 991px) {

  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 575px) {

  /* NAVBAR */
  .navbar-nav {
    gap: 0 !important;
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin: 10px 0 0;
  }

  .brand-logo {
    width: 50px;
    ;
  }

  .brand-name {
    font-size: 22px;
  }

  /* FOOTER */
  .footer-logo {
    width: 50px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }
  .footer-text{
    text-align: start;
  }
}


/* ===============================
        GLOBAL STYLES
        =============================== */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: var(--light-bg);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: white;
  color: #000;
}

.btn-transprant {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-transprant:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-learnmore {
  background: transparent;
  transition: 0.3s;
  color: white;
  border: none;
}

.btn-learnmore:hover {
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.sub-heading {
  margin: auto;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.section-padding {
  padding: 35px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.highlite {
  color: var(--primary-color);
}

@media (max-width: 575px) {
  .highlite {
    color: inherit;
  }
}

.hyer-link {
  text-decoration: none;
  color: inherit
}

.card-ui {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: .3s;
  border: 1px solid #eee;
}

.card-ui:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

::selection {
  background: var(--secondary-color);
  color: #fff;
}

/* ===============================
   PREMIUM UI GLOBAL SYSTEM
=============================== */

/* BETTER CONTAINER WIDTH */
.container {
  max-width: 1200px;
}

/* PREMIUM SHADOW */
.shadow-soft {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER LIFT */
.hover-lift {
  transition: 0.35s;
}

.hover-lift:hover {
  transform: translateY(-12px);
}

/* PREMIUM BUTTON */
.btn-premium {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-premium:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* REVEAL FROM LEFT */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.8s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* REVEAL FROM TOP */
.reveal-top {
  opacity: 0;
  transform: translateY(-80px);
  transition: 0.8s ease;
}

.reveal-top.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all .9s cubic-bezier(.17, .67, .83, .67);
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
   INNER HERO (Reusable)
================================ */

.inner-hero {
  position: relative;
  min-height: 60vh;
  height: auto;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* text center */
  background: url('https://i0.wp.com/aloramdspa.com/wp-content/uploads/2024/12/Alora-Med-Spa-Carousel-1920x790-img-04.png?fit=1920%2C790&ssl=1')top center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
}

/* CENTER CONTENT PERFECT */
.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal center */
  justify-content: center;
  /* vertical center */
}

/* tag */
.inner-hero-tag {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* title */
.inner-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ============================================
   INNER HERO (Reusable) MOBILE RESPONSIVE
================================================ */

@media(max-width:768px) {
  .inner-hero {
    min-height: 50vh;
    padding: 120px 15px;
  }

  .inner-hero-title {
    font-size: 24px;
  }

  .desktop-break {
    display: none;
  }
}

@media (max-width:525px) {
  .desktop-tablet-break {
    display: none;
  }
}

/*=============================================================================================================
                                        Main All Page Style Start
================================================================================================================*/
/*========================= Index.HTML START ==========================*/
/*----------- HOME HERO SECTION ---------*/
/* HERO */
.aura-hero {
  background: linear-gradient(90deg, #75464d 40%, rgba(7, 28, 51, 0.16)),
    url('https://i.pinimg.com/1200x/cb/9b/a4/cb9ba48306608f283a51cc76836b1db1.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 40px;
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* overlay glow */
.aura-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 160px;
  background: transparent;
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 100% 100% 0 0;
  opacity: .7;
}

/* content */
.hero-content {
  color: #fff;
  padding: 100px 0;
}

.hero-sub {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-desc {
  margin-top: 18px;
  color: #d1d5db;
  max-width: 520px;
}

.hero-btn {
  margin-top: 28px;
  background: var(--primary-color);
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  transition: .3s;
}

.hero-btn:hover {
  background: var(--secondary-color);
  color: #000;
}

.hero-btn-outline {
  margin-left: 12px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  padding: 14px 28px;
  border-radius: 40px;
  color: #fff;
}

.hero-btn-outline:hover {
  background: var(--secondary-color);
  color: #000;
}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 575px) {

  .aura-hero {
    padding-top: 60px;
    padding-bottom: 20px;
    min-height: auto;
    background-position: 65% center;
    /* show face properly */
  }

  /* overlay curve adjust */
  .aura-hero::after {
    bottom: -80px;
    height: 120px;
  }

  /* content center */
  .hero-content {
    padding: 40px 10px 10px 10px;
    text-align: center;
  }

  /* subtitle */
  .hero-sub {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* BIG FIX: heading size */
  .hero-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
  }

  /* description */
  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  /* buttons */
  .hero-btn,
  .hero-btn-outline {
    width: 80%;
    margin-top: 12px;
  }

  .hero-btn-outline {
    display: none;
  }
}

@media only screen and (min-width: 481px) and (max-width: 1024px) {
  .hero-content {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .hero-title {
    font-size: 40px;
  }
}

/*-------------- Home v1 Hero END-------------*/

/*----------- Home v1 About ---------- */
/* ===== ABOUT V1 ===== */
.v1-about-section {
  background: #FFF6F7;
}

.v1-about-sub {
  color: #C8A96A;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.v1-about-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1F2937;
  margin: 15px 0;
}

.v1-about-desc {
  color: #6B7280;
  line-height: 1.7;
}

.v1-about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.v1-about-list li {
  margin-bottom: 10px;
  color: #374151;
}

.v1-about-list li::before {
  content: "✔";
  color: #E88C9A;
  margin-right: 10px;
}

/* contact box */
.v1-about-contact {
  background: #f3e7e9;
  color: #000;
  padding: 18px 22px;
  border-radius: 12px;
  margin-top: 25px;
}

.v1-contact-btn {
  border: 2px solid var(--secondary-color);
  padding: 8px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: .4s;
}

.v1-contact-btn:hover {
  background: var(--secondary-color);
  color: #FFF;
}

/* image */
.v1-about-img img {
  border-radius: 20px;
}

/* mobile */
@media(max-width:768px) {

  .v1-about-title {
    font-size: 30px;
  }

  .v1-about-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .v1-about-contact {
    flex-direction: column;
    gap: 10px;
  }

}

/*----------- Home v1 Service ----------*/
.v1-services {
  background: #FFF;
}

.v1-service-title {
  color: #000;
  text-align: center;
  font-size: 32px;
}

.v1-service-text {
  color: #555;
  text-align: center;
  font-size: 16px;
  max-width: 750px;
  margin: auto;
  margin-bottom: 30px;
}

.v1-service-wrap {
  height: 280px;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
}

.v1-img {
  position: relative;
}

.v1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-content {
  background: #75464d;
  color: #FFF;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v1-content h5 {
  font-size: 18px;
  margin-bottom: 12px;
}

.v1-content ul {
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 18px;
}

.v1-content a {
  border: 2px solid var(--secondary-color);
  padding: 10px 24px;
  border-radius: 30px;
  color: #FFF;
  text-decoration: none;
  width: max-content;
}

.v1-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  color: #75464d;
}

.v1-service-icon {
  filter: brightness(0) invert(1);
  width: 70px;
  margin-bottom: 10px;
}

/* ===== MOBILE FIX PERFECT ===== */
@media(max-width:575px) {

  .v1-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 🔥 main fix */
    justify-content: center;
  }

  .v1-service-text {
    max-width: none;
  }

  /* icon center */
  .v1-service-icon {
    margin: 0 auto 15px auto;
    display: block;
  }

  /* title */
  .v1-content h5 {
    text-align: center;
  }

  /* UL PERFECT CENTER */
  .v1-content ul {
    list-style-position: inside;
    padding: 0;
    margin: 0 auto 18px auto;
    text-align: left;
    /* keep bullets clean */
    display: inline-block;
  }

  /* button exact center */
  .v1-content a {
    margin: 0 auto;
    display: inline-block;
  }


  /* stack layout */
  .v1-service-wrap {
    flex-direction: column !important;
    height: auto;
  }

  /* full width */
  .v1-img,
  .v1-content {
    width: 100% !important;
  }

  /* image always first */
  .v1-img {
    order: 1 !important;
  }

  /* content always second */
  .v1-content {
    order: 2 !important;
    text-align: center;
    padding: 35px 20px;
  }

  /* center icon */
  .v1-service-icon {
    margin: auto;
    margin-bottom: 12px;
  }

  /* center button */
  .v1-content a {
    margin: auto;
  }

  /* center list */
  .v1-content ul {
    text-align: left;
    display: inline-block;
  }

  /* tag adjust */
  .v1-tag {
    left: 23%;
    transform: translateX(-50%);
  }

}

@media only screen and (min-width: 481px) and (max-width: 1024px) {

  /* content always second */
  .v1-content {
    text-align: center;
    padding: 35px 20px;
  }

  /* center icon */
  .v1-service-icon {
    margin: auto;
    margin-bottom: 12px;
  }

  /* center button */
  .v1-content a {
    margin: auto;
  }

  /* center list */
  .v1-content ul {
    text-align: left;
    display: inline-block;
  }

  .v1-content ul {
    list-style-position: inside;
    padding: 0;
    margin: 0 auto 18px auto;
    text-align: left;
    /* keep bullets clean */
    display: inline-block;
  }
}

/*----------- Home v1 Service End ------*/
/* ---- AURA POPULAR TREATMENTS ----- */
.aura-treatments {
  background: #f6f3ef;
  font-family: 'Inter', sans-serif;
}

.aura-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #3b2a1d;
}

/* arrows */
.aura-arrows span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c8b6a6;
  border-radius: 50%;
  margin-left: 8px;
  cursor: pointer;
  color: #8b6b4a;
  transition: .3s;
}

.aura-arrows span:hover {
  background: #8b6b4a;
  color: #fff;
}

/* card */
.aura-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.aura-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: .5s;
}

/* overlay */
.aura-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 20, 10, .75), rgba(0, 0, 0, 0.1));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.aura-overlay small {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .9;
}

.aura-overlay h5 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 6px 0 14px;
}

.aura-overlay a {
  display: inline-block;
  border: 1.5px solid var(--secondary-color);
  padding: 8px 18px;
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  width: max-content;
  transition: .3s;
}

.aura-overlay a:hover {
  background: var(--secondary-color);
  color: #000;
}

/* hover zoom */
.aura-card:hover img {
  transform: scale(1.08);
}

/* mobile */
@media(max-width:768px) {
  .aura-title {
    font-size: 26px;
  }

  .aura-card img {
    height: 300px;
  }
}

.aura-arrows {
  display: flex;
  align-items: center;
}

.aura-arrows button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #75464d;
  background: #fff;
  color: #75464d;
  margin-left: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.aura-arrows button:hover {
  background: #75464d;
  color: #fff;
}

.auraSwiper {
  padding-bottom: 10px;
}

/* ---- AURA POPULAR TREATMENTS END ---- */
/*========================= Index.HTML END ==========================*/

/*========================= home.HTML START ==========================*/
/* ===== V2 HERO TOOLKIT STYLE ===== */
.v2-hero-toolkit {
  background: #f4f6fb;
  padding: 40px 0 0 0;
}

.v2-hero-box {
  background: var(--light-bg);
  width: 100%;
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* tag */
.v2-tag {
  background: #e8ecff;
  color: #6b7cff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 20px;
}

/* heading */
.v2-heading {
  font-size: 48px;
  font-weight: 700;
  color: #1f2b3e;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

/* text */
.v2-text {
  color: #6b7280;
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 30px;
}

/* buttons */
.v2-btn-group {
  display: flex;
  gap: 15px;
}

.v2-btn-primary {
  background: #e88c9a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
}

.v2-btn-primary:hover {
  background: var(--secondary-color);
  color: #000;
}

.v2-btn-light {
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--secondary-color);
  font-weight: 600;
  transition: .4s;
}

.v2-btn-light:hover {
  background: var(--secondary-color);
  color: #000;
}

/* image */
.v2-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.v2-before-after {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

.v2-compare {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 30px;
}

.v2-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-after {
  clip-path: inset(0 0 0 50%);
}

.v2-slider {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.v2-slider input {
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 5;
}

/* visible circle handle */
.v2-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e88c9a;
  cursor: ew-resize;
}

.v2-slider input::-moz-range-thumb {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e88c9a;
  cursor: ew-resize;
}

.v2-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
}

.v2-arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.v2-label-before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
}

.v2-label-after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
}

/* ===============================
   HERO RESPONSIVE FIX PERFECT
================================*/
@media (max-width:991px) {
  .v2-hero-content {
    margin-top: 20px;
    text-align: center;
  }

  .v2-heading {
    font-size: 40px;
  }

  .v2-text {
    margin: auto;
  }

  .v2-btn-group {
    justify-content: center;
    margin-top: 20px;
  }
}


/* ===== HERO TEXT PERFECT MOBILE ===== */
@media (max-width:575px) {

  /* center full content */
  .v2-hero-content {
    text-align: center;
    padding: 0 10px;
  }

  /* tag */
  .v2-tag {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 14px;
  }

  /* heading */
  .v2-heading {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 14px;
    letter-spacing: .2px;
  }

  /* description */
  .v2-text {
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 95%;
    margin: 0 auto 20px;
  }

  /* button spacing */
  .v2-btn-group {
    margin-top: 15px;
    gap: 12px;
    justify-content: center;
  }

  /* buttons size perfect */
  .v2-btn-light {
    display: none;
  }

  /* remove extra big space */
  .v2-hero-toolkit {
    padding-top: 70px;
  }

}

/* mobile */
@media (max-width:575px) {



  .v2-hero-box {
    padding: 30px 15px;
    border-radius: 18px;
  }

  /* BEFORE AFTER FIX */
  .v2-before-after {
    max-width: 100%;
    margin-top: 30px;
  }

  .v2-compare {
    height: 300px;
    border-radius: 20px;
  }

  /* labels smaller */
  .v2-label-before,
  .v2-label-after {
    font-size: 12px;
    padding: 4px 10px;
  }

}

/*------Hero section END -----*/

/*--------Home v2 About us ------------*/
/* ===== ABOUT SECTION ===== */
.v2-about-new {
  padding: 100px 0;
  background: #FFF;
}

/* ===== LEFT IMAGE STYLE ===== */
.v2-about-img-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.v2-main-img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

/* orange border box */
.v2-border-box {
  position: absolute;
  width: 85%;
  height: 85%;
  border: 12px solid var(--secondary-color);
  top: -25px;
  right: -25px;
  z-index: 1;
}

/* blue bottom bar */
.v2-blue-bar {
  position: absolute;
  width: 45%;
  height: 10px;
  background: var(--primary-color);
  bottom: -20px;
  left: 10px;
  z-index: 3;
}

/* ===== RIGHT CONTENT ===== */
.v2-about-content {
  padding-left: 40px;
}

.v2-about-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c8a96a;
  font-weight: 600;
}

.v2-about-title {
  font-size: 44px;
  font-weight: 700;
  margin: 15px 0;
  color: #1f2b3e;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}


.v2-about-text {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

.v2-about-btn {
  display: inline-block;
  margin-top: 15px;
  background: #e88c9a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.v2-about-btn:hover {
  background: #c8a96a;
  color: #000;
}

/* ================= MOBILE ================= */
@media(max-width:991px) {

  .v2-about-content {
    padding-left: 0;
    margin-top: 60px;
    text-align: center;
  }

  .v2-about-img-wrap {
    margin: auto;
  }

}

@media(max-width:575px) {

  .v2-about-title {
    font-size: 30px;
  }

  .v2-about-new {
    padding: 70px 10px;
  }

  .v2-border-box {
    top: -15px;
    right: -15px;
    border-width: 8px;
  }

  .v2-blue-bar {
    left: 20px;
  }

}

/*-------- Home v2 About us END ------------------*/

/*--------- Home V2 Stats Start ---------------------*/
/* ===== STATS SECTION ===== */
.v2-stats-section {
  padding: 100px 0;
  background: #f7f5f2;
}

.v2-stats-title {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #1f2b3e;
}

.v2-stats-desc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

/* CARD */
.v2-stat-card {
  background: #efe2e4;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: left;
  transition: .4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* highlight card */
.v2-stat-card.active {
  background: linear-gradient(135deg, #e88c9a, #7b61ff);
  color: #fff;
  transform: scale(1.05);
}

.v2-stat-card:hover {
  transform: translateY(-10px);
}

/* icon */
.v2-stat-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* number */
.v2-stat-card h3 {
  color: #000;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

.v2-stat-card h5 {
  color: #555;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.v2-stat-card.active h5 {
  color: #FFF;
}

.v2-stat-card.active h3 {
  color: #FFF;
}

.v2-stat-card p {
  font-size: 14px;
  color: #6b7280;
}

.v2-stat-card.active p {
  color: #fff;
}

.v2-stat-icon i {
  font-size: 32px;
  color: #ffc800;
}

.gem {
  font-size: 32px;
  color: #0095ff !important;
}

.v2-stat-card.active .v2-stat-icon i {
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {

  .v2-stats-title {
    font-size: 28px;
    text-align: center;
  }

  .v2-stats-desc {
    text-align: center;
    margin-top: 10px;
  }

  .v2-stat-card {
    text-align: center;
  }

}

/*--------- Home V2 Stats End ---------------------*/

/*--------- Home V2 Why Choose US Start ---------------------*/
.v2-whychoose-section {
  background: #FFF;
}

.v2-why-img img {
  border-radius: 6px;
  object-fit: cover;
}

/* Subtitle */
.v2-subtitle {
  letter-spacing: 3px;
  font-size: 13px;
  color: #9c7a56;
  font-weight: 600;
}

/* Title */
.v2-title {
  font-size: 40px;
  color: #3e2d1f;
  margin: 15px 0 20px;
  line-height: 1;
}

/* Desc */
.v2-desc {
  color: #7a6a5c;
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 35px;
}

/* Grid */
.v2-feature-grid {
  border-top: 1px solid #e5ded6;
}

.v2-feature-item {
  padding: 25px 20px;
  border-bottom: 1px solid #e5ded6;
  transition: .4s;
}

.v2-feature-item:hover {
  transform: translateY(-5px);
}

.v2-feature-item h5 {
  font-family: 'Playfair Display', serif;
  color: #3e2d1f;
  font-size: 20px;
  margin-bottom: 8px;
}

.v2-feature-item p {
  color: #7a6a5c;
  font-size: 15px;
  margin: 0;
}

/* Desktop borders */
@media(min-width:768px) {
  .border-start-md {
    border-left: 1px solid #e5ded6;
  }

  .border-top-md {
    border-top: 1px solid #e5ded6;
  }
}

/* Mobile */
@media(max-width:768px) {
  .v2-why-content {
    text-align: center;
    margin: auto;
  }

  .v2-desc {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }

  .v2-title {
    text-align: center;
    font-size: 30px;
  }

  .v2-feature-item {
    text-align: center;
  }
}

/*--------- Home V2 Why Choose US End ---------------------*/

/*---------- Home v2 Procss Start -------------------*/
/* ===== PROCESS SECTION ===== */
.aura-process {
  background: #faf7f4;
}

/* title */
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #3e2d1f;
  margin: 15px 0;
}

/* desc */
.process-desc {
  color: #7a6a5c;
  max-width: 650px;
  margin: auto;
}

/* wrapper border lines */
.process-wrapper {

  margin-top: 20px;
}

/* box */
.process-box {
  padding: 50px 35px 10px 35px;
  border-right: 1px solid #d8cec4;

  min-height: 250px;
  position: relative;
}

/* remove last border */
.process-box:last-child {
  border-right: none;
}

/* highlight box (step 2) */
.process-box:hover {
  background: #f3ece6;
}

/* number */
.process-number {
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #6d4c41;
  margin-bottom: 10px;
}

/* title */
.process-box h5 {
  font-family: 'Playfair Display', serif;
  color: #3e2d1f;
}

/* text */
.process-box p {
  color: #7a6a5c;
  font-size: 15px;
}

/* button */
.process-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  text-decoration: none;
  color: #3e2d1f;
  transition: .3s;
}

.process-btn:hover {
  background: var(--secondary-color);
  color: #000;
}

/* ================= MOBILE ================= */
@media(max-width:991px) {

  .process-box {
    border-right: none;
    text-align: center;
  }

  .process-title {
    font-size: 30px;
  }

}

/*---------- Home V2 Process End --------------------*/

/*========================= home.HTML END ==========================*/

/*========================= about.HTML Start ========================*/

/*---------- About Mission & Vision Start ---------------------*/
/* ===== SECTION ===== */
.aura-mission-vision-v2 {
  background: #f8f5f2;
  padding: 90px 0;
  overflow: hidden;
}

/* ===== CONTENT ===== */
.mv2-content {
  max-width: 520px;
}

.mv2-tag {
  letter-spacing: 3px;
  font-size: 13px;
  color: #c8a96a;
  font-weight: 600;
}

.mv2-content h2 {
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  color: #1f2b3e;
  margin: 12px 0 18px;
}

.mv2-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mv2-content ul {
  list-style: none;
  padding: 0;
}

.mv2-content ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #374151;
}

.mv2-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e88c9a;
  font-weight: bold;
}

/* ===== IMAGE STYLE ===== */
.mv2-img-wrap {
  position: relative;
  max-width: 520px;
  margin: auto;
}

.mv2-main {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* overlay small image */
.mv2-small {
  position: absolute;
  width: 220px;
  right: -30px;
  bottom: -30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* vision left */
.mv2-small.left {
  left: -30px;
  right: auto;
}

/* ===== TABLET ===== */
@media (max-width:991px) {

  .mv2-content {
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
  }

  .mv2-img-wrap {
    margin-bottom: 40px;
  }

  /* keep double image in tablet */
  .mv2-small {
    width: 180px;
    right: -15px;
    bottom: -15px;
  }

  .mv2-small.left {
    left: -15px;
  }

  .mv2-content {
    max-width: 700px;
  }
}

/* ===== MOBILE ===== */
@media (max-width:575px) {

  .aura-mission-vision-v2 {
    padding: 60px 0;
  }

  .mv2-content h2 {
    font-size: 26px;
  }

  .mv2-content p {
    font-size: 15px;
  }

  /* hide small image mobile */
  .mv2-small {
    display: none;
  }

  .mv2-img-wrap {
    max-width: 100%;
  }
}

/* FIX ✔ icon alignment only mobile & tablet */
@media (max-width:991px) {

  .mv2-content {
    text-align: center;
  }

  .mv2-content ul {
    display: inline-block;
    /* center block */
    text-align: left;
    /* keep icon + text together */
    margin: auto;
  }

  .mv2-content ul li {
    padding-left: 28px;
    font-size: 15px;
  }

  .mv2-content ul li::before {
    left: 0;
    top: 0;
  }

}

/*---------- About Mission & Vision End -----------------------*/

/*---------- Our story Start ----------------------------------*/
/* ===== OUR STORY ===== */
.aura-story {
  background: #FFF;
  padding: 60px 0;
}

/* left image */
.story-img-wrap {
  position: relative;
  padding: 20px;
}

.story-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.story-small {
  position: absolute;
  width: 200px;
  border-radius: 16px;
  right: -10px;
  bottom: -20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* right content */
.story-content {
  padding-left: 30px;
}

.story-tag {
  color: #c8a96a;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}

.story-content h2 {
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  color: #1f2b3e;
  margin-bottom: 18px;
  line-height: 1.2;
}

.story-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* list */
.story-content ul {
  list-style: none;
  padding: 0;
}

.story-content ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #374151;
}

.story-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e88c9a;
  font-weight: bold;
}

/* =========================
   TABLET FIX
========================= */
@media(max-width:991px) {
  .aura-story {
    padding: 30px 0;
  }

  .story-content {
    padding-left: 0;
    text-align: center;
    margin-top: 40px;
  }

  .story-content ul {
    display: inline-block;
    text-align: left;
  }

  .story-img-wrap {
    margin-bottom: 30px;
  }

  .story-small {
    width: 170px;
    right: 0;
  }
}

/* =========================
   MOBILE FIX PERFECT
========================= */
@media(max-width:575px) {

  .aura-story {
    padding: 30px 0;
  }

  .story-content h2 {
    font-size: 28px;
  }

  /* small image remove mobile */
  .story-small {
    display: none;
  }

  .story-img-wrap {
    padding: 0;
  }

  .story-content ul {
    display: inline-block;
    text-align: left;
  }
}

/*---------- Our Story End ------------------------------------*/

/*---------- testimonial Start ------------------------------------*/
.aura-testimonial {
  background: #f8f5f2;
  padding: 60px 0;
  color: #fff;
}

.aura-testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.aura-testimonial-left {
  flex: 1;
  min-width: 320px;
}

.aura-subtitle {
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.aura-testimonial-left h2 {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.aura-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
}

.aura-testimonial-card {
  background: #FFF;
  color: #1A1A1A;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  max-width: 520px;
}

.aura-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 30px;
  border: 4px solid #1E3A5F;
}

.aura-quote {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 20px;
}

.aura-testimonial-card h4 {
  margin: 0;
  font-size: 18px;
}

.aura-testimonial-card span {
  font-size: 14px;
  color: #777;
}

.aura-nav {
  position: absolute;
  right: 25px;
  bottom: 25px;
}

.aura-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  margin-left: 10px;
  background: #eee;
  cursor: pointer;
  font-size: 18px;
  transition: .3s;
}

.aura-nav button:hover {
  background: #E7BBAA;
  color: #fff;
}

.aura-testimonial-right {
  flex: 1;
  text-align: center;
  min-width: 320px;
}

.aura-testimonial-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* MOBILE */
@media(max-width:768px) {
  .aura-testimonial-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .aura-testimonial-right {
    display: none;
  }

  .aura-desc {
    text-align: center;
    max-width: 700px;
  }

  .aura-testimonial-card {
    margin: auto;
  }

  .aura-testimonial-left h2 {
    font-size: 30px;
  }
}

/* 🔥 EXTRA SMALL MOBILE FIX */
@media(max-width:480px) {

  .aura-testimonial {
    padding: 30px 15px;
    margin: auto;
  }

  .aura-testimonial-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .aura-desc {
    font-size: 15px;
    padding: 0 10px;
  }

  .aura-testimonial-card {
    padding: 30px 20px 70px;
    border-radius: 18px;
  }

  /* profile image fix */
  .aura-user img {
    width: 55px;
    height: 55px;
    left: 50%;
    transform: translateX(-50%);
    top: -28px;
  }

  .aura-quote {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .aura-testimonial-card h4 {
    font-size: 17px;
    text-align: center;
  }

  .aura-testimonial-card span {
    display: block;
    text-align: center;
    font-size: 13px;
  }

  /* arrows center bottom */
  .aura-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }

  .aura-nav button {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* right image spacing */
  .aura-testimonial-right img {
    margin-top: 20px;
    border-radius: 16px;
  }

}

/* =====================================
   ULTRA SMALL DEVICE FIX (320px)
===================================== */
@media (max-width:360px) {

  .aura-testimonial {
    padding: 25px 12px !important;
  }

  /* wrapper full width */
  .aura-testimonial-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .aura-testimonial-left {
    min-width: 100% !important;
    width: 100% !important;
    padding: 0;
  }

  /* TITLE */
  .aura-testimonial-left h2 {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 6px;
  }

  .aura-desc {
    font-size: 14px;
    padding: 0 6px;
  }

  /* CARD MAIN FIX */
  .aura-testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 16px 75px !important;
    border-radius: 16px;
    margin-top: 40px;
  }

  /* profile image center */
  .aura-user img {
    width: 52px;
    height: 52px;
    left: 50%;
    transform: translateX(-50%);
    top: -26px;
  }

  /* text */
  .aura-quote {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 5px;
  }

  .aura-testimonial-card h4 {
    font-size: 16px;
    text-align: center;
  }

  .aura-testimonial-card span {
    font-size: 12px;
    text-align: center;
    display: block;
  }

  /* BUTTON CENTER FIX */
  .aura-nav {
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    right: auto;
  }

  .aura-nav button {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  /* remove right image completely */
  .aura-testimonial-right {
    display: none !important;
  }

}

/*---------- testionial END ------------------------------------*/

/*---------- Team Section Start ---------------------------------*/
.aura-team {
  background: #FFF;
  padding: 60px 0;
}

.team-sub {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 600;
}

.team-title {
  font-size: 42px;
  color: #000;
  margin: 10px 0;
}

.team-desc {
  color: #555;
  max-width: 650px;
  margin: auto;
}

.team-card {
  background: #f8f5f2;
  padding: 70px 25px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: .4s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid var(--secondary-color);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  margin-top: 55px;
  font-size: 20px;
  color: #1A1A1A;
}

.team-card span {
  font-size: 14px;
  color: #777;
}

.team-social {
  margin: 15px 0;
}

.team-social i {
  margin: 0 8px;
  cursor: pointer;
  color: #555;
  transition: .3s;
}

.team-social i:hover {
  color: #E88C9A;
}

.team-btn {
  border-top: 1px solid #bbb;
  color: var(--secondary-color);
  padding-top: 12px;
  font-size: 14px;
  cursor: pointer;
}

.team-card a {
  text-decoration: none;
  color: inherit;
}

.aura-team .row {
  row-gap: 30px;
  /* main fix */
}

/* extra mobile spacing */
@media(max-width:575px) {
  .aura-team .row {
    row-gap: 30px;
  }
}

/* MOBILE */
@media(max-width:768px) {
  .team-title {
    font-size: 30px;
  }

  .team-desc {
    font-size: 15px;
    padding: 0 15px;
    max-width: 700px;
  }
}

/*---------- Team Section END -----------------------------------*/

/*========================= about.HTML END ========================*/

/*========================= Service.HTML Start ====================*/
/* section */
.services-section {
  padding: 80px 0;
}

.sec-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sec-title span {
  color: #b48b55;
}

.sec-sub {
  text-align: center;
  color: #777;
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;

}

/* tabs */
.tabs {
  text-align: center;
  margin-bottom: 40px;
}

.tabs button {
  padding: 12px 20px;
  border: none;
  background: #eee;
  margin: 6px;
  border-radius: 10px;
  cursor: pointer;
}

.tabs button.active {
  background: #fff;
  border-bottom: 3px solid #b48b55;
}

/* card */
.treat-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* image center */
.treat-img {
  width: 120px;
  height: 90px;
  margin: auto;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* title */
.treat-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* desc */
.treat-desc {
  color: #777;
  font-size: 14px;
}

/* info */
.treat-info {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 14px;
  margin: 15px 0;
}

/* list */
.treat-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.treat-list li {
  margin-bottom: 8px;
  color: #555;
}

.treat-list li:before {
  content: "✔";
  color: #c9a86a;
  margin-right: 8px;
}

/* bottom */
.treat-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price-ser {
  background: #f3f3f3;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.book-btn-ser {
  border: 1px solid #c9a86a;
  background: none;
  padding: 8px 18px;
  border-radius: 25px;
  transition: .3s;
}

.book-btn-ser:hover {
  background: #c9a86a;
  color: #fff;
}

/* mobile only */
@media(max-width:575px) {

  .treat-bottom {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
  }

  .price-ser {
    font-size: 13px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .book-btn-ser {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

}

/* responsive */
@media(max-width:768px) {
  .sec-title {
    font-size: 28px;
  }
}

/*========================= Service.HTML END ======================*/

/*========================= Service-detail.HTML Start ==============*/

/* MAIN */
.service-section {
  padding: 70px 0 20px 0;
}

/* sticky card */
.sticky-card {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 26px;
  font-weight: 600;
  color: #c9a86a;
}

.book-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #c9a86a;
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}

.book-btn:hover {
  background: #b89555;
}

/* benefits */
.benefit {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c9a86a;
}

/* before after */
.before-after img {
  width: 100%;
  border-radius: 15px;
}

/* faq */
.accordion-button:not(.collapsed) {
  background: #c9a86a;
  color: #fff;
}

/* mobile */
@media(max-width:768px) {
  .service-hero h1 {
    font-size: 30px;
  }

  .sticky-card {
    margin-top: 40px;
  }
}

.benefit-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: .3s;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #f5f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #C8A96A;
}

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
}


/* mobile */
@media(max-width:768px) {
  .benefit-card {
    padding: 25px 20px;
    text-align: center;
  }

  .sticky-card {
    margin-top: 0px;
  }

  .service-section {
    padding-top: 30px;
  }
}

/* mobile only gap */
@media(max-width:575px) {

  .before-after .col-md-6 {
    margin-bottom: 15px;
    /* gap between images */
  }

  .service-section h2,
  p,
  h3,
  h4 {
    text-align: center;
  }

  .price {
    text-align: center;
  }

  .sticky-card {
    margin-top: 0px;
  }
}

/* booking form */
.booking-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e3e3e3;
  font-size: 14px;
}

.booking-form .form-control:focus {
  border-color: #C8A96A;
  box-shadow: none;
}

.booking-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #C8A96A;
  color: #fff;
  font-weight: 600;
  transition: .3s;
}

.booking-form button:hover {
  background: #b89555;
}

/*------------------------Service detail FAQ START -------------------*/

/*---- FAQ Sevtion ----*/

.faq-section {
  padding: 0 0 40px 0;
  background: #f7f7f7;
}

.faq-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* accordion */
.accordion-item {
  border: none;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 14px !important;
  overflow: hidden;
  max-width: 850px;
  transition: .4s;
}

.accordion-item:hover {
  transform: translateY(-5px);
}

.accordion-button {
  background: #eee;
  font-weight: 500;
  padding: 20px;
  border-radius: 14px !important;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #C8A96A;
  color: #000;
}

.accordion-body {
  background: #fff;
  padding: 22px;
  color: #555;
}

/* arrow */
.accordion-button::after {
  filter: brightness(0);
}

/* mobile */
@media(max-width:768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-section {
    padding-top: 30px;
  }
}

/*------------------------Service detail FAQ END ---------------------*/

/*------------------------Service detail Pricing Start ---------------*/
.aura-pricing {
  padding: 40px 0;
  background: #FFF;
  text-align: center;
}
.pricing-logo{
  width: 100px;
  margin-bottom: 10px;
}
.pricing-title {
  font-size: 40px;
  font-weight: 700;
}

.pricing-title span {
  color: #E88C9A;
}

.pricing-sub {
  color: #777;
  margin-top: 10px;
}

/* card */
.price-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: .3s;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card h4 {
  color: #E88C9A;
  font-weight: 600;
}

.price-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}

.price-card h2 span {
  font-size: 16px;
  color: #888;
}

/* list */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-card ul li {
  margin-bottom: 10px;
  color: #444;
}

.price-card ul .no {
  color: #aaa;
  text-decoration: line-through;
}

/* button */
.price-card button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #E88C9A;
  color: #fff;
  font-weight: 600;
  transition: .3s;
}

.price-card button:hover {
  background: #C8A96A;
}

/* active card */
.price-card.active {
  border: 2px solid #E88C9A;
  transform: scale(1.05);
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E88C9A;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
}

/* mobile */
@media(max-width:768px) {
  .pricing-title {
    font-size: 28px;
  }

  .price-card.active {
    transform: none;
  }
}

/*------------------------Service detail Pricing END -----------------*/

/*========================= Service-detail.HTML End ================*/

/*========================= Blog.HTML Start ========================*/
/* ===== SECTION ===== */
.blog-section {
  background: #f7f4f2;
  padding: 30px 0 80px 0;
}

/* title */
.blog-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.blog-desc {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

/* search */
.blog-search {
  max-width: 450px;
}

.blog-select {
  max-width: 220px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* image */
.blog-img {
  height: 180px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content */
.blog-content {
  padding: 18px;
}

.blog-content h5 {
  font-size: 17px;
  font-weight: 600;
}

.blog-content p {
  font-size: 14px;
  color: #777;
}

.read-btn {
  color: #d98c95;
  font-weight: 600;
  text-decoration: none;
}

/* badge */
.blog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* CENTER IF SINGLE */
#blogContainer {
  justify-content: center;
}

/*========================= Blog.HTML End ==========================*/

/*========================= Blog-detail.HTML Start ========================*/
/* ===== LAYOUT ===== */
.blog-section {
  padding: 60px 0;
}

/* ===== BLOG CARD ===== */
.blog-main {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-main img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
}

.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.blog-main p {
  color: var(--text);
  line-height: 1.8;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

/* categories */
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  color: #555;
}

.cat-list li:hover {
  color: var(--primary);
}

/* search */
.search-input {
  border-radius: 30px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}

/* top posts */
.top-post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.top-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

/* insta */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.insta-grid img {
  width: 100%;
  border-radius: 8px;
}

/* ===== COMMENT ===== */
.comment-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comment-box h4 {
  margin-bottom: 15px;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
}

.btn-aura {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: .4s;
}

.btn-aura:hover {
  background: var(--secondary-color);
  color: #000;
  transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
  .blog-title {
    font-size: 24px;
  }
}

/* desktop show */
.desktop-only {
  display: block;
}

.mobile-only {

  display: none;
}

@media(max-width:991px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* ===== PREMIUM CATEGORY FILTER ===== */

.bd-filter-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

/* label */
.bd-filter-label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #1f2937;
  font-size: 15px;
}

/* wrap */
.bd-select-wrap {
  position: relative;
}

/* select */
.bd-select {
  width: 100%;
  padding: 14px 45px 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #eee;
  font-size: 15px;
  background: #fafafa;
  appearance: none;
  transition: .3s;
}

/* hover */
.bd-select:hover {
  border-color: #E88C9A;
  background: #fff;
}

/* focus glow */
.bd-select:focus {
  outline: none;
  border-color: #E88C9A;
  box-shadow: 0 0 0 3px rgba(232, 140, 154, 0.15);
  background: #fff;
}

/* icon */
.bd-select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
}

/* ===== MOBILE FULL WIDTH ===== */
@media(max-width:768px) {

  .bd-filter-card {
    width: 100%;
    border-radius: 16px;
    padding: 18px;
  }

  .bd-select {
    width: 100%;
    font-size: 16px;
    padding: 16px;
  }

}

/*========================= Blog-detail.HTML End ==========================*/

/*=============================================================================================================
                                        Main All Page Style END
================================================================================================================*/

/*--------------- GLOBAL CTA SECTION ---------*/
.cta-image-section {
  position: relative;
  padding: 20px 0;
  background: url('../img/cta-bg.png') right center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 23, 24, 0.705) 0%, rgba(35, 39, 43, 0.404) 45%, rgba(255, 255, 255, 0) 100%);
}

/* content above overlay */
.cta-image-section .container {
  position: relative;
  z-index: 2;
}

/* title */
.cta-image-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

/* text */
.cta-image-text {
  color: #dbeafe;
  font-size: 17px;
  max-width: 600px;
}

/* buttons */
.cta-btn-main {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.cta-btn-main:hover {
  background: var(--secondary-color);
  color: #000;
  transform: translateY(-3px);
}

.cta-btn-outline {
  border: 2px solid var(--secondary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
}

.cta-btn-outline:hover {
  background: var(--secondary-color);
  color: #000;
}

/* trust text */
.cta-trust {
  color: #fde68a;
  font-size: 14px;
  margin-top: 10px;
}

/* ===============================
   CTA TABLET FIX (768px)
================================*/
@media (max-width:991px) {

  .cta-image-section {
    background: url('../img/ss-cta.png')right center /cover no-repeat;
    text-align: center;
  }

  .cta-overlay {
    background: rgba(0, 0, 0, 0.45);
    ;
  }

  .cta-image-title {
    font-size: 34px;
    line-height: 1.3;
    max-width: 700px;
    margin: auto;
  }

  .cta-image-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin: 15px auto 0;
  }

  .cta-image-section .btn {
    margin-top: 10px;
  }

  .cta-trust {
    margin-top: 15px;
    display: block;
  }
}

/* mobile */
@media(max-width:575px) {
  .cta-image-section {
    background: url('https://i.pinimg.com/736x/d4/c0/a7/d4c0a7b755c797b8e9f2552b02287cc3.jpg')right bottom /cover no-repeat;
    padding: auto;
  }

  .cta-image-title {
    font-size: 22px;
  }

  .cta-image-section {
    text-align: center;
  }

  .cta-image-text {
    font-size: 15px;
  }

  .cta-btn-main {
    display: none;
  }
}

/*-------------- CTA END --------------*/
/*==================================
            Contact page
  =====================================*/
.v3-contact-section {
  background: var(--light-bg);
  padding: 50px 30px;
  font-family: 'Poppins', sans-serif;
}

.v3-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

/* ===== LEFT SIDE ===== */
.v3-left {
  width: 54%;
}

.v3-tag {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.v3-left h2 {
  font-size: 48px;
  color: #000;
  margin-bottom: 15px;
}

.v3-desc {
  color: #6b6b8a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.v3-info-box {
  display: flex;
  gap: 20px;
  text-align: center;
}

.v3-card {
  background: #fff;
  padding: 25px;
  width: 250px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(106, 90, 205, 0.1);
  transition: .3s;
}

.v3-card:hover {
  transform: translateY(-6px);
}

.v3-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.v3-card h4 {
  margin-bottom: 6px;
  color: #2D2A55;
  font-size: 19px;
}

.v3-card p {
  font-size: 15px;
  color: #333;
}

.v3-card span {
  font-size: 14px;
  color: #777;
}

/* ===== FORM ===== */
.v3-right {
  margin: auto;
  justify-content: center;
  width: 50%;
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(106, 90, 205, 0.15);
}

.v3-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.v3-right input,
.v3-right textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #f7f1f1;
  outline: none;
  font-size: 15px;
}

.v3-right textarea {
  border-radius: 8px;
  height: 140px;
  resize: none;
  margin-bottom: 20px;
}

.v3-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 35px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: .3s;
}

.v3-btn:hover {
  color: var(--secondary-color);
  transform: translateY(-5px);
  color: #000;
}

/* ===== MAP ===== */
.v3-map {
  margin-top: 70px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== MOBILE ===== */
@media(max-width:991px) {
  .v3-container {
    flex-direction: column;
  }

  .v3-left,
  .v3-right {
    width: 100%;
  }

  .v3-left h2 {
    font-size: 34px;
  }

  .v3-row {
    flex-direction: column;
  }
}

/* ===== MOBILE FIX START ===== */
@media(max-width:575px) {

  /* section padding */
  .v3-contact-section {
    padding: 60px 20px;
  }

  /* container full width */
  .v3-container {
    flex-direction: column;
    gap: 35px;
  }

  /* left side */
  .v3-left {
    width: 100%;
    text-align: center;
  }

  .v3-left h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .v3-desc {
    font-size: 15px;
    padding: 0 10px;
  }

  /* info cards center */
  .v3-info-box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .v3-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
    text-align: center;
  }

  /* form fix */
  .v3-right {
    width: 100%;
    padding: 25px 18px;
    border-radius: 20px;
  }

  .v3-row {
    flex-direction: column;
    gap: 12px;
  }

  .v3-right input,
  .v3-right textarea {
    font-size: 14px;
    padding: 14px;
  }

  /* button full width */
  .v3-btn {
    width: 100%;
    font-size: 15px;
  }

  /* map fix */
  .v3-map {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
  }

  .v3-map iframe {
    height: 260px;
    border-radius: 16px;
  }
}

/* ===== MOBILE FIX END ===== */

/*==================================
            Contact page END
  =====================================*/