html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.highlight {
    font-family: "Poiret One", sans-serif;
    font-weight: bolder;
}

p,
span,
li,
small,
.navMenu,
.headerText {
    font-family: "Inter", sans-serif;
    font-size: calc(14px + 0.4vw);
    line-height: 1.6;
}

.appNavLogo {
    height: 120px;
    margin-top: 0;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px !important;
    }
}

.appHeader {
    /* position: fixed;
    top: 0; */
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}





.navLinks {
    gap: 95px !important;
}


@media (max-width:425px) {
    .appNavLogo {
        max-width: 210px;
    }
}

.navLinks li {
    position: relative;
}



.navMenu {
    color: #000 !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: #ed8bc1;
    transition: width 0.35s ease;
}

.navMenu:hover {
    transform: translateY(-2px);
    color: #ed8bc1 !important;
}

.navMenu:hover::after {
    width: 100%;
}

.navMenu.active {
    color: #ED2490 !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);
    }
}

.productDropdown i {
    transition: transform 0.3s ease;
}

.productDropdown:hover i {
    transform: rotate(180deg);
}

/* Product Drop down */
/* ===== Elegant Product Dropdown ===== */
.productDropdownMenu {
    position: absolute;
    top: 165%;
    left: -49px;
    min-width: 288px;
    background: var(--bs-primary);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    filter: blur(6px);
    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.35s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.productDropdown:hover .productDropdownMenu,
.productDropdown:focus-within .productDropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.productDropdown i {
    transition: transform 0.35s ease;
}

.productDropdown:hover i {
    transform: rotate(180deg);
}

/* ===== Menu Styling ===== */
.productDropdownMenu ul {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

/* Category Title */
.productDropdownMenu .menu-title {
    padding: 10px 22px;
    font-weight: 600;
    color: #ffd;
    letter-spacing: 0.5px;
    cursor: default;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

/* Sub Items */
.productDropdownMenu .sub-item {
    padding: 10px 22px 10px 38px;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.4s ease,
        opacity 0.4s ease,
        padding-left 0.3s ease;
}

/* Hover Effects */
.productDropdownMenu .sub-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.productDropdownMenu .sub-item:hover::before {
    transform: scaleX(1);
}

/* anchor reset */
.productDropdownMenu .sub-item a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 15px !important;
}

/* hover color */
.productDropdownMenu .sub-item:hover a {
    color: var(--bs-primary);
}

.productDropdownMenu .sub-item:hover {
    color: var(--bs-primary);
    padding-left: 48px;
    box-shadow: inset 4px 0 0 var(--bs-primary);
}

/* Divider */
.productDropdownMenu .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 8px 20px;
}

/* ===== Stagger Animation ===== */
.productDropdown:hover .productDropdownMenu li {
    opacity: 1;
    transform: translateX(0);
}

.productDropdownMenu li:nth-child(1) {
    transition-delay: 0.05s;
}

.productDropdownMenu li:nth-child(2) {
    transition-delay: 0.08s;
}

.productDropdownMenu li:nth-child(3) {
    transition-delay: 0.11s;
}

.productDropdownMenu li:nth-child(4) {
    transition-delay: 0.14s;
}

.productDropdownMenu li:nth-child(6) {
    transition-delay: 0.18s;
}

.productDropdownMenu li:nth-child(7) {
    transition-delay: 0.21s;
}

.productDropdownMenu li:nth-child(8) {
    transition-delay: 0.24s;
}

.productDropdownMenu li:nth-child(9) {
    transition-delay: 0.27s;
}

/* Drop Down css end */

/* ===== Offcanvas Css Start ===== */
.cursorPointer {
    cursor: pointer;
}

#mobileNav,
#mobileNav a,
#mobileNav summary,
#mobileNav p {
    font-weight: 500 !important;
}

.offcanvas {
    background-color: #FFE2F2 !important;
}

