@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('../fonts/sinclaire/sinclaire-bold.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {

 background: #FFF5F8;
 font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #252525;

}


.subtitle-text {
    font-size: 21px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
    .subtitle-text {
        font-size: 14px;
    }
}


.banner-img {
    width: 100%;
    height: 627px;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 767px) {
    .banner-img {
        height: 167px;
    }
}
@media (max-width: 767px) {
    .header-right {
        justify-content: center;
        width: 100%;
    }

    .header-right .social {
        gap: 0.5px;
    }

    .header-right .social li a img {
        width: 18px;
        height: 18px;
    }
}

.count-holder .card {
    background: #fff5f8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.count-holder .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
.count-holder h5 {
    font-weight: 900;
    color: #fb6a8e;
}
.count-holder p {
    color: #666;
}


/**/
/* Default (Desktop & Tablet) – KEEP AS IS */
.footer-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Prevent Bootstrap forcing resize */
.footer-logos img {
    height: auto;
}

/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
@media (max-width: 576px) {

    /* Stack logos vertically on mobile */
    .footer-logos {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logos img {
        max-width: 100%;
    }

    /* Center footer text */
    .site-footer {
        text-align: center;
    }

    /* Center social icons */
    .site-footer .social {
        justify-content: center;
    }

    /* Contact section alignment */
    .site-footer p {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 6px;
    }
}
/**/




.floating-whatsapp {
    position: fixed;
       bottom: 56px;
    right: 27px;
    z-index: 9999;  /* stays on top */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100px;
    /*background-color: #25d366; */
    /*border-radius: 50%;*/
    /*box-shadow: 0px 2px 5px rgba(0,0,0,0.3);*/
    transition: transform 0.2s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.floating-whatsapp img {
    width: 50px;
    height: 50px;
}




input:focus,
button:focus,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-family: 'Sinclaire';
}


.section-header h6 {
    color: #FB6A8E;
    border-bottom: 1px solid #FB6A8E;
    display: inline-block;
    padding-right: 15px;
}
 /* General Styling with Light Pink Theme */
    .festive-offers-section {
        background-color: #fff5f8 ; /* Light pink background */
        color: #1a1a1a;           /* Dark gray text */
        padding: 80px 0;
        font-family: Arial, sans-serif;
    }

    .festive-offers-section .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .festive-offers-section .section-header h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .festive-offers-section .section-header p {
        color: #555555; /* Slightly lighter gray for subheading */
        font-size: 18px;
    }

    .offer-category-box {
        display: flex;
        align-items: center;
        background-color: #FFE0E9; /* White boxes for contrast */
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 40px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
    }

    .offer-category-image  img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

    
  
    .offer-details h3 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #1a1a1a;
    }

    .offer-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .offer-list li {
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        font-size: 16px;
        line-height: 1.6;
    }

    .offer-list li::before {
        content: '◆'; /* Simple, colorable icon */
        color: #fb6a8e;  /* Icon color */
        margin-right: 15px;
        font-size: 18px;
    }
    
    .whatsapp-booking {
        text-align: center;
        margin-top: 30px;
    }

    .btn-fill {
        background-color: #fb6a8e; /* Button color */
        color: #ffffff;           /* White text on button */
        padding: 15px 35px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        font-weight: bold;
        transition: transform 0.3s, background-color 0.3s;
    }

    .btn-fill:hover {
        background-color: #e05c7c; /* Slightly darker pink on hover */
        transform: scale(1.05);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .offer-category-box {
            flex-direction: column;
            text-align: center;
        }
        .offer-category-image {
            margin-bottom: 30px;
        }
        .offer-category-image.order-lg-2 {
            order: 1 !important;
        }
        .offer-details.order-lg-1 {
            order: 2 !important;
        }
    }

h1 {
  font-size: 65px;
  line-height: 90px;
}

h2 {
  font-size: 50px;
  line-height: 70px;
}

h3 {
  font-size: 40px;
  line-height: 60px;
}

h4 {
  font-size: 30px;
  line-height: 50px;
}

h5 {
  font-size: 25px;
  line-height: 40px;
}

h6 {
  font-size: 18px;
  line-height: 30px;
}

a {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #6AA39D;
}

img {
  max-width: 100%;
}

.f-size-11 {
  font-size: 11px;
}

.f-size-12 {
  font-size: 12px;
}

.f-size-14 {
  font-size: 14px;
}

.f-size-16 {
  font-size: 16px;
}

.f-size-18 {
  font-size: 18px;
}

.f-weight-100 {
  font-weight: 100;
}

.f-weight-200 {
  font-weight: 200;
}

.f-weight-300 {
  font-weight: 300;
}

.f-weight-400 {
  font-weight: 400;
}

.f-weight-500 {
  font-weight: 500;
}

.f-weight-600 {
  font-weight: 600;
}

.f-weight-700 {
  font-weight: 700;
}

.f-weight-800 {
  font-weight: 800;
}

.f-weight-900 {
  font-weight: 900;
}

.f-weight-bold {
  font-weight: bold;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}
.b-r-15 {
border-radius: 15px;
}

.b-r-20 {
border-radius: 20px;
}
.b-r-10 {
border-radius: 10px;
}

.f-family-sora {

  font-family: "Sora", sans-serif;

}

.f-family-sinclaire {

  font-family: 'Sinclaire';

}
.btn-border {
  border: 1px solid #1A1A1A;
  padding: 10px 20px;
  color: #1A1A1A !important;
  border-radius: 10px;
  display: inline-block;
  background: transparent;
}
.btn-border img {
  filter: brightness(1%);
}

.btn-fill {
padding: 15px 29px;
    background-color: #FB6A8E;
    font-weight: 400;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-top: 15px;

}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.site-header {
    padding: 35px 0;
}
.logo-1 {
    max-width: 250px;
    margin-right: 25px;
}
img.logo-2 {
    max-width: 120px;
}
.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link:hover {
    color: #000;
    padding: 0 15px;
}
.social {
  list-style: none;
}
.social a {
    padding: 8px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-right: 10px;
}
#main-slide img {
  border-radius: 15px;
  width: 100%;
}
.banner-text-holder {
    position: absolute;
    z-index: 999;
    bottom: 130px;
    text-align: center;
    width: 100%;
    color: #fff;
}
/*.banner-text-holder-black {*/
/*    position: absolute;*/
/*    z-index: 999;*/
/*    bottom: 130px;*/
/*    text-align: center;*/
/*    width: 100%;*/
/*    color: #000;*/
/*}*/






