html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'BilyaLayeredBase';
    src: url('/static/vendor/fonts/BILYALAYEREDBASE.ttf') format('truetype');
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    background-color: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.highlight {
    font-family: 'BilyaLayeredBase', sans-serif;
    font-weight: bolder;
}

p,
span,
li,
small,
.navMenu,
.headerText {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.appNavLogo {
    height: 80px;
    padding-left: 30px;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px !important;
    }
}

.appHeader {
    /* position: fixed;
    top: 0; */
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    background-color: #232323 !important;
    /* background-color: #000 !important; */
}





.navLinks {
    gap: 95px !important;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px;
    }
}

.navLinks li {
    position: relative;
}



.navMenu {
    color: white !important;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navMenu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #FD5D51;
    transition: width 0.35s ease;
}

.navMenu:hover {
    transform: translateY(-2px);
    color: #fe7b71 !important;
}

.navMenu:hover::after {
    width: 100%;
}

.navMenu.active {
    color: #FD5D51 !important;
    animation: activeGlow 2.5s ease-in-out infinite;
}

/* .navMenu.active::after {
    width: 100%;
} */

@keyframes activeGlow {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.784);
    }

    50% {
        text-shadow: 0 0 10px rgb(215, 88, 190);
    }

    100% {
        text-shadow: 0 0 0 rgb(255, 255, 255);
    }
}



/* ===== Offcanvas Css Start ===== */
.cursorPointer {
    cursor: pointer;
}

#mobileNav,
#mobileNav a,
#mobileNav summary,
#mobileNav p {
    font-weight: 500 !important;
}

.offcanvas {
    background-color: #000 !important;
}