.offcanvas-header {
    /* background: #ED2490 !important; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLink {
    color: #000;
    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: #ED2490;
    border-radius: 10px;
    transform: translateX(-50%);
}



@keyframes mobileActive {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.mobileProductDropdown {
    width: 100%;
    text-align: center;
}

.mobileProductDropdown summary {
    list-style: none;
    cursor: pointer;
}

.mobileProductDropdown summary::-webkit-details-marker {
    display: none;
}

.productToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.productToggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobileProductDropdown[open] .productToggle i {
    transform: rotate(180deg);
}

.mobileProductMenu {
    margin-top: 12px;
    padding: 16px;
    background: #ED2490;
    border-radius: 14px;

    max-height: 0;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ffd6e6 #ED2490 !important;
    height: 400px;
    opacity: 0;
    transform: translateY(-6px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.mobileProductDropdown[open] .mobileProductMenu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.menu-title {
    color: #ffd6e6;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

.sub-item {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sub-item:hover {
    transform: translateX(6px);
    opacity: 0.85;
}

.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Off Canvas Css End */


/* Index Page Hero Section */
.indexHero {
    background: #FFE2F2 !important;
}

.indexHeroText {
    padding-left: 80px;
}


.indexHeroTextTop {
    padding-top: 50px;
}

.indexHeroText h1 {
    font-size: 60px !important;
    font-weight: bolder !important;
}

.indexHeroText p {
    font-size: 20px !important;
    font-weight: 500 !important;
}


.heroAnimContainer {
    position: relative;
    width: 750px;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.heroImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.heroImg.img1 {
    animation: slideAnim 10.5s infinite;
    animation-delay: 0s;
    animation-fill-mode: backwards;
}

.heroImg.img2 {
    animation: slideAnim 10.5s infinite;
    animation-delay: 3.5s;
    animation-fill-mode: backwards;
}

.heroImg.img3 {
    animation: slideAnim 10.5s infinite;
    animation-delay: 7s;
    animation-fill-mode: backwards;
}

@keyframes slideAnim {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    10% {
        opacity: 1;
        transform: translateX(0);
    }

    30% {
        opacity: 1;
        transform: translateX(0);
    }

    40% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 0;
        transform: translateX(60px);
    }
}

.indexOrderBtn {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    display: inline-block;
    color: #fff;
    background-color: #ED2490;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 5px 26px 5px 26px;
    transition: color 0.35s ease;
}

.indexOrderBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.indexOrderBtn:hover {
    color: black !important;
    border: 1px solid #ED2490 !important;
}

.indexOrderBtn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .indexHeroTextTop {
        padding-top: 120px;
    }

    .indexHeroText {
        padding-left: 30px;
    }

    .indexHeroText h1,
    .indexHeroText span {
        font-size: 42px !important;
    }

    .indexHeroText p {
        font-size: 18px !important;
        width: 100% !important;
    }

    .heroAnimContainer {
        width: 600px;
        height: 450px;
    }
}


@media (max-width:768px) {
    .indexHeroTextTop {
        padding-top: 50px;
        flex-wrap: wrap;
    }

    .indexHeroText p {
        width: 80% !important;
    }

    .indexHeroText {
        padding-left: 0px;
        padding: 15px;
    }

    .heroImg {
        height: 58vh !important;
        width: fit-content !important;
        object-fit: cover;
    }
}

@media (max-width:425px) {
    .heroAnimContainer {
        width: 600px;
        height: 330px;
    }



    .indexHeroText h1 {
        font-size: 24px !important;
        font-weight: bolder !important;
    }

    .indexHeroText p {
        font-size: 15px !important;
        width: 100% !important;
        text-align: justify !important;
    }

    .heroImg {
        width: fit-content !important;
        height: 37vh !important;
    }
}

@media (max-width:375px) {
    .heroAnimContainer {
        width: 600px;
        height: 300px;
    }
}


/* About Section */
.aboutUsSection {
    padding: 40px 20px;
}

.aboutUsHeader,
.serviceHeader,
.wholeHeader {
    margin-bottom: 30px;
}

.aboutUsWrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

.aboutUsImg {
    flex: 0 0 500px;
    position: relative;
    z-index: 2;
}

.aboutUsImg img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.aboutUsContent {
    flex: 1;
    background: #FFE2F2;
    padding: 100px 40px 90px 120px;
    margin-left: -80px;
    border-radius: 10px;
}

.aboutUsContent p {
    font-weight: 500 !important;
}

@media (max-width:1024px) {

    .aboutUsImg {
        flex: 0 0 320px;
    }

    .aboutUsImg img {
        height: 420px;
    }

    .aboutUsContent {
        padding: 40px 30px 40px 100px;
    }

}


