    /* font */
    @font-face {
        font-family: 'Ubuntu Sans", sans-serif; Sans';
        src: url('../font/UbuntuSans-Medium.ttf') format('truetype');
        font-weight: 500;
        /* covers Thin to Black, including Medium (500) */
        font-style: normal;
    }

    /* ========== Reset & Box Sizing ========== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* ========== Base Styles ========== */
    html,
    body {

        width: 100%;
        overflow-x: hidden;
        font-family: 'Ubuntu Sans';
        /* horizontal scrollbar हटेगा */
    }

    .cmn1-txt-clr {
        color: #FF6A00;
    }

    /* Links */
    a {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    a:hover,
    a:focus {
        text-decoration: none;
        outline: none;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        -o-object-fit: scale-down;
        object-fit: scale-down;
        border: 0;
    }

    /* Lists */
    ul,
    ol {
        list-style: none;
    }

    /* Buttons */
    button {
        border: none;
        background: none;
        cursor: pointer;
    }

    button:focus,
    .btn:focus {
        box-shadow: none;
        outline: none;
    }

    a:hover,
    a:focus,
    a:active {

        background: none;

        text-decoration: none;

    }

    /* Form Elements */
    input,
    textarea,
    select,
    button {
        font-family: inherit;
        font-size: inherit;
    }

    button:focus,
    .btn:focus {
        box-shadow: none;
    }

    /* nvabr */
    #mainHeader {
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        top: 0;

    }

    #mainHeader.fixed {
        position: fixed;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        -webkit-animation: slideDown 0.4s ease forwards;
        animation: slideDown 0.4s ease forwards;
    }

    @-webkit-keyframes slideDown {
        from {
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes slideDown {
        from {
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }

        to {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    /* Navbar Styling */
    #mainHeader .navbar.scrolled {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        /* optional smooth effect */
    }

    /* .navbar {
        position: sticky;
        top: 0;
        padding: 6px 0;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    } */

    div#navbarNav ul li a {
        font-family: 'Ubuntu Sans", sans-serif; Sans';
        font-family: 'Ubuntu Sans", sans-serif; Sans';
        font-weight: 500;
    }

    /* Logo Styling */
    .main-logo {
        height: 40px;
    }

    /* Tagline Styling */
    .tagline {
        font-size: 0.7rem;
        color: #666;
        font-weight: bold;
        letter-spacing: 1px;
        margin-top: 0.2rem;
    }

    /* Navbar Links Styling */
    .navbar-nav .nav-link {
        margin: 0 1rem;
        font-weight: 500;
        color: #333 !important;
    }

    /* Register Button Styling */
    .btn-register {
        background-color: #1252C9;
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 16px;
        font-family: 'Ubuntu Sans", sans-serif; Sans';
        -webkit-animation: pulseGlow 2s infinite ease-in-out;
        animation: pulseGlow 2s infinite ease-in-out;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .btn-register:hover {
        background-color: #e55a2b;
        color: white;
    }





    .navbar-nav .nav-link {
        position: relative;
        padding-bottom: 5px;
        color: #fff;
        /* change as needed */
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%) scaleX(0);
        transform: translateX(-50%) scaleX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
        width: 100%;
        height: 2px;
        /* underline thickness */
        background-color: #ff5c5c;
        /* underline color */
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        -webkit-transform: translateX(-50%) scaleX(1);
        transform: translateX(-50%) scaleX(1);
    }

    /* nvabr-end */
    .rotate-svg {
  -webkit-animation: rotate-circle 20s linear infinite;
  animation: rotate-circle 20s linear infinite;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
    .circle {
        position: relative;
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        isolation: isolate;
        /* ✅ Safari: keeps animation from affecting siblings */
        transform: translateZ(0);
        /* ✅ Force GPU layer */
        -webkit-transform: translateZ(0);
    }

    .centered-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateZ(0);
        /* ✅ Prevents float */
        -webkit-transform: translate(-50%, -50%) translateZ(0);
        z-index: 2;
        pointer-events: none;
        will-change: transform;
    }

    .centered-content img {
        width: 80px;
        height: auto;
        display: block;
        backface-visibility: hidden;
        /* ✅ Stops Safari flicker */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .rotating-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
        z-index: 1;
        transform-origin: 50% 50%;
        will-change: transform;
        transform-box: fill-box;
        /* ✅ Critical for Safari alignment */
    }

    .rotating-text text {
        font-size: 12px;
        fill: #5c4a37;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 2px;
        animation: rotate-circle 20s linear infinite;
        transform-origin: 50% 50%;
        transform-box: fill-box;
        /* ✅ fixes float on iPhone */
        -webkit-transform-box: fill-box;
        -webkit-font-smoothing: antialiased;
    }

    .dot-orange {
        fill: #FF6A00;
        font-size: 20px;
    }

    .dot-green {
        fill: #1252C9;
        font-size: 20px;
    }

    @keyframes rotate-circle {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    p.laverage-a {
        margin-bottom: 0;
        font-size: 36px;
        font-family: "Ubuntu Sans", sans-serif;
        font-weight: 300;
        line-height: 0;
        padding-bottom: 10px;

    }

    .fsl {
        font-size: 60px;
        font-family: "Ubuntu Sans", sans-serif;
    }

    .hotel-num-left {
        width: 55%;

    }

    .toaccess {
        font-size: 27px;
        font-weight: 300;
        font-family: "Ubuntu Sans", sans-serif;
        /* margin-right: 15px; */
    }

    .fsl {
        font-size: 44px;
    }

    .vertical-slider {
        height: 50px;
        /* only show one item */
        overflow: hidden;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        position: relative;
    }

    .vertical-slider ul {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        /* remove absolute */
    }

    .vertical-slider li {
        height: 50px;
        line-height: 50px;
        font-size: 46px;
        font-weight: 500;
        color: #FF6A00;
        padding-left: 10px;
    }

    .poweredby-rez h6 {
        font-size: 24px;
        font-weight: 500;
        font-family: 'Ubuntu Sans';
    }


    .poweredby-rez p {
        font-size: 22px;
        font-weight: 400;
        font-family: 'Ubuntu Sans';
        color: #000;
        opacity: 0.8;
    }

    .poweredby-rez {
        padding-top: 200px;
    }

    button.get-api-accs {

        font-size: 16px;
        font-weight: 500;
        font-family: 'Ubuntu Sans';
        background-color: #1252C9;
        padding: 13px 33px;
        border-radius: 100px;
        color: #fff;

    }

    section.banner-sec {
        background-image: url(../Img/banner1.png);
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 30px;
        padding-top: 137px;
    }

    .banner-sec {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden;

        /* Banner-inspired gradient with proper image colors */
        background: -webkit-linear-gradient(left,
                #fdf6e3,
                /* Warm cream */
                #f4e4bc,
                /* Light beige */
                #e6d7c3,
                /* Soft tan */
                #d4c4a8,
                /* Medium beige */
                #c2b299,
                /* Warm gray */
                #b09f8a,
                /* Muted brown */
                #9e8f7b,
                /* Darker brown */
                #8c7f6c,
                /* Deep brown */
                #fdf6e3
                /* Back to warm cream for seamless loop */
            );
        background: linear-gradient(90deg,
                #fdf6e3,
                /* Warm cream */
                #f4e4bc,
                /* Light beige */
                #e6d7c3,
                /* Soft tan */
                #d4c4a8,
                /* Medium beige */
                #c2b299,
                /* Warm gray */
                #b09f8a,
                /* Muted brown */
                #9e8f7b,
                /* Darker brown */
                #8c7f6c,
                /* Deep brown */
                #fdf6e3
                /* Back to warm cream for seamless loop */
            );
        background-size: cover;
        -webkit-animation: gradientWave 6s ease-in-out infinite;
        animation: gradientWave 6s ease-in-out infinite;
    }


    /* Gradient wave animation - smooth left to right flow */
    @-webkit-keyframes gradientWave {
        0% {
            background-position: 0% 50%;
            -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
        }

        20% {
            background-position: 25% 50%;
            -webkit-filter: brightness(1.05) saturate(1.1);
            filter: brightness(1.05) saturate(1.1);
        }

        40% {
            background-position: 50% 50%;
            -webkit-filter: brightness(1.1) saturate(1.2);
            filter: brightness(1.1) saturate(1.2);
        }

        60% {
            background-position: 75% 50%;
            -webkit-filter: brightness(1.15) saturate(1.3);
            filter: brightness(1.15) saturate(1.3);
        }

        80% {
            background-position: 100% 50%;
            -webkit-filter: brightness(1.1) saturate(1.2);
            filter: brightness(1.1) saturate(1.2);
        }

        100% {
            background-position: 10% 50%;
            /* Ensures the gradient ends within bounds */
            -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
        }
    }

    @keyframes gradientWave {
        0% {
            background-position: 0% 50%;
            -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
        }

        20% {
            background-position: 25% 50%;
            -webkit-filter: brightness(1.05) saturate(1.1);
            filter: brightness(1.05) saturate(1.1);
        }

        40% {
            background-position: 50% 50%;
            -webkit-filter: brightness(1.1) saturate(1.2);
            filter: brightness(1.1) saturate(1.2);
        }

        60% {
            background-position: 75% 50%;
            -webkit-filter: brightness(1.15) saturate(1.3);
            filter: brightness(1.15) saturate(1.3);
        }

        80% {
            background-position: 100% 50%;
            -webkit-filter: brightness(1.1) saturate(1.2);
            filter: brightness(1.1) saturate(1.2);
        }

        100% {
            background-position: 10% 50%;
            /* Ensures the gradient ends within bounds */
            -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
        }
    }

    .counter-section {
        background: url(../Img/blue-map.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        color: white;
        padding: 510px 0;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100vh;

    }

    .counter-box {
        text-align: left;
        padding: 20px;
        width: auto;
    }

    .counter-box .icon-box i {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .counter-box .counter {
        font-size: 36px;
        font-weight: 700;
        display: inline-block;
        font-family: 'Ubuntu Sans';
    }

    .counter-box .counter-text {
        font-size: 22px;
        font-family: 'Ubuntu Sans';
        font-weight: 400;
        margin-top: 5px;
    }

    section.counter-section h2 {
        font-size: 60px;
        font-family: 'Ubuntu Sans';
    }

    section.counter-section .icon-box img {
        text-align: left;

    }

    h3.cmn-tiles-all {
        font-family: 'Ubuntu Sans';
        font-size: 60px;
        font-weight: bold;
        color: #000;
        text-align: left;

    }

    section.integrate-sec {
        padding: 140px 0;
    }

    .feature-card {
        border: 1px solid #C9CEE2;
        border-radius: 10px;
    }

    .feature-card img {
        max-width: 42px;
        height: 42px;
        margin-bottom: 60px;

    }

    .feature-card {
        border: 1px solid #C9CEE2;
        border-radius: 30px;
        padding: 29px 40px 10px 40px;
        height: 300px;
    }

    .quic-sec-pad {
        padding-top: 0;
        padding: 70px 80px 0 0;
    }

    section.techno-deliver {

        background-color: #000;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 80px 0;
        background-color: #000;
        /* fallback color */
        background-image: url('../Img/zz.png');
        background-repeat: no-repeat;
        background-position: right center;
        /* right aligned horizontally, center vertically */
        background-size: contain;
        /* scales image to fit without cropping */
        width: 100%;
    }

    section.techno-deliver h2 {
        font-size: 60px;
        color: #fff;
        font-family: 'Ubuntu Sans';
    }


    .techno-deliver h2 {
        font-weight: 300;
        /* For 'Technology that' */
        font-weight: 700;
        /* For 'Delivers More' */
        margin-bottom: 10px;
    }

    .techno-deliver h2:last-of-type {
        margin-bottom: 20px;
    }

    .info-card {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 30px;
        padding: 25px;
        margin-bottom: 20px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-height: 200px;
        height: 340px;
    }

    .info-card h4 {
        font-size: 24px;
        color: #ff6a00;
        font-family: 'Ubuntu Sans';
        font-weight: 700;

    }

    .info-card p {
        color: #fff;
        font-size: 22px;
        font-family: 'Ubuntu Sans';
        font-weight: 400;
        margin-bottom: 0;
    }

    .info-card .icon-placeholder {
        width: 30px;
        /* Adjust size as needed */
        height: 30px;

        border-radius: 5px;
        margin-bottom: 71px;
    }

    .btn-access {
        background-color: #007bff;
        /* Blue button color */
        color: #ffffff;
        border-radius: 50px;
        padding: 10px 30px;
        border: none;
        text-decoration: none;
        display: inline-block;
        margin-top: 20px;
    }

    .delivers-more p {
        color: #fff;
        font-family: 'Ubuntu Sans';
        font-weight: 400;
        font-size: 22px;
    }

    section,
    header,
    main {
        overflow: hidden;
    }

    .text-slider {
        height: 40px;
        /* height of one line */
        overflow: hidden;
        position: relative;
    }

    .text-slider ul {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
    }

    .text-slider li {
        height: 60px;
        /* same as container */
        line-height: 40px;
        font-weight: 600;
        color: #007bff;
    }

    /* Our Distribution Model */
    section.distrubation-model-sec {
        padding-top: 170px;
    }

    .reztez-animate-pic {
        margin-top: 6%;
    }


    section.distrubation-model-sec h6 {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        font-family: 'Ubuntu Sans';
    }

    section.distrubation-model-sec p {
        font-weight: 400;
        font-size: 22px;
        font-family: 'Ubuntu Sans';
    }

    section.integrate-sec small {
        font-size: 24px;
        font-weight: 400;
    }

    /* Our Distribution Model-end */
    /* Integration for You */
    .integrate-sec .card1 {
        background-image: url(../Img/integration1.png);
        padding: 20px 40px;
        border-radius: 20px;
        background-size: cover;
        max-width: 95%;
        background-repeat: no-repeat;


    }

    .integrate-sec .card2 {
        background-image: url(../Img/integration2.png);
        padding: 20px 40px;
        border-radius: 20px;
        background-size: cover;
        max-width: 95%;
        background-repeat: no-repeat;
    }

    .integrate-sec .card1 h5 {
        font-size: 42px;
        font-weight: 600;
    }

    .integrate-sec .card1 .card-body p {
        font-size: 24px;
        font-weight: 500;
    }

    .integrate-sec .card1 .smallp {
        font-size: 18px;
        font-weight: 400;
        padding-top: 260px;

    }

    .integrate-sec .card2 h5 {
        font-size: 42px;
        font-weight: 600;
    }

    .integrate-sec .card2 .card-body p {
        font-size: 24px;
        font-weight: 500;
    }

    .integrate-sec .card2 .smallp {
        font-size: 18px;
        font-weight: 400;
        padding-top: 260px;

    }

    .integrate-sec .card1,
    .integrate-sec .card2 {
        -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
        -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
    }

    .integrate-sec .card1:hover,
    .integrate-sec .card2:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    section.integrate-sec {
        background-image: url(../Img/blog-bg.png);
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 250px;
        height: 100%;
        margin-top: 7%;

    }

    .cmn.p {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;

    }

    /* Integration for You end */
    /* bg-reztez */
    /* layout */
    #businesses-slider-section {
        min-height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .bg-reztez {
        background-image: url(../Img/integration2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;

        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding: 80px 40px;
        height: 900px;
    }

    .bg-reztez h2 {
        font-size: 120px;
        line-height: 1.05;
        max-width: 80%;
        text-align: center;
    }

    /* Right side slider styling */

    .vertical-swiper {
        background-color: #FBFBFD;
        overflow: hidden;

        height: 900px;

        overflow: hidden;

    }


    .vertical-swiper-inner {
        width: 100%;
        margin: auto;
        text-align: justify;
        padding-left: 60px;
        height: 900px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .vertical-swiper-inner img {
        width: 120px;
        margin-bottom: 25px;
    }

    .vertical-swiper-inner h2 {
        font-size: 78px;
        color: #000;
        margin-bottom: 0px;
        font-weight: 700;
    }

    .vertical-swiper-inner h3 {
        font-size: 48px;
        font-weight: 300;
        margin-bottom: 0px;
    }

    .vertical-swiper-inner p {
        font-size: 24px;
        line-height: 29px;

        color: #333;
        margin-bottom: 10px;
        width: 73%;
        text-align: left;
    }

    /* bg-reztez */

    /* Scales with */
    .scale-with-left {
        padding-right: 152px;
        text-align: justify;
    }

    .info-card1 {
        padding: 11px 20px;
        border-radius: 30px;
        color: #fff;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: auto;
        height: 304px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;


    }

    .info-card2 {
        padding: 11px 20px;
        border-radius: 30px;
        color: #fff;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: auto;
        height: 434px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .info-card3 {
        padding: 11px 20px;
        border-radius: 30px;
        color: #fff;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: auto;
        height: 434px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;



    }

    .info-card2 p {
        font-size: 22px;
        font-weight: 400;
    }

    .info-card4 p {
        font-size: 22px;
        font-weight: 400;
    }

    .info-card3 p {
        font-size: 22px;
        font-weight: 400;
    }

    .info-card1 p {
        font-size: 22px;
        font-weight: 400;
    }

    .info-card4 {
        padding: 11px 20px;
        border-radius: 30px;
        color: #fff;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 304px;


    }

    .tech-partner-sec {
        padding: 200px 0px;
        background-image: url(../Img/blog-bg.png);
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 250px;

    }

    .tech-partner-sec .slider-container {
        /* overflow: hidden; */
        width: 100%;
        height: 100px;
        margin: 60px 0;

        position: relative;

    }

    .tech-partner-sec .slider-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
    }

    .tech-partner-sec .slider-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 340px;
        height: 100px;
        margin-right: 10px;

        color: #fff;
        text-align: center;
        line-height: 100px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        -webkit-transition: -webkit-filter 0.3s ease;
        transition: -webkit-filter 0.3s ease;
        transition: filter 0.3s ease;
        transition: filter 0.3s ease, -webkit-filter 0.3s ease;
    }

    .tech-partner-sec .slider-item:hover {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transition: -webkit-filter 0.3s ease;
        transition: -webkit-filter 0.3s ease;
        transition: filter 0.3s ease;
        transition: filter 0.3s ease, -webkit-filter 0.3s ease;
        /* smooth effect */
    }

    /* Optional: smooth out the transition when leaving hover */
    .tech-partner-sec .slider-item {
        -webkit-transition: -webkit-filter 0.3s ease;
        transition: -webkit-filter 0.3s ease;
        transition: filter 0.3s ease;
        transition: filter 0.3s ease, -webkit-filter 0.3s ease;
    }

    /* trusted-sliders */
    .trusted-sliders {
        padding: 100px 0;
    }

    .trusted-swiper {
        max-width: 60%;
        /* slider width */
        margin: 0 auto;
        /* center slider */
        padding-bottom: 130px;
        /* ensure space for pagination below */
        box-sizing: border-box;
    }

    .trusted-sliders .swiper-slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-top: 10%;
    }

    .quote-img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .trusted-sliders p {
        font-size: 36px;
        color: #000;
        word-break: break-word;
    }

    .bl-text {
        color: #1252C9;
    }

    .testimonial-author h6 {
        font-weight: 700;
        font-size: 20px;
        margin: 5px 0 0 0;
    }

    p.postion,
    p.location-p {
        font-size: 16px;
        margin: 0;
    }

    /* Pagination styling */
    .trusted-sliders .swiper-pagination {
        text-align: center;
        margin-top: 0;
        bottom: 10px !important;
        /* force pagination below slides */
        position: absolute;
        width: 100%;
    }

    .trusted-sliders .swiper-pagination-bullet {
        width: 275px;
        height: 3px;
        background: #C9CEE2;
        opacity: 1;
        margin: 0 16px !important;
        border-radius: 0px;
        -webkit-transition: background 0.3s;
        transition: background 0.3s;
        overflow: hidden;
    }

    .trusted-sliders .swiper-pagination-bullet-active {
        background: #FF6A00;
    }

    span.q-lnk-arrow a img {
        width: 65px;
        height: 65px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    /* Pagination styling */
    .trusted-sliders .swiper-pagination {
        text-align: center;
        margin-top: 0;
        bottom: 10px !important;
        /* force pagination below slides */
        position: absolute;
        width: 100%;
    }

    .trusted-sliders .swiper-pagination-bullet {
        width: 85px;
        height: 3px;
        background: #C9CEE2;
        opacity: 1;
        margin: 0 16px !important;
        border-radius: 0px;
        -webkit-transition: background 0.3s;
        transition: background 0.3s;
        overflow: hidden;
    }

    .trusted-sliders .swiper-pagination-bullet-active {
        background: #FF6A00;
    }

    span.q-lnk-arrow a img {
        width: 65px;
        height: 65px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .trusted-swiper {
        max-width: 100%;
        /* Adjust as needed */
        margin: 0 auto;
        padding-bottom: 100px;
    }

    .trusted-sliders .swiper-slide {
        text-align: center;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    }

    .trusted-sliders .swiper-slide img,
    .trusted-sliders .swiper-slide p {
        pointer-events: none;
    }

    /* trusted-sliders end */
    /* blog */
    .blog-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .blog-item {
        position: relative;
        cursor: pointer;
        border: 1px solid #ccc;
        border-radius: 40px;
        overflow: hidden;
    }

    .blog-item img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    }

    .blog-item:hover img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    /* Overlay */
    .overlay-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        text-align: center;
        background: transparent;
    }

    .overlay-link img {
        width: 50px;
        height: 50px;
        filter: invert(1);
        transition: transform 0.3s ease;
    }

    .overlay-link:hover img {
        transform: scale(1.2);
    }

    .blog-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(18, 82, 201, 0);
        /* initial transparent */
        opacity: 0;
        -webkit-transition: background 0.3s ease, opacity 0.3s ease;
        transition: background 0.3s ease, opacity 0.3s ease;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .blog-item:hover .overlay {
        background: rgba(18, 82, 201, 0.8);
        opacity: 1;
    }

    .blog-item .overlay img {
        width: 50px !important;
        height: 50px;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    .blog-item:hover .overlay img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    /* Content above overlay */
    .blcok-content {
        position: relative;

    }

    .blcok-content h5 {
        color: #1252C9;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        padding-top: 30px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .blcok-content small {
        color: #000;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        padding-top: 30px;
    }

    .bloc-lisintg-point h3 {
        font-size: 24px;
        color: #000;
    }

    .bloc-lisintg-point p {
        font-family: 'Ubuntu Sans", sans-serif; Sans';
        font-size: 22px;
        font-weight: 400;
    }

    .blog-link .overlay img {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    section.blog {
        background-image: url("../Img/blog-bg.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        padding: 100px 0;
        min-height: 300px;
        /* ✅ ensures background always visible */
    }

    .right-sec-blocks .blog-item img {
        width: 25%;
    }

    .right-sec-blocks .blcok-content {
        width: 75%;
    }


    /* blog */
    /* grow-with-sec */
    .grow-with-sec {
        position: relative;
        overflow: hidden;
        color: #fff;
        padding: 100px 0;
        height: 954px;
        text-align: center;
    }

    .grow-with-sec .video-background {
        /* position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
   
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 0; */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .grow-with-sec .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
        -webkit-transition: opacity 1.2s ease-in-out;
        transition: opacity 1.2s ease-in-out;
        opacity: 1;
    }

    .grow-with-sec .container {
        position: relative;
        z-index: 2;
    }

    .grow-with-sec h2 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .grow-with-sec p {
        font-size: 24px;
        margin-bottom: 15px;

        font-weight: 500;
        line-height: 32px;
    }

    .grow-with-sec small {
        font-size: 1rem;
        margin-bottom: 30px;
        display: block;
        position: relative;
        z-index: 1;
    }

    .grow-with-sec strong {
        color: #ff9b44;
    }

    .grow-with-sec .btn-custom {
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 600;
        margin: 0 10px;
        position: relative;
        z-index: 1;
    }



    .btn-custom {
        -webkit-animation: btnPulseGlow 2s infinite ease-in-out;
        animation: btnPulseGlow 2s infinite ease-in-out;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        cursor: pointer;
    }

    .btn-outline-light {
        border-color: white;
        color: white;
    }

    .btn-outline-light:hover {
        background-color: #1252C9;
        color: #fff;
        border-color: #0056b3;
    }


    /* grow-with-sec-end */
    /* footer */
    .pow-by {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }



    img.rez-foot-logo {
        max-width: 75px;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        height: auto;
    }

    .break-email {
        display: inline-block;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.6 !important;
    }

    .reztez-footer {
        background-color: #000;
        color: #ccc;
        padding: 5rem 0 4rem;
        font-size: 0.9rem;
    }

    .reztez-footer a {
        color: #ccc;
        text-decoration: none;
    }

    .reztez-footer a:hover {
        color: #fff;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: bold;
        color: #0056b3;
        /* Using a blue similar to the image */
    }

    .footer-brand .social-icons .btn {
        background-color: transparent;
        color: #fff;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        line-height: 33px;
        text-align: center;
        font-size: 1.2rem;
        -webkit-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
        border: 1px solid #fff;
    }

    .footer-brand .social-icons .btn:hover {
        background-color: #007bff;
        /* Hover color similar to the logo */
        color: #fff;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .footer-links .list-unstyled a {
        line-height: 3;
        font-size: 18px;
    }

    .subscribe-card {
        background-color: #121212;
        color: #fff;
        padding: 45px;
        border-radius: 8px;
    }

    .subscribe-card .form-control {
        background-color: #fff;
        border: 1px solid #fff;
        color: #888;
        border-radius: 6px 0 0 6px;
        font-size: 14px;
        height: 50px;
    }

    .subscribe-card .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .subscribe-card .form-control::-moz-placeholder {
        color: #999;
    }

    .subscribe-card .form-control:-ms-input-placeholder {
        color: #999;
    }

    .subscribe-card .form-control::-ms-input-placeholder {
        color: #999;
    }

    .subscribe-card .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .subscribe-card .form-control::-moz-placeholder {
        color: #999;
    }

    .subscribe-card .form-control:-ms-input-placeholder {
        color: #999;
    }

    .subscribe-card .form-control::placeholder {
        color: #999;
    }

    .subscribe-card .btn-primary {
        background-color: #007bff;
        /* Blue button */
        border-color: #007bff;
        border-radius: 0 6px 6px 0;
    }

    .subscribe-card small {
        color: #C9CEE2;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }

    .bottom-bar {
        background-color: #121212;
        color: #9E9E9E;
        padding: 1.5rem 0;
        font-size: 14px;
        font-weight: 400;
    }

    .bottom-bar a {
        color: #888;
        text-decoration: none;
    }

    .footer-brand p {
        font-size: 18px;
    }

    .reztez-footer h5 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }

    .foot-more-link a {
        font-size: 18px;
        font-weight: 700;
        text-align: end;
        color: #FF6A00;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-transform: capitalize;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }

    .footer-links {
        padding-top: 22px;
        padding-left: 18px;

    }

    .info-card1 .icon-placeholder img {
        margin-top: 20px;
        width: 42px;
        height: 42px;

    }

    .info-card2 .icon-placeholder img {
        margin-top: 20px;
        width: 42px;
        height: 42px;

    }

    .info-card3 .icon-placeholder img {
        margin-top: 20px;
        width: 42px;
        height: 42px;

    }

    .feature-card h4 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
    }

    .lead {
        max-width: 920px;
        margin: 8vh auto 24vh;
        padding: 0 20px;
        line-height: 1.6;
    }

    .lead h1 {
        font-size: clamp(28px, 4vw, 44px);
        margin: 0 0 8px
    }

    .lead p {
        color: var(--muted);
        margin: 0
    }

    /* Scroll stage */
    .scroller {
        position: relative;
        height: 650px;
        overflow-x: hidden;
    }

    .stage {
        position: -webkit-sticky;
        position: sticky;
        top: 12vh;
        /* leaves a little space above */
        height: var(--track-h);
        display: -ms-grid;
        display: grid;
        place-items: center;
        overflow: hidden;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 20px;
        height: 650px;

    }

    /* Progress line with dots */
    .progress {
        inset: 0;
        pointer-events: none;
    }

    .progress .rail,
    .progress .bar {
        position: absolute;
        height: 3px;
        left: 6%;
        right: 6%;
        top: 48px;
        border-radius: 999px;
        z-index: 1;
    }

    .progress .rail {
        background: #ff6a00;
    }

    .progress .bar {
        background: #1252c9;
        /* Blue color matching the image */
        width: 0%;
        -webkit-transition: width .12s linear;
        transition: width .12s linear;
    }

    /* Progress dots */
    .progress-dots {
        position: absolute;
        top: 28px;
        left: 6%;
        right: 6%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .progress-dot {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        color: white;
        background: #3b82f6;
        border: 3px solid #3b82f6;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .progress-dot.active {
        background: #3b82f6;
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
    }

    .progress-dot.inactive {
        background: transparent;
        border-color: #3b82f6;
        color: #3b82f6;
    }

    /* Horizontal track that we translate based on scroll progress */
    .track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: var(--card-g);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        /* updated via JS */
        will-change: transform;
        /* padding: 0 76vw; */
        gap: 140px;
        /* breathing space at edges */
    }

    /* Step card */
    .step {
        width: 25%;
        height: auto;
        border-radius: 18px;
        padding: 18px 18px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-transform: scale(1);
        transform: scale(1);
        /* transition: box-shadow .18s linear, border-color .18s linear;
            backdrop-filter: blur(10px); */
    }

    .step img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    .step.is-center {
        border-color: rgba(59, 130, 246, 0.3);
        /* subtle blue border */

        -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;

        transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;

        transition: box-shadow 0.3s ease, transform 0.3s ease;

        transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
        -webkit-transform: translateY(-4px) scale(1.03);
        transform: translateY(-4px) scale(1.03);
        /* subtle lift effect */
    }

    .badge {
        display: -ms-inline-grid;
        display: inline-grid;
        place-items: center;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: .08em;
        color: #0b0d12;
        background: var(--accent);
        padding: 6px 10px;
        border-radius: 999px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    .step-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
        gap: initial;
        width: 300px;
        text-align: justify;
    }

    .title {
        font-weight: 700;
        font-size: 36px;
        margin: 0;
        color: #000000;
    }

    .subtitle {
        color: #000;
        font-size: 22px;
        margin: 0;
        font-weight: 400;
    }

    .step-icon {
        margin-top: 20px;
    }

    .art {
        display: -ms-grid;
        display: grid;
        place-items: center;
        margin-top: 6px;
        height: 140px;
        border-radius: 12px;
        background: -webkit-radial-gradient(240px 140px at 50% 40%, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
        background: radial-gradient(240px 140px at 50% 40%, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
        position: relative;
    }

    .art::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: -webkit-radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
        background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Bullet point design */
    .bullet {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        position: relative;
        background: -webkit-linear-gradient(315deg, var(--accent), #ffd4b3);
        background: linear-gradient(135deg, var(--accent), #ffd4b3);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
        -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
        z-index: 2;
    }

    .bullet:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 106, 0, 0.4);
    }

    .bullet:after {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .bullet:hover:after {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    span.counter-suffix {
        position: absolute;
        top: 73px;
        font-size: 30px;
        font-weight: 800;
    }

    .integrate-sec .feature-card p {
        font-size: 22px;
        font-weight: 400;
        color: #000;
    }

    .scale-with-section .cmn p {
        text-align: left;

    }

    @media (min-width: 1500px) {
        .container {
            max-width: 1440px;
        }
    }

    @media (min-width: 1400px) {
        .trusted-sliders .swiper-pagination-bullet {
            width: 120px;
        }

    }

    @media (max-width: 1500px) {
        .cmn.p {
            text-align: left;
        }

    }

    @media (max-width: 1380px) {


        .footer-links .list-unstyled a {
            line-height: 3;
            font-size: 13px;
        }
    }

    @media (max-width: 1400px) {
        .break-email {
            white-space: normal;
        }

        .vertical-slider li {
            font-size: 30px;
        }

        .info-card p {
            color: #fff;
            font-size: 19px;

        }

        .toaccess {
            font-size: 25px;
        }

        .vertical-swiper-inner img {

            margin-bottom: 5px;
            max-width: 100%;
            padding: 20px 0;
            width: 120px;
            height: 120px;
        }

        .vertical-swiper-inner h2 {
            font-size: 55px;
        }

        .vertical-swiper-inner h3 {
            font-size: 28px;
        }

        .vertical-swiper-inner p {
            font-size: 20px;
        }

        .feature-card h4 {
            font-weight: 700;
            font-size: 19px;
        }

        .integrate-sec .feature-card p {
            font-size: 16px;
            margin-bottom: 0;
        }

        .cmn.p {
            text-align: left;
        }
    }



    /* media-query */
    @media (min-width: 1200px) {

        .bg-reztez h2 {
            font-size: 80px;
            max-width: 60%;
            text-align: center;
            width: 100%;
        }

    }

    @media (max-width: 1200px) {
        .counter-section {
            padding: 30px 0;
            height: auto;
        }

        .vertical-swiper {
            height: 550px;
        }

        .vertical-swiper-inner {
            height: 550px;

        }

        #businesses-slider-section {
            min-height: 70vh;
        }

        .vertical-slider li {
            font-size: 24px;
        }

        .toacess {
            font-size: 25px;
        }

        .counter-box {
            width: 20%;
        }

        section.counter-section h2 {
            font-size: 40px;

        }

        .vertical-swiper-inner h2 {
            font-size: 35px;
        }

        .vertical-swiper-inner h3 {
            font-size: 20px;
        }

        .vertical-swiper-inner p {
            width: 100%;
        }

        .bg-reztez h2 {
            font-size: 59px;
            max-width: 100%;
            text-align: center;
            width: 100%;

        }

        .info-card .icon-placeholder {
            margin-bottom: 22px;
        }

        .trusted-sliders .swiper-pagination-bullet {
            width: 15px;
        }



        .footer-links {
            padding-top: 22px;
            padding-left: 0;
        }

        .footer-links .list-unstyled a {
            line-height: 3;
            font-size: 13px;
        }

        .footer-brand p {
            font-size: 16px;
        }

        .subscribe-card {
            background-color: #121212;
            color: #fff;


        }

        .bg-reztez {
            min-height: auto;
            height: auto;
        }

        h3.cmn-tiles-all {

            font-size: 46px;
        }
    }

    @media (max-width: 1025px) {
        span.q-lnk-arrow a img {
            width: 65px;
            height: 45px;
        }

        .bloc-lisintg-point p {
            font-family: 'Ubuntu Sans", sans-serif; Sans';
            font-size: 14px;
        }

        .bloc-lisintg-point h3 {
            font-size: 17px;
        }

        .integrate-sec .card1 .smallp,
        .integrate-sec .card2 .smallp {

            padding-top: 30px;
        }

        section.integrate-sec {
            padding: 70px 0;
        }

        .integrate-sec .card1 .card-body p,
        .integrate-sec .card2 .card-body p {
            font-size: 21px;

        }

        .powerd-by-b {
            text-align: center;
            margin: 0 auto;
        }

        .feature-card {
            height: auto;
        }

        section.distrubation-model-sec {
            padding-top: 100px;
        }
    }

    @media (max-width: 1024px) {
        .privcy-anchore a {
            display: inline;
        }


        .pow-by {
            width: 100%;
            justify-content: center;
        }

        .privcy-anchore {
            width: 100%;

        }

        .scale-with-left {
            padding: 0 21px;

        }

        .vertical-swiper-inner h2 {
            font-size: 48px;
        }

        .vertical-swiper-inner h3 {
            font-size: 21px;
        }

        .vertical-swiper-inner p {
            font-size: 15px;
            line-height: 20px;
        }

    }

    @media (max-width:991px) {
        

        
        h3.cmn-tiles-all {
            font-size: 33px;
        }

        .trusted-sliders {
            padding: 50px 0;
        }

        .powerd-by-b {
            text-align: center;
            margin: 0 auto;
        }

        .integrate-sec .card1 .smallp {
            padding-top: 0;
        }

        .integrate-sec .card2 .smallp {
            padding-top: 0;
        }

        .feature-card {
            height: auto;
        }

        .counter-section {
            padding: 30px 0;
            height: auto;
        }

        .navbar-collapse {
            background: #fff;
            padding-bottom: 15px;
        }

        .grow-with-sec {
            height: 100%;
        }

        section.integrate-sec {
            padding: 40px 0;
        }

        .bg-reztez {
            height: 50vh;
        }



        .info-card p {
            font-size: 17px;
        }

        .code-block.w-100.text-white {
            margin-top: 20px;
        }

        .vertical-swiper {
            background-color: #FBFBFD;
            overflow: hidden;


        }

        .vertical-swiper-inner {
            padding-left: 25px;
        }

        section.distrubation-model-sec h6 {
            font-size: 22px;
        }

        section.distrubation-model-sec p {
            font-weight: 400;
            font-size: 20px;
        }

        .navbar-nav .nav-link::after {
            content: "";
            display: none;
        }

        div#navbarNav li a {
            margin: 6px 10px;
        }

        .poweredby-rez {
            padding-top: 10px;
        }

        .vertical-slider li {
            font-size: 30px;
        }

        section.counter-section h2 {
            font-size: 29px;

        }

        .counter-box .counter {
            font-size: 30px;
        }

        .counter-box .counter-text {
            font-size: 14px;
            margin-top: 0;
        }

        .counter-box .counter {
            font-size: 20px;
        }

        span.counter-suffix {

            font-size: 18px;

        }

        .integrate-sec .card1 h5,
        .integrate-sec .card2 h5 {
            font-size: 30px;
            font-weight: 600;
        }

        .integrate-sec .card2 .card-body p,
        .integrate-sec .card1 .card-body p {
            font-size: 17px;
        }

        /* .counter-box {
            text-align: center;
        } */

        .icon-box {

            margin: 0 auto;
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: unset;
        }

        .trusted-sliders p {
            font-size: 26px;
        }
    }

    @media (max-width: 1280px) {


        .cmn.p {
            text-align: left;
        }

        .toacess {
            font-size: 26px;
        }

        .vertical-slider li {
            font-size: 26px;
        }
    }

    @media (max-width:767px) {

        
        section.blog {
            background-image: url("../Img/blog-bg.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 250px;
            /* adjust for mobile view */
        }

        #businesses-slider-section .swiper-slide {
            height: 100%;
        }

        .toaccess {
            font-size: 20px;
        }

        .vertical-slider li {
            font-size: 20px;
            padding-left: 0px;
        }

        .poweredby-rez {
            padding-top: 0;
        }

        .navbar {
            background: #fff;
            padding-bottom: 15px;
        }

        div#navbarNav li a {
            margin: 5px 10px;
        }

        p.laverage-a {
            line-height: 20px;
        }

        .vertical-slider,
        .hotel-num-left {
            width: 100%;
        }

        .info-card {
            height: auto !important;
        }

        .circle {
            width: 150px;
            height: 100px;
            
        }

        .centered-content {
            width: 27px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: auto;
        }

        section.counter-section h2 {
            text-align: center !important;
        }



        .vertical-swiper-inner img {
            width: 90px;
            height: auto;
        }

        .vertical-swiper-inner h3 {
            font-size: 16px;
        }

        .vertical-swiper-inner h2 {
            font-size: 35px;
        }

        .vertical-swiper-inner h3 {
            font-size: 18px;
        }

        .vertical-swiper {
            height: auto;
        }

        .counter-box {
            width: 50%;
            text-align: center;
            margin: 0 auto;
            position: relative;
        }

        .icon-box {

            -webkit-box-pack: center;

            -ms-flex-pack: center;

            justify-content: center;
        }



        .tech-partner-sec .slider-item {
            width: 175px;
            height: auto;
        }

        .trusted-swiper {
            max-width: 90%;
        }



        .bottom-bar a {
            width: 100%;
            display: inline;
        }

        .fsl {
            font-size: 30px;
        }

        .toacess {
            font-size: 25px;
        }

        h3.cmn-tiles-all {
            font-family: 'Ubuntu Sans';
            font-size: 30px;
        }

        section.techno-deliver h2 {
            font-size: 30px;
        }

        .delivers-more p {
            font-size: 19px;
        }

        section.distrubation-model-sec {
            padding-top: 31px;
        }

        section.integrate-sec {
            margin-top: 20px;
        }

        .bg-reztez h2 {
            font-size: 45px;
            max-width: 100%;

        }

        .info-card1,
        .info-card3,
        .info-card2,
        .info-card4 {
            height: 200px;
        }

        .integrate-sec .card1 .smallp,
        .integrate-sec .card2 .smallp {
            padding-top: 0;
            font-size: 12px;

        }

        .trusted-sliders p {
            font-size: 16px;
        }

        .tech-partner-sec {
            padding: 40px 0px;
        }

        span.q-lnk-arrow a img {
                  width: 45px;
        height: 34px;
        margin-top: -4px;

        }

        section.blog {
            padding: 0px 0;
        }

        .right-sec-blocks .blcok-content {
            width: 100%;
        }

        .right-sec-blocks .blog-item img {
            width: 100%;
        }

        .grow-with-sec .btn-custom {
            margin-bottom: 11px;
        }

        .integrate-sec .card1 h5 {
            font-size: 30px;
        }

        .integrate-sec .card2 h5 {
            font-size: 30px;
        }

        .integrate-sec .card2 .card-body p {
            font-size: 20px;
        }

        .cmn.p {
            font-size: 20px;
        }

        .footer-links {
            padding-left: 20px;
        }

        section.counter-section h2 {
            font-size: 22px;
        }

        .vertical-swiper-inner {
            padding-left: 30px;
            padding-right: 21px;
        }


    }

    @media (max-width:480px) {
     
        .scale-with-section .icon-placeholder {
            margin-bottom: 10px;
        }

        .bg-reztez {
            height: 30vh;
        }

        .tech-partner-sec .slider-container {
            /* overflow: hidden; */
            width: 100%;
            height: 45px;
        }

        span.counter-suffix {

            top: 46%;
            font-size: 17px;

        }



        .grow-with-sec .btn-custom {
            padding: 12px 19px;
        }

        .vertical-swiper-inner {
            height: 100%;
        }

        .info-card {
            height: 0;
        }

        .w-100 {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
        }

        .fsl {
            font-size: 25px;
        }

        .feature-card {
            height: auto;
        }

        h3.cmn-tiles-all {
            font-family: 'Ubuntu Sans';
            font-size: 20px;
            padding: 0 3px
        }

        .cmn.p {
            font-size: 15px;
        }


        .vertical-swiper-inner img {
            width: 71px;
            height: 90px;
            max-width: 100%;
            margin-right: auto;
        }

        .trusted-sliders {
            padding: 20px 0;
        }

        .vertical-swiper {
            height: 410px;
        }

        .bottom-bar {
            font-size: 11px;
            padding: 15px 0;
            height: auto !important;
            /* 👈 Auto height se content adjust hoga */
            min-height: auto;
        }

        .reztez-footer {
            padding: 20px 0;
        }
    }