@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--main-font-family);
}

:root {
  --main-font-family: "Albert Sans", sans-serif;
  --button-background-color: #D81637;
  --primary-black-color: #222222;
}

body,
html{
    overflow-x: clip;
}

p, li {
  font-family: var(--main-font-family);
}

h1 {
  text-transform: capitalize;
}

h2, h3 {
  color: #000 !important;
}

ul {
  padding-left: 0 !important;
}



.btn-main{
  background-color: var(--button-background-color) !important;
  padding: 10px !important;
  font-weight: 600 !important;
  color: #fff !important;
  border: 1px solid var(--button-background-color) !important;
  border-radius: 25px !important;
  text-decoration: none !important;
}

.btn-main:hover {
    color: #000;
}

/* Top Bar */
.top-bar {
  background: var(--primary-black-color);
  height: 40px;
  z-index: 9999;
  font-size: 14px;
}

/*.hero-section{*/
/*    margin-top: -120px;*/
/*}*/

.cart-icon i{
    font-size: 1.4rem;
}

span.shopping-cart-count{
    width: 1.1rem;
    height: 1.1rem;
    background: var(--button-background-color);
    font-size: 10px;
    font-weight: 600;
    top: -3px;
    right: -3px;
}

.text-white{
  font-size: 1rem;
}

.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;        /* fixed width */
  height: 30px;       /* fixed height */
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: 10px;
}

header{
    transition: all 0.3s ease;
}

header .hero-top{
    z-index: 99;
    background: #323232;
}

header.header-active .hero-top.position-relative{
    position: fixed !important;
}

header.header-active .hero-top{
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-black-color);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: headerdown 0.5s;
}

@keyframes headerdown {
    0% {
        transform: translateY(-100%);
    }
    
    100% {
        transform: translateY(0);
    }
}

.icon-reward{
    padding: 8px 20px;
    cursor: pointer;
}

.icon-reward img{
    width: 1.4rem;
    transition: all 0.3s ease;
}

.icon-reward:hover img{
    transform: scale(1.1) rotate(360deg);
    transition: all 0.3s ease;
}

.rfr-a-frnd{
    border: 1px solid #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rfr-a-frnd:hover{
    background: #fff;
    transition: all 0.2s ease;
}

.rfr-a-frnd:hover b.text-white{
    color: #000 !important;
    transition: all 0.2s ease;
}

.res-header-nav-backdrop{
    background: rgba(0, 0, 0, 0.7);
    visibility: visible;
    opacity: 1;
    z-index: 9999;
    transition: all 0.1s ease;
}

.res-header-nav-backdrop-hide{
    visibility: hidden;
    opacity: 0;
    z-index: -9999;
    transition: all 0.1s ease;
}

.res-header-nav{
    background: var(--primary-black-color);
    right: 0;
    z-index: 99999;
    transition: right 0.3s ease;
}

.res-header-nav-hide{
    right: -200%;
    transition: right 0.3s ease;
}

.res-header-nav ul li{
    list-style: none;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.res-header-nav ul li a{
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
}

.res-header-nav ul li a:focus,
.res-header-nav ul li a:focus-visible{
    border: none;
    outline: 0;
    box-shadow: none;
}

img.offcanvas-logo{
    width: 10rem;
}

.logo img{
  width: 9rem;
}

.book-btn {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
}

.book-btn:hover {
  background: #fff;
  color: #000;
}

.brand-slider {
  overflow: hidden;
  position: relative;
}

/* Moving Track */
.brand-track {
  display: flex;
  width: calc(200px * 10);
  animation: scroll 15s linear infinite;
}

/* Each Logo */
.brand-item {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 140px;
  opacity: 0.7;
  transition: 0.3s;
}

.brand-item img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tabs */
.seond-section .tab-btn {
  /*border: 2px solid var(--button-background-color);*/
  margin: 5px;
  border-radius: 30px;
  overflow: hidden;
  background: transparent !important;
  transition: 0.3s;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  text-transform: uppercase;
}

.seond-section .tab-btn.active{
  color: #fff;
}

.seond-section .tab-btn:hover{
    transform: translateY(-5px);
    transition: 0.2s ease-in-out;
}

.seond-section .tab-btn img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.seond-section .tab-btn span{
    padding: 0.5rem 1rem;
    display: block;
}

.seond-section .tab-btn.active span{
    background: var(--button-background-color);
}

/* Side Menu */
.side-menu {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.side-menu li{
    border-top: 1px solid var(--button-background-color);
    border-bottom: 1px solid var(--button-background-color);
}

.side-menu li {
  padding: 10px 2rem;
  font-size: 1.2rem;
  color: #000;
  cursor: pointer;
  font-weight: 600;
}

.side-menu li:first-child{
    border-top: 1px solid #d1d1d1;
}

.side-menu li.active{
  color: #fff;
}

.side-menu li:hover{
  background: var(--button-background-color);
  transition: 0.2s ease-in-out;
  color: #fff;
}

.side-menu li.active{
    background: var(--button-background-color);
    color: #fff;
    transition: 0.2s ease-in-out;
}

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

.tab-btn.active{
background:#000;
color:#fff;
}

.side-content{
display:none;
}

.side-content.active{
display:block;
}

.side-menu li{
cursor:pointer;
}

.side-menu li.active{
font-weight:600;
}





/* Card Layout */
.service-card {
  background: var(--primary-black-color);
}

/* Image */
.service-img img {
  width: 300px;
  height: 100%;
  object-fit: cover;
}

/* Content */
.service-content {
  flex: 1;
  padding: 30px;
  position: relative;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px !important;
}

/* Dotted Line */
.dots {
  flex: 1;
  border-bottom: 1px dotted #aaa;
  margin: 0 10px;
}

.secondbutton{
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* third-section start */

.btn-blue{
  background-color: var(--button-background-color);
  padding: 10px;
  font-weight: 800;
  color: #fff;
  border: 1px solid var(--button-background-color);
  border-radius: 20px;
}

.btn-blue:hover {
    transform: scale(1.05);
}

.third-section {
  background-color: #fff;
  font-family: var(--main-font-family);
}

.image-card {
  position: relative;
  overflow: hidden;
 }

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: grayscale();
}

.image-card:hover img {
  transform: scale(1.05);
  filter: initial;
   transition: all 0.4s ease;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  width: 70%;
  font-size: 41px;
  font-weight: 500;
}

/* third-section end */

/* fourth-section start */

.fourth-section {
  background: url('../images/scissor.png')  no-repeat;
  font-family: var(--main-font-family);
}

.fourth-section h2 {
  font-size: 40px;
}

 .fourth-section p{
    color: black !important;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box .icon img {
  width:3rem;
  color: #ff3b3b;
  margin-bottom: 10px;
}

.feature-box h6 {
  font-weight: 600;
  margin-top: -52Px;
  margin-left: 77px;
}

.feature-box p {
  font-size: 15px;
  color: #000;
  margin: 0;
  margin-left: 77px;
}

.image-wrapper img {
      margin-left: 18%;
}

/* fourth-section end */

/* fifth-section start */

.fifth-section {
  background: #fff;
  font-family: var(--main-font-family);
}

.stats-section {
  background: #efefef;
}

.stat-item {
  position: relative;
  padding: 20px 10px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #ddd;
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #D81637;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

/* Text */
.stat-item h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 15px;
  color: #000;
  letter-spacing: 1px;
  margin: 0;
}

/* fifth-section end */


.sixth-section {
 
  /*background: url('../images/sixsecbackground.png') center/cover no-repeat;*/
  overflow: hidden;
}

/* LEFT SIDE */
.left-side {
  position: relative;
  min-height: 500px;
}

.left-side::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  top: 0;
  left: 0;
}

.left-side .content {
  position: relative;
  padding: 60px 60px;
}
.sixlefcont{
  margin: 2rem 0;
  font-size: 1.2rem;
}

.bjhasdd button 
{
    padding:13px 40px;
    background-color:#d81637;
    color:white;
    font-weight:500;
    border:none;
    border-radius:8px;
}

/* Steps */
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
  
.dot {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 6px;
}

/* RIGHT SIDE */
.right-side {
  background-color: #f5f5f5;
}
/* Title */

.form-box{
  padding: 48px 60px;
}

.form-title {
  font-weight: 700;
  margin-bottom: 2.1rem;
}

/* Labels */
.form-label {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* Inputs */
.form-control,
.form-select {
  height: 48px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  background-color: #fff;
}

textarea.form-control {
  height: auto;
  resize: none;
}

/* Focus */
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: red;
}

.seventh-section {
  padding: 60px 0;
}
.seventh-section .main-img {
  border-radius: 10px;
  overflow: hidden;
}
.seventh-section .main-img img {
  width: 96%;
  height: 100%;
  object-fit: cover;
}
.seventh-section .title {
  font-size: 42px;
  font-weight: 700;
}
.seventh-section .subtitle {
  color: #666;
  margin-bottom: 31px;
  font-size: 19px;
}
.seventh-section .feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.seventh-section .feature::before {
  content: "";
  width: 3px;
  height: 100%;
  background: #d6001c;
  margin-right: 15px;
}
.seventh-section .feature img {
  width: 80px;
  height: 71px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}
.seventh-section .feature h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;

}
.seventh-section .feature p {
  font-size: 17px;
  color: #000;
  margin: 0;
}
.contact-btn {
  border: 2px solid #d6001c;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #d6001c;
  color: #fff;
}
.scissor {
  position: absolute;
  right: 30px;
  bottom: -20px;
  width: 120px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .scissor {
    display: none;
  }
}

.eight-section {
  background: url('../images/bgimg.png') no-repeat cover center;
   padding: 70px 0;
  font-family: 'Segoe UI', sans-serif;
}
.faq-title {
  font-size: 42px;
  font-weight: 700;
}
.faq-line {
  width: 50px;
  height: 4px;
  background: #e11d2e;
  margin: 20px 0;
}
.faq-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.custom-accordion .accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #f7f7f7;
}
.custom-accordion .accordion-button {
  background: #f7f7f7;
  font-weight: 500;
  box-shadow: none;
  position: relative;
}
.custom-accordion .accordion-button::after {
  display: none;
}
.custom-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
}
.custom-accordion .accordion-button:not(.collapsed)::before {
  content: "−";
  color: #e11d2e;
}
.custom-accordion .accordion-body {
  background: #fff;
  color: #555;
}
.footer {
  background: #111;
  color: #aaa;
  padding-top: 50px;
  position: relative;
}
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.footer-logo h2 {
  color: #fff;
  font-weight: 700;
}
.footer-logo span {
  color: #e11d2e;
}
.footer-logo small {
  color: #aaa;
  font-size: 12px;
}
.subscribe-box {
  display: flex;
  max-width: 450px;
  width: 100%;
  justify-content: end;
}
.subscribe-box input {
  flex: 1 !important;
  padding: 14px !important;
  border: none !important;
  background: #eee !important;
  outline: none !important;
}
.subscribe-btn {
  position: relative;
  background: linear-gradient(45deg, #e11d2e, #ff2e3f);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}
.subscribe-btn::after {
  content: "";
    position: absolute;
    top: 0;
    right: 18px;
    width: 125px;
    height: 100%;
    color: #fff;
    /*background: #000;*/
    clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
}
.subscribe-btn span {
  position: relative;
  z-index: 2;
}
.footer-main h6 {
  color: #fff;
  margin-bottom: 20px;
}
.footer-main ul {
  list-style: none;
  padding: 0;
}
.footer-main ul li {
  margin-bottom: 10px;
}
.footer-main ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}
.footer-main ul li a:hover {
  color: #fff;
}
.news-item {
  display: flex;
  margin-bottom: 15px;
}
.news-item img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 5px;
}
.news-item p {
  margin: 0;
  font-size: 13px;
  color: #fff;
}
.news-item span {
  font-size: 12px;
  color: #777;
}
.contact-line {
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}
.footer-bottom span {
  color: #e11d2e;
}