@media (max-width:768px) {

    .aboutUsWrapper {
        flex-direction: column !important;
        align-items: center !important;
    }

    .aboutUsImg {
        flex: none;
        width: 80%;
        margin: 0 auto;
    }

    .aboutUsImg img {
        width: 100%;
        height: auto;
    }

    .aboutUsContent {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
        padding: 30px;
    }

}

/* Service Section */

.serviceContent {
    background: #FFE2F2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 70px;
}

.serviceCard {
    background: white;
    padding: 60px 26px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.serviceCard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.serviceCard img {
    width: 100%;
    height: 200px !important;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.serviceCard:hover img {
    transform: scale(1.1);
    filter: saturate(1.8) contrast(1.1);
}

.serviceCard::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);
    transform: rotate(25deg);
    transition: 0.8s;
}


.serviceCard:hover::after {
    top: 100%;
    left: 100%;
}

.serviceCardBtn {
    position: relative;
    background-color: #ED2490;
    overflow: hidden;
    padding: 5px 26px 5px 26px;
    color: white;
    border: 1px solid transparent !important;
    border-radius: 40px;
    z-index: 1;
    transition: color 0.35s ease;
}

.serviceCardBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.serviceCardBtn:hover {
    color: black !important;
    border: 1px solid #ED2490 !important;
}

.serviceCardBtn:hover::before {
    transform: scaleX(1);
}

.serviceCardBtn i {
    color: inherit;
}

.blinkIcon {
    animation: blink 2s infinite !important;
}

/* Blink Icon */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


@media (max-width: 768px) {

    .serviceContent {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .serviceCard {
        padding: 40px 20px;
    }

    .serviceCard img {
        height: 160px !important;
    }

}


@media (max-width: 425px) {

    .serviceContent {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .serviceCard {
        padding: 35px 18px;
    }

    .serviceCard img {
        height: 140px !important;
    }

}


/* Whole Section */

.wholeContent {
    display: flex;
    align-items: stretch;
}


.wholeAnimContainer {
    position: relative;
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

.wholeServiceImg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}



.wholeServiceContent {
    flex: 1;
    background: #FFE2F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    text-align: center;
}


.image1 {
    animation: fadeSlide 10s infinite;
    animation-delay: 0s;
}

.image2 {
    animation: fadeSlide 10s infinite;
    animation-delay: 2.5s;
}

.image3 {
    animation: fadeSlide 10s infinite;
    animation-delay: 5s;
}

.image4 {
    animation: fadeSlide 10s infinite;
    animation-delay: 7.5s;
}



@keyframes fadeSlide {

    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    35% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 0;
    }

}


@media (max-width:1024px) {
    .wholeServiceContent {
        width: 350px !important;
        padding: 10px !important;
    }

    .wholeServiceContent p {
        font-size: 13px !important;
    }

    .wholeServiceContent {
        padding: 0 !important;
    }

}


@media (max-width:768px) {

    .wholeContent {
        flex-direction: column;
        text-align: center;
    }

    .wholeAnimContainer {
        min-height: 793px !important;
    }

    .wholeContent img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .wholeContent h6 {
        margin-bottom: 10px;
    }

    .wholeServiceContent {
        width: 100% !important;
        padding: 25px !important;
    }

    .wholeServiceContent p {
        width: 70%;
        margin: auto;
        justify-content: center !important;
    }

}



@media (max-width:425px) {

    .wholeAnimContainer {
        min-height: 360px !important;
    }

    .wholeServiceContent {
        padding: 22px 18px !important;
    }

    .wholeServiceContent p {
        width: 90%;
    }

}



@media (max-width:375px) {

    .wholeAnimContainer {
        min-height: 320px !important;
    }

    .wholeServiceContent h6 {
        font-size: 18px;
    }

    .wholeServiceContent p {
        font-size: 14px;
    }

}



@media (max-width:320px) {

    .wholeAnimContainer {
        min-height: 280px !important;
    }

    .wholeServiceContent h6 {
        font-size: 16px;
    }

    .wholeServiceContent p {
        font-size: 13px;
    }

}

/* Id Card Section */
.idCardServiceBody {
    margin: 120px auto;
    padding: 0 20px;
}

.idCardServiceImg {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.idCardServiceImg img {
    position: relative;
    top: 27px;
    left: 70px;
    width: 100%;
    max-width: 700px;
    height: auto !important;
    border: 10px solid #ED2490;
    border-radius: 40px !important;
    background: #fff;
    transform: rotate(-8deg);
}

.idCardServiceContent {
    background-color: #FFD6E6;
    padding: 80px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-left: 140px;
    text-align: start !important;
}

.idCardServiceContent h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: #ED2490;
    margin-bottom: 20px;
}

.idCardServiceContent h6 {
    font-size: clamp(20px, 2.5vw, 28px);
    color: #ED2490;
    font-weight: 600;
}

.idCardServiceContent p {
    width: 70%;
}

.idCardServiceBody span {
    font-size: 20px !important;
}

@media(max-width:1024px) {

    .idCardServiceImg img {
        max-width: 520px;
        left: 40px;
        top: 20px;
    }

    .idCardServiceContent {
        padding: 0;
        padding-left: 100px;
    }

    .idCardServiceContent h2 {
        font-size: 35px !important;
        margin-top: 20px !important;
    }

    .idCardServiceContent button {
        margin-bottom: 20px !important;
    }

    .idCardServiceContent p {
        width: 100%;
    }

}

@media(max-width:880px) {

    .idCardServiceImg img {
        max-width: 460px;
        width: 100%;
        height: auto;
        left: 25px;
        top: 15px;
    }

    .idCardServiceContent {
        padding: 45px;
        padding-left: 80px;
    }

    .idCardServiceContent h2 {
        font-size: 28px;
    }

    .idCardServiceContent p {
        font-size: 15px;
    }

}


@media (max-width: 768px) {

    .idCardServiceBody {
        display: block !important;
    }

    .idCardServiceBody .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }

    .idCardServiceImg {
        width: 100% !important;
        flex: unset !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 30px !important;
    }


    .idCardServiceImg img {
        width: auto !important;
        max-width: 430px !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        transform: rotate(0deg) !important;
    }

    .idCardServiceContent {
        width: 100% !important;
        padding: 30px !important;
        padding-left: 30px !important;
        text-align: start !important;
        border-radius: 20px;
    }

    .idCardServiceContent p {
        width: 100% !important;
    }
}


