:root {
    --nunito: "Nunito", sans-serif;
    --nunito-600: 600;
    --jost: "Jost", sans-serif;
    --dancingScript: 'Dancing Script', sans-serif;
    --mulish: "mulish", sans-serif;
    --mulish-600: 600;
}

.jost {
    font-family: var(--jost);
}

.dancing-script {
    font-family: var(--dancingScript);
}

.mulish {
    font-family: var(--mulish);
    font-weight: var(--mulish-600);
}

.nunito {
    font-family: var(--nunito);
    font-weight: var(--nunito-600);
}


body {
    /* font-family: "Lato", sans-serif; */
    font-family: var(--nunito);
    color: #454545;
    line-height: 1.1;
}

h2,
h3 {
    font-family: var(--jost) !important;
}


.logo {
    height: 1.2em;
}

main {
    /* min-height: 80vh; */
    position: relative;
    overflow: hidden;
}

/* FOR ABOVE 768px */

@media screen and (width > 768px) {
    main {
        min-height: 106vh;
    }

    img.icon.left,
    img.icon.right,
    .icon.left,
    .icon.right,
    .star,
    .star.two.right {
        display: none;
    }


}

/* END FOR ABOVE 768px */

main.bannerBg {
    background-color: #f7f4f4;
    /* min-height: 92vh; */
}


.navposition {
    transition: background-color 500ms;
    height: 68px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999999;
    background-color: #ffffff00;
    /* background-color: #FFF; */
    padding-inline: 2vw;
}


.navposition.topNavigation {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.topNav {
    max-width: 1320px;
    padding-inline: 0;
    margin-inline: auto;
}

.topNav .navbar-nav .nav-link {
    color: #000;
    padding-inline: 1vw;
}

.topNav .navbar-nav .nav-link.active {
    color: #f71915;
    background-color: #f719151f;
    border-radius: 50vh;
}


.topNav>.dropdown-menu {
    width: 20vw;
}


/* .animate {
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}


.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    }
    


@keyframes slideIn {
0% {
    transform: translateY(1rem);
    opacity: 0;
}

100% {
    transform: translateY(0rem);
    opacity: 1;
}

0% {
    transform: translateY(1rem);
    opacity: 0;
}
}

@-webkit-keyframes slideIn {
0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
}

100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
}

0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
}
} */



@media all and (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        margin-top: 0;
    }

    .navbar .dropdown-menu.fade-down {
        top: 0%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 20%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: 0.5s;
        opacity: 1;
        visibility: visible;
        transform: rotateX(0deg);
    }
}



.menuProduct {
    background: rgb(235, 50, 47);
    background: linear-gradient(320deg, rgba(235, 50, 47, 1) 0%, rgba(68, 77, 147, 1) 100%);
    border-radius: 0.5vh;
    padding: 10px;
    margin-right: 0.5vw;
    height: 52px;
    aspect-ratio: 1 / 1;
}

.grey {
    background: #F0F0F0;
}

.transparent {
    background: transparent;
    position: relative;
    height: 34px;
}