/* inner page hero sections */

.about-page .hero-section {
  position: relative;
  overflow: hidden;
}

.about-page .hero-section {
  padding: 15rem 0;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutus-banner-section.png') center/cover no-repeat;
}

.about-page .menu-icon {
  margin-left: 2rem;
}

header .menu-icon img{
    cursor: pointer;
} 

.about-page .logo {
  margin: 1.5rem 0 0 10rem;
}

.about-page .book-btn {
  margin-right: 2rem;
}

.about-page .hero-content {
  position: relative;
}

.about-page .hero-content h2,
.about-page .hero-heading {
  font-size: 5vw !important;
  color: #fff !important;
  text-align: center;
}

/* about page */

.our-story-section {
  padding: 60px 48px;
  background-color: #fff;
}

.story-container {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-text {
  flex: 1;
}

.story-subtitle {
  color: #c0392b;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}

.story-heading {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.story-para {
  line-height: 1.75;
  margin: 0 0 20px 0;
  color: #000 !important;
}

.story-para:last-child {
  margin-bottom: 0;
}

.story-image {
  flex: 0 0 420px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* contact page */

.contact-title {
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.contact-info {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-info p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.contact-page .form-title {
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-form label {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.message-box {
  height: 150px !important;
  resize: none;
}

/* FAQ Page */
.faqbanner-section {
  /*background: url('../images/faqbannerimg.png') center/cover no-repeat;*/
  position: relative;
  padding: 15rem 0;
}

.faqheading {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faqheading h1 {
  font-size: 5vw !important;
  color: #fff !important;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  position: relative;
}

.faq-item input {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  font-size: 1.3rem;
}

.faq-question .icon::before {
  content: "+";
  font-size: 1.7rem;
  transition: 0.3s;
  font-weight: 600;
  color: var(--button-background-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #666;
}

.faq-answer p{
  font-size: 1.1rem;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.faq-item input:checked + .faq-question .icon::before {
  content: "−";
}

.image-box {
  width: 100%;
}

.bg-shape {
  position: absolute;
  width: 80%;
  height: 90%;
  background: #D81637;
  top: 0;
  left: 20px;
  z-index: 1;
  border-radius: 25px;
}

.faq-page .main-img {
  position: relative;
  z-index: 2;
  margin: 4rem 0 0 6rem;
  border-radius: 25px;
}

.subscribe-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 3rem 0 0 3rem;
}

.subscribe-card h4 {
  font-weight: 600;
}

.subscribe-card p {
  font-size: 1rem;
  color: #666;
}

.subscribe-wrapper {
  max-width: 500px;
  margin: auto;
}

.subscribe-form {
  position: relative;
  width: 100%;
}

.subscribe-form input {
  width: 100%;
  padding: 18px 160px 18px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  font-size: 16px;
  outline: none;
}

.subscribe-form button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: var(--button-background-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #c51828;
}




















.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-title {
    font-size: 36px;
    font-weight: 700;
    color: #b36b80;
}

.map-subtitle {
    color: #666;
    font-size: 15px;
}

.location-box {
    background: #fff;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-left: 4px solid #c97d92;
    transition: 0.3s;
}

.location-box:hover {
    transform: translateY(-4px);
}

.location-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.location-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.location-box a {
    font-size: 13px;
    color: #c97d92;
    text-decoration: none;
    font-weight: 600;
}

.map-box {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.location-box {
    cursor: pointer;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: 0.3s;
}

.location-box:hover {
    background: #f5f5f5;
}

.location-box.active {
    background: #000;
    color: #fff;
}


.google-review-section {
    padding: 70px 0;
    background: #f8f8f8;
}

.google-review-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.review-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.review-heading p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}


.dkenkmiowjeore{
    text-align: right;
}

.review-summary {
    background: #fff;
    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 20px;
}

.offcnvas-nav-drpdwn-hide{
    height: auto;
    visibility: visible;
    opacity: 1;
    transition: height 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.offcnvas-nav-drpdwn-hide{
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: height 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.nav-drpdwn i{
    cursor: pointer;
}

.dkjwqkjeiqhqe ul li{
    border-bottom: 1px solid #3a3a3a;
    transition: 0.2s ease-in-out;
}

.dkjwqkjeiqhqe ul li:hover{
    transform: translateY(-2px);
    transition: 0.2s ease-in-out;
}

.offcnvas-nav-drpdwn li:last-child{
    border-bottom: 0 !important;
}

.offcanvas-close-btn{
    top: 2%;
    right: 5%;
}

.offcanvas-close-btn i{
    cursor: pointer;
}

.summary-left h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.summary-left p {
    margin: 8px 0 0;
    color: #666;
    font-size: 14px;
}

.stars {
    color: #fbbc04;
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.review-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.review-btn:hover {
    background: #333;
    color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h4 {
    margin: 0;
    font-size: 17px;
    color: #111;
}

.review-user span {
    font-size: 13px;
    color: #777;
}

.google-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #4285f4;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.review-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 991px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .review-heading h2 {
        font-size: 28px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-summary {
        padding: 20px;
    }

    .summary-left h3 {
        font-size: 34px;
    }
}



/* Responsive */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .story-image {
    flex: none;
    width: 100%;
    height: 240px;
  }

  .story-heading {
    font-size: 28px;
  }
}

.strengths-section {
  padding: 60px 48px;
  background-color: #fff;
  text-align: center;
}

.strengths-container {
  max-width: 1100px;
  margin: 0 auto;
}

.strengths-heading {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.strengths-subtext {
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 48px auto;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 48px;
}

.strength-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.strength-card p {
  line-height: 1.7;
  margin: 0;
}

.strength-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #D81637;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.strength-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* makes icons white */
}

.get-in-touch-btn {
  display: inline-block;
  background-color: #D81637;
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.5s ease;
}

.get-in-touch-btn:hover {
  transform: scale(1.1);
  color: #000000;
  border: 2px #D81637 solid;
  background-color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strengths-heading {
    font-size: 28px;
  }
}

.ts {
    background: url('../images/Our-Team-Bg.png') center/cover no-repeat;
    padding: 70px 50px;
    font-family: sans-serif;
}

.ts-head {
  text-align: center;
  margin-bottom: 36px;
}

.ts-h {
  font-size: 42px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 12px;
}

.ts-p {
  line-height: 1.8;
  max-width: 60%;
  margin: 0 auto;
  color: #fff;
}

.ts-body {
  display: grid;
  grid-template-columns: 365px 1fr;
  /* background: #111; */
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
}

.main-img-wrap {
  position: relative;
  overflow: hidden;
  /* background: #0d0d0d; */
}

.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 12px;
}

.img-a,
.img-b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ts-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
}

.top-section {
  flex: 1;
}

.name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.m-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.nav-btns {
  display: flex;
  gap: 8px;
}

.nb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #555;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 1;
}

.nb:hover {
  border-color: #D81637;
  background: #D81637;
}

.nb:active {
  transform: scale(.92);
}

.m-bio {
  color: #fff;
  line-height: 1.8;
}

.thumbs-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.thumb {
  flex: 1;
  height: 18vw;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: border-color .25s, transform .2s;
  position: relative;
}

.thumb:hover {
  transform: translateY(-2px);
}

.thumb.active {
  border-color: #D81637;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter .3s;
}

.thumb.active img,
.thumb:hover img {
  filter: grayscale(0%);
}

/* CLIP-PATH wipe animations — direction aware */
@keyframes wipeInR {
  from {
    clip-path: inset(0 100% 0 0)
  }

  to {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes wipeOutL {
  from {
    clip-path: inset(0 0 0 0)
  }

  to {
    clip-path: inset(0 0 0 100%)
  }
}

@keyframes wipeInL {
  from {
    clip-path: inset(0 0 0 100%)
  }

  to {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes wipeOutR {
  from {
    clip-path: inset(0 0 0 0)
  }

  to {
    clip-path: inset(0 100% 0 0)
  }
}

.wipe-in-r {
  animation: wipeInR .5s cubic-bezier(.77, 0, .18, 1) forwards;
}

.wipe-out-l {
  animation: wipeOutL .5s cubic-bezier(.77, 0, .18, 1) forwards;
}

.wipe-in-l {
  animation: wipeInL .5s cubic-bezier(.77, 0, .18, 1) forwards;
}

.wipe-out-r {
  animation: wipeOutR .5s cubic-bezier(.77, 0, .18, 1) forwards;
}

/* Info text fade+slide */
.info-wrap {
  overflow: hidden;
}

.info-inner {
  transition: opacity .35s, transform .35s;
}

.info-inner.out-l {
  opacity: 0;
  transform: translateX(-24px);
}

.info-inner.out-r {
  opacity: 0;
  transform: translateX(24px);
}

.info-inner.in {
  opacity: 1;
  transform: translateX(0);
}

.testimonial {
  background: #f5f5f5;
  padding: 80px 60px;
}

.t-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.t-tag {
  color: var(--button-background-color);
  margin-bottom: 10px;
}

.t-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.t-desc {
  color: #000;
  line-height: 1.8;
  max-width: 320px;
}

.t-btns {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.t-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #e63946;
  color: #fff;
  cursor: pointer;
}

/* RIGHT */
.t-right {
  overflow: hidden;
}

.t-slider {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* CARD */
.t-card {
  width: 260px;
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.t-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
}

.t-text {
  color: #000;
  margin-bottom: 10px;
}

.t-stars {
  color: #f4b400;
  font-size: 14px;
}

.t-name {
  font-weight: 600;
  margin-top: 6px;
}

.t-role {
  font-size: 12px;
  color: #888;
}

/* rohit css end */

/* strat blog  css  *//* strat blog  css  */
/* strat blog  css  *//* strat blog  css  */

.blo-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.jpg') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}

.blo-section2 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/booking.jpg') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}

.blo-section3 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/schedule.jpg') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}

.blo-section4 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bspoke-franchise2.png') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}

.blo-section5 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/woman-getting-her-hair-cut-beauty-salon.jpg') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}

.blo-section6 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/Screenshot (67).png') center/cover no-repeat;
  position: relative;
  padding: 15rem 0;
}



.blo-content h2 {
    font-size: 5vw !important;
    color: #ffffff !important;
}
.blog-section {
  padding: 80px 0;
}

.blog-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 60px;
}

.blog-img-wrapper {
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
height: 487px;
  object-fit: cover;
}

.top-square {
  position: absolute;
    top: 7px;
    left: 40%;
    width: 34px;
    height: 30px;
  background: #e11d2e;
}

.blog-content-card {
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
      width: 533px;
}

.blog-date {
  font-size: 11px;
  letter-spacing: 3px;
  color: #aaa;
  display: block;
  margin-bottom: 15px;
}

.blog-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}

.blog-text {
  color: #000;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e11d2e;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 992px) {
  .blog-content-card {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  .blog-img-wrapper img {
    height: auto;
  }

  .blog-title2 {
    font-size: 28px;
  }
}
.blog-section {
  padding: 70px 0;
}

.blog-img img {
      width: 100%;
    height: 515px;
    object-fit: cover;
    margin-top: -56px;
}

.blog-card {
 background: #f9f9f9;
    padding: 35px;
    border: 1px solid #ddd;
    position: absolute;
    right: 132px;
    top: 45%;
    transform: translateY(-50%);
    width: 541px;

  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.blog-date {
  font-size: 11px;
  letter-spacing: 3px;
  color: #999;
  display: block;
  margin-bottom: 12px;
}

.blog-title2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.blog-text {
  color: #000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e11d2e;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 992px) {
  .blog-card {
    position: relative;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  .blog-img img {
    height: auto;
  }
}   
.xblog-sec-wrap {
 font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}
.xblog-img-box img {
   width: 100%;
height: 487px;
  object-fit: cover;
  display: block;
}

.xblog-card-box {
  background: #f9f9f9;
    padding: 35px;
    border: 1px solid #ddd;
    position: absolute;
    right: 132px;
    top: 50%;
    transform: translateY(-50%);
    width: 541px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.xblog-date-txt {
  font-size: 11px;
  color: #000;
  display: block;
}

.xblog-date-txt i,
.rb-date i{
    color: var(--button-background-color);
}

.xblog-heading-txt {
  font-size: 23px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 1.4;
  margin-bottom: 16px;
}

.xblog-para-txt {
  color: #000;
  line-height: 1.75;
  margin-bottom: 22px;
}

.xblog-read-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d62828;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 992px) {
  .xblog-card-box {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 25px;
  }

  .xblog-img-box img {
    height: auto;
  }
}
.rb-section {
  background: #eeeeee;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.rb-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.rb-card img {
  width: 100%;
  height: 324px;
  object-fit: cover;
  display: block;
}

.rb-content {
  padding-top: 15px;
}

.rb-date {
  font-size: 11px;
  color: #000;
  display: block;
}

.rb-title {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}

.rb-text {
  color: #000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rb-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e11d2e;
  text-decoration: none;
  font-weight: 500;
}

.rb-card:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}
.stats-sec {
  background: #f5f5f5;
  padding: 60px 0;
}

.stats-item {
  position: relative;
  padding: 20px;
}

.stats-icon {
  font-size: 40px;
  color: #222;
  margin-bottom: 10px;
}

.stats-number {
 color: #e11d2e !important;
  font-size: 42px;
  font-weight: 700;
}

.stats-text {
  font-size: 12px;
  letter-spacing: 1px;
  color: #444;
  margin: 0;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #ccc;
}

@media (max-width: 768px) {
  .stats-item::after {
    display: none;
  }
}
.sal1{
      height: 62px;
    width: 62px;
}

/* end blog css *//* end blog css */
/* end blog css *//* end blog css */



/* start nail extension css *//*start nail extension css */
/* start nail extension css *//*start nail extension  css */

/* Nail Extension Page */

.nailextenbanner-section {
  background: url('../images/nailextenbannerimg.png') center/cover no-repeat;
  position: relative;
  height: 67vh;
}
.faqheading h4{
  margin-bottom: 2rem;
  font-weight: 400;
}

.arsecond-section{
  margin: 4rem 0 8rem 0;
}

/* LEFT COLLAGE */
.image-collage {
    position: relative;
}

/* Circle Image */
.circ-img {
    position: absolute;
    bottom: 10%;
    right: 6%;
}

/* Experience Box */
.experience-box {
    position: absolute;
    bottom: -18%;
    left: 38%;
}

/* RIGHT SIDE */
.title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.desc {
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Info Box */
.info-box {
    background: #fff;
    padding: 10px;
    border-left: 4px solid var(--button-background-color);
    gap: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-box img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.nailthird-section {
  background: url('../images/nailexfourthsecimg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}


/* Titles */
.main-title {
  font-size: 38px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-top: -1rem;
}
.sub-text {
  max-width: 600px;
  margin: auto;
  color: #666;
  position: relative;
  z-index: 2;
}

.nailthiright{
  margin-top: 4rem;
}

/* Feature */
.featul {
  margin-bottom: 30px;
  margin-right: 12rem;
  margin-top: 2.5rem;
}

.nailthiright{
  margin-top: 4rem;
}

/* Feature Text */
.featul h6 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.featul p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.featur {
  margin-bottom: 30px;
  margin-left: 12rem;
  margin-top: 2.5rem;
}

/* Feature Text */
.featur h6 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.featur p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* Buttons */

.nalififsec{
  margin-top: -6rem;
  margin-bottom: 8rem;
}

.btn-outline-dark {
  padding: 12px 30px;
  border: 2px dotted;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
}

.nailexfourth-section {
  background: url('../images/nailextenthirdsecimg.png') center/cover no-repeat;
  padding: 100px 0;
  position: relative;
  color: #fff;
}

/* DARK OVERLAY */
.nailexfourth-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* Ensure content above overlay */
.nailexfourth-section .container {
  position: relative;
  z-index: 2;
}

.top-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
  font-size: 22px;
}

/* TEXT */
.small-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.titleform {
  font-size: 40px;
  font-weight: 700;
}

/* FORM BOX */
.appointment-box {
  background: linear-gradient(135deg, #e21d2f, #d91c3a) !important;
  padding: 40px;
  margin-top: 30px;
  border-radius: 5px;
}

/* INPUT BOX */
.input-box {
  position: relative;
}

.input-box input,
.input-box select {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

/* ICON INSIDE INPUT */
.input-box img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* BUTTON */
.btn-appoint {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  background: transparent;
  font-weight: 600;
  transition: 0.3s;
}

.btn-appoint:hover {
  background: #fff;
  color: var(--button-background-color)
}

/* REMOVE DEFAULT SELECT ARROW */
select {
  appearance: none;
}

.nailexsixthsec-section{
  margin: 4rem 0;
}
/* Each Item */
.stat-itm {
  padding: 20px;
}

/* Number */
.stat-itm h2 {
  font-size: 40px;
  color: var(--button-background-color) !important;
  font-weight: 700;
  margin: 10px 0;
}

/* Text */
.stat-itm p {
  font-size: 14px;
  color: #333;
  letter-spacing: 1px;
  margin: 0;
}

/* Vertical Divider */
.bordr-start {
  border-left: 5px solid #c9c6c6 !important;
}




/* end nail extension css *//*end nail extension  css */
/* end nail extension css *//*end nail extension  css */


/* start hair extension css *//*  start extension  css */
/* start hair extension css *//* start hair extension  css */


/* Extention Css Start */

.hero-section-extention {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hair-extension-hero.png') center/cover no-repeat;
  position: relative;
  height: 77vh;
}

.hero-content-extention h2 {
  margin: auto;
  width: 35%;
  font-size: 5vw !important;
  margin-top: 6vw;
  color: #ffffff !important;
}

.extension-section {
  background: #f5f5f5;
  padding: 80px 0;
  margin: auto;
  width: 90%;
}

.ext-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ext-left .sub-text {
  font-size: 11px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 25px;
}

.explore-btn {
  display: inline-block;
  background: #D81637;
  color: #fff;
  padding: 10px 28px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.explore-btn:hover {
  background: #fff;
  color: #D81637;
  border: 2px solid #D81637;
}

.before-after {
  display: flex;
  gap: 20px;
}

/* IMAGE BOX HOVER (before/after) */
.img-box {
    width: 16rem;
    height: 21rem;
    border-radius: 12px;
    overflow: hidden;
    background: #c89c6c;
    position: relative;
    cursor: pointer;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* overlay */
.img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.4s ease;
}

/* hover effect */
.img-box:hover img {
  transform: scale(1.08);
}

.img-box:hover::after {
  opacity: 1;
}


/* RIGHT BIG IMAGE HOVER */
.ext-right {
  overflow: hidden;
  border-radius: 6px;
}

.ext-right img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* zoom + slight lift */
.ext-right:hover img {
  transform: scale(1.05);
}

.ext-right:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ext-left {
    text-align: center;
    margin-bottom: 40px;
  }

  .before-after {
    justify-content: center;
  }

  .ext-right img {
    height: auto;
  }
}

.shop-category {
    background: #f3f3f3;
    padding: 80px 0;
}

.shop-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.shop-sub {
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 60px;
}

/* CATEGORY ITEM */
.category-item {
    text-align: center;
    margin-bottom: 30px;
}

/* CIRCLE IMAGE */
.circle-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.circle-img::hover{
  transform: scale(1.15);
}

.circle-img img::hover{
  transform: scale(0.95);
}

/* HOVER EFFECT */
.circle-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    filter: blur(8px);
    opacity: 0.7;
}

/* trigger animation */
.circle-img:hover::before {
    animation: shine 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* keyframes */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* TEXT */
.category-item h4 {
    font-size: 20px;
    font-style: italic;
    font-family: 'Merriweather', serif;
    color: #6d625c;
    margin-bottom: 5px;
}

.category-item span {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .circle-img {
        width: 180px;
        height: 180px;
    }

    .shop-title {
        font-size: 28px;
    }
}


.best-sellers {
    background: #f5f5f5;
    padding: 80px 0;
}

.bs-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bs-sub {
    font-size: 12px;
    color: #777;
    margin-bottom: 50px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
}

/* IMAGE */
.product-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 4px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* INFO */
.product-info {
    padding-top: 10px;
}

.product-name {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
}

.price {
    font-size: 13px;
    color: #222;
    font-weight: 500;
    margin-bottom: 5px;
}

/* RATING */
.rating {
    font-size: 12px;
    color: #f5c518;
}

.rating span {
    color: #777;
    margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .product-img {
        height: 220px;
    }
}

.hair-solutions{
background:#f5f4f0;
padding:72px 0;
}

.hair-collage{
display:flex;
gap:22px;
max-width:1060px;
margin:auto;
}

/* LEFT SIDE */
.left-block{
width:58%;
display:flex;
flex-direction:column;
gap:22px;
}

/* ROWS */
.row-one,
.row-two{
display:flex;
gap:22px;
}

/* BRUTEFORCED exact proportions */
.card-1{
width:225px;
height:180px;
}

.card-2{
width:365px;
height:180px;
}

.card-3{
width:315px;
height:210px;
}

.card-4{
width:275px;
height:210px;
}

/* RIGHT FEATURE */
.hero-card{
width:438px;
height:412px;
}

/* base */
.card,
.hero-card{
position:relative;
overflow:hidden;
background:#e8e0d6;
}

.card img,
.hero-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.55s;
}

.card-1 img{object-position:center top;}
.card-2 img{object-position:center center;}
.card-3 img{object-position:center top;}
.card-4 img{object-position:center top;}
.hero-card img{object-position:center top;}

.card:hover img,
.hero-card:hover img{
transform:scale(1.03);
}

/* TEXT */
.txt{
position:absolute;
font-family:'Merriweather', serif;
z-index:5;
}

.txt span{
display:block;
font-size:11px;
letter-spacing:3px;
color:#fff;
margin-bottom:6px;
}

.txt h4{
margin:0;
font-size:30px;
line-height:1.05;
font-style:italic;
font-weight:400;
color:#fff;
}

/* hand-placed typography */
.vol{
left:24px;
bottom:26px;
}

.half{
left:34px;
top:52%;
transform:translateY(-50%);
}

.top{
left:24px;
bottom:26px;
}

.band{
left:28px;
top:80%;
transform:translateY(-50%);
}

.halo{
left: 1vw;
bottom: 0;
}

.halo h3{
margin:0;
font-size:2rem;
font-style:italic;
font-weight:400;
color:#584e47;
}

/* responsive */
@media(max-width:1100px){

.hair-collage{
flex-direction:column;
}

.left-block{
width:100%;
}

.hero-card{
width:100%;
height:500px;
}

}

@media(max-width:768px){

.row-one,
.row-two{
flex-direction:column;
}

.card-1,
.card-2,
.card-3,
.card-4{
width:100%;
height:320px;
}

.hero-card{
height:420px;
}

}

.ijnskdnai span{
  color: #fff;
}

.card-1{
  animation: hover 0.7s ease-in-out;
}

.card-1:hover{
  h4{
  color: #000;
  }
}

.jbsjdad span{
  color: #000;
}

.jbsjdad h4{
  color: #000;
}

.ikndiwds span{
  color: #4b4036;
}

.ikndiwds h4{
  color: #4b4036;
}

.jsbduiwda span{
  color: #000000;
}

.card-4{
  animation: hover 0.7s ease-in-out;
}

.card-4:hover{
  h4{
  color: #000;
  }
}

/*========================
APPOINTMENT SECTION
=========================*/

.appointment-section{
position:relative;
padding:90px 0 70px;
background:url("../images/extention-form-sec-bg.png") center center/cover no-repeat;
overflow:hidden;
}

.appointment-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.48);
}

/* content above overlay */
.appointment-section .container{
position:relative;
z-index:2;
}

/* heading */
.appointment-head{
text-align:center;
color:#fff;
margin-bottom:34px;
}

.appt-icon{
width:42px;
height:42px;
border-radius:50%;
background:#fff;
margin:auto auto 14px;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
color:#df3053;
}

.appointment-head p{
margin:0;
font-size:16px;
font-weight:300;
opacity:.9;
}

.appointment-head h2{
font-size:58px;
font-weight:700;
line-height:1.1;
margin-top:8px;
margin-bottom:0;
color: #ffffff !important;
}

/* red panel */
.appointment-box{
max-width:1040px;
margin:auto;
padding:56px 48px 54px;
background:url(../images/extention-form-bg.png);
position:relative;
overflow:hidden;
}

/* diagonal shapes */
/* .appointment-box:before{
content:"";
position:absolute;
left:-80px;
bottom:-70px;
width:340px;
height:260px;
background:rgba(255,255,255,.05);
transform:rotate(38deg);
}

.appointment-box:after{
content:"";
position:absolute;
right:-120px;
top:-60px;
width:340px;
height:220px;
background:rgba(255,255,255,.04);
transform:rotate(-35deg);
} */

/* rows */
.form-row{
display:flex;
gap:18px;
margin-bottom:16px;
position:relative;
z-index:3;
}

/* fields */
.field{
flex:1;
position:relative;
}

.field input,
.field select{
width:100%;
height:58px;
border:none;
outline:none;
background:#fff;
padding:0 48px 0 20px;
font-size:14px;
color:#555;
appearance:none;
}

.field i{
position:absolute;
right:18px;
top:50%;
transform:translateY(-50%);
font-size:13px;
color:#AD8858;
}

/* button */
.appointment-btn-wrap{
text-align:center;
padding-top:18px;
position:relative;
z-index:3;
}

.appointment-btn-wrap button{
background:transparent;
border:2px solid #fff;
color:#fff;
padding:15px 48px;
border-radius:40px;
font-size:13px;
letter-spacing:1px;
font-weight:600;
transition:.35s;
}

.appointment-btn-wrap button:hover{
background:#fff;
color:#df1f46;
}

/* responsive */
@media(max-width:992px){

.appointment-head h2{
font-size:46px;
}

.form-row{
flex-direction:column;
gap:14px;
}

.appointment-box{
padding:40px 28px;
}

}

@media(max-width:768px){

.appointment-head h2{
font-size:36px;
}

.appointment-section{
padding:70px 0;
}

}

.appointment-section i{
  font-size: 20px;
}


.reviews-section {
    background: #efefef;
    padding: 70px 0;
    overflow: hidden;
}

.reviews-wrapper {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* CARD */
.review-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* position reference */
.review-card {
    position: relative;
}

/* google icon */
.google-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* TOP */
.review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar.letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4caf50;
    color: #fff;
    font-weight: bold;
}

/* TEXT */
.review-card h6 {
    font-size: 13px;
    margin: 0;
}

.review-card small {
    font-size: 11px;
    color: #777;
}

.stars {
    color: #f5c518;
    font-size: 13px;
    margin-bottom: 6px;
}

.review-card p {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

/* BUTTONS */
.review-controls button {
    border: none;
    background: #222;
    color: #fff;
    padding: 8px 14px;
    margin: 0 5px;
    cursor: pointer;
}

.reviews-wrapper::before,
.reviews-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #efefef, transparent);
}

.reviews-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #efefef, transparent);
}

.stats-section {
    background: #efefef;
    padding: 60px 0;
}

/* ITEM */
.stat-item {
    position: relative;
}

/* vertical divider */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #dcdcdc;
}

/* ICON */
.stat-icon {
    width: 6vw;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* NUMBER */
.stat-item h3 {
    color: #D81637 !important;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 5px;
}



/* Extention Css End */




/* end hair extension css *//* end hair extension  css */
/* end hair extension css *//* end hair extension  css */







/* refer a friend start */

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--button-background-color), var(--primary-black-color) 40%);
    color: #fff;
    padding: 9rem 0;
    border-radius: 0 0 60px 60px;
}

.btn-custom {
    background: #fff;
    color: #4f46e5;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

/* CARD */
.card-box {
    border-radius: 20px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* STEPS */
.step-box {
    text-align: center;
    padding: 1rem;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--button-background-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* REFERRAL BOX */
.ref-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ref-box input.form-control{
    margin-bottom: 0;
    margin-right: 0;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.cdsfdgfnfdf{
    color: var(--button-background-color) !important;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--button-background-color), var(--primary-black-color));
    color: #fff;
    padding: 60px 0;
}

.ref-box .btn-main{
    border-radius: 0 0.25rem 0.25rem 0 !important;
    white-space: nowrap;
}

.card-box h2 span{
    color: #000;
    font-style: italic;
    font-size:  1rem;
}

/* refer a friend end */







/*loyalty start*/

/* HERO */
.gffjhgafgd {
    background: linear-gradient(135deg, var(--button-background-color), var(--primary-black-color) 40%);
    color: #fff;
    padding: 120px 0 140px;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
}

.gffjhgafgd::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(225, 29, 72, 0.2);
    filter: blur(120px);
    top: -100px;
    right: -100px;
}

.gffjhgafgd .btn-main {
    background: linear-gradient(135deg, #e11d48, #be123c);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
}

.fgdfmgjhdgsfd .col-md-4 .card-modern{
    background: var(--primary-black-color);
}

.fgdfmgjhdgsfd .col-md-4:nth-child(2n) .card-modern{
    background: var(--button-background-color);
}

.fgdfmgjhdgsfd .col-md-4:nth-child(2n) .card-modern .step-badge{
    background: var(--primary-black-color);
}

/* SECTION */
.fgdfmgjhdgsfd {
    padding: 80px 0;
}

.ddffghsfgdhfjhh li{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ddffghsfgdhfjhh li span{
    text-transform: capitalize;
}

.sdgfnhgfdsfd{
    color: #fff !important;
}

.progress-bar.bg-info{
    background: var(--button-background-color);
}

/* CARDS */
.card-modern {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
    color: #fff;
}

.card-modern:hover {
    transform: translateY(-10px);
}

/* STEP BADGE */
.step-badge {
    width: 45px;
    height: 45px;
    background: #e11d48;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-modern

/* POINT BOX */
.points-box {
    background: linear-gradient(135deg, #e11d48, #9f1239);
    color: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(225,29,72,0.3);
}

/* CTA */
.dfgjgmfhdgf {
    background: #000;
    padding: 90px 0;
    text-align: center;
}

.dfgjgmfhdgf h2 {
    color: #fff;
}

.dfgjgmfhdgf p {
    color: #ccc;
}

.dfgjgmfhdgf .btn {
    padding: 14px 40px;
    font-size: 16px;
}

/*loyalty end*/




/*legal page start*/

/* HERO */
.policy-hero {
    background: linear-gradient(135deg, #000, #2c2c2c);
    color: #fff;
    padding: 100px 0;
    text-align: center; 
    border-radius: 0 0 50px 50px;
}

/* CONTENT */
.policy-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy-content h4 {
    margin-top: 30px;
    font-weight: 600;
}

/*legal page end*/

.offcnvas-nav-drpdwn{
    overflow-y: auto;
    max-height: 12rem;
}

.offcnvas-nav-drpdwn::-webkit-scrollbar{
    width: 8px;
}

.offcnvas-nav-drpdwn::-webkit-scrollbar-track{
    background: #383838;
    border-radius: 25px;
}

.offcnvas-nav-drpdwn::-webkit-scrollbar-thumb{
    background: #a3a3a3;
    border-radius: 25px;
}


/* blog-details(Karina) start */
/* Top Bar */


.blo-section1 {
  position: relative;
  padding: 15rem 0;
}


.top-bar {
  background: var(--primary-black-color);
  height: 40px;
  font-size: 14px;
}

.text-white{
  font-size: 1rem;
}

.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;        
  height: 30px;       
  border: 2px solid #fff;
  border-radius: 50%;
  margin-left: 10px;
}

.bloghero-section {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/blog-details-banner.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 77vh;
}

.hero-content h2 {
    margin: auto;
    width: auto;
    font-size: 5vw !important;
    margin-top: 7vw;
    color: #ffffff !important;
    white-space: nowrap;
    text-align: center;
}

.menu-icon{
  margin-left: 2rem;
}

.logo{
  margin: 1.5rem 0 0 10rem;
}

.book-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
}

.book-btn:hover {
  color: #000;
}

/* first-section end */

/* second-section start */


/* Sidebar image */
.related-item img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

/* Titles */
h2 {
  font-size: 28px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

/* Read more link */
.read-more {
  font-size: 12px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* Paragraph spacing */
p {
  line-height: 1.7;
  font-size: 14px;
}

/* second-section end */

/* third-section start */

body {
  background-color: #fff;
}

.blogthird-section {
  background-color: #fff;
}

.blog-card {
  border: none;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  border-radius: 5px;
}

.date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff2d55;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.date-badge span {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.date-badge small {
  font-size: 12px;
}

.card-title {
  font-weight: 600;
}

.read-more {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.read-more:hover {
  color: #ff2d55;
}

.gdfgdf78 img 
{
    width:100px !important;
    height:80px !important;
}

/* third-section end */
/* blog-details(Karina) start */






/*user dashboard start*/

.sidebar{
    border-right: 1px solid var(--light-border-color);
}

.profile-header > h4{
    color: var(--heading-text-color);
}

.sdfvgdfgfawsdeww li{
    width: 100%;
    transition: 0.2s ease-in-out;
    border-bottom: 1px solid #dbdbdb;
    border-radius: 8px;
}

.sdfvgdfgfawsdeww > div i{
    font-size: 1.8rem;
    color: var(--paragraph-text-color);
}

.sdfvgdfgfawsdeww li:last-child{
    border-bottom: 0;
}

.sdfvgdfgfawsdeww li a{
    color: #000;
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    transition: 0.2s ease-in-out;
}

.sdfvgdfgfawsdeww li:hover a{
    padding: 0.8rem 1rem !important;
    transition: 0.2s ease-in-out;
}

.sdfvgdfgfawsdeww li a i{
    font-size: 1.4rem;
    color: var(--button-background-color);
}

.sdfvgdfgfawsdeww li:hover{
    background: #f5e1e4;
    transition: 0.2s ease-in-out;
}

.sdfvgdfgfawsdeww li:hover a{
    color: #000 !important;
}

.diewjrmiweurewr{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}

.dweojrjiorr [type="file"] {
	 height: 0;
	 overflow: hidden;
	 width: 0;
}
.dweojrjiorr [type="file"] + label {
	 background: #fff !important;
	 border: 2px solid var(--button-background-color);
	 border-radius: 5px;
	 color: var(--button-background-color);
	 cursor: pointer;
	 display: inline-block;
	 font-size: inherit;
	 font-weight: 500;
	 font-family: var(--font-family-faculty-glyphic);
	 outline: none;
	 padding: 0.5rem 1.5rem;
	 position: relative;
	 transition: all 0.3s;
	 vertical-align: middle;
}
.dweojrjiorr [type="file"] + label:hover {
	 background-color: var(--button-background-color);
	 box-shadow: rgba(192, 132, 151, 0.12) 0px 2px 4px 0px, rgba(192, 132, 151, 0.32) 0px 2px 16px 0px;
}
.dweojrjiorr [type="file"] + label.btn-2 {
	 background-color: var(--button-background-color);
	 border-radius: 50px;
	 overflow: hidden;
}
.dweojrjiorr [type="file"] + label.btn-2::before {
	content: "\f093"; /* upload icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* IMPORTANT for solid icons */
    color: #fff !important;
    font-size: 100%;
    height: 100%;
    right: 130%;
    line-height: 2.3;
    position: absolute;
    top: 0;
    transition: all 0.3s;
}
.dweojrjiorr [type="file"] + label.btn-2:hover {
	 background-color: var(--button-background-color) !important;
	 color: #fff !important;
	 padding-left: 3rem !important;
}
.dweojrjiorr [type="file"] + label.btn-2:hover::before {
	 right: 77%;
}

.sdfvgdfgfawsdeww li a:focus{
    color: #000 !important;
}

/*user dashboard end*/









/*booking start*/

.booking-sub{
  color:#e85d75;
  letter-spacing:2px;
}

.booking-title{
  font-size:40px;
  font-weight:500;
}

/* Card */
.booking-card{
  background:#fff;
  padding:25px;
  border-radius:20px;
  margin-bottom:25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    
}

/* Image */
.booking-img img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
}

/* Text */
.booking-heading{
  font-size:20px;
}

.booking-text{
  font-size:14px;
  color:#777;
}

/* Right side */
.booking-right{
  gap:20px;
}

.booking-time{
  font-size:14px;
}

.booking-price{
  color:#e85d75;
  font-weight:600;
  font-size:18px;
}

/* Button */
.booking-btn{
  border:1px solid #e85d75;
  background:transparent;
  color:#e85d75;
  padding:8px 20px;
  border-radius:25px;
  transition:0.3s;
}

.booking-btn:hover{
  background:#e85d75;
  color:#fff;
}

.booking-action a{
  font-size:13px;
  color:#555;
  text-decoration:none;
}

.booking-services 
{
    padding:40px 0;
}


/*start modal css*//*start modal css*/
/*start modal css*//*start modal css*/
/*start modal css*//*start modal css*/

.booking-open-btn{
  margin:100px auto;
  display:block;
  padding:10px 20px;
}

.booking-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999999999999999999999999;
}

.booking-modal-box{
  width:700px;
  background:#fff;
  border-radius:20px;
  padding:30px;
  position:relative;
}

.booking-location-item i
{
    color:#e85d75;
}

.booking-close{
  position:absolute;
  right:20px;
  top:15px;
  font-size:24px;
  cursor:pointer;
}

.booking-modal-header{
  display:flex;
  gap:15px;
  align-items:center;
}

.booking-modal-header img{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
}

.booking-modal-header h2{
  font-size:22px;
}

.booking-modal-header p{
  color:#777;
}

.booking-price{
  color:#e85d75;
  font-weight:600;
}

.booking-location-title{
  margin-top:30px;
  margin-bottom:15px;
}

.booking-location-item{
  display:flex;
  justify-content:space-between;
  padding:15px 0;
  border-bottom:1px solid #eee;
  cursor:pointer;
}

.booking-location-item:hover{
  background:#fafafa;
}

    /*start  modal 2 css */    /*start  modal 2 css */
     /*start  modal 2 css */    /*start  modal 2 css */
    
  .bookings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.bookings-modal {
    width: 800px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    animation: bookingsFade 0.3s ease;
    z-index:9999999999;
    
}

@keyframes bookingsFade {
    from {opacity:0; transform: translateY(20px);}
    to {opacity:1; transform: translateY(0);}
}

.bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookings-header h2 {
    font-size: 20px;
    margin: 0;
}

.bookings-header p {
    font-size: 14px;
    color: #777;
}

.bookings-close {
    font-size: 22px;
    cursor: pointer;
}

.bookings-body {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.bookings-left img {
    width: 250px;
    border-radius: 12px;
    height:100%;
}

.bookings-right h3 {
    margin: 0;
    font-size: 20px;
}

.bookings-badge {
    background: #ffe5e5;
    color: #ff4d4d;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.bookings-role {
    color: #666;
    margin: 5px 0;
}

.bookings-rating {
    margin-bottom: 15px;
}

.bookings-rating i 
{
    color: #f3b808;
}

.bookings-info {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.bookings-info i 
{
     color: #e85d75;
     padding-right:5px;
}

.bookings-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.bookings-back {
    background: none;
    border: none;
    cursor: pointer;
}

.bookings-select {
    background: #e85d75;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.booking-modal,
.bookings-modal {
    transition: all 0.3s ease;
}

/*start third modal css*//*start third modal css*/
/*start third modal css*//*start third modal css*/
.bookings-summary-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.bookings-summary-modal {
  width: 650px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  z-index:9999999;
}

.bookings-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bookings-summary-header span {
  cursor: pointer;
  font-size: 22px;
}

.bookings-summary-card {
  display: flex;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  margin-top: 20px;
  align-items: center;
  position: relative;
}

.bookings-summary-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.bookings-summary-info h3 {
  margin: 0;
  font-size: 16px;
}

.bookings-staff {
  font-size: 13px;
  color: #666;
}

.bookings-location {
  font-size: 13px;
  color: #888;
}

.bookings-meta {
  display: flex;
  gap: 15px;
  margin-top: 5px;
  font-size: 13px;
}

.bookings-edit {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ff4d6d;
  cursor: pointer;
}

.bookings-add-service {
  margin-top: 20px;
  padding: 15px;
  border: 2px dashed #ffccd5;
  text-align: center;
  border-radius: 12px;
  color: #ff4d6d;
  cursor: pointer;
}

.bookings-note {
  margin-top: 15px;
  padding: 10px;
  background: #fff0f3;
  border-radius: 10px;
  font-size: 13px;
}

.bookings-schedule-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.bookings-secure {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/*start modal 4  csss*//*start modal 4  csss*/
/*start modal 4  csss*//*start modal 4  csss*/

.bookings-add-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.bookings-add-modal {
  width: 650px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 99999999;

}

.bookings-add-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bookings-add-header h2 {
  margin: 0;
}

.bookings-add-header p {
  font-size: 13px;
  color: #777;
}

.bookings-add-header span {
  font-size: 22px;
  cursor: pointer;
}

.bookings-add-list {
  margin-top: 20px;
}

.bookings-add-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.bookings-add-item:hover {
  background: #fafafa;
}

.bookings-add-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bookings-add-left img {
  width: 40px;
  height: 40px;
}

.bookings-add-left h4 {
  margin: 0;
  font-size: 15px;
}

.bookings-add-left p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.bookings-add-footer {
  margin-top: 10px;
}

.bookings-add-footer button {
  background: none;
  border: none;
  cursor: pointer;
}

/*booking end*/



/*thank you start*/

.thank-you-section{
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 40px 20px 80px 20px;
    position:relative;
}

/* Background Shapes */

.thank-you-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(216,22,55,0.10);
    border-radius:50%;
    top:-120px;
    right:-120px;
    filter:blur(20px);
}

.thank-you-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(182,139,69,0.08);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
    filter:blur(25px);
}

/* Card */

.thank-you-card{
    background:#fff;
    max-width:850px;
    width:100%;
    border-radius:36px;
    padding: 40px 60px;
    text-align:center;
    position:relative;
    z-index:2;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 10px 50px rgba(0,0,0,0.06);
}

/* Icon */

.success-icon{
    width:110px;
    height:110px;
    background: var(--button-background-color);
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 35px;

    font-size:48px;
    font-weight:700;

    box-shadow:
    0 15px 35px rgba(182,139,69,0.25);
}

/* Text */

.thank-you-subtitle{
    color: var(--button-background-color);
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:18px;
}

.thank-you-title{
    font-size:64px;
    font-weight:800;
    color:#1d1d1d;
    line-height:1.1;
    margin-bottom:22px;
}

.thank-you-text{
    color:#666;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
    margin:auto;
}

/* Buttons */

.thank-you-actions{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

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

    padding:18px 36px;

    border-radius:18px;

    font-weight:600;
    text-decoration:none;

    transition:.3s;
}

.primary-btn:hover{
    background:#1d1d1d;
    color:#fff;
    transform:translateY(-3px);
}

.secondary-btn{
    background:#fff;
    color:#1d1d1d;

    border:1px solid #ddd;

    padding:18px 36px;

    border-radius:18px;

    font-weight:600;
    text-decoration:none;

    transition:.3s;
}

.secondary-btn:hover{
    background:#f3f3f3;
    color:#1d1d1d;
    transform:translateY(-3px);
}

/* Extra Info */

.extra-note{
    margin-top:40px;
    color:#888;
    font-size:15px;
}

.success-icon{
    width:120px;
    height:120px;
    margin:0 auto 35px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:50%;

    box-shadow:
    0 15px 35px rgba(216,22,55,0.18);
}

/* SVG */

.checkmark{
    width:90px;
    height:90px;
    display:block;
}

.checkmark-circle{
    stroke:var(--button-background-color);
    stroke-width:2;
    stroke-miterlimit:10;

    stroke-dasharray:166;
    stroke-dashoffset:166;

    animation:
    strokeCircle 0.8s ease forwards;
}

.checkmark-check{
    stroke:var(--button-background-color);
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;

    stroke-dasharray:48;
    stroke-dashoffset:48;

    animation:
    strokeCheck 0.5s ease forwards 0.8s;
}

/* Animations */

@keyframes strokeCircle{
    to{
        stroke-dashoffset:0;
    }
}

@keyframes strokeCheck{
    to{
        stroke-dashoffset:0;
    }
}

/* Responsive */

@media(max-width:991px){

    .thank-you-card{
        padding:60px 35px;
    }

    .thank-you-title{
        font-size:48px;
    }
}

@media(max-width:767px){

    .thank-you-card{
        padding:50px 25px;
        border-radius:28px;
    }

    .thank-you-title{
        font-size:38px;
    }

    .thank-you-text{
        font-size:16px;
    }

    .success-icon{
        width:90px;
        height:90px;
        font-size:40px;
    }
}

/*thank you end*/



/*404 not found start*/

.error-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    padding:40px 20px;
}

/* Animated Background */

.shape{
    position:absolute;
    border-radius:50%;
    background:rgba(216,22,55,0.12);
    animation:float 8s ease-in-out infinite;
}

.shape1{
    width:300px;
    height:300px;
    top:-100px;
    left:-100px;
}

.shape2{
    width:220px;
    height:220px;
    bottom:-70px;
    right:-50px;
    animation-delay:2s;
}

.shape3{
    width:120px;
    height:120px;
    top:20%;
    right:15%;
    animation-delay:1s;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-30px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* Card */

.error-card{
    background:#fff;
    max-width:1000px;
    width:100%;
    border-radius:36px;
    padding:80px 70px;
    position:relative;
    z-index:2;
    text-align:center;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 15px 50px rgba(0,0,0,0.06);
}

/* Animated 404 */

.error-number{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.digit{
    font-size:180px;
    font-weight:800;
    color:var(--button-background-color);
    line-height:1;
    animation:bounce 2s infinite;
}

.digit:nth-child(2){
    animation-delay:.2s;
}

.digit:nth-child(3){
    animation-delay:.4s;
}

@keyframes bounce{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }
}

/* Text */

.error-subtitle{
    color:var(--button-background-color);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.error-title{
    font-size:54px;
    font-weight:800;
    color:#1d1d1d;
    margin-bottom:20px;
}

.error-text{
    max-width:650px;
    margin:auto;
    color:#000;
    line-height:1.9; 
    font-size:18px;
}

.error-actions .secondary-btn{
    background: #fff !important;
    border: 1px solid #c3c3c3 !important;
    color: #000 !important;
}

/* Buttons */

.error-actions{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn{
    background:var(--button-background-color);
    color:#fff;
    text-decoration:none;

    padding:18px 40px;
    border-radius:18px;

    font-weight:600;

    transition:.3s;
}

.primary-btn:hover{
    background:#1d1d1d;
    color:#fff;
    transform:translateY(-3px);
}

.secondary-btn{
    background:#fff;
    color:#1d1d1d;
    text-decoration:none;

    border:1px solid #ddd;

    padding:18px 40px;
    border-radius:18px;

    font-weight:600;

    transition:.3s;
}

.secondary-btn:hover{
    background:#f3f3f3;
    color:#1d1d1d;
    transform:translateY(-3px);
}

/* Floating Hair Dryer */

.floating-icon{
    position:absolute;
    width:90px;
    height:90px;

    background:#fff;

    border-radius:24px;
    z-index: 9;
    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;

    animation:rotateFloat 6s ease-in-out infinite;
}

.floating-icon img{
    width:45px;
}

.icon1{
    top:15%;
    left:10%;
}

.icon2{
    bottom:12%;
    right:12%;
    animation-delay:2s;
}

@keyframes rotateFloat{

    0%{
        transform:translateY(0) rotate(0deg);
    }

    50%{
        transform:translateY(-18px) rotate(8deg);
    }

    100%{
        transform:translateY(0) rotate(0deg);
    }
}

/* Responsive */

@media(max-width:991px){

    .error-card{
        padding:60px 30px;
    }

    .digit{
        font-size:120px;
    }

    .error-title{
        font-size:40px;
    }
}

@media(max-width:767px){

    .digit{
        font-size:82px;
    }

    .error-title{
        font-size:30px;
    }

    .error-text{
        font-size:16px;
    }

    .floating-icon{
        display:none;
    }

    .error-card{
        border-radius:28px;
        padding:50px 22px;
    }
}

/*404 not found end*/