/* ===== 425px ===== */

@media (max-width: 425px) {

    .idCardServiceImg img {
        max-width: 320px !important;
        height: auto !important;
        transform: rotate(0deg) !important;
    }

    .idCardServiceContent {
        padding: 22px !important;
    }

    .idCardServiceContent h2 {
        font-size: 22px !important;
        font-weight: 600 !important;
    }

    .idCardServiceContent h6 {
        font-size: 18px !important;
    }
}

@media (max-width: 375px) {

    .idCardServiceImg img {
        max-width: 290px !important;
    }

    .idCardServiceContent {
        padding: 18px !important;
    }

    .idCardServiceContent h2 {
        font-size: 20px !important;
    }

    .idCardServiceContent h6 {
        font-size: 16px !important;
    }
}

/* Footer Section */
.footerSection {
    background: #FFE2F0;
}

.footerTitle {
    font-size: 22px;
    color: #ED2490;
    font-weight: 600;
    margin-bottom: 20px;
}

.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: 10px;
    font-size: 19px !important;
    color: #000;
}

.footerLinks li:hover {
    font-weight: 600;
    cursor: pointer;
}

.footerLinks a {
    text-decoration: none;
    color: #000;
    font-size: 19px !important;
}

.footerLinks .activeLink {
    color: #ED2490 !important;
    font-weight: 900 !important;
    text-decoration: underline;
}

.footerLinks a:hover {
    font-weight: 600;
    cursor: pointer;
}

.contactLinks li {
    display: flex;
    align-items: center;
    gap: 10px;
}


.contactLinks i {
    color: #ED2490;
    font-size: 18px;
    padding: 8px;
    border-radius: 30px;
}

.footerIcons a {
    width: 42px;
    height: 42px;
    background: #ED2490;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.footerIcons a:hover {
    background: #fff;
    color: #ED2490;
}

.socialTitle {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ED2490;
}

.copyRightTexts p {
    margin-bottom: 0 !important;
}


