

@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 img{
    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:88vh;
    position:relative;
    overflow:hidden;
}

.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:inherit;

    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:#fff;
    font-size:18px;
    letter-spacing:1px;
    margin-bottom:30px;
}

.bodycare-content h2{
    color:#fff;
    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 #fff;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    border-radius:8px;
    transition:0.3s;
}

.service-btn:hover{
    background:#fff;
    color:#ff6f91;
}


/* 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:#fff;
    font-size:22px;
    letter-spacing:3px;
    display:flex;
    align-items:center;
    gap:15px;
    white-space:nowrap;
}

.label span{
    width:120px;
    height:3px;
    background:#fff;
    display:block;
    position:relative;
}

.label span::after{
    content:'';
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    width:15px;
    height:15px;
    background:#fff;
    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;
    }
}

  

    /* Floral Decoration */
    .trial-section {
      position: relative;
      background: #e8c9cc;
      /* border-radius: 40px; */
      padding: 80px 90px;
      overflow: hidden;
      /* width: 1000px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      min-height: 700px;
    }

    .flower {
      position: absolute;
      top: -80px;
      left: -25px;
      width: 320px;
      z-index: 2;
    }

    .trial-content {
      width: 50%;
      z-index: 3;
    }

    .trial-content h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: 60px;
      line-height: 0.95;
      color: #9d0000;
      font-weight: 400;
      margin-top: 100px;
      margin-bottom: 30px;
    }

    .trial-content p {
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      line-height: 1.7;
      color: #3f2f2f;
      max-width: 700px;
      margin-bottom: 40px;
    }

    /* Button */
    .book-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;

      padding: 18px 30px;
      border: 1.8px solid #a80000;
      border-radius: 50px;

      color: #a80000;
      text-decoration: none;
      font-size: 28px;
      font-weight: 600;

      transition: 0.3s ease;
      background: transparent;
    }

    .book-btn:hover {
      background: #a80000;
      color: white;
    }

    .book-btn .icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #a80000;
      color: white;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 18px;
      transition: 0.3s ease;
    }

    .book-btn:hover .icon {
      background: white;
      color: #a80000;
    }

    /* Image Area */
    .trial-images {
      position: relative;
      width: 38%;
      height: 520px;
    }

    .img-back,
    .img-front {
      position: absolute;
      width: 430px;
      height: 520px;
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .img-back {
      transform: rotate(-8deg);
      top: 40px;
      left: 0;
      z-index: 1;
    }

    .img-front {
      transform: rotate(8deg);
      top: 0;
      left: 60px;
      z-index: 2;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .trial-content h1 {
        font-size: 80px;
      }

      .img-back,
      .img-front {
        width: 340px;
        height: 430px;
      }
    }

    @media (max-width: 992px) {
      .trial-section {
        flex-direction: column;
        padding: 70px 40px;
      }

      .trial-content,
      .trial-images {
        width: 100%;
      }

      .trial-content h1 {
        font-size: 70px;
      }

      .trial-images {
        display: flex;
        justify-content: center;
        height: 500px;
      }
    }

    @media (max-width: 600px) {
      body {
        padding: 15px;
      }

      .trial-section {
        border-radius: 25px;
        padding: 60px 25px;
      }

      .trial-content h1 {
        font-size: 52px;
      }

      .trial-content p {
        font-size: 18px;
      }

      .book-btn {
        font-size: 20px;
        padding: 14px 22px;
      }

      .img-back,
      .img-front {
        width: 240px;
        height: 320px;
      }

      .img-front {
        left: 30px;
      }

      .flower {
        width: 180px;
      }
    }
  
/* style.css */



.gallery-section{
  width: 100%;
  padding: 60px 40px 80px;
}

/* Title */
.section-title{
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2{
  font-size: 52px;
  color: #1d2a44;
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

/* Divider */
.divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.divider span{
  width: 60px;
  height: 2px;
  background: #1d2a44;
}

.divider i{
  color: #ff7aa2;
  font-size: 14px;
}

.section-title p{
  max-width: 650px;
  margin: auto;
  color: #7c7c7c;
  line-height: 1.7;
  font-size: 15px;
}

/* Gallery Grid */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Gallery Item */
.gallery-item{
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* 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 ease;
}

/* Icon */
.overlay i{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid white;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 24px;

  transform: scale(0.5);
  transition: 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover img{
  transform: scale(1.1);
}

.gallery-item:hover .overlay{
  opacity: 1;
}

.gallery-item:hover .overlay i{
  transform: scale(1);
}

/* Responsive */
@media(max-width:1200px){

  .gallery-grid{
    grid-template-columns: repeat(3,1fr);
  }

}

@media(max-width:768px){

  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .section-title h2{
    font-size: 40px;
  }

}

@media(max-width:550px){

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-section{
    padding: 50px 20px;
  }

  .gallery-item img{
    height: 280px;
  }

}


.footer{
  background: #f7f2f4;
  padding: 50px 70px;
   /* max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px */
}

/* Container */
.con{
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Logo */
.logo img{
  width: 240px;
  margin-bottom: 28px;
}

/* Paragraph */
.footer-box p{
  color: #666a77;
  line-height: 1.9;
  font-size: 17px;
}

/* Headings */
.footer-box h3{
  font-size: 28px;
  color: #363c4a;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1dfe2;
  font-family: "Playfair Display", serif;
}

/* Social Icons */
.social-icons{
  margin-top: 30px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  gap: 14px;
}

.social-icons a{
  width: 46px;
  height: 46px;
  border: 1px solid #bdbdc2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #666a77;
  text-decoration: none;
  transition: 0.4s;
}

.social-icons a:hover{
  background: #ff8fb1;
  border-color: #ff8fb1;
  color: white;
  transform: translateY(-4px);
}

/* Links */
.footer-links{
  list-style: none;
}

.footer-links li{
  margin-bottom: 20px;
}

.footer-links a{
  text-decoration: none;
  color: #666a77;
  font-size: 17px;
  transition: 0.3s;
}

.footer-links a i{
  margin-right: 12px;
  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;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.post h4:hover{
  color: #ff8fb1;
}

.post span{
  color: #7d7f89;
  font-size: 16px;
}

.post span i{
  margin-right: 10px;
}

/* Hours */
.hours-text{
  margin-bottom: 28px;
}

.hours-list{
  list-style: none;
}

.hours-list li{
  margin-bottom: 18px;
  color: #666a77;
  font-size: 18px;
}

.hours-list strong{
  color: #5b6170;
}

.hours-list span{
  margin-left: 10px;
}

/* Responsive */
@media(max-width:1200px){

  .container{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .container{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer{
    padding: 70px 25px;
  }

  .footer-box h3{
    font-size: 24px;
  }

}
