    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        
    }

    body {
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
    }

    .container {
        max-width: 1300px;
    }

    .sub-heading {
        font-family: "Sacramento", cursive;
    }

    /* Btns css  */
    a.golbal-btn3 {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(240, 88, 101, 1) 100%);
        color: #ffffff;
        text-decoration: none;
        padding: 20px 30px;
        border-radius: 11px;
        font-weight: 600;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        display: block;
        width: 45%;
        text-align: center;
        transition: all 500ms linear;
        position: relative;
    }

    a.golbal-btn2 {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(208, 208, 208, 1) 100%);
        color: #000;
        text-decoration: none;
        padding: 20px 30px;
        border-radius: 11px;
        font-weight: 600;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        display: block;
        width: 45%;
        text-align: center;
        transition: all 500ms linear;
        position: relative;
    }


    a.golbal-btn {
        color: #000;
        text-decoration: none;
        padding: 20px 30px;
        border-radius: 11px;
        font-weight: 600;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin: 0 9px;
        display: block;
        width: 50%;
        text-align: center;
        background: linear-gradient(90deg, rgba(240, 88, 101, 1) 0%, rgba(244, 124, 86, 1) 100%);
        color: #fff;
        transition: all 500ms linear;
    }

    a.golbal-btn3:hover {
        background: linear-gradient(90deg, rgba(240, 88, 101, 1) 0%, rgba(244, 124, 86, 1) 100%);

        color: #ffffff;
    }

    a.golbal-btn2:hover {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(240, 88, 101, 1) 100%);
        color: #ffffff;
    }

    a.golbal-btn:hover {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(240, 88, 101, 1) 100%);
        color: #ffffff;
    }

    /* Btns css  */

    /* Header css  */
    /* nav-bar  */
    .cdpn-mobile-menu__list li strong {
        font-size: 18px;
    }

    ul.cdpn-mobile-menu__list.row.gy-4 h5 {
        font-size: 23px;
    }

    /* ====== WRAPPER ====== */
    .cdpn-mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1000;
    }

    /* ====== TOGGLE BUTTON ====== */
    .cdpn-mobile-menu__toggle {
        position: fixed;
        top: -21px;
        right: -24px;
        width: 100px;
        height: 100px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1002;
        transition: background 0.3s;
        background: linear-gradient(90deg, rgba(26, 32, 79, 1) 0%, rgba(92, 33, 93, 1) 100%);
        border: 4px dashed #fff;
        overflow: hidden;
    }

    .cdpn-mobile-menu__toggle span {
        width: 26px;
        height: 3px;
        background: #fff;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    /* ====== FULLSCREEN BACKGROUND ====== */
    .menu-bg {
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        transform-origin: top right;
        transition: all 0.8s ease-in-out;
        z-index: 1000;
        background: linear-gradient(90deg, rgba(26, 32, 79, 1) 0%, rgba(92, 33, 93, 1) 100%);
    }

    /* ====== MENU CONTAINER ====== */
    .cdpn-mobile-menu__container {
        position: fixed;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
        z-index: 1001;
    }

    .cdpn-mobile-menu__list {
        list-style: none;
        text-align: center;
    }

    .cdpn-mobile-menu__list li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
        text-align: left;
        color: #fff;
        font-size: 13px;
        line-height: 17px;
        font-weight: 400;
    }

    .cdpn-mobile-menu__list a {
        color: #fff;
        text-decoration: none;
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    /* ====== ACTIVE STATE ====== */
    .js-cdpn-mobile-menu_activated .menu-bg {
        width: 100%;
        height: 100%;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__container {
        opacity: 1;
        pointer-events: auto;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animate list items one by one */
    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(1) {
        transition-delay: 0.3s;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(2) {
        transition-delay: 0.4s;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(3) {
        transition-delay: 0.5s;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(4) {
        transition-delay: 0.6s;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(5) {
        transition-delay: 0.7s;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__list li:nth-child(6) {
        transition-delay: 0.8s;
    }

    /* Hamburger to X */
    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__toggle span:nth-child(2) {
        opacity: 0;
    }

    .js-cdpn-mobile-menu_activated .cdpn-mobile-menu__toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* nav-bar  */


    a.callto {
        color: #ffffff;
        text-decoration: none;
        display: flex;
        align-items: anchor-center;
    }

    a.callto i {
        font-size: 40px;
        margin-right: 8px;
    }

    span.first {
        font-size: 20px;
    }

    span.first b {
        font-size: 17px;
    }

    .head-btn {
        display: flex;
        justify-content: end;
    }

    .head-btn a {
        margin: 0 15px;
    }

    header.header {
        padding: 15px 0;
        z-index: 1;
        position: relative;
        z-index: 11;
    }

    /* Header css  */


    /* Banner Hero Css  */
    .banner {
        background-image: url(../images/hero-banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin-top: -10%;
        position: relative;
        padding: 150px 0;
    }

    .banner::after {
        content: "";
        background-image: url(../images/colorsvg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 200px;
        height: 200px;
        position: absolute;
        top: 0;
        left: -35px;
        animation: hueRotate 5s linear infinite;
        filter: hue-rotate(0deg) brightness(1.1) contrast(1.1);
    }

    .banner-head a {
        width: 100%;
        font-size: 12px !important;
    }

    .banner-head a.golbal-btn2 {
        margin: 0;
        background: linear-gradient(90deg, #f46a66 0, #1a204f 100%);
    }

    @keyframes hueRotate {
        0% {
            filter: hue-rotate(0deg) brightness(1.1) contrast(1.1);
        }

        100% {
            filter: hue-rotate(360deg) brightness(1.1) contrast(1.1);
        }
    }

    .banner::before {
        content: "";
        /* background-image: url(../images/crcile.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center; */

        width: 140px;
        height: 300px;
        position: absolute;
        bottom: 24%;
        left: -60px;
    }



    .banner-head {
        padding-top: 20%;
    }

    .banner-side-img {
        position: absolute;
        display: block;
    }

    .banner-side-img img {
        width: 80%;
        margin-top: -2%;
        animation: hithere 4s ease infinite;
    }


    @keyframes hithere {
        30% {
            transform: scale(1.1);
        }

        40%, 60% {
            transform: rotate(-2deg) scale(1.1);
        }

        50% {
            transform: rotate(2deg) scale(1.1);
        }

        70% {
            transform: rotate(0deg) scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .banner-head h1 {
        font-size: 53px;
        font-weight: 700;
    }

    span.inner-one {
        position: relative;
    }

    span.inner-one:before {
        content: "";
        border-bottom: 10px solid #f7ce4f;
        width: 90%;
        height: 12px;
        position: absolute;
        bottom: -2px;
        border-radius: 15px;
        z-index: -1;
    }

    .banner-head p {
        font-size: 17px;
        max-width: 101%;
        position: relative;
        z-index: 2;
    }

    .banner-head img {
        width: 100%;
        margin-bottom: 5%;
        margin-top: 22px;
    }


    .banner-btn {
        display: flex;
    }

    .sub-text {
        position: relative;
        font-size: 60px;
        font-family: "Sacramento", cursive;
        font-weight: 500;
        width: 220px;
        text-align: center;
    }

    .sub-text:after {
        content: "";
        background-image: url(../images/subhead.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 500px;
        height: 120px;
        position: absolute;
        top: -42px;
        left: -121px;
    }


    /* Banner Hero Css  */

    /* Partner Banner Css  */
    .patner-banner {
        padding: 12px 0;
        background: linear-gradient(90deg, rgb(252 118 95) 0%, rgba(26, 32, 79, 1) 100%);
    }

    .partner-logo img {
        width: 100%;
    }

    /* Partner Banner Css  */

    /* Why Choose Us Css  */
    section.why-us {
        padding-top: 5%;
        background-image: url(../images/sndbanner.png);
        padding-bottom: 4%;
    }

    .sub-heading2 {
        position: relative;
        font-size: 60px;
        font-family: "Sacramento", cursive;
        font-weight: 500;
        width: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .sub-heading2:after {
        content: "";
        background-image: url(../images/sub-head.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 480px;
        height: 170px;
        position: absolute;
        top: -52px;
        left: 31%;
    }

    .why-us-head h3 {
        font-size: 45px;
        text-align: center;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .why-us-head h3 img {
        width: 3%;
        animation: 2s reverse rotate;

    }


    .why-us-head p {
        font-size: 16px;
        max-width: 60%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .why-us-cars {
        text-align: center;
        position: relative;
        padding: 18px 0;
        transition: background 1s ease-in-out;
    }

    .why-us-cars:hover {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 196, 0, 1) 100%);
        cursor: pointer;
    }

    .why-us-cars:hover:after {
        content: "";
        /* background-image: url(../images/after-effect.png); */
        /* background-repeat: no-repeat; */
        /* background-size: cover; */
        /* background-position: center; */
        width: 170px;
        position: absolute;
        top: 0;
        left: 0;
        animation: fadeIn 0.8s ease forwards;
        z-index: 1;
        border: 5px solid #f3725c;
        height: 170px;
        border-bottom: navajowhite;
        border-right: 0;
    }

    .why-us-cars:hover:before {
        content: "";
        /* background-image: url(../images/after-effect.png); */
        /* background-repeat: no-repeat; */
        /* background-size: cover; */
        /* background-position: center; */
        width: 170px;
        position: absolute;
        bottom: 0;
        right: 0;
        animation: fadeIn 0.8s ease forwards;
        z-index: 1;
        border: 5px solid #f3725c;
        height: 170px;
        border-top: none;
        border-left: none;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .why-us-cars img {
        background: #ffffff;
        width: 70px;
        height: 70px;
        padding: 10px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .why-us-cars:hover img {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .why-us-cars h4 {
        font-size: 17px;
    }

    .why-us-cars h5 {
        font-size: 25px;
        max-width: 75%;
        display: block;
        margin: 13px auto;
        font-weight: 700;
    }

    .why-us-cars p {
        font-size: 14px;
        max-width: 85%;
        display: block;
        margin: 0 auto;
    }

    .portfolio-btn.mt-5 a {
        display: block;
        width: 20%;
        margin: 0 auto;
    }



    /* Why Choose Us Css  */

    /* Client Reviews Css  */
    .client {
        padding: 5% 0;
    }

    .platform0img img {
        width: 65%;
    }

    /* Client Reviews Css  */


    /* ULD Banner  CSS  */
    #counter {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16%;
    }


    #counter .item .count {
        color: #ffffff;
        margin-bottom: 5px;
        font-size: 45px;
        font-weight: 700;
        position: relative;
    }

    #counter .item h3 {
        color: #4f4e28;
        text-transform: capitalize;
    }

    section.uld-banner {
        background-image: url(../images/uld-banner.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .uld-head {
        background: #0000009c;
        color: #fff;
        height: 450px;
        padding: 120px 60px;
    }

    .uld-head h2 {
        font-size: 65px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .uld-head p {
        font-size: 25px;
        margin-bottom: 0;
    }

    .item p {
        font-size: 17px;
        color: #fff;
    }

    .item img {
        width: auto;
        margin-bottom: 9%;
    }

    .item {
        width: 100%;
    }

    #counter .item .count:after {
        content: "+";
    }

    /* ULD Banner  CSS  */

    /* Our Services Css  */
    .our-services {
        padding: 8% 0 2% 0;
        display: block;
    }

    .service-box {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        text-align: center;
        padding: 30px 30px 20px 30px;
        transition: all 500ms linear;
    }

    .service-box:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transform: rotate(2deg) !IMPORTANT;
    }

    .service-box img {
        width: 15%;
        margin-bottom: 4%;
    }

    .service-box h3 {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4%;
    }

    .service-box p {
        color: #fff;
        font-size: 15px;
        max-width: 85%;
        display: block;
        margin: 0 auto;
        margin-bottom: 3%;
        font-weight: 200;
    }

    .service-box a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: anchor-center;
    }

    .service-box a i {
        font-size: 30px;
    }

    /* Our Services Css  */

    /* Portfolio Css  */

    /* ==== Portfolio Styling ==== */
    .nav-tabs {
        justify-content: center;
        margin-bottom: 40px;
        border: none;
    }

    .nav-tabs .nav-link {
        border: none;
        color: #333;
        background: white;
        margin: 0 5px;
        border-radius: 30px;
        padding: 10px 25px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        font-weight: 500;
    }

    .nav-tabs .nav-link.active {
        background: #ff6f61;
        color: white;
        box-shadow: 0 4px 12px rgba(255, 111, 97, 0.4);
    }

    .porfolio-boxi {
        position: relative;
    }

    .porfolio-boxi img {
        width: 100%;
        transition: transform 0.5s ease;
        margin: 6px 0;
    }

    .porfolio-boxi img:hover {
        transform: scale(1.2);
    }

    .portfolio-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.4s ease;
        background: rgba(0, 0, 0, 0.6);
    }

    .porfolio-boxi:hover .portfolio-overlay {
        opacity: 1;
    }

    .overlay-icons a {
        color: #fff;
        font-size: 22px;
        margin: 0 8px;
        background: rgb(233 233 233 / 42%);
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s;
        padding: 8px 12px;
    }

    .overlay-icons a:hover {
        background: #ffc107;
        color: #000;
    }

    .porfolio-boxi:hover:after {
        content: "";
        /* background-image: url(../images/after-effect.png); */
        /* background-repeat: no-repeat; */
        /* background-size: cover; */
        /* background-position: center; */
        width: 170px;
        position: absolute;
        top: 0;
        left: 0;
        animation: fadeIn 0.8s ease forwards;
        z-index: 1;
        border: 5px solid #f3725c;
        height: 170px;
        border-bottom: navajowhite;
        border-right: 0;
    }

    .porfolio-boxi:hover:before {
        content: "";
        /* background-image: url(../images/after-effect.png); */
        /* background-repeat: no-repeat; */
        /* background-size: cover; */
        /* background-position: center; */
        width: 170px;
        position: absolute;
        bottom: 0;
        right: 0;
        animation: fadeIn 0.8s ease forwards;
        z-index: 1;
        border: 5px solid #f3725c;
        height: 170px;
        border-top: none;
        border-left: none;
    }

    section.portfolio {
        background: #f3f3f3;
        position: relative;
    }

    section.portfolio::after {
        content: "";
        background-image: url(../images/port-after.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 200px;
        height: 300px;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    section.portfolio::before {
        content: "";
        background-image: url(../images/port-before.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 200px;
        height: 300px;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Portfolio Css  */
    /* Industry Css  */
    .main-industry {
        display: flex;
        justify-content: space-between;
    }

    section.industry {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(26, 32, 79, 1) 100%);
        padding: 35px 0;
        padding: 24px 0;
    }

    .industry-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .industry-box h2 {
        font-size: 25px;
        font-weight: 700;
        color: #fff;
        margin-right: 36px;
        margin-bottom: 0;
    }

    .industry-box img {
        width: 16%;
    }

    .main-industry {
        overflow: hidden;
    }

    .marquee-track {
        display: flex;
        gap: 30px;
        animation: scrollLeft 15s linear infinite;
    }

    .industry-box {
        flex: 0 0 auto;
        text-align: center;
        color: #fff;
        min-width: 150px;
    }


    @keyframes scrollLeft {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* Ã¢Å“â€¦ Pause on hover */
    .main-industry:hover .marquee-track {
        animation-play-state: paused;
    }


    /* Industry Css  */
    /* Packages Css  */
    .package-box {
        background: #F0EDED;
        padding: 30px 0;
        border-radius: 35px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 500ms linear;
        /* ensures background animation stays inside */
    }

    /* create ::after element by default */
    .package-box::after {
        content: "";
        background-image: url(../images/pkg-banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 25px;
        z-index: -1;
        opacity: 0;
        /* start invisible */
        transform: scale(0);
        /* slight zoom-out effect */
        transition: all 0.6s ease;
        /* smooth transition */
    }

    /* on hover, fade in background smoothly */
    .package-box:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    .package-box:hover, .package-box:hover a {
        color: #fff;
    }


    .package-box h3 {
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 5%;
    }

    .package-box h3 span {
        font-weight: 800;
    }

    p.border {
        border: 2px dashed #959595 !important;
    }

    .pack-box-inner {
        padding: 0 40px;
    }

    .pack-box-inner h4 {
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        margin-bottom: -2%;
        margin-left: -5%;
    }

    .pack-box-inner h4 i {
        font-size: 52px;
        padding: 0 !important;
        width: 40px;
        height: 58px;
    }

    .pack-box-inner p {
        font-size: 16px;
        display: flex;
        max-width: 89%;
        font-weight: 500;
    }

    .pack-box-inner p i {
        font-size: 17px;
        margin-right: 5px;
    }

    ul.offer-list {
        padding: 0;
        list-style: none;
        height: 140px;
        overflow: auto;
    }

    ul.offer-list li {
        font-size: 16px;
        font-weight: 500;
    }

    ul.offer-list li i {
        font-size: 17px;
        margin-right: 12px;
    }

    p.time-line b {
        font-size: 16px;
        font-weight: 800;
    }

    .pkg-btn {
        display: flex;
        justify-content: space-between;
    }

    .pkg-btn a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: all 500ms linear;
    }

    .pkg-btn i {
        font-size: 15px;
        margin: 0 6px;
        transition: all 500ms linear;
    }

    .pkg-btn a:hover i {
        margin: 0 10px;
    }

    ul.offer-list::-webkit-scrollbar {
        width: 10px;
        background-color: #F7F7F7;
        border-radius: 12px;
    }

    /* Track */
    ul.offer-list:-webkit-scrollbar-track {
        background: #4b3a6d;
        border-radius: 12px;
    }

    /* Handle */
    ul.offer-list::-webkit-scrollbar-thumb {
        background: #4b3a6d;
        border: 1px solid #fff;
        border-radius: 12px;
    }


    /* Packages Css  */
    /* About Us css  */
    .after-img .sub-heading2 {
        position: relative;
        font-size: 55px;
        font-family: "Sacramento", cursive;
        font-weight: 500;
        width: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 3%;
    }

    .after-img .sub-heading2:after {
        content: "";
        background-image: url(../images/roadmap.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 520px;
        height: 200px;
        position: absolute;
        top: -69px;
        left: 378px;
    }

    .about-info h3 {
        font-size: 55px;
        margin-bottom: 10%;
    }

    .about-info h3 span {
        font-weight: 700;
        position: relative;
    }

    .about-info h3 span:after {
        content: "";
        border-bottom: 10px solid #872888;
        width: 90%;
        height: 12px;
        position: absolute;
        bottom: -2px;
        border-radius: 15px;
        z-index: -1;
        left: 0;
    }

    .about-info p {
        font-size: 16px;
        max-width: 85%;
        margin-bottom: 6%;
    }

    .about-info h4 {
        font-size: 35px;
        margin-bottom: 5%;
    }

    ul.abount-list li {
        font-size: 16px;
        margin-bottom: 2%;
        font-weight: 600;
        max-width: 80%;
    }

    ul.abount-list li b {
        color: #8C3287;
    }

    .about-img img {
        width: 100%;
    }

    section.about-us {
        padding: 3%;
    }

    /* About Us css  */
    /* Testimonial Css  */
    .slick-list.draggable {
        padding: 10px 0 !important;
    }


    .testi {
        background: #F7F7F7;
        padding: 18px 30px;
        position: relative;
        height: 600px;
        border-radius: 20px;
        box-shadow: rgb(99 99 99 / 35%) 0px 2px 8px 0px;
        transition: all 500ms linear;
        margin: 0 10px;
    }

    .testi.inner-pages {
        height: 370px;
    }

    .testi.inner-pages p {
        font-size: 15px;
    }

    .testi.inner-pages .profile p span {
        font-size: 13px;
    }

    .testi img {
        width: 65%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .profile {
        display: flex;
        padding: 21px 0;
        align-items: anchor-center;
        margin-top: 13%;
    }

    .profile img {
        width: 24%;
        padding: 6px;
        border-radius: 50%;
    }

    .profile p {
        font-size: 14px !important;
        font-weight: 600;
        padding: 0 !important;
    }

    .profile p span {
        font-size: 14px;
        font-weight: 400;
    }

    .testi p {
        font-size: 13px;
        padding: 0 22px;
    }

    span.quote {
        position: absolute;
        font-size: 82px;
        color: #0000006b;
        top: -14px;
        left: 10px;
        transform: rotate(180deg);
    }

    span.quote2 {
        position: absolute;
        font-size: 82px;
        color: #0000006b;
        right: 0;
        transform: rotate(179deg);
        bottom: -1px;
    }

    .testi:hover {
        background: linear-gradient(175deg, rgb(217 217 217 / 19%) 0%, rgba(255, 196, 0, 1) 100%);
    }

    /* Testimonial Css  */

    /* slide Bar Css  */
    .ins-two {
        background: linear-gradient(270deg, rgba(26, 32, 79, 1) 10%, rgba(240, 88, 101, 1) 100%) !important;
        margin-top: 3%;
    }

    .ins-two .row {
        border: 1px solid #fff;
        border-left: none;
        border-right: none;
        padding: 18px 0;
    }

    /* slide Bar Css  */
    /* Our Process Css  */
    .process-box {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 75px 80px;
        position: relative;
        overflow: hidden;
    }

    .process-box h3 {
        font-size: 35px;
        font-weight: 700;
        color: #fff;
    }

    .process-box p {
        max-width: 90%;
        color: #fff;
        margin: 15px 0;
    }

    .process-box a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: all 200ms linear;
        color: #fff;
    }

    .process-box a i {
        font-size: 17px;
        margin: 0 6px;
        transition: all 500ms linear;
    }

    .process-box a:hover i {
        margin: 0 10px;
    }

    .count-no {
        position: absolute;
        background: aliceblue;
        color: #000;
        width: 130px;
        height: 118px;
        right: -42px;
        top: -13px;
        overflow: hidden;
        border-radius: 63%;
    }

    .count-no p {
        color: #000;
        display: flex;
        margin-top: 33px;
        font-size: 46px;
        font-weight: 600;
        padding-left: 17px;
    }

    /* Our Process Css  */
    /* Achievement Css  */
    .achieve-img img {
        width: 100%;
        animation: hithere 4s ease infinite;
    }

    .achieve-para img {
        width: 90%;
        margin: 20px 0;
    }

    .achieve-para h2 {
        font-size: 60px;
        font-family: "Sacramento", cursive;
        font-weight: 600;
        line-height: 70px;
    }

    .achieve-para p {
        font-size: 15px;
        margin-top: 2%;
    }

    .achieve-para {
        margin-top: 20%;
    }

    section.achievement {
        padding: 3% 0;
    }


    /* Achievement Css  */

    /* Our Gallery Css  */
    .logo-gal {
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        border-radius: 17px;
        text-align: center;
        transition: all 500ms linear;
        padding: 10px 0;
    }

    .logo-gal img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    .logo-gal h4 {
        font-size: 26px;
        font-weight: 600;
        margin-top: 7%;
    }

    .logo-gal p {
        font-size: 14px;
    }

    .logo-gal:hover {
        color: #fff;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .one:hover {
        background: #507938;
        color: #fff;
    }

    .logo-gal.two:hover {
        background: #845a87;
    }

    .logo-gal.three:hover {
        background: #1b395e;
    }

    .logo-gal.four:hover {
        background: #362934;
    }

    .logo-gal.five:hover {
        background: #f6bd39;
    }

    .logo-gal.six:hover {
        background: #4e2823;
    }

    .logo-gal.seven:hover {
        background: #6690b4;
    }

    .logo-gal.eight:hover {
        background: #a33548;
    }

    .logo-gal.nine:hover {
        background: #e95890;
    }

    .logo-gal.ten:hover {
        background: #4d7398;
    }

    .logo-gal.eleven:hover {
        background: #506570;
    }

    .logo-gal.towl:hover {
        background: #267a9d;
    }

    /* tabs  */
    .logo-sec .nav-tabs .nav-link.active {
        background: transparent;
        box-shadow: none !important;
        color: #000;
        font-weight: 700;
        border: 4px solid #0000006b;
        border-radius: 0;
        border-top: 1px;
        border-bottom: none;
        border-left: none;
    }

    .logo-sec .nav-tabs .nav-link {
        background: transparent;
        box-shadow: none !important;
        color: #000;
        border: 4px solid #0000006b;
        border-radius: 0;
        border-top: 1px;
        border-bottom: none;
        padding: 7px 46px;
        border-left: none;
    }

    .logo-sec .nav-tabs .nav-link:hover {
        background: transparent;
        box-shadow: none !important;
        color: #000;
        font-weight: 700;
        border: 4px solid #0000006b;
        border-radius: 0;
        border-top: 1px;
        border-bottom: none;
        border-left: none;
    }

    /* Our Gallery Css  */

    /* Blog Css  */
    .blogs {
        background-color: #f2f2f2;
        z-index: -11;
        position: relative;
        margin-top: 3%;
        padding-bottom: 3%;
    }

    .blogs::after {
        content: "";
        background-image: url(../images/side.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 200px;
        height: 200px;
        position: absolute;
        right: 0;
        top: 18px;
        animation: hithere 4s ease infinite;
    }

    .blog-box {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-radius: 25px 25px 0 0;
        padding-bottom: 20px;
        transition: all 500ms linear;
    }

    .blog-box img {
        width: 100%;
    }


    p.blog-icon {
        display: flex;
        padding: 17px 0;
        justify-content: space-between;
    }

    p.blog-icon span {
        font-size: 17px;
        font-weight: 600;
    }

    p.blog-icon span i {
        margin-right: 8px;
    }

    .blog-box-inner {
        padding: 0 28px;
    }

    .blog-box-inner h4 {
        padding: 5px 0;
        font-size: 22px;
        font-weight: 700;
    }

    .blog-box-inner p {
        font-size: 16px;
        max-width: 100%;
    }

    p.blog-icon a {
        text-decoration: none;
    }

    .blog-box-inner a {
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        color: #000000;
    }

    .blog-box-inner a i {
        transition: all 500ms linear;
    }

    .blog-box-inner a:hover i {
        margin: 0 10px;
    }

    .blog-box-inner a:hover {
        color: #f27b57;
    }

    .blog-box:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    /* Blog Css  */
    /* Contact uS Css  */
    .accordion-button:not(.collapsed),
    .accordion-button:focus {
        outline: none;
        border-color: transparent;
        box-shadow: none;
        background-color: transparent;
    }

    .accordion-button::after {
        width: 11px;
        height: 11px;
        border-radius: 100%;
        background-color: #f9d15f;
        background-image: none !important;
    }

    .accordion-button.collapsed::after {
        background-color: #ff6766;
    }

    .contact-form h4 {
        font-size: 35px;
        margin-bottom: 11px;
    }

    .contact-form p {
        font-size: 15px;
        max-width: 76%;
    }

    form#cnt-frm input, form#cnt-frm textarea, form#cnt-frm select {
        padding: 15px 19px;
        margin: 12px 0;
        border-bottom: 2px solid #c3c3c3 !important;
        background: transparent !important;
        border: none;
    }

    form#cnt-frm select {
        padding: 15px 19px;
        margin-top: 9px;
        border-bottom: 2px solid #c3c3c3 !important;
        border: none;
        color: #000;
        background: transparent !important;
    }

    form#cnt-frm input:focus, form#cnt-frm select:focus, form#cnt-frm textarea:focus {
        outline: none;
        border-bottom: 2px solid #000 !important;
        box-shadow: none;
        background: transparent !important;

    }

    form#cnt-frm input:focus::placeholder, form#cnt-frm textarea:focus::placeholder {
        color: #000;
    }

    .contact-form {
        background-image: url(../images/frm-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
        border-radius: 0;
        padding: 24px 12px;
        border-radius: 16px;
        box-shadow: rgb(255 111 104 / 54%) 0px 2px 8px 0px;
    }

    section.contact-us {
        padding-bottom: 4%;
    }

    /* Contact uS Css  */
    /* footer  */
    .footer {
        background-image: url(../images/footer-banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .footer-list li a {
        color: #fff;
        text-decoration: none;
        transition: all 500ms linear;
    }

    .footer-list li a:hover {
        color: #F89E3B;
        margin-left: 5px;
    }

    .footer-list ul {
        list-style: none;
        padding: 0;
        line-height: 40px;
    }

    .footer-list ul li a i {
        margin: 0 11px 0 0;
    }

    .footer-list h2 {
        font-size: 26px;
        font-weight: 700;
        color: #F89E3B;
    }

    .footer-logo img {
        width: 70%;
        margin-bottom: 27px;
    }

    .footer-logo p {
        color: #fff;
        font-size: 15px;
        max-width: 79%;
    }

    .foot-icon span a i {
        color: #fff;
        font-size: 30px;
        margin: 0 20px 0 0;
        transition: all 500ms linear;
    }

    .foot-icon {
        margin-top: 6% !important;
    }

    .foot-icon span a i:hover {
        color: #fc7261;
    }

    .footer-lst p {
        color: #fff;
        font-size: 17px;
        margin-bottom: 0;
    }

    .footer-lst p a {
        color: #fff;
        text-decoration: none;
        margin: 0 20px;
        transition: all 500ms linear;
    }

    .footer-lst.oo {
        text-align: end;
    }

    .footer-lst p a:hover {
        color: #fc7261;
    }

    .row.bbb {
        padding: 17px 0;
        border-top: 1px solid #ffffff9e;
    }

    .row.aaa {
        padding: 62px 0;
    }


    /* footer  */

    /* Rocket Btn  */
    .btnDark .d-btn2 {
        background: linear-gradient(90deg, #fa6e65 0, #1c1d4d 100%);
        border-radius: 8px !important;
        padding: 20px 17px;
        overflow: hidden;
        position: relative;
        width: 230px;
        height: 63px;
        display: flex;
        -webkit-box-pack: start;
        justify-content: flex-start;
        margin: 0;
        font-size: 16px;
        text-decoration: none;
        font-weight: 600;
        color: #fff
    }

    .btnDark {
        overflow: hidden;
        margin-left: 10px
    }

    .btnDark .d-btn2 .rocket-img {
        position: absolute;
        top: 7%;
        -webkit-animation: 2s infinite rocket-animation;
        animation: 2s infinite rocket-animation
    }

    .btnDark .d-btn2 .circle1 {
        opacity: .4;
        width: 20px;
        height: 20px;
        -webkit-animation: 2s infinite cloud-animation1;
        animation: 2s infinite cloud-animation1
    }

    .btnDark .d-btn2 .circle2 {
        opacity: .8;
        left: 130px;
        -webkit-animation: 2s infinite cloud-animation2;
        animation: 2s infinite cloud-animation2
    }

    .btnDark .d-btn2 .circle3 {
        opacity: .4;
        right: 23px;
        -webkit-animation: 2s infinite cloud-animation3;
        animation: 2s infinite cloud-animation3
    }

    .btnDark .d-btn2 .circle4 {
        opacity: 1;
        right: 33px;
        -webkit-animation: 2s infinite cloud-animation2;
        animation: 2s infinite cloud-animation2
    }

    .d-btn2 .circle5 {
        opacity: .8;
        right: 47px;
        -webkit-animation: 2s infinite cloud-animation5;
        animation: 2s infinite cloud-animation5
    }

    .btnDark .d-btn2 .circle6 {
        opacity: .4;
        right: 42px;
        -webkit-animation: 2s infinite cloud-animation6;
        animation: 2s infinite cloud-animation6
    }

    .btnDark .d-btn2 span {
        width: 18px;
        height: 18px;
        background: #fff;
        position: absolute;
        border-radius: 50%
    }

    @-webkit-keyframes rocket-animation {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            top: 10%;
            right: 15px
        }

        25%, 35%, 45% {
            top: 15%;
            right: 10px
        }

        55% {
            top: 13%;
            right: 13px
        }

        75% {
            top: -65%;
            right: -20px;
            opacity: 1
        }

        75.1% {
            top: -65%;
            right: -20px;
            opacity: 0
        }

        75.2% {
            top: 150%;
            right: 70px;
            opacity: 0
        }

        75.3% {
            top: 150%;
            right: 70px;
            opacity: 1
        }
    }

    @keyframes rocket-animation {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            top: 10%;
            right: 15px
        }

        25%, 35%, 45% {
            top: 15%;
            right: 10px
        }

        55% {
            top: 13%;
            right: 13px
        }

        75% {
            top: -65%;
            right: -20px;
            opacity: 1
        }

        75.1% {
            top: -65%;
            right: -20px;
            opacity: 0
        }

        75.2% {
            top: 150%;
            right: 70px;
            opacity: 0
        }

        75.3% {
            top: 150%;
            right: 70px;
            opacity: 1
        }
    }

    @-webkit-keyframes cloud-animation1 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -17px;
            right: 60px
        }

        25%, 35%, 45%, 55% {
            bottom: -14px;
            right: 63px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation1 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -17px;
            right: 60px
        }

        25%, 35%, 45%, 55% {
            bottom: -14px;
            right: 63px
        }

        75% {
            bottom: -30px
        }
    }

    @-webkit-keyframes cloud-animation2 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -14px;
            right: 50px
        }

        25%, 35%, 45%, 55% {
            bottom: -11px;
            right: 47px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation2 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -14px;
            right: 50px
        }

        25%, 35%, 45%, 55% {
            bottom: -11px;
            right: 47px
        }

        75% {
            bottom: -30px
        }
    }

    @-webkit-keyframes cloud-animation3 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -12px
        }

        25%, 35%, 45%, 55% {
            bottom: -9px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation3 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -12px
        }

        25%, 35%, 45%, 55% {
            bottom: -9px
        }

        75% {
            bottom: -30px
        }
    }

    @-webkit-keyframes cloud-animation4 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -10px
        }

        25%, 35%, 45%, 55% {
            bottom: -7px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation4 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -10px
        }

        25%, 35%, 45%, 55% {
            bottom: -7px
        }

        75% {
            bottom: -30px
        }
    }

    @-webkit-keyframes cloud-animation5 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -14px;
            right: 17px
        }

        25%, 35%, 45%, 55% {
            bottom: -11px;
            right: 14px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation5 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -14px;
            right: 17px
        }

        25%, 35%, 45%, 55% {
            bottom: -11px;
            right: 14px
        }

        75% {
            bottom: -30px
        }
    }

    @-webkit-keyframes cloud-animation6 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -15px
        }

        25%, 35%, 45%, 55% {
            bottom: -12px
        }

        75% {
            bottom: -30px
        }
    }

    @keyframes cloud-animation6 {
        0%, 10%, 20%, 30%, 40%, 50%, to {
            bottom: -15px
        }

        25%, 35%, 45%, 55% {
            bottom: -12px
        }

        75% {
            bottom: -30px
        }
    }

    /* Rocket Btn  */


    /* INNer Services Css  */
    /* Btns  */
    .golbal-btn {
        transition: 0.5s;
        transition-property: box-shadow;
        background: #6134a9;
        box-shadow: 0 0 25px #6134a9;
    }

    .golbal-bt:hover {
        box-shadow: 0 0 5px #6134a9,
            0 0 25px #ef542e,
            0 0 50px #6134a9,
            0 0 100px #ef542e;
    }

    .golbal-btn1 {
        transition: 0.5s;
        transition-property: box-shadow;
        background: #6134a9;
    }

    .golbal-bt1:hover {
        box-shadow: 0 0 5px #6134a9,
            0 0 25px #ef542e,
            0 0 50px #6134a9,
            0 0 100px #ef542e;
    }

    .golbal-btn2 {
        transition: 0.5s;
        transition-property: box-shadow;
        background: #6134a9;
        box-shadow: 0 0 25px #6134a9;
    }

    .golbal-bt2:hover {
        box-shadow: 0 0 5px #6134a9,
            0 0 25px #ef542e,
            0 0 50px #6134a9,
            0 0 100px #ef542e;
    }

    .golbal-btn3 {
        transition: 0.5s;
        transition-property: box-shadow;
        background: #6134a9;
        box-shadow: 0 0 25px #6134a9;
    }

    .golbal-bt3:hover {
        box-shadow: 0 0 5px #6134a9,
            0 0 25px #ef542e,
            0 0 50px #6134a9,
            0 0 100px #ef542e;
    }

    /* Btns  */


    /* banner css  */
    .inner-banner {
        background-image: url(../images/hero-banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 10% 0 5% 0;
        margin-top: -140px;
    }

    .inner-banner::after {
        content: "";
        background-image: url(../images/colorsvg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 200px;
        height: 200px;
        position: absolute;
        top: 0;
        left: -35px;
        animation: hueRotate 5s linear infinite;
        filter: hue-rotate(0deg) brightness(1.1) contrast(1.1);
    }

    @keyframes hueRotate {
        0% {
            filter: hue-rotate(0deg) brightness(1.1) contrast(1.1);
        }

        100% {
            filter: hue-rotate(360deg) brightness(1.1) contrast(1.1);
        }
    }

    h1.white-text {
        font-size: 35px;
        font-weight: 600;
        color: #000000;
        line-height: 1.4;
    }

    h1.white-text span {
        font-weight: 600;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: #fff0;
        background: linear-gradient(90deg, rgba(214, 29, 95, 1) 0%, rgba(240, 128, 49, 1) 100%);
    }

    .banner-test h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .banner-test p {
        color: #000000;
        font-size: 15px;
        margin-bottom: 6%;
    }

    ul.listi li {
        list-style: none;
        margin: 12px 0px;
        color: #000000;
        font-size: 14px;
        display: flex;
    }

    ul.listi li b {
        display: contents;
    }

    ul.listi {
        padding: 0;
        margin: -7px 0 -9px 0;
    }

    ul.listi li i {
        margin-right: 6px;
        font-size: 16px;
        color: #fc6f62;
    }

    a.golbal-btn1 {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(248, 158, 59, 1) 100%);
        color: #fff;
        text-decoration: none;
        padding: 17px 25px;
        font-size: 14px;
        text-transform: uppercase;
        border-radius: 43px;
        transition: all 800ms linear;
        display: block;
        text-align: center;
    }

    a.golbal-btn1:hover {
        background: linear-gradient(90deg, rgba(224, 58, 72, 1) 0%, rgba(248, 158, 59, 1) 100%);
        transform: scale(1.1) !important;
    }

    .btnss {
        margin-top: 8%;
        width: 75%;
    }

    .banner-bts {
        display: flex;
        align-items: baseline;
    }

    .review img {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    .review {
        text-align: center;
    }

    form#form {
        width: 85%;
        display: block;
        margin: 0 auto;
    }

    form#form input, form#form select {
        width: 100%;
        padding: 14px;
        background: transparent;
        border: navajowhite;
        border-bottom: 1px solid #fff;
        border-radius: 7px;
        color: #fff !IMPORTANT;
        margin-bottom: 5%;
    }

    form#form input::placeholder {
        color: #fff;
    }

    form#form textarea {
        width: 100%;
        padding: 14px;
        background: transparent;
        border: navajowhite;
        border-bottom: 1px solid #fff;
    }

    form#form textarea::placeholder {
        color: #fff;
    }

    .banner-form {
        background: linear-gradient(90deg, rgb(28 29 77 / 89%) 0%, rgb(251 122 94 / 84%) 100%);
    }

    button.button.sdt-bt {
        text-decoration: none;
        padding: 17px 30px;
        font-size: 15px;
        text-transform: uppercase;
        border-radius: 43px;
        transition: all 800ms linear;
        background: linear-gradient(90deg, rgba(224, 58, 72, 1) 0%, rgba(248, 158, 59, 1) 100%);
        color: #fff;
        border: navajowhite;
        width: 90%;
        margin-top: 12%;
    }

    a.golbal-btn2 {
        text-decoration: none;
        padding: 17px 55px;
        font-size: 15px;
        text-transform: uppercase;
        border-radius: 43px;
        transition: all 800ms linear;
        background: transparent;
        color: #fff;
        border: navajowhite;
        border: 2px solid #fff;
        display: block;
        text-align: center;
        width: 90%;
        margin-top: 12%;
    }

    .banner-form {
        text-align: center;
    }

    .banner-form h2 {
        font-size: 33px;
        color: #fff;
        font-weight: 400;
    }

    .banner-form h2 span {
        font-weight: 600;
    }

    .banner-form p {
        color: #fff;
        font-size: 15px;
    }

    .banner-form {
        padding: 45px 0;
        border-radius: 21px;
        margin-top: 3%;
    }

    /* banner css  */

    /* Customer css  */
    section.customer {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(224, 58, 72, 1) 100%);
        padding: 2% 0;
    }

    .customer-logo img {
        width: 90%;
    }

    .customer-logo {
        text-align: center;
    }

    /* Customer css  */

    /* About css  */
    .linear-heading {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: #fff0;
        background: linear-gradient(30deg, rgba(214, 29, 95, 1) 0%, rgba(240, 128, 49, 1) 100%);
        font-size: 35px;
        font-weight: 600;
    }

    h3.snd-heanding {
        font-size: 40px;
        margin-bottom: 1%;
    }

    p.main-text {
        font-size: 15px;
        color: #000000;
    }

    .cln-logo img {
        width: 100%;
    }

    .about-img img {
        width: 73%;
        display: block;
        margin: 0 0 0 auto;
        animation: zoom-in-zoom-out 5s ease-out infinite;
    }

    @keyframes zoom-in-zoom-out {
        0% {
            transform: scale(1, 1);
        }

        50% {
            transform: scale(1.1, 1.1);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    section.about {
        padding: 5% 0;
        padding-bottom: 0;
    }

    /* About css  */

    /* Wht choos us css */
    .why {
        background-image: url(../images/services/choosebanner.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 10% 0;
        margin-top: -3%;
    }

    .why-chos-content {
        text-align: center;
    }

    .why-chos-content p {
        max-width: 73%;
        display: block;
        margin: 0 auto;
        margin-top: 2%;
        margin-bottom: 3%;
    }

    section.choose-list {
        background: linear-gradient(90deg, rgba(120, 42, 142, 1) 0%, rgba(224, 58, 72, 1) 100%);
        padding: 20px 0;
    }

    section.choose-list ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
    }

    section.choose-list ul li {
        color: #fff;
        margin: 0 2%;
        font-size: 16px;
    }

    section.choose-list ul li i {
        margin-right: 12px;
    }

    /* Wht choos us css */

    /* Designs Css  */
    .design-cnt p {
        font-size: 20px;
    }

    .design-cnt img {
        width: 56%;
    }

    img.laptop {
        display: block;
        margin: 0 auto;
        width: 85%;
        margin-top: -11%;
        animation: zoom-in-zoom-out 5s ease-out infinite;
    }

    @keyframes zoom-in-zoom-out {
        0% {
            transform: scale(1, 1);
        }

        50% {
            transform: scale(1.1, 1.1);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    .design-cnt {
        margin-bottom: -15%;
        margin-left: 4%;
    }

    section.designs {
        padding: 5% 0;
    }

    .design-btn a {
        display: inline;
    }

    .design-btn {
        text-align: center;
        margin-top: 4%;
    }



    /* Portfolio css  */

    .inner-portfolio {
        background-image: url(../images/services/pkg-banner.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 3% 0;
    }

    .gallery-box {
        position: relative;
    }

    .gallery-box i {
        position: absolute;
        top: 45%;
        left: 41%;
        font-size: 38px;
        color: #fff;
        z-index: 1;
    }

    .gallery-box {
        position: relative;
        display: inline-block;
        /* To fit the image size */
        transition: all 0.3s linear;
        margin: 0 3%;

    }

    .gallery-box img {
        width: 100%;
        display: block;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        /* Removes whitespace below images */
        border-radius: 22px;
        transition: all 0.3s linear;
    }

    /* Overlay using :after */
    .gallery-box:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: scale(1.1);
        transition: opacity 0.5s ease, transform 0.5s ease;
        border-radius: 15px;
    }

    /* Hover Effects */
    .gallery-box:hover img {
        transform: scale(1.05);
        /* Smooth image zoom */
    }

    .gallery-box:hover:after {
        opacity: 1;
        transform: scale(1);
        /* Smooth overlay scale */
    }

    .gallery-box span {
        display: none;
        transition: all 500ms linear;
    }

    .gallery-box:hover span {
        display: block;
    }

    /* Portfolio css  */


    /* Abouts us 2 css  */
    .btnss .golbal-btn2 {
        border-color: #000 !IMPORTANT;
        color: #000 !important;
        padding: 15px 0px;
        margin-left: 11%;
    }

    .banner-bts.ini .btnss {
        margin: 0;
        margin-bottom: 9%;
    }


    .about-img.ini2 img {
        margin: 0;
    }

    /* Abouts us 2 css  */


    /* Testimonials Css  */

    .testimonial {
        background: #eaeaea;
        padding: 3% 0;
        position: relative;
        z-index: 111111;
    }

    section.testimonial:after {
        content: "";
        background-image: url(../images/services/t-banner.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: -1;
    }

    .revie-img img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    img.after-testi {
        width: 100%;
        position: absolute;
        top: -11%;

        -webkit-animation: tesiMove linear infinite 5s;
        -moz-animation: tesiMove linear infinite 5s;
        -o-animation: tesiMove linear infinite 5s;
        animation: tesiMove linear infinite 4s;
    }

    @keyframes tesiMove {
        0% {
            transform: rotate(0)
        }

        15% {
            transform: rotate(2deg)
        }

        33% {
            transform: rotate(4deg)
        }

        66% {
            transform: rotate(2deg)
        }

        100% {
            transform: rotate(0)
        }
    }

    .revie-img {
        position: relative;
        margin-top: 10%;
    }

    .clent-rev p {
        font-size: 30px;
        padding: 23px 40px;
        color: #9b9b9b;
        font-style: italic;
        position: relative;
    }

    .clent-rev p:after {
        content: "";
        background-image: url(../images/services/quotes.webp);
        background-size: contain;
        width: 35px;
        background-repeat: no-repeat;
        height: 35px;
        position: absolute;
        top: 12px;
        left: 0;
    }

    .clent-rev p::before {
        content: "";
        background-image: url(../images/services/quotes.webp);
        background-size: contain;
        width: 35px;
        background-repeat: no-repeat;
        height: 35px;
        position: absolute;
        bottom: 0;
        right: 20px;
        transform: rotate(173deg);
    }

    .testimonial ul {
        display: block;
        overflow: hidden;
    }


    .step-box {
        text-align: center;
    }

    .step-box span {
        font-size: 43px;
        font-weight: 600;
        font-family: cursive;
        background: #ffffff;
        width: 55px;
        display: block;
        margin: 0 auto;
        height: 70px;
        border-radius: 66px;
        color: #fa6d64;
        transition: all 500ms linear;
    }


    .step-box h4 {
        font-size: 23px;
        font-weight: 700;
        margin: 24px 0;
        color: #fff;
    }

    .step-box p {
        font-size: 14px;
        max-width: 90%;
        display: block;
        margin: 0 auto;
        color: #fff;
    }

    .step-box {
        padding: 16px 7px;
        border-radius: 18px;
        box-shadow: rgb(255 111 104 / 54%) 0px 2px 8px 0px;
        margin: 0;
        transition: all 500ms linear;
        background: linear-gradient(0deg, #1a204fff -13%, #f06061ff 99%);
        height: 320px;
    }

    .step-box:hover span {
        background: #221d4e;
        transform: scale(1.1);
    }






    /* Testimonials Css  */


    /* FAQS Css  */
    .faqs {
        padding: 5% 0;
    }

    .actionbt {
        display: flex;
        align-items: baseline;
    }

    .actionbt div a {
        color: #000;
        text-decoration: none;
        font-size: 16px;
        transition: all 500ms linear;
    }

    .actionbt div a i {
        margin-right: 8px;
    }

    .actionbt div a:hover {
        color: #fa733c;
    }

    .actionbt div img {
        width: 55%;
    }

    .cal-to-action h2 {
        font-size: 60px;
    }

    img.ac-bs {
        width: 45%;
        margin-top: 6%;
        animation: zoom-in-zoom-out 5s ease-out infinite;
    }

    @keyframes zoom-in-zoom-out {
        0% {
            transform: scale(1, 1);
        }

        50% {
            transform: scale(1.1, 1.1);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    .faqs-sec {
        margin-top: -6%;
    }

    .accordion-button:not(.collapsed) {
        color: aliceblue;
    }

    .accordion-button:not(.collapsed) {
        color: #f96239;
        font-weight: 600;
        background: transparent;
    }

    button.accordion-button.collapsed {
        border: none !important;
    }

    .accordion-item {
        border: navajowhite;
        border-bottom: 1px solid #9d9d9d;
        margin: 14px 0;
        padding: 0 !important;
    }

    button.accordion-button.collapsed {
        padding: 19px 0;
        font-weight: 600;
    }

    .fs-h h2 {
        font-size: 80px;
    }

    .fs-h {
        margin-bottom: -3%;
    }



    /* FAQS Css  */

    /* Resposive Css start  */

    @media only screen and (max-width: 1024px) {
        h1.white-text {
            font-size: 32px;
            margin-top: 5%;
        }

        ul.listi li {
            font-size: 13px;
            margin: 1px 6px;
        }

        a.golbal-btn1 {}

        .banner-bts .btnss {
            width: 100%;
        }

        .review img {
            width: 100%;
        }

        form#form {
            width: 92%;
        }

        form#form button {
            font-size: 12px;
        }

        form#form a {
            font-size: 11px;
        }

        section.banner {
            padding: 15% 0 6% 0;
        }


        h2.snd-heanding {
            font-size: 33px;
        }

        .linear-heading {
            font-size: 20px;
        }

        section.choose-list ul li {
            font-size: 13px;
        }

        .row.row-tab1 .col-md-4 {
            flex: 0 50%;
            max-width: 50%;
        }

        .clent-rev p {
            font-size: 17px;
        }

        .clent-rev p:after {
            width: 20px;
            height: 20px;
        }

        .clent-rev p:before {
            width: 20px;
            height: 20px;
        }



        .test-content img {
            width: 90%;
        }

        .fs-h h2 {
            font-size: 57px;
        }
    }

    @media only screen and (max-width: 768px) {
        section.banner .col-md-6 {
            max-width: 100%;
            flex: 0 100%;
        }

        .banner-test {
            text-align: center;
        }

        h1.white-text {
            font-size: 35px;
        }

        .banner-test {
            margin-top: 10%;
        }

        ul.listi {
            justify-content: center;
            margin-bottom: 0%;
        }

        ul.listi li {
            font-size: 16px;
        }

        .banner-form {
            margin-top: 5%;
        }

        button.button.sdt-bt {
            margin: 18px 0 0 0;
        }

        form#form button {
            font-size: 12px;
            width: 100%;
        }

        form#form a {
            margin-top: 20px;
            width: 100%;
        }

        .banner-bts .btnss {
            width: 70%;
        }

        section.about .col-md-6 {
            max-width: 100%;
            flex: 0 100%;
        }

        .about-content {
            text-align: center;
        }


        .about-img img {
            margin: 0 auto;
            display: block;
            width: 71%;
            margin-top: 9%;
        }

        h2.snd-heanding {
            font-size: 26px;
        }

        section.choose-list ul {
            padding: 0 0;
        }

        section.choose-list ul li {
            margin: 0 0px;
        }

        .design-cnt p {
            font-size: 15px;
        }

        .cln-logo img {
            width: 60%;
            margin-bottom: 8%;
        }

        .about-img.ini2 {
            display: block;
            margin: 0 auto;
            text-align: center;
        }

        .about-img.ini2 img {
            width: 71%;
            text-align: center;
            display: block;
            margin: 0 auto;
        }

        .actionbt div a {}

        .actionbt {
            display: block;
        }

        .fs-h h2 {
            font-size: 46px;
        }

        footer.footer .col-md-2 {
            display: none;
        }

        footer.footer .col-md-4 {
            max-width: 100%;
            flex: 0 100%;
        }

        .footer-cnt img {
            width: 70%;
            display: block;
            margin: 0 auto;
        }

        .footer-cnt p {
            text-align: center;
        }

        footer.footer .col-md-3 {
            flex: 0 50%;
            max-width: 50%;
        }
    }



    @media only screen and (max-width: 425px) {
        .banner-test {
            margin-top: 19%;
        }

        h1.white-text {
            font-weight: 500;
            font-size: 35px;
        }

        header {
            z-index: 1;
        }

        header .container {
            z-index: 1;
            position: relative;
        }

        .logo a img {
            width: 75%;
            display: block;
            margin: 16px auto;
        }

        ul.listi li {
            font-size: 11px;
        }

        .banner-bts .btnss {
            width: 100%;
        }

        .banner-bts {
            flex-direction: column;
        }

        .review img {
            width: 41%;
            display: block;
            margin: 9px auto;
        }

        .banner-bts .review {
            display: contents;
        }

        .banner-form h2 {
            display: block;
            margin: 0 auto;
            font-size: 24px;
        }

        .banner-form p {
            font-size: 13px;
            margin-top: 5%;
        }

        .cln-logo img {
            width: 100%;
            margin-bottom: 0;
        }

        .about-img img {
            width: 90%;
        }

        .why-chos-content p {
            max-width: 100%;
        }

        .why-chos-content {
            padding: 21px 0;
        }

        img.laptop {
            margin: 57px auto;
        }

        .design-cnt {
            TEXT-ALIGN: center;
            MARGIN: 0;
        }

        .design-cnt IMG {
            WIDTH: 53%;
        }

        .banner-bts.ini a {
            margin: 0;
        }

        .banner-bts.ini .btnss {
            width: 100%;
        }

        .banner-bts.ini .btnss a {
            width: 100%;
        }

        .cln-logo img {
            margin-bottom: 8%;
        }

        .about-img.ini2 img {
            margin-bottom: 6%;
            width: 100%;
        }

        .row.row-tab1 .col-md-4 {
            flex: 0 100%;
            max-width: 100%;
        }

        .fs-h {
            text-align: center;
        }

        .fs-h h2 {
            font-size: 34px;
        }

        .cal-to-action {
            text-align: center;
        }

        .cal-to-action img {
            width: 60%;
        }

        .actionbt img {
            width: 85%;
        }

        .actionbt div img {
            width: 45%;
        }

        footer.footer .col-md-3 {
            max-width: 100%;
            flex: 0 100%;
        }

        ul.lasti {
            text-align: center;
        }

        h4.footer-heading {
            text-align: center;
        }

        .foot-icon {
            justify-content: center;
        }

        .popup-content p {
            font-size: 13px;
        }
    }

    @media only screen and (max-width: 375px) {
        .logo a img {
            margin-bottom: 10%;
        }
    }

    /* Resposive Css End  */






    /* pop css  */


    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        z-index: 1000;
        animation: fadeIn 0.3s ease-out;
    }

    .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        width: 100%;
        max-width: 535px;
        z-index: 1001;
        opacity: 0;
        transition: all 0.3s ease-out;
        background-image:
            radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 100% 100%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(90deg, rgb(120 42 142) 0%, rgb(248 158 59 / 75%) 100%);
    }

    .popup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(243, 244, 246, 0.8);
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #6B7280;
        padding: 8px;
        line-height: 1;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-button:hover {
        background: rgba(243, 244, 246, 1);
        color: #374151;
        transform: rotate(90deg);
    }

    .popup-content {
        position: relative;
    }

    .popup-content h2 {
        margin: 0 0 12px 0;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        margin-top: 5%;
    }

    .popup-content p {
        margin: 0 0 32px 0;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.6;
    }

    #leadForm .form-group {
        margin-bottom: 19px;
        position: relative;
    }

    #leadForm .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-color);
        font-weight: 500;
        font-size: 14px;
        color: #fff;
    }

    #leadForm .form-group input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #E5E7EB;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s;
        box-sizing: border-box;
        background: #F9FAFB;
    }

    #leadForm .form-group input:focus {
        outline: none;
        border-color: #4F46E5;
        background: white;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }

    #leadForm .submit-button {
        width: 100%;
        padding: 16px;
        background-image: var(--primary-gradient);
        color: #9f515f;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
        position: relative;
        overflow: hidden;
        margin-top: 5%;
    }

    #leadForm .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    }

    #leadForm .submit-button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent 0%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 100%);
        transform: rotate(45deg);
        transition: transform 0.5s;
    }

    #leadForm .submit-button:hover::after {
        transform: rotate(45deg) translate(50%, 50%);
    }

    .discount-badge {
        position: absolute;
        top: -15px;
        right: -15px;
        background: linear-gradient(135deg, #FF6B6B, #FF8E53);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
        transform: rotate(12deg);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .form-group {
        animation: slideUp 0.5s ease-out forwards;
        opacity: 0;
    }

    .form-group:nth-child(1) {
        animation-delay: 0.2s;
    }

    .form-group:nth-child(2) {
        animation-delay: 0.3s;
    }

    @media (max-width: 640px) {
        .popup {
            padding: 32px;
            width: 95%;
        }

        .popup-content h2 {
            font-size: 24px;
        }
    }

    /* Decorative elements */
    .decorative-shape {
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(45deg, rgb(180 103 78), rgba(124, 58, 237, 0.1));
        z-index: -1;
    }

    .shape-1 {
        top: -20px;
        left: -20px;
    }

    .shape-2 {
        bottom: -20px;
        right: -20px;
        background: linear-gradient(45deg, rgb(130 40 134), rgba(37, 99, 235, 0.1));
    }

    /* pop css  */
    h2.text-center.innner-fqa {
        font-size: 39px;
        font-weight: 600;
    }

    /* INNer Services Css  */






























    /* Resposive css  */
    @media only screen and (max-width: 1440px) {
        .banner-test {
            padding: 28px 7%;
        }
        .cdpn-mobile-menu__toggle {
            right: -14px !important;
            top: -25px !important;
            overflow: hidden;
            overflow-x: hidden;
        }

        .banner-side-img img {
            width: 85%;
            margin-top: 3%;
        }

        .blogs::after {
            right: 11px;
        }

        .count-no {
            right: -28px;
        }
    }

    @media only screen and (max-width: 1024px) {
        .footer-list img {
            width: 99%;
        }

        .footer-list li a {
            font-size: 12px;
        }
        .banner-form{
            margin-top: 8%;
        }
        .step-box {
            height: 349px;
        }

        .step-box h4 {
            font-size: 20px;
        }
    }


    @media (max-width: 768px) {
    .cdpn-mobile-menu__list li {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .cdpn-mobile-menu__list {
        display: block !important;
    }
}@media (max-width: 768px) {

    .cdpn-mobile-menu__list h5 {
        cursor: pointer;
        position: relative;
        padding-right: 25px;
    }

    .cdpn-mobile-menu__list h5::after {
        content: "Ã¢â€“Â¼";
        position: absolute;
        right: 0;
        top: 4px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .cdpn-mobile-menu__list h5.active::after {
        transform: rotate(180deg);
    }

    /* SAB UL HIDE */
    .cdpn-mobile-menu__list ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    /* ACTIVE UL */
    .cdpn-mobile-menu__list h5.active + ul {
        max-height: 800px;
    }

    .cdpn-mobile-menu__list li {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .cdpn-mobile-menu__list {
        display: block !important;
    }
}






    /* Resposive css  */