@media (max-width:1024px) {

    .footerTitle {
        font-size: 20px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 17px !important;
    }

    .footerText {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .footerIcons a {
        width: 38px !important;
        height: 38px !important;
    }

    .footerIcons i {
        font-size: 16px !important;
    }

    .contactLinks i {
        font-size: 16px !important;
    }

}


@media (max-width:768px) {

    .footerSection img {
        display: block !important;
        margin: auto !important;
    }

    .footerText {
        text-align: justify !important;
        padding-right: 0 !important;
        width: 70%;
        margin: auto;
    }

    .socialTitle {
        text-align: center !important;
    }

    .footerIcons {
        justify-content: center !important;
    }

    .footerSection .col-lg-3:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .footerSection .col-lg-3 {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }

    .footerTitle {
        font-size: 18px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 16px !important;
    }

}


@media (max-width:425px) {

    .footerSection .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .footerTitle {
        font-size: 17px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 14px !important;
    }

    .footerText {
        font-size: 14px !important;
    }

    .footerIcons a {
        width: 36px !important;
        height: 36px !important;
    }

    .footerIcons i {
        font-size: 15px !important;
    }

    .contactLinks li {
        justify-content: center !important;
    }

}

@media (max-width:375px) {

    .footerTitle {
        font-size: 16px !important;
    }

    .footerLinks li,
    .footerLinks a {
        font-size: 13px !important;
    }

    .footerText {
        font-size: 13px !important;
    }

    .footerIcons a {
        width: 32px !important;
        height: 32px !important;
    }

    .footerIcons i {
        font-size: 14px !important;
    }

    .copyRightTexts p {
        font-size: 12px !important;
    }

}

/* Contact Us Page Css */

.contactHeroImg {
    height: 80vh;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;

    animation: contactSlide 20s infinite;
}


/* FADE + SLIDE ANIMATION */

@keyframes contactSlide {

    0% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgOne.jpeg");
        background-position: center 0%;
    }

    30% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgOne.jpeg");
        background-position: center 10%;
    }

    33% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgTwo.jpg");
        background-position: center 0%;
    }

    63% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgTwo.jpg");
        background-position: center 10%;
    }

    66% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgThree.jpg");
        background-position: center 0%;
    }

    96% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgThree.jpg");
        background-position: center 10%;
    }

    100% {
        background-image: url("/static/img/backgroundImages/contactUsPage/contactUsImgOne.jpeg");
        background-position: center 0%;
    }

}

.contactHeroContent {
    display: flex;
    justify-content: center;
    width: 30%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px !important;

}

@media (max-width :768px) {

    .contactHeroImg {
        height: 60vh;
    }

    .contactHeroContent {
        padding: 30px;
        width: fit-content;
        font-size: 20px;
    }

}

@media (max-width:425px) {

    .contactHeroImg {
        height: 42vh;
    }

}



/* Contact Form */
.contactBody {
    width: 100%;
    padding: 40px 20px;
    background-color: #FFE2F2 !important;
}

.contactBody>.d-flex {
    gap: 40px;
}

.contactBodyContent {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 40px;
}


.contactForm {
    width: 65%;
}

.contactForm input,
.contactForm textarea {
    background-color: transparent !important;
    color: #000 !important;
    border-color: #ED2490;
}

.contactForm input:focus,
.contactForm textarea:focus {
    outline: none;
    border-color: #ED2490;
    box-shadow:
        0 0 12px rgba(237, 70, 198, 0.6),
        0 0 24px rgba(255, 255, 255, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
}


.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 0.8;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: #000;
    opacity: 0.8;
}

.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
    color: #000;
}

.sendMsg {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 3vw, 26px) !important;
    transition: color 0.35s ease;
}

.sendMsg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FFE2F2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.sendMsg:hover {
    color: #ED2490 !important;
}

.sendMsg:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .contactBody>.d-flex {
        flex-wrap: wrap;
    }

    .contactBodyContent,
    .contactForm {
        width: 100%;
    }

    .contactBodyContent h1,
    .contactBodyContent p {
        text-align: start;
    }

}



.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: #ED2490;
    color: #fff;
}

.contactAddresses h3 {
    text-align: center;
    font-size: 32px;
}

.addressDivider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.addressDivider .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff, transparent);
}

.addressDivider i {
    color: #fff;
}

.addressDivider .small {
    font-size: 12px;
    opacity: 0.8;
}

.addressDivider .big {
    font-size: 20px;
}