.owl-carousel .owl-item img {
    width: initial !important;
        display: initial  !important;
}
.owl-carousel .owl-item .banner-img {
  width: 100% !important;

}
body .banner button.owl-dot {
    border-radius: 30px;
    width: 26px !important;
    height: 8px !important;
    display: block;
    z-index: 122;
    position: relative;
    margin: 2px;
}
button.owl-dot {
    width: 15px;
    height: 15px;
    background: #C6C6C6 !important;
    display: flex;
    border-radius: 100%;
}
body button.owl-dot.active {
    background: #FB6A8E !important;
    width: 50px !important;
}
.owl-carousel .owl-dots.disabled {
    display: block !important;
}
.owl-nav {
    display: none;
}
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: -60px;
}
.client-box {
    background: #FB6A8E;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
}
.border-left {
  border-left: 1px solid #fff;
}

.text-link img {
  filter: brightness(1%);
  
}
.service-holder {
    background: #FFE0E9;
    padding: 20px;
}
.service-holder .service-img {
  width: 100%;
}

.text-link {
    font-weight: 400;
}
.product-holder {

}
.product-holder.d-flex {
background: #FFE0E9;
    padding: 25px;
    border-radius: 15px;
    min-height: 250px;
}
.product-holder .img-holder {
    width: 80%;
}
.client-holder {
  background: #FFE0E9;
  padding: 25px;
  border-radius: 15px;
}
.profile img {
    max-width: 60px;
}
.profile h6 {
    font-size: 18px;
    line-height: 8px;
}
.profile p {
  margin-bottom: 0;

}

.field-item {
    width: 100%;
    border: none;
    border-bottom: 1px solid #797979;
    background: transparent;
    padding-bottom: 8px;
    margin-bottom: 35px;
}
.footer-item .social {
  padding-left: 0;

}

.footer-item .social a {
  border: 1px solid #FB6A8E;

}
.footer-menu li {
    margin-bottom: 8px;
}
.site-section {
    padding: 60px 0;
}
button.owl-prev, button.owl-next {
width: 50px;
    height: 37px;
    border: 1px solid #000 !important;
    margin: 5px;
    border-radius: 8px;
    background: url(../img/arrow-nav.svg) no-repeat !important;
    background-position: center !important;
    overflow: hidden;
}
.owl-nav button span {
  display: none;
}
.testimonials .owl-carousel .owl-dots.disabled, .testimonials .owl-carousel .owl-nav.disabled {
display: block;
}
button.owl-prev {
    transform: rotate(180deg);
}
.owl-nav.disabled {
    position: absolute;
    left: -480px;
    top: 100px;
}
.header-holder h6 {
    color: #FB6A8E;
    border-bottom: 1px solid #FB6A8E;
    display: inline-block;
    padding-right: 15px;
}
.testimonials .owl-nav {
display: block;
    position: absolute;
    left: -550px;
    top: 150px;
}
.service-item {
    background: #FFE0E9;
    padding: 25px;
    border-radius: 15px;
}
.service-item .tag {
  padding-left: 0;
  list-style: none;

}
.service-item .tag li {
  padding-left: 0;

}
.service-item .tag li {
    border: 1px solid #FB6A8E;
    padding: 10px;
    border-radius: 30px;
    margin: 5px;
    color: #FB6A8E;
    font-weight: 400;
    font-size: 14px;
}
.service-icon {
    max-width: 100%;
    background: #FB6A8E;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.star-item {
  max-width: 30px;
}
.service-details {
  padding-bottom: 20px;
  padding-top: 20px;
}
.client-words {
    padding: 15px;
    background: #FFE0E9;
    border-radius: 10px;
    margin-top: 30px;
}
.client-name img {
  max-width: 60px;
  border-radius: 100%;
}
.client-love .owl-dots {
    display: none;
}
.client-love .owl-nav {
    display: block;
}
.client-love .owl-nav {
    display: flex;
    justify-content: end;
    position: relative;
    top: -80px;
}