.transparent img {
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.notagMenu span {
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    position: absolute;
    width: max-content;
    display: inline-block;
}

.dropend .dropdown-toggle {
    color: #f71915;
    margin-left: 0.5em;
}

.dropdown-item:hover {
    background-color: #f71915;
    color: #fff;
}

.topNav.dropdown .dropdown-menu {
    display: none;
}


.flexMnu {
    font-weight: 600;
    color: #000;
}

.topNav .mainMnu .list-group-item {
    border: none;
    padding-inline: 0;
}

.topNav .mainMnu .list-group-item.withoutTag {
    padding-block: 5px;
}

.topNav .mainMnu .list-group-item.firstList {
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #ccd1ea;
    font-family: var(--nunito);
}

.topNav .mainMnu .list-group-item.lblTwo {
    color: #717171;
}

.topNav .mainMnu .list-group-item.lblThree {
    color: #878787;
}

.topNav .mainMnu .list-group-item:hover {
    color: #f71915;
}


/* ============ desktop view ============ */
.dropdown:hover>.dropdown-menu {
    display: block;
    transition: all .34s ease-in-out;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/* ============ desktop view .end// ============ */

.w-10vw {
    width: 100%;
}

.w-15vw {
    width: 100%;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.menuAbsolute {
    background-color: #fff;
    border-radius: 1vh;
    padding: 1vh 0.8vw;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 90vh;
    position: absolute;
    top: 56px;
    width: 100%;
}

.menuTxtNormal {
    font-size: 90%;
    color: #999;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--nunito);
}

.msgMenu {
    color: #484848;
    display: none;
}

.msgMenuMobile {
    display: block;
    font-weight: normal;
    margin-left: 0.8em;
}

.msgMenuMobile .list-group {
    padding-right: 0.8em;
}

.msgMenuMobile .list-group:nth-child(2) {
    border-left: 1px solid #cccccc;
    border-radius: 0;
    padding-left: 0.8em;
    padding-right: 0;
}



.btn-outline-light.navBtn {
    background-color: #f71915;
    border-radius: 50vh;
    border: none;
    padding-inline: 1vw;
}

.btn-outline-light.navBtn:hover {
    color: #fff;
}

/* explore more text css */
.explore_more_container {
    display: flex;
    justify-content: flex-end;
}

.explore_more_btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: inherit;
    text-decoration: none;
    color: rgb(150 153 166 / 1);
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}

.explore_more_svg {
    margin-top: 2px;
    fill: rgb(150 153 166 / 1)
}

.explore_more_btn:hover {
    text-decoration: dashed;
    background: linear-gradient(45deg, #217db3, #3e2c9c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.client_explore_more_container {
    display: flex;
    justify-content: flex-start;
}

/* explore more text css ends */

.oddEvenCardHead {
    font-family: var(--jost);
}

.btnBox {
    margin-top: 20px;
}

.txtPercentage span {
    font-family: var(--jost);
}

@media (min-width: 1200px) {
    .topBanner {
        max-width: 1320px;
        margin-inline: auto;
        padding-inline: 1.5vw;
    }

    main.bannerBg {
        min-height: 92vh;
    }

    h2.headerTxtBig {
        font-size: 250%;
    }
}

@media (min-width: 1366px) {
    main.bannerBg {
        min-height: 80vh;
    }

    h2.headerTxtBig {
        font-size: 300%;
    }
}


@media screen and (min-width: 769px) {
    .navposition {
        padding-inline: 1.5vw;
    }

    .topNav.navbar-expand-lg.topNav .navbar-nav .dropdown-menu {
        width: 90%;
        left: auto;
        right: 0;
    }

    .menuTxtNormal {
        font-size: 90%;
        color: #999;
        line-height: 1.2;
        font-weight: 400;
    }

    .menuAbsolute {
        background-color: transparent;
        border-radius: 1vh;
        padding: 1vh 0.8vw;
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        position: static;
        top: 0;
    }

    .topNav.navbar-expand-lg.topNav .navbar-nav .dropdown-menu.smallWidth {
        width: 30%;
        left: auto;
        right: 0;
    }

    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        /* margin-left: 0.5em; */
        margin-left: 0;
    }

    .topNav .dropdown-menu .dropdown-menu {
        width: 100%;
    }

    .w-10vw {
        width: 10vw;
    }

    .w-15vw {
        width: 15vw;
    }

    .msgMenuMobile {
        display: block;
    }

    .msgMenuMobile .list-group {
        padding-right: 0.8em;
    }

    .msgMenuMobile .list-group:nth-child(2) {
        border-left: 1px solid #cccccc;
        border-radius: 0;
        padding-left: 0.8em;
        padding-right: 0;
    }


    .msgMenu {
        display: block;
    }


    /* .flexMnu {
        gap: 3px;
        padding: 0.5vh 0;
    }

    .flexMnu a {
        position: relative;
        width: fit-content;
        font-size: 0.8em;
        font-size: 0.8em;
        background-color: #4354a3;
        color: #fff;
        padding: 0.5em;
        line-height: 1;
        border-radius: 50vh;
        text-decoration: none;
    }

    .flexMnu a:hover {
        background-color: #f71915;
    }

    .flexMnu a::after { 
        content: "|";
        position: absolute;
        right: -0.8vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .flexMnu a:last-child:after { 
        display: none;
    } */

}


/* END Navigation */

/* BANNER */
.roundedarea {
    width: 200%;
    /* background-color: #e8e6e4; */
    border-radius: 200%;
    margin-inline: auto;
    height: 150%;
    position: absolute;
    left: -50%;
    top: -50%;
    /* background-image: url(../images/banner.png); */
    background-repeat: no-repeat;
    background-position: 59% bottom;
    background-size: 48%;
    object-fit: cover;
}

.productHead {
    color: #f71915;
    font-size: 150%;
    font-weight: 700;
    margin-bottom: 0;
}

/* END BANNER */

.font120 {
    font-size: 120%;
    line-height: 1.2;
}

.font130 {
    font-size: 130%;
    line-height: 1.2;
}

.font150 {
    font-size: 150%;
    line-height: 1.2;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* SECTION ONE */

.boxWhite h3 {
    margin-bottom: 0;
    font-weight: 600;
}

.boxWhite.one h3 {
    color: #40539e;
}

.boxWhite.two h3 {
    color: #21ae53;
}

.boxWhite.three h3 {
    color: #ff5a00;
}

.boxWhite.four h3 {
    color: #6921a9;
}

.boxWhite.five h3 {
    color: #219d81;
}



.boxWhite::before {
    content: "";
    position: absolute;
    display: block;
    height: 3vh;
    aspect-ratio: 1 / 1;
    border-radius: 50vh;
    left: 0.8vw;
    top: 20%;
}

.boxWhite.one::before {
    background-color: #e4eaff;
}

.boxWhite.two::before {
    background-color: #e4ffeb;
}


.boxWhite.three::before {
    background-color: #ece4ff;
}


.boxWhite.four::before {
    background-color: #e6caff;
}

.boxWhite.five::before {
    background-color: #dcfcf4;
}


/* END SECTION ONE */

/* HEADING */

h2.headerTxtBig {
    font-size: 250%;
    font-weight: 700;
    width: 100%;
    line-height: 1.1;
    text-align: left;
    /* color: #000; */
    font-family: var(--jost) !important;
}

h2.headerTxtBig span {
    color: #FF4C4C;
}

.sectionHeadTop {
    font-size: 190%;
    font-weight: 700;
    color: #000;
    font-family: var(--jost);
}

.sectionHeadTop span {
    color: #FF4C4C;
}

/* HEADING END */


/* FOOTER */
/* section.pgfooter {
    background-color: #000;
    position: relative;
}

section.pgfooter::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 6vh;
    bottom: 0;
    background-color: #f71915;
    ;
}

.equenceSocial a {
    width: 44px;
    aspect-ratio: 1 / 1;
    margin-inline: 0.2vw;
}

.copyright {
    position: absolute;
    bottom: 1.5vh;
    color: #fff;
    left: 0;
}

.arrow {
    width: 20%;
    position: absolute;
    bottom: 16%;
    right: 39%;
}

.star {
    width: 8%;
    display: block;
    position: absolute;
    top: 0;
    left: 73%;
} */
/* END FOOTER */

/* BTN */
.ctaBtn {
    border-radius: 50vh;
    padding: 0.8vh 0.8em;
    font-weight: 600;
    display: inline-block;
    /* width: 232px; */
    max-width: 232px;
    text-decoration: none;
    line-height: 1.5;
    /* font-size: 120%; */
    font-size: 21px;
    transition: background-color 0.4s ease-in-out;
    height: 46px;
    max-height: 50px;
    font-family: var(--mulish);
}

.ctaBtn.normalBtn {
    background-color: #f71915;
    color: #ffffff;
    margin-right: 0.8vh;
}

.ctaBtn.normalBtn.subscribe {
    margin-right: 0;
    height: 36px;
    font-size: 80%;
    margin-top: 10px;
    border: none;
}

.ctaBtn span {
    border-radius: 50%;
    display: inline-block;
    width: 1.2em;
    aspect-ratio: 1 / 1;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    font-weight: 700;
}

.ctaBtn.normalBtn span {
    background-color: #00000045;
    color: #f71915;
}

.ctaBtn.gostBtn span {
    background-color: #f719153d;
    color: #f71915;
}

.ctaBtn.gostBtn {
    background-color: transparent;
    border: 1px solid #f71915;
    color: #f71915;

}

.ctaBtn.normalBtn:hover span {
    background-color: #000000a6;
}

.ctaBtn.gostBtn:hover span {
    background-color: #f7191577;
    color: #f71915;
}

/* SOCIAL */

.equenceSocial img:hover {
    filter: invert(34%) sepia(89%) saturate(7322%) hue-rotate(354deg) brightness(92%) contrast(122%);
}


/* SCROLL */
/* ::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
} */

.menuAbsolute::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    border-radius: 10px;
}


.menuAbsolute::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #42424277;
    border-radius: 10px;
}

.menuAbsolute::-webkit-scrollbar-thumb {
    background-color: #fd3d3a;
    outline: 1px solid #ff6967;
    border-radius: 10px;
}

/* END SCROLL */



/* SCROLL */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 0, 0, 0.4);
}