.contactUsInfo {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.contactUsDetail {
    display: flex !important;
    gap: 18px !important;
}

.contactUsDetail i {
    background-color: #fff;
    padding: 10px 11px;
    color: #ED2490 !important;
    border-radius: 40px;
    font-size: 16px !important;
}

@media (max-width: 768px) {

    .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 HERO SECTION
================================*/

.serviceHero {
    margin: 0 !important;
    padding: 0 !important;
}

.servicePageContent {
    margin: 0 !important;
    padding: 2rem 1rem !important;
}

.servicePageContent {
    position: relative;
    width: 100%;
    height: 40vh !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image: url("/static/img/backgroundImages/servicePage/serviceHeroImg.png");
    background-size: 100% auto !important;
    background-position: center top !important;
    background-repeat: no-repeat;

    color: #ED2490;
    overflow: hidden;
}

/* CONTENT */
.servicePageContent h1 {
    font-size: 50px !important;
    margin: 1rem 0 0.5rem !important;
    line-height: 1.3 !important;
    z-index: 2;
}


/* Heading */


.lines {
    display: block;
    width: 650px;
    height: 2px;
    background: #ED2490;
    margin: 20px auto 0;
    position: relative;

    transform: scaleX(0);
    transform-origin: center;
    animation: lineGrow 1s ease forwards;
}

/* diamonds */

.lines::before,
.lines::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ED2490;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.lines::before {
    left: -6px;
}

.lines::after {
    right: -6px;
}



@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 1440px) {
    .servicePageContent {
        background-size: 100% auto !important;
        height: 25vh !important;
    }

    .servicePageContent h1 {
        font-size: 36px !important;
    }

    .lines {
        width: 400px !important;
    }
}

@media (max-width: 1024px) {
    .servicePageContent {
        background-size: 100% auto !important;
        height: 17vh !important;
    }

    .servicePageContent h1 {
        font-size: 36px !important;
    }

    .lines {
        width: 400px !important;
    }
}

@media (max-width: 768px) {
    .servicePageContent {
        background-size: 100% auto !important;
        height: fit-content !important;
    }

    .servicePageContent h1 {
        font-size: 1.6rem !important;
    }

    .lines {
        width: 10rem !important;
    }
}

@media(max-width :450px) {
    .servicePageContent {
        background-size: 100% auto !important;
        height: fit-content !important;
    }
}


@media (max-width: 425px) {
    .servicePageContent {
        background-size: 100% auto !important;
    }

    .servicePageContent h1 {
        font-size: 18px !important;
    }


    .lines {
        margin-top: 0 !important;
        width: 190px !important;
        height: 1px !important;
    }

    .lines::before,
    .lines::after {
        width: 8px;
        height: 8px;
    }
}


@media (max-width: 375px) {
    .servicePageContent {
        padding: 1rem 0.5rem !important;
        background-size: 100% auto !important;
    }

    .servicePageContent h1 {
        font-size: 16px !important;
    }

    .lines {
        margin-top: 0 !important;
        width: 100px !important;
        height: 1px !important;
    }

    .lines::before,
    .lines::after {
        width: 6px;
        height: 6px;
    }
}





/* Scroll Image Css */
.scrollImgWrapper {
    width: 100%;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.imgTrack {
    display: flex;

}

.imgTrack img {
    height: 250px;
    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: 100px;
    }

    .imgTrack img {
        height: 100px;
    }
}


/* Our Service Section */
.servicesSection {
    padding: 80px 20px;
    background: #f6f6f6;
    margin-top: 0px !important;
}

.serviceHeader {
    margin-bottom: 50px;
}

.servicesGrid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.serviceCard {
    background: #f7cfe0;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.cardHeader {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cardHeader h6 {
    background: #ED2490;
    color: white;
    padding: 8px 22px;
    border-radius: 20px;
}

.cardContent {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cardContent img {
    width: 160px;
}

.cardText {
    text-align: start !important;
}

.cardText p,
li {
    font-size: 16px !important;

}

.cardText li {
    font-weight: bolder !important;
}

.cardText .title {
    color: #ED2490;
    margin-bottom: 4px;
}


@media (max-width:1024px) {

    .servicesGrid {
        gap: 30px;
    }

    .cardContent img {
        width: 140px;
    }

}

@media (max-width:768px) {

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .cardContent {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cardContent img {
        width: 200px;
    }

}

@media (max-width:425px) {

    .servicesSection {
        padding: 60px 15px;
    }

    .serviceCard {
        padding: 20px;
    }

    .cardContent img {
        width: 160px;
    }

}

@media (max-width:375px) {

    .cardContent img {
        width: 140px;
    }

    .cardHeader h6 {
        font-size: 14px;
    }

}


/* ===============================
   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;
    height: 56px;

    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;
        height: 52px;
        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);
    }
}

/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #FFE2F0;
    /* 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, 34, 104, 0.2);
    border-top-color: #fa0079;
    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: #ED2490;
    /* your brand color */
    border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #ab638b;
}

/* Modal Css */
.sectionTitle h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ED2490;
}

.fieldLabel {
    font-size: 14px;
    font-weight: 500;
    color: #ED2490;
    margin-bottom: 4px;
}



.required {
    color: #ED2490;
}



.form-control,
.form-select {
    background: transparent;
    border: 1.5px solid #ED2490;
    color: #ED2490;
    border-radius: 6px;
    font-size: 14px;
}



.form-control::placeholder {
    color: #ED2490;
    opacity: 0.6;
}



.form-control:focus,
.form-select:focus {
    border-color: #ED2490;
    box-shadow: 0 0 6px rgba(237, 36, 144, 0.5);
    background: transparent;
    color: #ED2490;
}

textarea.form-control {
    resize: none;
    min-height: 90px;
}

.serviceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 10px;
}