.products .star-item {
    max-width: 20px;
    margin: 5px;
}
.rating {
border-top: 1px solid #adadad;
    border-bottom: 1px solid #adadad;
    display: flex;
    align-items: center;
    padding: 7px 0;
}

.products .rating h6 {
  margin-bottom: 0;
}
.b-r-30 {
  border-radius: 30px;
}
.count-holder p {
    margin-bottom: 1rem;
    font-size: 14px;
}
.craft-icon {
    max-width: 100%;
    background: #FB6A8E;
    padding: 10px;
    border-radius: 10px;
}
.craft-holder {
  border: 1px solid #FB6A8E;
}
.craft-holder {
    border: 1px solid #FB6A8E;
    border-radius: 30px;
    padding: 25px;
}
.star-item {
  margin: 3px;
}

@media (max-width: 1200px) {

  .logo-1 {
    max-width: 200px;
}
img.logo-2 {
    max-width: 90px;
}
.navbar-dark .navbar-nav .nav-link {
    font-size: 13px;
}
.product-holder.d-flex {
    min-height: 310px;
}
.testimonials .owl-nav {
    left: -482px;
}

}


@media (max-width: 992px) {

  .banner-item-holde h2 {
    font-size: 31px;
}

.banner-text-holder {
    position: initial;
    color: #fff;
    background: #fb6a8e;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

/*.banner-text-holder-black {*/
/*    position: initial;*/
/*    color: #000;*/
/*    background: #fb6a8e;*/
/*    padding: 25px;*/
/*    border-radius: 15px;*/
/*    margin-top: 25px;*/
/*}*/

.owl-dots {

    margin-top: -30px;
}
.navbar-collapse {
        position: absolute;
        right: 0px;
        top: 44px;
        z-index: 99;
        width: 180px;
        box-shadow: rgba(0, 0, 0, 0.38) 0px 7px 14px;
        background: rgb(255 255 255);
        border-radius: 20px;
        padding: 15px;
    }
    .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
        background: #fb6a8e;
    padding: 12px;
    border-radius: 8px;
    padding: 20px 20px;
}
li.nav-item {
    margin-bottom: 10px;
}
/* .header-holder.d-flex.justify-content-between {
    flex-direction: column;
} */
    .header-holder ul.d-flex.social {
        margin-top: 0;
    }
button.navbar-toggler {
        margin-top: -20px;
}
img.logo-2 {
    max-width: 90px;
}
.logo-1 {
    max-width: 200px;
    margin-right: 25px;
}
body button.owl-dot.active {
    background: #000 !important;
}
    .testimonials .owl-nav {
        left: 0;
        bottom: -80px !important;
        top: initial;
    }

.service-text {
    flex-direction: column;
}
.item-img {
  margin-right: 0 !important;
}
.item-img-1 {
    flex-direction: column;
}
}

@media (max-width: 768px) {

    img.logo-2 {
        max-width: 60px;
    }
    .logo-1 {
        max-width: 120px;
    }
        .header-holder ul.d-flex.social {
        padding-left: 0;
    }
    .social a {
    padding: 5px;
}
.service-item .tag li {
    font-size: 9px;
}
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
}
.blog-pagination {
  display: block;
  width: 100%;
  margin-bottom: 120px;
}
.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination ul li {
  display: inline-block;
  padding-left: 0;
  margin: 0 10px;
  font-family: var(--body-font);
}
.blog-pagination ul li:first-child {
  margin-left: 0;
}
.blog-pagination ul li:last-child {
  margin-right: 0;
}
.blog-pagination ul li:before {
  display: none;
}
.blog-pagination ul li .prev,
.blog-pagination ul li .next {
  height: auto;
  width: auto;
  border: 0;
  background: transparent !important;
  text-transform: uppercase;
}
.blog-pagination ul li .prev:hover,
.blog-pagination ul li .next:hover {
  height: auto;
  width: auto;
  border: 0;
  background: transparent !important;
  color: var(--main-color-one);
}
.blog-pagination ul li a {
  display: block;
  border: 1px solid #555555;
  width: 42px;
  line-height: 42px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #555555;
}
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.blog-pagination ul li span {
  display: block;
  border: 1px solid #555555;
  width: 42px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #555555;
}
.blog-pagination ul li span.current {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
