@font-face {
    font-family: 'PP Neue Montreal';
    src: url('ppneuemontreal-italic.otf') format('ttf'),
        url('ppneuemontreal-italic.otf') format('ttf');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('ppneuemontreal-bold.otf') format('ttf'),
        url('ppneuemontreal-bold.otf') format('ttf');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('ppneuemontreal-semibolditalic.otf') format('ttf'),
        url('ppneuemontreal-semibolditalic.otf') format('ttf');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal Book';
    src: url('ppneuemontreal-book.otf') format('ttf'),
        url('ppneuemontreal-book.otf') format('ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('ppneuemontreal-thin.otf') format('ttf'),
        url('ppneuemontreal-thin.otf') format('ttf');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('ppneuemontreal-medium.otf') format('ttf'),
        url('ppneuemontreal-medium.otf') format('ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PP Neue Montreal', sans-serif;
    /* outline: 1px solid white; */
}

:root {
    --text-gradient-primary-color: #85F3E6;
    --text-gradient-secondary-color: #5AB2F0;
    --smallest-text-size: 14px;
    --normal-text-size: 16px;
    --medium-text-size: 20px;
    --semi-large-text: 40px;
    --btn-text-size: 18px;
    --text-color: #FFFFFF;
    --large-heading: 96px;
    --medium-heading: 56px;
    --tabs-heading-size: 48px;
    --para-text: 28px;
    --animation-duration: 7s;
}

body {
    background-color: #000;
    color: white;
    /* font-family: 'Segoe UI', sans-serif; */
}

.cstm-lg-container {
    padding-left: 10%;
    padding-right: 10%;
}

.cstmlg-container {
    padding-left: clamp(16px, 4vw, 80px);
    padding-right: clamp(16px, 4vw, 80px);
}


.cstm-sm-container {
    padding-left: 2%;
    padding-right: 2%;
}


.large-heading {
    font-size: var(--large-heading);
}

.medium-heading {
    font-size: var(--medium-heading);
    color: var(--text-color);
}

.small-font {
    font-size: 12px;
}

.medium-text {
    font-size: var(--medium-text-size);
    font-weight: normal;
    letter-spacing: 0.4px;
}

.para-text {
    font-size: var(--para-text);
    color: #FFFFFF;
    letter-spacing: 0.4px;
}

.normal-font {
    font-size: var(--normal-text-size);
    letter-spacing: 0.4px;
}
.normal-font a {
    color: white;
    text-decoration: none;
}
.semilarge-text {
    font-size: var(--semi-large-text);
}

.tabs-heading {
    font-size: var(--tabs-heading-size);
    font-weight: 500;
    color: var(--text-color);
}

.gradient-border {
    padding: 8px 16px;
    border-radius: 100px;
    background: linear-gradient(to right, #0A2A46, #0C1C28, #1F424A);
    position: relative;
    z-index: 1;
}


/* Hero Section */
.main-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    overflow-x: hidden;
    min-height: 400px;
}

.main-wrapper-column {
    background-image: url('sources/pattern.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.main-wrapper-imgs {
    background-color: #150300;
}

.main-wrapper-imgs img {
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
}

.mobile-layer {
    animation-name: mobile-layer-animation;
    animation-duration: calc(var(--animation-duration) * 0.33);
    animation-delay: calc(var(--animation-duration) * 0.17);
    transform: translateX(-50%);
    animation-fill-mode: both;
}

@keyframes mobile-layer-animation {
    0% {
        transform: translateY(110%) translateX(-50%);
    }

    100% {
        transform: translateY(0) translateX(-50%);
    }
}

.cursor-layer {
    animation-name: cursor-layer-animation;
    animation-duration: calc(var(--animation-duration) * 0.5);
    animation-delay: calc(var(--animation-duration) * 0.67);
    animation-fill-mode: forwards;
    transform: translateX(60%) translateY(20%);
}

@keyframes cursor-layer-animation {
    0% {
        transform: translateX(60%) translateY(20%);
        opacity: 1;
    }

    25% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }

    75% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    95% {
        transform: translateX(-41%) translateY(7%);
    }

    100% {
        transform: translateX(-41%) translateY(7%);
        opacity: 0;
    }
}

.product-layer {
    animation-name: product-layer-animation;
    animation-duration: calc(var(--animation-duration) * 0.08);
    animation-delay: calc(var(--animation-duration) * 0.875);
    transform: translateX(-50%);
    animation-fill-mode: both;
}

@keyframes product-layer-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.refund-card {
    position: absolute;
    width: 240px;
    max-width: 30%;
    left: 70%;
    top: 18%;
    animation-name: refund-card-animation;
    animation-duration: calc(var(--animation-duration) * 0.1);
    animation-delay: calc(var(--animation-duration) * 1.2);
    transform: translateX(200%);
    animation-fill-mode: both;
}

@keyframes refund-card-animation {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0%);
    }
}