.svcCard {
    border: 1.5px solid #ED2490;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
}

.svcCard.selected {
    background: #ED2490;
}

.svcCard.selected p,
.svcCard.selected i {
    color: white !important;
}


.serviceName i {
    margin-right: 6px;
    color: #ED2490;
}



.serviceName {
    color: #ED2490;
    font-weight: 500;
}


.svcCard p {
    color: #ED2490;
}

.svcCard i {
    color: #ED2490;
}

.svcCard:hover {
    background: #ED2490;
}

.svcCard:hover i,
.svcCard:hover p {
    color: white !important;
}


/* SUB TITLE */

.subTitle {
    color: #ED2490;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 6px;
}


/* OPTION PILLS */

.optionPills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}


/* SINGLE PILL */

.optionPill {
    border: 1.5px solid #ED2490;
    color: #ED2490;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}


/* ACTIVE PILL */

.optionPill.selected {
    background: #ED2490;
    color: white;
}

/* MODAL HEADER */

.modal-header {
    background: #FFE2F0;
    border-bottom: 1px solid #ED2490;
}


/* MODAL FOOTER */

.modal-footer {
    background: #FFE2F0;
    border-top: 1px solid #ED2490;
}


.orderNowBtn {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    color: #fff;
    background-color: #ED2490;
    border: 1px solid transparent !important;
    z-index: 1;
    padding: 5px 26px 5px 26px;
    transition: color 0.35s ease;
}

.orderNowBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}


.orderNowBtn:hover {
    color: black !important;
    border: 1px solid #ED2490 !important;
}

.orderNowBtn:hover::before {
    transform: scaleX(1);
}

#ledFrameNote {
    display: none;
}


/* Tour Tooltip Background */
.introjs-tooltip {
    background: #FFE2F0 !important;
    color: #ED2490 !important;
    border-radius: 12px;
}

.introjs-tooltip-title {
    font-size: 18px;
    width: 90%;
    min-height: 0.1em !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700;
    line-height: 1.5;
}

/* Tooltip text */
.introjs-tooltiptext {
    font-weight: 500;
    font-family: "Inter", sans-serif !important;
}

/* Close Button */
.introjs-tooltipbuttons .introjs-skipbutton {
    color: #ED2490 !important;
    font-weight: 600;
}

/* Next / Done Button */
.introjs-nextbutton,
.introjs-donebutton {
    background: #ED2490 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 6px 14px;
}

/* Hover */
.introjs-nextbutton:hover,
.introjs-donebutton:hover {
    background: #c81e7a !important;
}

/* Highlight border */
.introjs-helperLayer {
    border: 3px solid #ED2490 !important;
    border-radius: 10px;
}

/* 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: #ED2490;
    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: #ED2490;
    border-radius: 10px;
}

.testimonialText {
    scrollbar-width: thin;
    scrollbar-color: #ED2490 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;
    }
}

/* Our Service */
.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto !important;
}

@media (max-width: 425px) {
    .floatingWhatsApp .waBadge {
        display: none !important;
    }
}