/* testimonial start */
.testimonialSection {
    /* background: rgb(228 242 254 / 1) url(../images/floating-line2.svg) no-repeat 50% 1300%; */
    background: #fcfcff url(../images/floating-line2.svg) no-repeat 50% 1300%;
    background-size: 100% 100%;
    /* margin-top: 10vh; */
    padding-bottom: 10vh;
}

.testimonial-box {
    background-color: #f9f9f9;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f9f9f9;
    /* min-height: 320px;  */
}

/* .testimonial-text {
  overflow: hidden;
  text-overflow: ellipsis;
} */

/* .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
} */

.testimonialSvg {
    position: absolute;
    top: 0;
    right: 5px;
    height: 40px;
    width: 65px;
    fill: #FF4C4C;
}

.testimonial-border {
    border-radius: 20px;
}

.testimonial-top-border {
    border-top-left-radius: 0px;
}

.testimonial-text {
    font-weight: 500;
    font-style: italic;
    font-size: 1rem;
    color: rgb(1 10 40 /1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1oem;
}

.testimonial-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonialImage {
    height: 25px;
    background-color: transparent;
    object-fit: cover;
}

.client-company-logo {
    height: 40px;
    width: 100px;
}

.testimonial-name {
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: 700;
}

.testimonial-designation {
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.testimonial-text::before {
    content: open-quote;
    font-size: 2rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    color: #FF4C4C;
}

.testimonial-text::after {
    content: close-quote;
    font-size: 2rem;
    position: absolute;
    bottom: 5.8rem;
    color: #FF4C4C;
}

/* Normal Button */
.normal-btn {
    font-size: 13px;
    border: 1px solid wheat;
    border-radius: 30px;
    /* background-image: linear-gradient(45deg, #217db3, #3e2c9c); */
    display: inline-block;
    color: #fff;
    font-size: 18.29px;
    font-weight: 500;
    font-family: Jost, sans-serif;
    background-color: #FF4C4C;
    height: 40px;
    line-height: 40px;
    padding: 0 60px;
    position: relative;
    transition: all .4s ease-in-out;
}

.icon-btn {
    background-color: #fff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50px;
    color: #155799;
    position: absolute;
    top: 50%;
    transition: all .4s ease-in-out;
    left: 6px;
    transform: translateY(-50%);
}

.testimonial-box {
    /* opacity: 0; */
    /* Elements start hidden */
    transform: translateY(20px);
    /* Or translateX(-20px) for slide-in */
}

.location {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 0.07cap;
    transition: width 0.4s ease-out;
    margin-right: 8px;
}

.location-icon {
    font-size: 20px;
    margin-right: 2px;
    width: 15px;
    height: 20px;
    line-height: 18px;
    background: linear-gradient(45deg, #217db3, #3e2c9c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.location:hover {
    color: #FF4C4C;
}


/* testimonial end */

/* FOOTER */
/* section.pgfooter {
    background-color: #000;
    position: relative;
}

section.pgfooter::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 6vh;
    bottom: 0;
    background-color: #f71915;
    ;
}

.equenceSocial a {
    width: 44px;
    aspect-ratio: 1 / 1;
    margin-inline: 0.2vw;
}

.copyright {
    position: absolute;
    bottom: 1.5vh;
    color: #fff;
    left: 0;
    font-size: 70%;
}

.copyright a {color: #fff; text-decoration: underline;}
.copyright a:hover {text-decoration: none;}

.footerAwards img {width: calc(70% / 3); max-width: 100px;}

.arrow {
    width: 20%;
    position: absolute;
    bottom: 16%;
    right: 39%;
}

.star {
    width: 8%;
    display: block;
    position: absolute;
    top: 0;
    left: 73%;
} */

/* FOOTER */
/* Extra Addition */
.hidden-scrollbar::-webkit-scrollbar {
    width: 0px;
}

.hidden-scrollbar::-webkit-scrollbar-track {
    background-color: #514f4f;
    border-radius: 4px;
}

.hidden-scrollbar::-webkit-scrollbar-thumb {
    background-color: #727272;
    border-radius: 4px;
}

.gradient-text {
    background-image: linear-gradient(95.93deg, #ff93aa 34.91%, #9f83fd 93.18%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient {
    /* background-image: linear-gradient(45deg, #217db3, #3e2c9c); */
    /* background-image: linear-gradient(85.93deg,#9f83fd 23.18%, #ff93aa 83.91% ) ; */
    background-color: #F7F7F7;
    /* background: #101c3d none repeat scroll 0 0 !important; */
}

.text-heading {
    letter-spacing: 0.06cap;
    color: rgba(7, 16, 45, 1);
}

.social-icon {
    margin-right: 5px;
    text-decoration: none;
}

/* .social-icon svg {
    display: block;
    width: 22px;
    height: 18px;
} */

.footer_logo {
    height: 1.5em;
}

.footer_mainHeading {
    font-size: 16px;
    letter-spacing: 0.1cap;
    font-weight: 600;
    color: #6c757d;
}

.footer_subHeading {
    font-size: 16px;
    letter-spacing: 0.1cap;
    font-weight: 700;
    color: #FF4C4C;
}

.footer_sub_heading {
    font-size: 15px;
    letter-spacing: 0.07cap;
    color: #6c757d;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.footer_sub_heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #FF4C4C;
    /* background-image: linear-gradient(45deg, #217db3, #3e2c9c); */
    transition: width 0.4s ease-out;
}

.footer_sub_heading:hover {
    font-weight: 700;
    color: #FF4C4C;
}

.footer_sub_heading:hover::after {
    width: 20%;
    /* Full width underline on hover */
}

.footer-btn {
    width: 120px;
    font-size: 13px;
    border: 1px solid wheat;
    border-radius: 4px;
    background-image: linear-gradient(45deg, #217db3, #3e2c9c);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    /* Adjust as needed */
    border-top: 1px solid #ddd;
    /* Adjust color and thickness as needed */
}

.left-side {
    display: flex;
    gap: 0.5rem;
    /* Space between links */
}

.footer-link {
    text-decoration: none;
    color: black;
    font-size: 13px;
    font-weight: 400;
}

.footer-link:hover {
    text-decoration: underline;
}

#copyrightTxt {
    /* white-space: nowrap; */
    /* word-break: break-all; */
    color: black;
    font-size: 13px;
    font-weight: 400;
}

/* Responsive styling */
@media (max-width: 767px) {
    .copyright {
        flex-direction: column;
        align-items: flex-start;
    }

    #copyrightTxt {
        font-size: 12px;
        margin-top: 10px;
    }

    .right-side {
        margin-bottom: 0.5rem;
        /* Space between links and copyright text on small screens */
    }

    .ctaBtn {
        height: 52px;
    }
}

.theme-btn {
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-image: linear-gradient(45deg, #217db3, #3e2c9c);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 10px;
    min-width: 20px;
    border-radius: 4px;
    transition: background-color 0.4s ease;
    text-decoration: none;
}

/* Arrow icon styling */
.theme-btn i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s ease;
}

/* Hover effect for the button */
.theme-btn:hover::before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FF4C4C;
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: 4px;
}

.theme-btn:hover {
    color: white;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

.solution-sub-text {
    font-size: 1rem;
    line-height: 1rem;
    color: #454545;
    font-weight: var(--mulish-600);
}

.mulish600 {
    font-family: var(--mulish);
    font-weight: var(--mulish-600);
}


/* explore more text css */
.explore_more_container {
    display: flex;
    justify-content: flex-end;
}

.explore_more_btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: inherit;
    text-decoration: none;
    /* color: rgb(139 92 246 / 1); */
    color: rgb(150 153 166 / 1);
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}

.explore_more_svg {
    margin-top: 2px;
    fill: rgb(150 153 166 / 1)
}

.explore_more_btn:hover {
    text-decoration: dashed;
    background: linear-gradient(45deg, #217db3, #3e2c9c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.client_explore_more_container {
    display: flex;
    justify-content: flex-start;
}

/* explore more text css ends */

section.pgfooter {
    /* background-color: #000; */
    position: relative;
}

/* section.pgfooter::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 6vh;
    bottom: 0;
    background-color: #f71915;
} */

.equenceSocial a {
    width: 44px;
    aspect-ratio: 1 / 1;
    margin-inline: 0.2vw;
}

.copyright {
    /* position: absolute; */
    bottom: 1.5vh;
    color: #fff;
    left: 0;
    font-size: 70%;
}

.copyright a {
    color: #fff;
    text-decoration: underline;
}

.copyright a:hover {
    text-decoration: none;
}

.footerAwards img {
    width: calc(70% / 3);
}

.arrow {
    width: 20%;
    position: absolute;
    bottom: 6%;
    right: 33%;
}

.star {
    width: 8%;
    display: block;
    position: absolute;
    top: 0;
    left: 73%;
}

.primaryTextRed {
    color: #FF4C4C;
}

.hidden-scrollbar::-webkit-scrollbar {
    width: 0;
}

.hidden-scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 1px;
}

.hidden-scrollbar::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 1px;
}

/* Basic styles for dropdown menu */
.dropdown-animation {
    transition: all 10s ease-in-out;
}

/* Gradient-Box Styles Starts */
.background-gradient {
    background-image: linear-gradient(184.78deg, #fa709a 7.64%, #fee140 120.07%);
}

.box-border-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
}

.box-left-text {
    font-size: 2.1rem;
    font-weight: 500;
}

.box-sub-text {
    line-height: 1.3;
}

.box-button {
    min-width: 150px;
    border-radius: 50px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    text-align: center;
    text-transform: capitalize;
    --tw-text-opacity: 1;
    color: rgb(34 34 34 / var(--tw-text-opacity));
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
}

/* Gradient-Box Styles Ends */

/* END FOOTER */
/* END FOOTER */

@media screen and (width < 991px) {

    .topNav .navbar-nav .nav-link {
        padding-left: 0.8vw;
    }

    .topNav .navbar-nav .nav-link.active {
        border-radius: 0.5vh;
    }
}


.arrow.banner {
    display: none
}

/* ============================================================== 
     # Preloader 
=================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: white;
}

.site-preloader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.site-preloader .loader-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.site-preloader .ring {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(243, 90, 56, 0.2);
    border-top-color: #f35a38;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-size: 2rem;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px white;
    -webkit-animation: rotation 1s infinite linear;
    animation: rotation 1s infinite linear;
    margin: 0 auto;
}

.blue .site-preloader .ring {
    border: 3px solid rgba(70, 40, 186, 0.2);
    border-top-color: #4628ba;
    color: #ffffff;
}

.site-preloader h2 {
    font-weight: 700;
    margin: 30px auto 0;
    text-align: center;
    text-shadow: 0 0 10px white;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}