.offcanvas-header {
    /* background: #ED2490 !important; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLink {
    color: white;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    position: relative;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mobileNavLink:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.mobileNavLink.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background: #FD5D51;
    border-radius: 10px;
    transform: translateX(-50%);
}

.mobileNavLink .active a {
    color: #FD5D51 !important;
}


@keyframes mobileActive {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Off Canvas Css End */


/* Index Page Hero Section */
.indexHero {
    background: #000 !important;
}

.indexHeroText {
    padding-left: 80px;
}


.indexHeroTextTop {
    padding-top: 20px;
}

.indexHeroText h1 {
    font-size: 35px !important;
    font-weight: bolder !important;
    line-height: 1.7;
}



.indexHeroText img {
    animation: handPulse 3s ease-in-out infinite;
}

@keyframes handPulse {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.08) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.indexHeroText p {
    font-size: 20px !important;
    font-weight: 500 !important;
    width: 95%;
}

.indexHeroContent {
    position: relative;
}

.bgHand {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    z-index: 0;
    pointer-events: none;
}

.indexHeroContent p {
    position: relative;
    z-index: 1;
}



.heroAnimContainer {
    position: relative;
    width: 750px;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.heroImg {
    position: absolute;
    bottom: 10;
    left: 0;
    height: 70%;
    width: auto;
    object-fit: contain;
    opacity: 0;
}


.heroImg.img1 {
    animation: slideAnim 6s infinite ease-in-out;
    animation-delay: 0s;
    top: 11%;
}

.heroImg.img2 {
    animation: slideAnim 6s infinite ease-in-out;
    animation-delay: 2.8s;
    height: 80% !important;
}

@keyframes slideAnim {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    45% {
        opacity: 1;
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.indexOrderBtn {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #FD5D51;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 10px 20px 10px 20px;
    transition: color 0.35s ease;
}

.indexOrderBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.indexOrderBtn:hover {
    color: white !important;
    border: 1px solid #FD5D51 !important;
}

.indexOrderBtn:hover::before {
    transform: scaleX(1);
}



@media (max-width: 1024px) {

    .indexHeroText h1 {
        font-size: 21px !important;
    }

    .indexHeroContent {
        margin-top: 25px !important;
    }

    .indexHeroText p {
        font-size: 15px !important;
        width: 100% !important;
    }

    .heroAnimContainer {
        width: 600px;
        height: 450px;
    }
}

@media (max-width: 768px) {

    .indexHeroTextTop {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .indexHeroTextTop .indexLeftHand {
        position: relative;
        right: 42%;
        top: 19%;
    }

    .indexHeroText {
        padding: 20px;
    }

    .indexHeroText p {
        width: 70% !important;
        margin: auto;
    }

    .heroAnimContainer {
        height: 258px !important;
    }

    .heroImg {
        height: 220px;
        width: 100%;
    }

    .heroImg.img2 {
        height: 220px !important;
        width: 100%;
    }

    .bgHand {
        left: 70%;
        width: 52px;
    }
}

@media (max-width: 425px) {

    .indexHeroTextTop {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .indexHeroTextTop .indexLeftHand {
        position: relative;
        right: 42%;
        top: 19%;
    }

    .indexHeroText {
        padding: 15px;
    }

    .indexHeroText h1 {
        font-size: 20px !important;
        line-height: 1.5;
    }

    .indexHeroText p {
        font-size: 13px !important;
        width: 90% !important;
        margin: auto;
    }

    .heroAnimContainer {
        height: 258px !important;
    }

    .heroImg {
        height: 220px;
        width: 100%;
    }

    .heroImg.img2 {
        height: 220px !important;
        width: 100%;
    }

    .bgHand {
        left: 70%;
        width: 52px;
    }

    .indexHeroTextTop .indexLeftHand {
        right: 35%;
        top: 16%;
        height: 40px;
    }
}

@media (max-width: 375px) {

    .indexHeroText {
        padding: 12px;
    }

    .indexHeroText h1 {
        font-size: 18px !important;
    }

    .indexHeroTextTop .indexLeftHand {
        position: relative;
        right: 20% !important;
        bottom: 19%;
        width: fit-content;
    }

    .indexHeroText p {
        font-size: 12px !important;
        width: 95% !important;
    }

    .heroAnimContainer {
        height: 258px !important;
    }

    .heroImg {
        height: 220px;
        width: 100%;
    }

    .heroImg.img2 {
        height: 220px !important;
        width: 100%;
    }

    .bgHand {
        left: 70%;
        width: 52px;
    }


}


/* About Us Section */
.aboutUsSection {
    background: #000;
    padding: 60px 0;
    overflow: hidden;
}

/* HEADER */
.aboutUsHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

.aboutUsHeaderText {
    background: #FD5D51;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-right: 80px !important;
    padding-left: 80px !important;

}

.aboutUsHeaderText h2 {
    font-size: 27px !important;
    font-weight: 300 !important;

}

.paw {
    width: 70px;
    animation: handPulse 5s ease-in-out infinite;
}



.aboutUsImg {
    width: 50%;
}

.aboutUsImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.aboutUsContent,
.contactUsContent {
    width: 50%;
    padding: 40px;
    color: #fff;

    background: linear-gradient(to right,
            rgba(253, 93, 81, 0.30),
            rgba(0, 0, 0, 0.95));

}

.aboutUsContent p,
span {
    line-height: 1.6;
    font-size: 20px !important;
    width: 100% !important;
    margin-bottom: 19px !important;
}

@media (max-width: 1024px) {
    .aboutUsContent {
        padding: 30px;
    }

    .aboutUsContent p,
    span {
        font-size: 13px !important;
        margin-bottom: 16px !important;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {

    .aboutUsWrapper,
    .contactUsWrapper {
        flex-direction: column;
    }

    .aboutUsImg,
    .aboutUsContent {
        width: 100% !important;
    }

    .aboutUsImg img {
        object-fit: cover !important;
        object-position: center !important;
    }

    .aboutUsContent {
        padding: 25px;
    }

    .aboutUsHeaderText {
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 10px;
        padding-right: 50px !important;
        padding-left: 50px !important;

    }

    .aboutUsHeaderText h2 {
        font-size: 13px !important;
        font-weight: 300 !important;

    }

    .paw {
        width: 30px;
    }
}

@media (max-width: 425px) {
    .aboutUsHeader h2 {
        padding: 8px 25px;
        font-size: 16px;
    }

    .aboutUsHeaderText {
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 7px;
        padding-right: 20px !important;
        padding-left: 20px !important;

    }

    .aboutUsHeaderText h2 {
        font-size: 13px !important;
        font-weight: 300 !important;

    }

    .paw {
        width: 30px;
    }

    .aboutUsImg img {
        height: 220px;
    }

    .aboutUsContent {
        padding: 20px;
    }

    .aboutUsContent p {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 375px) {
    .aboutUsHeader h2 {
        font-size: 14px;
        padding: 6px 20px;
    }

    .aboutUsContent p {
        font-size: 11px;
    }

    .aboutUsHeaderText {
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 7px;
        padding-right: 10px !important;
        padding-left: 10px !important;

    }

    .aboutUsHeaderText h2 {
        font-size: 11px !important;
        font-weight: 300 !important;

    }
}

/* Our Service */
.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto !important;
}



.serviceCard {
    width: 400px !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 13px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    text-align: center;
    background-color: #232323;
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.serviceCardHeader {
    background: #FD5D51;
    padding: 14px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}


.serviceCardHeader h4 {
    color: #fff;
    font-size: 20px !important;
}

.serviceCardCont {
    background: #232323;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.serviceCardCont ul {
    margin: 20px !important;
}

.serviceCardCont li {
    margin-bottom: 10px;
    font-size: 16px !important;
    color: #fff;
    font-weight: 400;
}

.serviceByFooter {
    background: #fff;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
    padding: 0;
}

.serviceByFooter p {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    color: #FD5D51;
}

.serviceCardCont button {
    display: block;
    margin: 15px auto 5px;
    background: #FD5D51;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px !important;
}

.mySwiper,
.feedBackSwipper {
    position: relative;
    padding-bottom: 70px;
    align-items: stretch !important;
}

.custom-next,
.custom-prev {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    color: white;
}

.custom-prev {
    left: 45%;
}

.custom-next {
    right: 45%;
}

.custom-next i,
.custom-prev i {
    font-size: 28px;
}

.custom-next::after,
.custom-prev::after {
    display: none;
}

@media (max-width: 1024px) {

    .serviceCard {
        width: 100% !important;
        max-width: 320px;
    }

    .serviceCardHeader h4 {
        font-size: 18px !important;
    }

    .serviceCardCont li {
        font-size: 14px !important;
    }

    .serviceCardCont button {
        font-size: 14px;
        padding: 6px 18px;
    }

    .custom-prev {
        left: 43%;
    }

    .custom-next {
        right: 43%;
    }
}

@media (max-width: 768px) {

    .serviceCard {
        max-width: 500px;
    }

    .serviceCardHeader h4 {
        font-size: 17px !important;
    }

    .serviceCardCont li {
        font-size: 14px !important;
    }

    .serviceCardCont button {
        font-size: 13px;
    }

    .custom-prev {
        left: 36%;
    }

    .custom-next {
        right: 36%;
    }
}

@media (max-width: 425px) {
    .serviceCard {
        max-width: 360px !important;
    }

    .serviceCardHeader {
        padding: 10px;
    }

    .serviceCardHeader h4 {
        font-size: 15px !important;
    }

    .serviceCardCont ul {
        margin: 15px !important;
    }

    .serviceCardCont li {
        font-size: 13px !important;
        margin-bottom: 8px;
    }

    .serviceByFooter p {
        font-size: 12px;
    }

    .serviceCardCont button {
        font-size: 12px;
        padding: 5px 14px;
    }

    .custom-prev {
        left: 37%;
    }

    .custom-next {
        right: 37%;
    }

    .custom-next i,
    .custom-prev i {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    .serviceCard {
        max-width: 308px !important;
    }

    .serviceCardHeader h4 {
        font-size: 14px !important;
    }

    .serviceCardCont li {
        font-size: 12px !important;
    }

    .serviceByFooter p {
        font-size: 11px;
    }

    .serviceCardCont button {
        font-size: 11px;
        padding: 5px 12px;
    }

    .custom-next i,
    .custom-prev i {
        font-size: 22px;
    }
}

/* Seperate Service */
.seperateCont {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 90px;
}

.seperateCont img {
    width: 60%;
    height: auto;
    object-fit: cover;
}

.seperateServiceCard {
    width: 40%;
}

.seperateServiceCard {
    overflow: hidden;
}

.seperateServiceCard {
    animation: smoothPulse 2.5s infinite ease-in-out;
    transform-origin: center;
    margin: 10px;
}

@keyframes smoothPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.015);
    }

    100% {
        transform: scale(1);
    }
}

.seperateServiceCard:hover {
    animation-play-state: paused;
}

@media (max-width: 1024px) {

    .seperateCont img {
        width: 55%;
    }

    .seperateServiceCard {
        width: 45%;
    }
}


@media (max-width: 980px) {
    .seperateCont {
        flex-direction: column;
        row-gap: 30px;
        text-align: center;
    }

    .seperateCont img {
        width: 80%;
    }

    .seperateServiceCard {
        width: 90%;
    }

    .seperateServiceCont ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .seperateCont img {
        width: 90%;
    }

    .seperateServiceCard {
        width: 95%;
    }


}

@media (max-width: 425px) {
    .seperateCont img {
        width: 100%;
    }

    .seperateServiceCard {
        width: 100%;
        padding: 15px;
    }

    .seperateServiceCont ul li {
        font-size: 14px;
    }

    .sepPrice {
        float: right;
    }
}

@media (max-width: 375px) {
    .serviceCardHeader h4 {
        font-size: 18px;
    }

    .seperateServiceCont ul li {
        font-size: 13px;
    }

}

/* Testimonial Section */
.testimonialSection {
    margin-top: 55px;
    padding: 40px;
}

.testimonialCard {
    width: 380px;
    margin: 40px auto;
    padding: 30px 20px;
    text-align: center;
    background-color: #f3f3f3;
    font-family: Arial, sans-serif;
}

.quoteCircle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #ff5e57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quoteCircle i {
    color: #ffffff;
    font-size: 22px;
}

.testimonialText {
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonialText {
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
}

.testimonialText::-webkit-scrollbar {
    width: 4px;
}

.testimonialText::-webkit-scrollbar-track {
    background: transparent;
}

.testimonialText::-webkit-scrollbar-thumb {
    background-color: #FD5D51;
    border-radius: 10px;
}

.testimonialText {
    scrollbar-width: thin;
    scrollbar-color: #FD5D51 transparent;
}

.testimonialText {
    scroll-behavior: smooth;
}

.dividerLine {
    width: 80%;
    height: 1px;
    background-color: #bbb;
    margin: 15px auto;
}

.clientName {
    font-size: 30px !important;
    margin-top: 10px;
}

.starRating {
    margin-top: 10px;
}

.starRating i {
    color: #FFA72C;
    font-size: 18px;
    margin: 0 2px;
}

@media(max-width:1024px) {
    .testimonialCard {
        padding: 20px;
        font-size: 14px !important;
        width: 500px !important;
    }
}



@media (max-width: 768px) {
    .testimonialCard {
        padding: 20px;
        font-size: 14px;
    }

    .testimonialText {
        font-size: 13px;
    }

    .clientName {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .testimonialCard {
        padding: 15px;
        font-size: 13px;
    }

    .testimonialText {
        font-size: 12px;
    }

    .clientName {
        font-size: 13px;
    }

    .quoteCircle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .testimonialCard {
        padding: 12px !important;
        font-size: 12px !important;
        width: 280px !important;

    }

    .testimonialText {
        font-size: 11px !important;
    }

    .clientName {
        font-size: 12px !important;
    }

    .quoteCircle {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}


/* Footer Section */

.footerTitle {
    font-size: 19px !important;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 100 !important;
}

.footerText {
    color: #000;
    font-size: 17px !important;
    text-align: justify !important;
    font-weight: 500 !important;
    padding-right: 20px;
}

.footerLinks {
    list-style: none;
    padding: 0;
}

.footerLinks li {
    margin-bottom: 24px !important;
    font-size: 21px !important;
    color: white;
    font-weight: 400;
}

.footerLinks i {
    transform: rotate(-26deg);
    margin-top: 4px;
}

.footerLinks li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.footerLinks li i {
    transform: rotate(-26deg);
    margin-top: 4px;
}

.footerLinks li:hover {
    font-weight: 600;
    cursor: pointer;
    color: #c4c1c1ee;

}

.footerLinks a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 21px !important;
}

.footerLinks .activeLink {
    color: #FD5D51 !important;
    font-weight: 900 !important;
    text-decoration: underline;
}

.footerLinks a:hover {
    font-weight: 600;
    cursor: pointer;
    color: #c4c1c1ee;
}

.contactLinks li {
    display: flex;
    align-items: center;
    gap: 1px !important;
}


.contactLinks i {
    color: #000;
    font-size: 18px;
    padding: 8px;
    border-radius: 30px;
}

.footerIcons a {
    width: 42px;
    height: 42px;
    background: #FD5D51;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.footerIcons a:hover {
    background: black;
    color: #FD5D51;
}

/*  */
.contactList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contactItem {
    display: block;
    color: #ffffff;
    column-gap: 8px;
    margin-bottom: 12px;
}

.contactLabel {
    color: #ff5e57;
    font-weight: 600;
    white-space: nowrap;
    font-weight: 600;
    display: inline;
}

.contactValue {
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
}

.contactValue a {
    color: #ffffff;
    text-decoration: none;
    font-size: 19px !important;
    font-weight: 300;
    white-space: nowrap;
}

.contactValue a:hover {
    text-decoration: underline;
}




/*  */

.socialTitle {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    color: white;
    font-size: 25px !important;
}

.copyRightTexts p {
    margin-bottom: 0 !important;
}

@media (max-width:1024px) {

    .footerTitle {
        font-size: 18px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 16px !important;
    }

    .footerText {
        font-size: 14px !important;
    }

    .footerIcons a {
        width: 36px;
        height: 36px;
    }

    .footerIcons i {
        font-size: 15px;
    }
}

@media (max-width:880px) {

    .footerSection .row {
        display: flex;
        flex-wrap: wrap;
    }

    .footerSection .col-lg-3:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footerSection .col-lg-3:not(:first-child) {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    .footerText {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .footerIcons {
        justify-content: center;
    }
}

@media (max-width:768px) {

    .footerTitle {
        font-size: 16px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 12px !important;
    }

    .footerText {
        font-size: 13px !important;
    }

    .contactValue a {
        font-size: 15px !important;
    }
}

@media (max-width:550px) {

    .footerSection .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footerText {
        width: 100%;
        padding: 0;
        text-align: center !important;
    }

    .footerIcons {
        justify-content: center;
    }

    .contactList {
        text-align: left;
    }

    .contactValue a {
        font-size: 13px !important;
    }


    .contactItem {
        text-align: left;
    }

    .contactItem span {
        text-align: left !important;
    }
}

@media(max-width:460px) {

    .contactLabel {
        font-size: 12px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 12px !important;
    }

    .contactValue {
        font-size: 12px !important;
    }
}

@media(max-width:425px) {

    .contactLabel {
        font-size: 11px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 11px !important;
    }

    .contactValue {
        font-size: 11px !important;
    }
}

@media(max-width:400px) {

    .contactLabel {
        font-size: 10px !important;
    }

    .contactList {
        width: 100% !important;
    }

    .contactValue a {
        font-size: 10px !important;
    }

    .contactValue {
        font-size: 10px !important;
    }
}


/* Contact Us Page Css */
.contactUsHero {
    padding-top: 30px !important;
}

.contactUsLeftHand,
.contactUsRightHand {
    animation: handPulse 3s ease-in-out infinite;
}

.contactFlowContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}





.contactUsHero {
    position: relative;
    overflow: hidden;
    padding-top: 30px !important;
    color: white;

    background: linear-gradient(180deg,
            #000000 0%,
            #2d0d0da3 70%,
            rgba(80, 9, 4, 0.947) 100%);
}

.contactUsHero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 100%, rgba(179, 33, 23, 0.35), transparent 60%),
        radial-gradient(circle at 50% 90%, rgba(179, 33, 23, 0.2), transparent 70%);

    animation: pulseGlow 2.8s ease-in-out infinite;
    /* speed increased */
    opacity: 0.7;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}


.contactUsHero h1 {
    text-align: center !important;
    font-size: 40px !important;
}

.contactUsHero .contactUsLeftHand {
    position: relative;
    left: 19%;
}

.contactUsHero .contactUsRightHand {
    position: relative;
    left: 80%;
}

@media (max-width:768px) {
    .contactUsHero h1 {
        text-align: center !important;
        font-size: 30px !important;
    }

    .contactUsHero .contactUsLeftHand {
        position: relative;
        left: 8%;
        width: fit-content !important;
        height: 50px !important;
    }

    .contactUsHero .contactUsRightHand {
        position: relative;
        left: 70%;
        width: fit-content !important;
        height: 100px !important;
    }

}

@media (max-width:468px) {
    .contactUsHero h1 {
        text-align: center !important;
        font-size: 20px !important;
    }

    .contactUsHero .contactUsLeftHand {
        position: relative;
        left: 11%;
        height: 30px !important;
    }

    .contactUsHero .contactUsRightHand {
        height: 70px !important;
    }

    .contactFlowContent button {
        margin-top: 18px !important;
        width: 114px !important;
        font-size: 10px !important;
    }
}

@media (max-width:378px) {
    .contactUsHero h1 {
        text-align: center !important;
        font-size: 16px !important;
    }
}

/* Scroll Wrapper */
/* Scroll Image Css */
.scrollImgWrapper {
    width: 100%;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.imgTrack {
    display: flex;

}

.imgTrack img {
    height: 290px;
    width: auto;
    display: block;
    margin: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.imgTrack img:hover {
    filter: saturate(1.5);
    cursor: context-menu;
}

/* Mobile screens only */
@media (max-width: 768px) {
    .scrollImgWrapper {
        height: 200px;
    }

    .imgTrack img {
        height: 200px;
    }
}

/* Contact Form */
.contactBody {
    width: 100%;
    padding: 40px 0px;
    background-color: #000 !important;
}

.contactUsWrapper {
    display: flex;
    align-items: stretch;
    /* IMPORTANT */
    justify-content: center;
}

.contactUsImg,
.contactUsContent {
    display: flex;
}

.contactUsImg img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.contactUsContent {
    width: 65%;
}

.contactForm {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactForm h1 {
    font-size: 39px !important;
}

/* Inputs */
.contactForm input,
.contactForm textarea {
    background-color: transparent !important;
    color: white !important;
    border: 1px solid #FD5D51;
}

/* Focus Effect */
.contactForm input:focus,
.contactForm textarea:focus {
    outline: none;
    border-color: #FD5D51;
    box-shadow:
        0 0 12px rgba(237, 70, 70, 0.5),
        0 0 24px rgba(255, 255, 255, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Placeholder (DO NOT REMOVE - as per your request) */
.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
    color: white !important;
    opacity: 0.8;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: white !important;
    opacity: 0.8;
}

.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
    color: white !important;
}

.sendMsg {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #FD5D51;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 15px 60px;
    transition: color 0.35s ease;
}

.sendMsg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.sendMsg:hover {
    color: white !important;
    border: 1px solid #FD5D51 !important;
}

.sendMsg:hover::before {
    transform: scaleX(1);
}



@media (max-width: 1024px) {
    .contactUsImg {
        width: 40%;
    }

    .contactUsContent {
        width: 60%;
    }

    .contactForm h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 880px) {
    .contactUsWrapper {
        flex-wrap: wrap;
        text-align: center;
    }

    .contactUsImg,
    .contactUsContent {
        width: 100%;
    }

    .contactForm h1 {
        margin-bottom: 0 !important;
    }

    .contactUsImg img {
        max-height: fit-content;
    }
}

@media (max-width: 768px) {
    .contactForm {
        padding: 20px !important;
        text-align: center;
    }

    .contactForm h1 {
        font-size: 30px !important;
    }

    .sendMsg {
        padding: 12px 40px;
    }
}

@media (max-width: 425px) {
    .contactForm h1 {
        font-size: 26px !important;
    }

    .contactForm input,
    .contactForm textarea {
        padding: 12px !important;
    }
}

@media (max-width: 375px) {
    .contactForm h1 {
        font-size: 22px !important;
    }

    .sendMsg {
        width: 100%;
    }
}


.contactIframe {
    width: 65% !important;
    overflow: hidden;
    flex-shrink: 0;
}

.contactIframe iframe {
    width: 100%;
    height: 100%;
    min-height: 50vh !important;
    border: 0;
    display: block;
}

.contactAddresses {
    width: 35%;
    background-color: #FD5D51;
    color: #fff;
}

.contactAddresses h3 {
    text-align: center;
    font-size: 32px;
}


.contactUsInfo {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
}

.contactUsDetail {
    display: flex !important;
    gap: 18px !important;
}

.contactUsDetail i {
    background-color: #fff;
    padding: 10px 11px;
    color: #FD5D51 !important;
    border-radius: 40px;
    font-size: 16px !important;
}

@media (max-width: 888px) {

    .contactUsSection {
        flex-direction: column;
        align-items: center !important;
    }

    .contactIframe {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .contactIframe iframe {
        min-height: 500px !important;
    }

    .contactUsDetail p {
        text-align: start !important;
    }

    .contactAddresses {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .contactAddresses h3 {
        font-size: 26px;
    }

    .addressDivider .line {
        width: 70px;
    }

    .contactUsInfo {
        align-items: center !important;
        text-align: center !important;
    }

    .contactUsDetail {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px;
    }

    .contactUsDetail p {
        text-align: center !important;
    }

    .contactUsDetail i {
        font-size: 20px;
    }

    .contactUsDetail .d-flex {
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 425px) {

    .contactIframe iframe {
        min-height: 250px;
        border-radius: 18px;
    }



    .contactAddresses h3 {
        font-size: 22px;
    }

    .addressDivider {
        gap: 6px;
        margin-bottom: 20px;
    }

    .addressDivider .line {
        width: 50px;
    }



    .contactUsDetail i {
        font-size: 16px;
        margin-top: 3px;
    }

    .contactUsDetail p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Service Page Css */

.productSection {
    margin-top: 30px !important;
}

.productWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.productCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    padding: 30px !important;
}

@media (max-width: 1024px) {
    .productCard {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 15px !important;
    }

    .productCard>* {
        transform: scale(0.95);
    }
}

@media (max-width: 880px) {
    .productCard {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .productCard>* {
        width: 80%;
        transform: scale(1);
    }
}

/* 768px */
@media (max-width: 768px) {
    .productCard>* {
        width: 90%;
    }
}

@media (max-width: 425px) {
    .productCard>* {
        width: 100%;
    }
}


/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 14, 14, 0.726);
    border-top-color: #FD5D51;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}

#preloader:not(.hide)~.floatingWhatsApp {
    display: none;
}

/* width of the scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #FD5D51;
    /* your brand color */
    border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #ca6666;
}


/* ===============================
   Floating WhatsApp – Dock Style
================================ */

/* Base */
.floatingWhatsApp.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: 18px;

    display: flex;
    align-items: center;

    text-decoration: none;
    z-index: 9999;
}

/* WhatsApp Logo – Left Circle */
.waIconWrap {
    width: 56px !important;
    height: 56px !important;

    background: rgba(34, 255, 78, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
    animation: waZoomPulse 2.2s ease-in-out infinite;
}

.fa-whatsapp {
    font-size: 2rem !important;
}

.waIcon {
    width: 30px;
    height: 30px;
}

.waBadge {
    margin-left: -14px;
    padding: 6px 18px 6px 26px;
    background: rgba(5, 163, 19, 0.95);

    color: #ffffff;
    font-size: 15px !important;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 568px) {

    .floatingWhatsApp.dockSplit {
        right: 14px;
        bottom: 18px;
    }

    /* Icon slightly smaller */
    .waIconWrap {
        width: 52px !important;
        height: 52px !important;
        animation-duration: 2.8s;
        /* slower = premium */
    }

    .fa-whatsapp {
        font-size: 1.8rem !important;
    }

    /* Hide text badge */
    .waBadge {
        margin-left: -14px;
        padding: 6px 18px 6px 26px;
        background: rgba(5, 163, 19, 0.95);
        color: #fff;
        font-size: 11px !important;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .3s ease, box-shadow .3s ease;
    }

}


/* Hover feel */
@media (hover: hover) {
    .floatingWhatsApp.dockSplit:hover .waIconWrap {
        transform: scale(1.08);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.389);
    }

    .floatingWhatsApp.dockSplit:hover .waBadge {
        transform: translateX(-4px);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.234);
    }
}




/* Zoom in / out */
@keyframes waZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}


/* Booking Modal Box Css */
.booking-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #FD5D51;
    margin-bottom: 6px;
}

.booking-input {
    background: transparent !important;
    border: 1.5px solid rgba(253, 93, 81, 0.35) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px;
    padding: 10px 13px;
}

.booking-input::placeholder {
    color: #555;
}

.booking-input:focus {
    border-color: #FD5D51 !important;
    box-shadow: 0 0 0 3px rgba(253, 93, 81, 0.15) !important;
    background: transparent !important;
}

.booking-input option {
    background: #1a1a1a;
    color: #fff;
}


.btn-step-back {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.btn-step-back:hover {
    border-color: #FD5D51;
    color: #FD5D51;
}

.booking-input {
    background: transparent !important;
    color: white !important;
    border: 1px solid #FD5D51 !important;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.booking-input::placeholder {
    color: #aaa;
}

.booking-label {
    color: #FD5D51;
    font-weight: 500;
    margin-bottom: 6px;
}

.booking-input.form-select {
    background-color: transparent !important;
    color: white !important;
}

.booking-input option {
    background: black;
    color: white;
}

.booking-input option:hover {
    background: #FD5D51;
    color: white;
}

.booking-input:focus {
    border-color: #FD5D51 !important;
    box-shadow: 0 0 0 0.15rem rgba(253, 93, 81, 0.25) !important;
    background: transparent !important;
    color: white !important;
}

.booking-input::-webkit-scrollbar {
    width: 6px;
}

.booking-input::-webkit-scrollbar-track {
    background: black;
}

.booking-input::-webkit-scrollbar-thumb {
    background: #FD5D51;
    border-radius: 10px;
}




/*  */
/*  */

/* MODAL */
.bookingDialog {
    max-width: 500px;
}

.bookingContent {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

/* HEADER */
.bookingHeader {
    background: #1a1a1a;
    padding: 18px 24px;
}

.pawIcon {
    color: white;
    padding-right: 8px !important;
    transform: rotate(-26deg);
}

.closeIcon {
    color: #FD5D51;
}

/* STEP INDICATOR */
.stepIndicator {
    background: #111;
    gap: 0;
}

.stepCircle {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    color: #666;
    font-size: 11px;
}

.activeStep {
    border-color: #FD5D51;
    background: #FD5D51;
    color: #fff;
}

.stepLabel {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #666;
}

.activeLabel {
    color: #FD5D51;
}

.stepLine {
    flex: 1;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

/* BODY */
.bookingBody {
    background: #111;
    padding: 20px 24px 8px;
}

.sectionTitle {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #FD5D51;
}

.requiredStar {
    color: #ff9e99;
}

.ageNote {
    color: white;
    font-weight: 300;
    text-transform: none;
    font-size: 9px !important;
}

/* FOOTER */
.bookingFooter {
    background: #111;
    padding: 16px 24px 20px;
}

/* HIDE CLASS */
.stepHidden {
    display: none;
}

.stepBreedHidden {
    display: none;
}

.seperateStepHidden {
    display: none;
}

@media (max-width:768px) {
    .sepServiceBody {
        height: 40vh !important;
    }
}

@media(max-width:425px) {
    #separateServiceModalLabel {
        font-size: 13px !important;
    }

    .sepServiceBody {
        height: 25vh !important;
        width: 100% !important;
    }
}

@media (max-width:375px) {
    #separateServiceModalLabel {
        font-size: 10px !important;
    }

    .bookingHeader h5 {
        font-size: 15px !important;
    }

    .sepServiceBody {
        height: 20vh !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .floatingWhatsApp .waBadge {
        display: none !important;
    }
}


/* Booking Modal Offer Card */
.booking-offer-card {
    position: relative;
    background: rgba(26, 26, 26, 0.88) !important;
    padding: 13px 38px !important;
    color: #fff !important;
    overflow: hidden !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: inset 0 0 0 1px rgba(253, 93, 81, 0.12) !important;
    transition: all 0.3s ease !important;
}



.booking-offer-card:hover {
    border-color: #FD5D51 !important;
    box-shadow:
        inset 0 0 0 1px rgba(253, 93, 81, 0.15),
        0 0 18px rgba(253, 93, 81, 0.08) !important;
}

.offer-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #FD5D51 !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .8px !important;
    border-radius: 8px !important;
    padding: 5px 10px !important;
    margin-bottom: 10px !important;
    line-height: 1 !important;
}

.offer-badge i {
    font-size: 10px !important;
}

.offer-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #FD5D51 !important;
    margin-bottom: 5px !important;
    line-height: 1.4 !important;
}

.offer-desc {
    font-size: 12px !important;
    color: #d7d7d7 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    max-width: 88% !important;
}



@media (max-width: 575px) {

    .booking-offer-card {
        padding: 14px 15px !important;
        /* border-radius: 10px !important; */
    }

    .offer-title {
        font-size: 13px !important;
    }

    .offer-desc {
        font-size: 11.5px !important;
        max-width: 85% !important;
    }

    .offer-paw-img {
        width: 56px !important;
        bottom: -6px !important;
        right: -6px !important;
    }
}

/* MAIN LAYOUT */
.offer-main-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* STAR OFFER */
.offer-discount-star {
    width: 78px;
    height: 78px;
    background: #FD5D51;
    clip-path: polygon(50% 0%, 61% 6%, 75% 3%, 82% 14%, 96% 18%, 94% 32%, 100% 50%, 94% 68%, 96% 82%, 82% 86%, 75% 97%, 61% 94%, 50% 100%, 39% 94%, 25% 97%, 18% 86%, 4% 82%, 6% 68%, 0% 50%, 6% 32%, 4% 18%, 18% 14%, 25% 3%, 39% 6%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center !important;
}

.offer-side-paw i {
    transform: rotate(15deg) !important;
    font-size: 40px !important;
    color: #FD5D51;
}


.offer-discount-star span {
    margin-bottom: 0px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.offer-discount-star small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    top: 1px;
}

/* CONTENT */
.offer-content {
    flex: 1;
}

.offer-big-title {
    margin-bottom: 10px !important;
    color: #FD5D51;
    font-size: 15px !important;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center !important;
}

.offer-mini-text {
    margin: 4px 0 0;
    color: white;
    font-size: 12px !important;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center !important;
}

.offer-highlight-text {
    color: #FD5D51;
    font-size: 10px !important;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center !important;
}

/* SIDE PAW */


/* BOTTOM STRIP */
.offer-bottom-strip {
    margin-bottom: 42px !important;
    margin-top: 10px !important;
    border: 1px solid rgba(253, 93, 81, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-location-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #FD5D51;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.offer-bottom-strip p {
    margin: 0;
    flex: 1;
    color: white;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-bottom-strip p span {
    color: #FD5D51;
    font-weight: 900;
    font-size: 11px !important;
}

.offer-store-icon {
    color: #FD5D51;
    font-size: 22px;
}


/* MOBILE */
@media (max-width:575px) {

    .offer-discount-star {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .offer-big-title {
        font-size: 22px;
    }

    .offer-mini-text {
        font-size: 10px;
    }

    .offer-highlight-text {
        font-size: 12px;
    }

    .offer-bottom-strip p {
        font-size: 10px;
    }

    .offer-store-icon {
        font-size: 18px;
    }


}

.sepOffStrip {
    margin-bottom: 400px !important;
}

@media (max-width:1110px) {
    .sepOffStrip {
        margin-bottom: 150px !important;
    }
}

@media (max-width :768px) {
    .sepOffCard {
        margin-bottom: 30px !important;
    }

    .sepOffStrip {
        margin-bottom: 0px !important;
    }
}

/* scrolling wrapper */
.scrollTextWrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #FD5D51 !important;

}

/* scrolling text animation */
.scrollText {
    display: inline-block;
    padding-left: 100% !important;
    animation: scrollLeft 10s linear infinite;
    color: #FD5D51 !important;
    width: 100% !important;
    font-weight: 900 !important;

}



/* scroll animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* DATE + TIME INPUT */
.booking-date-input,
.booking-time-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    height: 52px;
}

/* TEXT COLOR */
.booking-date-input::-webkit-datetime-edit,
.booking-time-input::-webkit-datetime-edit {
    color: #fff;
}

/* CALENDAR + CLOCK ICON */
.booking-date-input::-webkit-calendar-picker-indicator,
.booking-time-input::-webkit-calendar-picker-indicator {
    filter: invert(56%) sepia(89%) saturate(1800%) hue-rotate(325deg) brightness(100%) contrast(100%);
    cursor: pointer;
}

/* INPUT FOCUS */
.booking-date-input:focus,
.booking-time-input:focus {
    border-color: #FD5D51 !important;
    box-shadow: 0 0 0 0.18rem rgba(253, 93, 81, 0.18) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

/* CALENDAR SELECTED DATE */
.booking-date-input::-webkit-date-and-time-value {
    text-align: left;
}

/* PLACEHOLDER FIX */
.booking-date-input:required:invalid,
.booking-time-input:required:invalid {
    color: rgba(255, 255, 255, 0.7);
}

/* TIME WRAPPER */

.appointment-time-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* TIME INPUT */

.booking-time-input {
    flex: 1;
}

/* TOGGLE WRAPPER */

.amPmToggle {
    display: flex;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 52px;
}

/* BUTTON */

.amPmBtn {
    width: 50px;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: transparent;
}

/* ACTIVE */

.btn-check:checked+.amPmBtn {
    background: #FD5D51 !important;
    color: #fff !important;
}

/* HOVER */

.amPmBtn:hover {
    color: #fff !important;
}