

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    
}


.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* TOPBAR */
.topbar{
    border-bottom:1px solid #eee;
    padding:15px 0;
    background:#fff;
}

.topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.left-info{
    display:flex;
    gap:40px;
    color:#444;
    font-size:16px;
}

.left-info i{
    color:#ff6f91;
    margin-right:8px;
}

.right-icons{
    display:flex;
    gap:25px;
    font-size:18px;
    color:#333;
}

.right-icons i{
    cursor:pointer;
    transition:0.3s;
}

.right-icons i:hover{
    color:#ff6f91;
}

/* NAVBAR */
.navbar{
    padding:20px 0;
    background:#fff;
}

.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo {
    color: #ff6f91;
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* width:220px; */
}

nav ul{
    display:flex;
    list-style:none;
    gap:50px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-size:20px;
    transition:0.3s;
}

nav ul li a:hover,
.active{
    color:#ff6f91;
}

.appointment-btn{
    background:#ff6f91;
    color:#fff;
    border:none;
    padding:18px 35px;
    border-radius:5px;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.appointment-btn:hover{
    background:#ff4f7b;
}

/* HERO SECTION */
.hero{
    background:#eef1f4;
    /* min-height:65vh; */
    position:relative;
    overflow:hidden;
    /* border: 2px solid red; */
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-text{
    width:50%;
    padding-top:120px;
    padding-left:90px;
}

.hero-text h1{
    font-size:76px;
    line-height:1.2;
    color:#2d3142;
    margin-bottom:40px;
    font-weight:700;
}

.hero-text p{
    font-size:30px;
    color:#5c6470;
    line-height:1.7;
    margin-bottom:40px;
}

.hero-text button{
    background:#ff6f91;
    color:#fff;
    border:none;
    padding:22px 45px;
    font-size:28px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.hero-text button:hover{
    background:#ff4f7b;
    transform:translateY(-3px);
}

.hero-image{
    width:45%;
    text-align:right;
}

.hero-image img{
    width:100%;
    max-width:700px;
}

/* SOCIAL AREA */
.social-area{
    position:absolute;
    left:30px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
}

.line{
    width:2px;
    height:80px;
    background:#555;
}

.social-icons{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.social-icons a{
    width:55px;
    height:55px;
    border:2px solid #777;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#444;
    font-size:20px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ff6f91;
    color:#fff;
    border-color:#ff6f91;
}

/* SLIDER DOTS */
.slider-dots{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:20px;
}

.slider-dots span{
    width:45px;
    height:4px;
    background:#666;
    display:block;
}

.active-dot{
    background:#ff6f91 !important;
}

/* RESPONSIVE */
@media(max-width:1200px){

    .hero-text h1{
        font-size:55px;
    }

    .hero-text p{
        font-size:22px;
    }

    nav ul{
        gap:25px;
    }
}

@media(max-width:992px){

    .topbar-content,
    .nav-content,
    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .left-info{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        margin:30px 0;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-text{
        width:100%;
        padding:80px 20px 40px;
    }

    .hero-image{
        width:100%;
        text-align:center;
    }

    .hero-image img{
        max-width:500px;
    }

    .social-area{
        display:none;
    }
}

@media(max-width:576px){

    .hero-text h1{
        font-size:40px;
    }

    .hero-text p{
        font-size:18px;
    }

    .hero-text button,
    .appointment-btn{
        padding:15px 25px;
        font-size:18px;
    }

    nav ul{
        gap:18px;
    }

    nav ul li a{
        font-size:16px;
    }
}



/* ========================= */
/* SERVICES SECTION */
/* ========================= */

.services-section{
    background:#f5eeee;
    padding:120px 0;
    position:relative;
}

.services-wrapper{
    display:flex;
    justify-content:space-between;
    gap:80px;
    align-items:flex-start;
}

/* LEFT SIDE */

.price-box{
    width:50%;
}

.price-box h2{
    font-size:38px;
    color:#2f3545;
    margin-bottom:25px;
}

.price-box p{
    font-size:18px;
    color:#5d6678;
    line-height:1.2;
    margin-bottom:40px;
}

.service-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:28px;
}

.service-item span{
    font-size:18px;
    color:#596275;
    white-space:nowrap;
}

.service-item .line{
    width:80%;
    height:1px;
    background:#d8d8d8;
}

.book-btn{
    margin-top:40px;
    padding:20px 45px;
    border:none;
    background:#ff6f91;
    color:#fff;
    font-size:24px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.book-btn:hover{
    background:#ff4f7b;
    transform:translateY(-3px);
}


/* RIGHT SIDE */

.before-after{
    width:50%;
}

.before-after h2{
    font-size:58px;
    color:#2f3545;
    margin-bottom:30px;
}

.image-box{
    position:relative;
    overflow:hidden;
}

.image-box img{
    width:100%;
    display:block;
}

.middle-line{
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#fff;
    transform:translateX(-50%);
}

.slider-circle{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:#ff6f91;
    border:4px solid #fff;
}


/* SCROLL TOP BUTTON */

.scroll-top{
    position:fixed;
    right:35px;
    bottom:35px;
    width:65px;
    height:65px;
    background:#ff6f91;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
    transition:0.3s;
    z-index: 999;
}

.scroll-top:hover{
    transform:translateY(-5px);
    background:#ff4f7b;
}


/* RESPONSIVE */

@media(max-width:992px){

    .services-wrapper{
        flex-direction:column;
    }

    .price-box,
    .before-after{
        width:100%;
    }

    .price-box h2,
    .before-after h2{
        font-size:42px;
    }

    .service-item span{
        font-size:20px;
    }

    .price-box p{
        font-size:18px;
    }
}

@media(max-width:576px){

    .price-box h2,
    .before-after h2{
        font-size:34px;
    }

    .service-item{
        gap:10px;
    }

    .service-item span{
        font-size:16px;
    }

    .book-btn{
        width:100%;
    }
}

/* ========================= */
/* APPOINTMENT SECTION */
/* ========================= */

.appointment-section{
    background:#f8f8f8;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.appointment-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT IMAGE */

.appointment-image{
    width:38%;
}

.appointment-image img{
    width:100%;
    display:block;
}


/* RIGHT SIDE */

.appointment-content{
    width:52%;
}

.appointment-content h2{
    font-size:40px;
    color:#2f3545;
    margin-bottom:25px;
    line-height:1.2;
}

.appointment-content p{
    font-size:18px;
    color:#5f6778;
    line-height:1.3;
    margin-bottom:40px;
}


/* FORM */

.form-row{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.input-box{
    width:100%;
}

.input-box label{
    display:block;
    margin-bottom:12px;
    font-size:19px;
    color:#5f6778;
}

.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    border:1px solid #d9d9d9;
    padding:18px;
    font-size:17px;
    background:#fff;
    outline:none;
    border-radius:4px;
    transition:0.3s;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    border-color:#ff6f91;
}

.input-box textarea{
    height:220px;
    resize:none;
}

.full-width{
    margin-bottom:35px;
}


/* BUTTON */

.submit-btn{
    padding:20px 45px;
    border:none;
    background:#ff6f91;
    color:#fff;
    font-size:24px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#ff4f7b;
    transform:translateY(-3px);
}


/* SCROLL BUTTON */

.scroll-top-btn{
    position:fixed;
    right:35px;
    bottom:35px;
    width:65px;
    height:65px;
    background:#ff6f91;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.scroll-top-btn:hover{
    background:#ff4f7b;
    transform:translateY(-5px);
}


/* RESPONSIVE */

@media(max-width:992px){

    .appointment-wrapper{
        flex-direction:column;
    }

    .appointment-image,
    .appointment-content{
        width:100%;
    }

    .appointment-content h2{
        font-size:42px;
    }

    .appointment-content p{
        font-size:18px;
    }

    .form-row{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:576px){

    .appointment-content h2{
        font-size:34px;
    }

    .input-box label{
        font-size:18px;
    }

    .submit-btn{
        width:100%;
        font-size:20px;
    }
}

/* ========================= */
/* BODYCARE SECTION */
/* ========================= */

.bodycare-section{

    /* IMPORTANT */
    /* background change hobe na */
    background:rgb(247, 242, 244);

    padding:20px 30px 0px 0px;
    overflow:hidden;
    position:relative;
}

/* PURPLE OVERLAY */

.bodycare-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:#ff6f91ad;
    z-index:-1;
}

.bodycare-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}


/* LEFT SIDE */

.bodycare-content{
    width:50%;
}

.small-title{
    display:block;
    color:#777;
    font-size:18px;
    letter-spacing:1px;
    margin-bottom:30px;
}

.bodycare-content h2{
    color:#666;
    font-size:62px;
    line-height:1.2;
    font-weight:400;
    margin-bottom:50px;
    font-family:serif;
}


/* BUTTONS */

.bodycare-buttons{
    display:flex;
    gap:25px;
}

.service-btn{
    display:inline-block;
    padding:18px 40px;
    border:2px solid #444;
    color:#666a77;
    text-decoration:none;
    font-size:24px;
    border-radius:8px;
    transition:0.3s;
}

.service-btn:hover{
    background:#ff6f91;
    color:#fff;
    border: none;
}


/* RIGHT SIDE */

.bodycare-image{
    width:50%;
    position:relative;
}

.bodycare-image img{
    width:100%;
    max-width:650px;
    display:block;
    margin:auto;
}


/* LABELS */

.label{
    position:absolute;
    color:#363c4a;
    font-size:22px;
    letter-spacing:3px;
    display:flex;
    align-items:center;
    gap:15px;
    white-space:nowrap;
}

.label span{
    width:120px;
    height:3px;
    background:#444;
    display:block;
    position:relative;
}

.label span::after{
    content:'';
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    width:15px;
    height:15px;
    background:#444;
    border-radius:50%;
}

/* POSITION */

.label1{
    top:18%;
    left:-10%;
}

.label2{
    top:35%;
    right:-12%;
}

.label3{
    bottom:20%;
    right:-15%;
}

.label4{
    bottom:5%;
    right:-8%;
}


/* RESPONSIVE */

@media(max-width:1200px){

    .bodycare-content h2{
        font-size:60px;
    }

    .label{
        font-size:18px;
    }
}

@media(max-width:992px){

    .bodycare-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .bodycare-content,
    .bodycare-image{
        width:100%;
    }

    .bodycare-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .bodycare-content h2{
        font-size:48px;
    }

    .label{
        position:static;
        justify-content:center;
        margin:20px 0;
    }

    .bodycare-image{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
}

@media(max-width:576px){

    .bodycare-content h2{
        font-size:38px;
    }

    .service-btn{
        font-size:18px;
        padding:15px 25px;
    }

    .label{
        font-size:14px;
        letter-spacing:1px;
    }

    .label span{
        width:60px;
    }
}

  

  /* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  background:#fff;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container,
.con{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:0 20px;
}


/* =========================
   PROCESS SECTION
========================= */

.process-section{
  padding:80px 0;
  background:#f7efef;
}

.swiper{
  width:100%;
  overflow:hidden;
}

.swiper-wrapper{
  display:flex;
}

.swiper-slide{
  width:100%;
  flex-shrink:0;
}

.process-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  padding:40px;
  flex-wrap:wrap;
}

.circle-img{
  width:260px;
  height:420px;
  border-radius:200px;
  overflow:hidden;
}

.circle-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.process-content{
  width:320px;
}

.process-content h2{
  font-size:60px;
  color:#a30000;
}

.process-content h4{
  font-size:30px;
  margin:10px 0;
}

.process-content p{
  line-height:1.8;
  color:#555;
}

.swiper-pagination-bullet{
  background:#a30000;
}
/* =========================
   TRIAL SECTION
========================= */

.trial-section{
  position:relative;
  background:#e8c9cc;
  padding:100px 80px;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* Flower */

.flower{
  position:absolute;
  top:-80px;
  left:-30px;
  width:320px;
  z-index:1;
  pointer-events:none;
}

/* LEFT CONTENT */

.trial-content{
  width:50%;
  position:relative;
  z-index:2;
}

.trial-content h1{
  font-size:78px;
  line-height:1;
  color:#970000;
  font-family:"Cormorant Garamond", serif;
  font-weight:500;
  margin-bottom:30px;
}

.trial-content p{
  font-size:22px;
  line-height:1.9;
  color:#443333;
  margin-bottom:40px;
  max-width:700px;
}

/* BUTTON */

.book-btn{
  display:inline-flex;
  align-items:center;
  gap:15px;

  padding:18px 30px;
  border:2px solid #a40000;
  border-radius:50px;

  color:#a40000;
  font-size:24px;
  font-weight:600;

  transition:0.4s;
}

.book-btn:hover{
  background:#a40000;
  color:#fff;
}

.book-btn .icon{
  width:38px;
  height:38px;
  border-radius:50%;

  background:#a40000;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  transition:0.4s;
}

.book-btn:hover .icon{
  background:#fff;
  color:#a40000;
}


/* RIGHT IMAGES */

.trial-images{
  width:45%;
  position:relative;
  height:600px;
}

.img-back,
.img-front{
  position:absolute;

  width:420px;
  height:540px;

  object-fit:cover;

  border-radius:12px;

  box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

/* Back Image */

.img-back{
  left:0;
  top:50px;
  transform:rotate(-8deg);
  z-index:1;
}

/* Front Image */

.img-front{
  right:0;
  top:0;
  transform:rotate(8deg);
  z-index:2;
}


/* =========================
   GALLERY SECTION
========================= */

.gallery-section{
  padding:100px 20px;
  background:#fff;
}

/* TITLE */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:58px;
  color:#1f2c44;
  margin-bottom:18px;
  font-family:"Playfair Display", serif;
}

/* Divider */

.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:20px;
}

.divider span{
  width:70px;
  height:2px;
  background:#1f2c44;
}

.divider i{
  color:#ff8fb1;
  font-size:16px;
}

.section-title p{
  max-width:700px;
  margin:auto;

  color:#767676;
  font-size:17px;
  line-height:1.8;
}


/* GALLERY GRID */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* ITEM */

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:340px;
  object-fit:cover;
  transition:0.5s;
}

/* Overlay */

.overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.45);

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  transition:0.5s;
}

/* Icon */

.overlay i{
  width:70px;
  height:70px;

  border:2px solid #fff;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:24px;

  transform:scale(0.5);
  transition:0.4s;
}

/* Hover */

.gallery-item:hover img{
  transform:scale(1.1);
}

.gallery-item:hover .overlay{
  opacity:1;
}

.gallery-item:hover .overlay i{
  transform:scale(1);
}


/* =========================
   FOOTER
========================= */

.footer{
  background:#f7f2f4;
  padding:90px 20px;
}

.con{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}


/* Paragraph */

.footer-box p{
  color:#666a77;
  line-height:1.9;
  font-size:17px;
  margin-top:25px;

}

/* Heading */

.footer-box h3{
  font-size:28px;
  color:#363c4a;
  margin-bottom:28px;
  padding-bottom:18px;
  border-bottom:1px solid #ddd;

  font-family:"Playfair Display", serif;
}

/* Social */

.social-icons{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.social-icons a{
  width:46px;
  height:46px;

  border:1px solid #ccc;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#666;
  transition:0.4s;
}

.social-icons a:hover{
  background:#ff8fb1;
  color:#fff;
  border-color:#ff8fb1;
  transform:translateY(-4px);
}

/* Links */

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:18px;
}

.footer-links a{
  color:#666a77;
  font-size:17px;
  transition:0.3s;
}

.footer-links a i{
  margin-right:10px;
  font-size:14px;
}

.footer-links a:hover{
  color:#ff8fb1;
  padding-left:5px;
}

/* Posts */

.post{
  margin-bottom:28px;
}

.post h4{
  font-size:18px;
  color:#404553;
  margin-bottom:10px;
  transition:0.3s;
  cursor:pointer;
}

.post h4:hover{
  color:#ff8fb1;
}

.post span{
  font-size:15px;
  color:#777;
}

.post span i{
  margin-right:8px;
}

/* Hours */

.hours-text{
  margin-bottom:28px;
}

.hours-list{
  list-style:none;
}

.hours-list li{
  margin-bottom:18px;
  color:#666a77;
  font-size:17px;
}

.hours-list strong{
  color:#444;
}

.hours-list span{
  margin-left:10px;
}


/* =========================
   RESPONSIVE
========================= */

/* 1200px */

@media(max-width:1200px){

  .trial-content h1{
    font-size:62px;
  }

  .img-back,
  .img-front{
    width:340px;
    height:460px;
  }

  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .con{
    grid-template-columns:repeat(2,1fr);
  }

}


/* 992px */

@media(max-width:992px){

  .trial-section{
    flex-direction:column;
    padding:80px 40px;
  }

  .trial-content,
  .trial-images{
    width:100%;
  }

  .trial-content{
    text-align:center;
  }

  .trial-content p{
    margin:auto auto 40px;
  }

  .trial-images{
    height:520px;
  }

  .img-back{
    left:50%;
    transform:translateX(-60%) rotate(-8deg);
  }

  .img-front{
    right:50%;
    transform:translateX(60%) rotate(8deg);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

}


/* 768px */

@media(max-width:768px){

  .trial-section{
    padding:70px 25px;
  }

  .trial-content h1{
    font-size:52px;
  }

  .trial-content p{
    font-size:18px;
  }

  .book-btn{
    font-size:20px;
    padding:14px 22px;
  }

  .trial-images{
    height:430px;
  }

  .img-back,
  .img-front{
    width:260px;
    height:360px;
  }

  .section-title h2{
    font-size:42px;
  }

  .con{
    grid-template-columns:1fr;
    gap:40px;
  }

}


/* 576px */

@media(max-width:576px){

  .flower{
    width:160px;
    top:-30px;
    left:-20px;
  }

  .trial-content h1{
    font-size:42px;
  }

  .trial-images{
    height:350px;
  }

  .img-back,
  .img-front{
    width:180px;
    height:260px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item img{
    height:300px;
  }

  .footer{
    padding:70px 20px;
  }

  .footer-box h3{
    font-size:24px;
  }

  .section-title p{
    font-size:15px;
  }

}