/* Hero Section */

.hero-section {
    padding-top: 6rem;
}

.hero-content {
    padding-bottom: 140px;
}

.gradient-border::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background: #092636;
    border: 1px solid #35676C;
    border-radius: 100px;
    z-index: -1;
}

.gradient-text {
    background: linear-gradient(to right, var(--text-gradient-primary-color), var(--text-gradient-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg {
    background: linear-gradient(170deg, rgba(0, 6, 14, 255) 15%, rgba(7, 41, 68, 255));
    border-radius: 30px;
}

.navbar-nav {
    /* background: linear-gradient(to right, #001224, #001326); */
    background: linear-gradient(to right, #364a5e34, #1f374f2d);

}

.nav-tags {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.nav-tags.active {
    background: linear-gradient(to right, var(--text-gradient-primary-color), var(--text-gradient-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.nav-tags:hover {
    background: linear-gradient(to right, var(--text-gradient-primary-color), var(--text-gradient-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}


.nav-btn {
    color: var(--text-color);
}

.badge-text {
    color: var(--text-color);
    font-weight: 400;
    font-size: var(--smallest-text-size);
    text-transform: uppercase;
}

/* Button text */
.get-started-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 999px;
    padding: 8px 20px;
    background-color: #022b3a;
    /* Initial dark bg */
    color: white;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Icon Circle */
.btn-icon {
    position: relative;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(to right, #65d0fc, #99fbc4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.btn-icon .arrow {
    color: #022b3a;
    font-size: 1.2rem;
}

/* Text */
.btn-text {
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 1.1px;
}

/* Expanding Circle Background */
.hover-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #65d0fc, #99fbc4);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.6s ease;
    transform: scale(1);
    transform-origin: center;
}

/* Hover Effects */
.get-started-btn:hover .hover-bg {
    transform: scale(15);

    /* Expands to cover button */
}

.get-started-btn:hover {
    color: #022b3a;
}

.get-started-btn:hover .btn-icon {
    background: white;
    z-index: 1;
}

/* Button text */


.opacityless-text {
    font-size: var(--btn-text-size);
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}



/*  */
/* Container */
.box-frames {
    background: linear-gradient(to bottom right, #051628, #052a4a);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 0.8rem 1.2rem;
    border: 1px solid #2A5560;
}

/* Icon Circle */
.icon-circle {
    width: 68px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #0A5B9C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, opacity 0.6s ease-in-out;
    z-index: 2;
}



/* Percentage Text */
.percent-text {
    position: absolute;
    bottom: 0;
    left: 2%;
    transform: translateY(100%);
    font-size: 100px;
    font-weight: 400;
    z-index: 1;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    margin-bottom: 0px;
}

/* Hover Effects */
.box-frames:hover {
    background: #003a66;
}

.box-frames:hover .icon-circle {
    transform: translateY(-150%);
    opacity: 0;
}

/* Feature Text */
.feature-text {
    z-index: 2;
    position: relative;
    transform: translateY(0%);
    transition: transform 0.6s ease-in-out;
    font-size: 24px;
    color: #FFFFFF;
}

/* On hover, slide the text up smoothly */
.box-frames:hover .feature-text {
    transform: translateY(-200%);
}

.box-frames:hover .percent-text {
    transform: translateY(10%);
    opacity: 1;
}



/* Analytics */
.dashboard-card-wrapper {
    position: relative;
}

.dashboard-card-wrapper img {
    width: 85%;
}


.dashboard-card-1,
.dashboard-card-2,
.dashboard-card-3 {
    position: absolute;
    border: 1px solid #0e4a71;
    background-color: rgb(1 29 51 / 88%);
    border-radius: 16px;
    padding: 16px;
    color: white;
}

/* Desktop positions */
.dashboard-card-1 {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}

.dashboard-card-2 {
    top: 20%;
    right: 2%;
    transform: translateY(-50%);
}

.dashboard-card-3 {
    bottom: 5%;
    right: 1%;
    transform: translateY(-50%);
}


/* Swiper  */
.analytics-section {
    position: relative;
}

.bg-section {
    position: relative;
    background-image: url('sources/bg-circle.png');
    background-size: 60%;
    background-position: 0% 16%;
    background-repeat: no-repeat;
}

.new-bg {
    background-image: radial-gradient(#012643, #01172c 30%, #000);
}

.swiper-area {
    margin-top: -60px;
    border-radius: 100px;
    position: relative;
    /* top: 90%;
    left: 50%; */
    /* width: 100%; */
    /* transform: translateX(-50%); */
    /* background: linear-gradient(130deg,
            rgba(12, 64, 107, 1) 0%,
            rgba(13, 39, 62, 0.9) 30%,
            rgba(1, 6, 13, 0.5) 60%,
            rgba(1, 6, 13, 0) 100%); */

    background-image: linear-gradient(175deg, #0C406B, #0D273E 9%, #01060D 93%);

}

.timeline-container {
    position: relative;
}

.step-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgb(255 255 255);
    transform: translateX(-50%);
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 1%, black 4%, black 96%, transparent);
}

.dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    aspect-ratio: 1/1;
    background-color: black;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    z-index: 1;
}

.step-block {
    margin-bottom: 120px;
}

.step-block:last-child {
    margin-bottom: 0;
}


.step-badge {
    background-color: #0A2A46;
    color: #85f3e6;
    border: 1px solid #85f3e6;
    border-radius: 30px;
    font-size: 13px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.integration-container {
    background: linear-gradient(30deg, #052C4D 0%, #061F38 39%, #061628 68%, #051729 100%);
    border-radius: 32px;
}

.grid-container-1,
.grid-container-2 {
    display: flex;
    justify-content: center;
}

.grid-container-1 .grid-item,
.grid-container-2 .grid-item {
    border-right: none;
}

.grid-container-1 .grid-item:last-child,
.grid-container-2 .grid-item:last-child {
    border-right: 1px solid #044479;
}


.grid-item {
    border: 1px solid #044479;
    background: linear-gradient(55deg #012343 0%, #011E37 100%);
    color: white;
    padding: 8px 20px;
    text-align: center;
}

.grid-item img {
    z-index: -1;
    width: 112px;
    transition: all 0.3s;
}

.grid-item img:hover {
    scale: 1.1;
    filter: brightness(125%);
}



.grid-container-2 .grid-item {
    border-top: none;
}

.nav,
.nav-item,
.nav-link,
.nav-link.active {
    all: unset;
    display: inline-block;
}

.custom-tabs-btns button.nav-link {
    padding: 16px 24px;
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: var(--normal-text-size);
}

.custom-tabs-btns {
    padding: 8px;
    border-radius: 100px;
    background: linear-gradient(to right, #0A2A46, #0C1C28, #1F424A);
    position: relative;
    z-index: 1;
}



.custom-tabs-btns::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background-color: #000E1C;
    /* inner background */
    border-radius: 100px;
    z-index: -1;
}

.custom-tabs-btns button.nav-link.active {
    background: linear-gradient(to right, #77F9EE 0%, #00B2F1 100%);
    color: #000;
    font-weight: 500;
    font-size: var(--normal-text-size);
}

.custom-tabs-btns button.nav-link.active img {
    filter: invert(1);
}

.small-circles {
    background: linear-gradient(to right, #65d0fc, #99fbc4);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.small-circles i {
    color: #000;
}

.tabs-percent-text {
    background: linear-gradient(to bottom, #FFFFFF 0%, #ffffff57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 86px;

}

.tabs-col {
    position: relative;
    border-radius: 22px;
    background:
        linear-gradient(145deg, #052846 0%, #052846 39%, #052846 68%, #052846 100%) padding-box,
        linear-gradient(to right, #11263B 10%, #000000 50%, #2A5560 75%, #0E5389 100%) border-box;
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    margin: 0 !important;

}

.runway-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.runway-track {
    display: flex;
    gap: 100px;
    width: max-content;

    /* Animation */
    animation: moveRight 20s linear infinite;
}

.runway-track img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease;
}

.runway-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.get-in-touch {
    background: radial-gradient(circle at center,
            #044072 0%,
            #052846 30%,
            #052846 60%,
            #052846 100%);
    border-radius: 24px;
    padding: 0 80px;
}

.form-container {
    border-radius: 24px;
    width: 100%;
    background: linear-gradient(to top left, #052C4D 0%, #061F38 39%, #051729 100%);
}


form input.form-control {
    border-radius: 84px;
    background: linear-gradient(to right, #001224, #001326);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 14px 20px;
    color: #fff !important;
}

form input.form-control::placeholder {
    color: #ffffff73;
}

form {
    width: 100%;
}

form textarea.form-control {
    border-radius: 14px;
    background: linear-gradient(to right, #001224, #001326);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 10px 20px;
    position: relative;
    color: #fff !important;
}

form textarea.form-control::placeholder {
    color: #ffffff73;
}

.char-count {
    position: absolute;
    bottom: 8px;
    right: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


.features-box-1 {
    border-radius: 24px;
    background: url("sources/maskbg-1.png") no-repeat center center;
    background-size: cover;
}


.features-box-2 {
    border-radius: 24px;
    background:
        linear-gradient(145deg, #052846 0%, #052846 39%, #052846 68%, #052846 100%);
    background-size: cover;
    position: relative;
}

.features-box-2 p {
    z-index: 1;
}

.features-box-2 img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.features-box-3 {
    border-radius: 24px;
    background:
        linear-gradient(145deg, #052846 0%, #052846 39%, #052846 68%, #052846 100%);
    background-size: cover;
}



/* swiper  */
.vertical-swiper-wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.tabsswiper {
    height: auto;
    overflow: hidden;

}

.tabsswiper .swiper-wrapper {
    transition-property: transform, height;

}

.tabsswiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
}

/*  */






/* testimoial */
.testimonial-swiper {
    position: relative;
    max-width: 100%;
}

.mySwiper {
    width: 100%;
    padding-bottom: 60px;
}

.mySwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.mySwiper .cstm-swiper-slide {
    background: linear-gradient(48deg, #052C4D 0%, #061F38 39%, #061628 68%, #051729 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    height: auto !important;
    border: 1px solid #16404f;
    flex-direction: column;
    justify-content: space-between;
    height: max-content;
}

.mySwiper .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    padding: 20px;
    font-size: 16px;
    border-radius: 50%;
    color: white;
    position: absolute;
    bottom: 10px;
    top: auto;
    z-index: 10;
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
    display: none;
}

.mySwiper .swiper-button-prev {
    left: 50%;
    transform: translateX(-120%);
}

.mySwiper .swiper-button-next {
    right: 50%;
    transform: translateX(120%);
}

.mySwiper .testimonial-img img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.card {
    background: linear-gradient(#011E37 0%, #0D446E 46%, #05294585 99%);
    color: var(--text-color);
    padding: 14px 12px;
    border-radius: 24px;
    border: 1px solid #044479;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border: 1px solid #5d89be;
}

.card-btn {
    border: 1px solid #4f5456;
    color: var(--text-color);
    font-weight: 400;
    border-radius: 24px;
    font-size: var(--smallest-text-size);
    text-transform: uppercase;
}

.card-up-title {
    color: #85F3E6;
}

.accordion {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c1519, #18292e, #101a1f);
}

/* Style common to both states */
.accordion-button {
    font-weight: 500;

    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
}


/* Collapsed state */
.accordion-button.collapsed {
    background: linear-gradient(135deg, #062138, #092d4a);
    color: #e0f7ff;
}

.accordion-button.collapsed .accordion-text {
    color: var(--text-color);
    font-size: 1rem;
}

.accordion-button:not(.collapsed) .accordion-text {
    background: linear-gradient(to left, #85F3E6 0%, #5AB2F0 39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

/* Expanded state */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #062138, #092d4a);
    color: #397aa3;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}


/* Arrow icon flipping */
.accordion-button::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 11.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
    border-bottom: none !important;
}

/* Flip when open */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-header {
    border-bottom: none !important;
}

/* Accordion body styling */
.accordion-body {
    background: linear-gradient(135deg, #062138, #092d4a);
    color: #b1bdc6;
    font-size: 0.95rem;
    padding: 1.25rem 1.5rem;
    line-height: 1.6;
    border-top: none !important;
}
/* Border after expanding  */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid #044479;
}
.banner-refund {
    padding: 10px 80px;
}

.social-icon i {
    font-size: 30px;
    background: linear-gradient(135deg, #5CB5EF, #80ECE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subscribe-form {
    /* width: 470px; */
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    /* padding: 5px; */
    background-color: #000;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.324);
}

.subscribe-input {
    width: 100%;
    background-color: #000000b0 !important;
    border: none !important;
    color: #fff;
    padding-right: 9rem !important;
}

.subscribe-input:focus {
    color: #fff;
}

.subscribe-btn {
    background: linear-gradient(90deg, #3ba9ff, #96fbc4);
    color: #000;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 999px;
    transition: background 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.subscribe-btn:hover {
    background: linear-gradient(90deg, #2c87d9, #75f5b2);
}

#footer-bottom {
    opacity: 64%;
    margin-top: 28px;
    border-top: 1px solid gray;
    padding-top: 28px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 170px;
}

.footer-description {
    color: rgba(255, 255, 255, .72)
}


@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


.financial-img-column-1 {
    background-image: url('sources/tab-img-1.png');
    background-position: right top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
}


.financial-img-column-2 {
    background-image: url('sources/tab-img-2.png');
    background-position: right top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
}


.financial-img-column-3 {
    background-image: url('sources/tab-img-3.png');
    background-position: right top;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 28px;
}


.blog-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    text-decoration: none;
}

.blog-link h5 {
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-bg {
    background-image: url('sources/Subtract.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-bg img {
    width: 55%;
}




@media (max-width: 1200px) {
    .hero-content {
        padding-bottom: 40px;
    }


    .tabs-percent-text {
        font-size: 56px;
    }

    .navbar-nav {
        margin-top: 24px;
    }

}


@media (min-width: 992px) {

    .financial-img-column-1 img,
    .financial-img-column-2 img,
    .financial-img-column-3 img {
        opacity: 0;
    }
}

/* Only Mobile */

@media (max-width: 767px) {

    .hero-section {
        padding-top: 3rem;
    }


    .swiper-area {
        margin-top: -20px;
        border-radius: 20px;
    }

    .mobile-bg img {
        margin-top: 100px;
    }

    .step-line {
        left: 10px;
    }

    .dot {
        left: 10px;
    }

    .cstm-lg-container {
        padding-left: 4%;
        padding-right: 4%;
    }

    .cstm-sm-container {
        padding-left: 4%;
        padding-right: 4%;
    }

    .banner-refund {
        padding: 10px 20px;
    }

    .large-heading {
        font-size: 48px;
    }

    .medium-text {
        font-size: 16px;
    }

    .badge-text {
        font-size: 10px;
    }

    .opacityless-text {
        font-size: 14px;
    }

    .medium-heading {
        font-size: 36px;
        text-align: center;
    }

    .dashboard-card-1,
    .dashboard-card-2,
    .dashboard-card-3 {
        scale: .6;
    }

    .semilarge-text {
        font-size: 28px;
    }

    .step-block {
        margin-bottom: 40px;
    }

    .grid {
        min-width: 100%;
    }

    .grid-item {
        padding: 8px;
    }

    .custom-tabs-btns {
        display: flex;
        border-radius: 100px;
        background: linear-gradient(to right, #0A2A46, #0C1C28, #1F424A);
        position: relative;
        z-index: 1;
        justify-content: center;
        gap: 8px;
        padding: 6px;
        list-style-type: none;
    }

    .custom-tabs-btns button.nav-link {
        padding: 8px 12px;
    }

    .tabs-heading {
        font-size: 28px;
    }


    .get-in-touch {
        padding: 0 10px;
    }

    .feature-text {
        font-size: 28px;
    }

    .box-frames:hover .feature-text {
        transform: translateY(-140%);
    }


    .footer {
        margin-top: 40px;
        border-top: 1px solid gray;
        padding: 40px 0;
    }

    .social-icon i {
        font-size: 20px;
    }

    form label {
        font-size: 14px !important;
    }

    .refund-card {
        left: 72%;
    }

}