@font-face {
    font-family: "ErasITC-Medium";
    src: url(../fonts/ErasITC-Medium.woff)
}

@font-face {
    font-family: "Inter_18pt-Regular";
    src: url(../fonts/Inter/static/Inter_18pt-Regular.ttf)
}

@font-face {
    font-family: "PublicSans-Regular";
    src: url(../fonts/Public_Sans/static/PublicSans-Regular.ttf)
}

@font-face {
    font-family: "PublicSans-Bold";
    src: url(../fonts/Public_Sans/static/PublicSans-Bold.ttf)
}

@font-face {
    font-family: "Raleway-Medium";
    src: url(../fonts/Raleway-Medium.ttf)
}

@font-face {
    font-family: "ErasDemiITC";
    src: url(../fonts/ErasDemiITC.ttf)
}

@font-face {
    font-family: "Raleway-Regular";
    src: url(../fonts/Raleway-Regular.ttf)
}

@font-face {
    font-family: "Eras Light ITC";
    src: url(../fonts/ErasITC-Light.woff2) format("woff2"), url(../fonts/ErasITC-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Eras Medium ITC";
    src: url(../fonts/ErasITC-Medium.woff2) format("woff2"), url(../fonts/ErasITC-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
article,
aside,
figure,
header,
hgroup,
menu,
nav,
section,
menu,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-family: "Inter_18pt-Regular";
    font-size: 14px;
    color: #444;
    text-align: left;
    font-weight: 400
}

.font-bbplus {
    font-family: "ErasDemiITC"
}

article,
aside,
figure,
header,
hgroup,
nav,
section {
    display: block
}




:root {
    --bg-deep: #002d77;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html,
body {
    height: 100%
}

.hero-section {
    height: 100vh;
    padding-top: 4%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(135deg, rgb(59 130 246 / .05) 0%, rgb(147 197 253 / .1) 100%);
    z-index: 1
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 0;
    width: 100%;
    position: relative;
    z-index: 2
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1px;
    align-items: center;
    height: 85vh;
    padding: 8px 0
}

.content-left {
    opacity: 0;
    animation: slideInLeft 1s ease 0.3s forwards
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-badge {
    font-family: "Inter_18pt-Regular";
    display: inline-block;
    background: rgb(59 130 246 / .1);
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgb(59 130 246 / .2)
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #021440;
    line-height: 1.1;
    margin-bottom: 13px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -.02em
}

.hero-title .highlight,
.industry-title .highlight {
    font-size: 4rem;
    font-weight: 900;
    color: #0047bb;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.3
}

.hero-description {
    font-size: 1.25rem;
    color: #434e5c;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 80%
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-primary {
    background: #0047bb;
    color: #fff;
    padding: 13px 22px;
    border: none;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgb(59 130 246 / .3)
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(59 130 246 / .4)
}

.btn-secondary {
    background: #fff0;
    color: #0047bb;
    padding: 11px 19px;
    border: 2px solid #0047bb;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease
}

.btn-secondary:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(59 130 246 / .3)
}

.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideInRight 1s ease 0.6s forwards
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.dashboard-mockup {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgb(0 0 0 / .15);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg)
}

.dashboard-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 9px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: between
}

.dashboard-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px
}

.dashboard-subtitle {
    color: #fff;
    font-size: .875rem;
    opacity: .9
}

.dashboard-nav {
    background: #f8fafc;
    padding: 5px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 24px
}

.nav-item {
    font-size: .875rem;
    font-weight: 600;
    color: #64748b;
    padding: 8px 0;
    position: relative
}

.nav-item.active {
    color: #3b82f6
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6
}

.dashboard-content {
    padding: 8px 15px;
    background: #fff
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 6px
}

.stat-card {
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #e2e8f0
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px
}

.stat-label {
    font-size: .75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.chart-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.chart-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b
}

.chart-period {
    font-size: .75rem;
    color: #64748b;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 94px;
    margin-bottom: 4px
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: growBar 1.5s ease 1s forwards;
    transform: scaleY(0);
    transform-origin: bottom
}

@keyframes growBar {
    to {
        transform: scaleY(1)
    }
}

.chart-bar:nth-child(1) {
    height: 60%;
    animation-delay: 1.1s
}

.chart-bar:nth-child(2) {
    height: 80%;
    animation-delay: 1.2s
}

.chart-bar:nth-child(3) {
    height: 45%;
    animation-delay: 1.3s
}

.chart-bar:nth-child(4) {
    height: 90%;
    animation-delay: 1.4s
}

.chart-bar:nth-child(5) {
    height: 70%;
    animation-delay: 1.5s
}

.chart-bar:nth-child(6) {
    height: 95%;
    animation-delay: 1.6s
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: #64748b
}

.chart-labels span {
    font-size: .75rem
}

.recent-transactions {
    background: #f8fafc;
    border-radius: 12px;
    padding: 5px 12px;
    border: 1px solid #e2e8f0
}

.transactions-header {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0
}

.transaction-item:last-child {
    border-bottom: none
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px
}

.transaction-icon {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.transaction-icon svg {
    width: 16px;
    height: 16px;
    color: #fff
}

.transaction-details h2 {
    font-size: .875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px
}

.transaction-details p {
    font-size: .75rem;
    color: #64748b
}

.transaction-amount {
    font-size: .875rem;
    font-weight: 700;
    color: #059669
}

.transaction-amount.expense {
    color: #dc2626
}

.contact-section h2,
.support-section h2,
.plus p,
.plus p span {
    text-align: center;
    font-size: 2.8rem;
    color: #213b55;
    line-height: 42px;
    font-family: "PublicSans-Bold", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    font-weight: 600
}

H2 span {
    font-size: 3rem;
    color: #0047bb;
    font-weight: 700;
    font-family: "PublicSans-Bold", sans-serif
}

h2 {
    text-align: center;
    font-size: 17px;
    line-height: 1.4em;
    color: #213b55;
    font-family: "PublicSans-Bold", sans-serif
}

h3 {
    text-align: left;
    font-size: 17px;
    line-height: 25px
}

p {
    font-size: 17px;
    line-height: 28px;
    color: #212529;
    font-family: "Inter_18pt-Regular"
}

h4,
.repo-heading,
.accountPage h2,
.accountPage .shift h3 {
    text-align: left;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2em;
    color: #213b55;
    font-family: "PublicSans-Bold", sans-serif;
    margin-bottom: 10px
}

.wrap {
    max-width: 1170px;
    min-width: 320px;
    margin: 0 auto;
    width: 96%
}

.testimonial {
    background: #f8fafc
}

.head-title h2 {
    font-size: 45px;
    font-style: normal;
    font-weight: lighter;
    line-height: normal;
    color: #213b55;
    text-align: left;
    margin-bottom: 0
}

.banner .bnrCnt .btngrp .btn,
.popup-btn {
    padding: 13px 40px;
    margin-left: 0;
    float: left;
    box-shadow: none;
    margin-right: 20px;
    background: #0065f2;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 15px rgb(0 0 0 / .3);
    font-size: 1.1rem
}

.lft {
    float: left
}

.list .lft {
    width: 53%
}

.rgt {
    float: right
}

.list .rgt {
    width: 47%
}

.vdo img {
    padding-top: 30px;
    width: 100%;
    height: 150%;
    float: right
}

.wraper {
    margin: auto;
    padding: 64px 0;
    background: #fff
}

.head {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    margin-bottom: 80px
}

.a-title {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 700;
    text-align: left;
    color: #213b55;
    letter-spacing: -.0033333rem
}

.desc {
    font-family: "Inter_18pt-Regular";
    font-weight: 400;
    color: #213b55;
    max-width: 42ch;
    text-align: left;
    font-size: 1.53rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    margin-bottom: 0;
    margin-top: 10px
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.card-business {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
    width: 100%;
    height: 340px;
    padding: 0
}

article {
    padding: 0;
    margin: 0
}

.card-business a {
    text-decoration: none;
    color: inherit;
    padding-top: 4%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center
}

.card-business p {
    font-size: 18px;
    font-family: "PublicSans-Bold", sans-serif;
    margin-top: 1rem
}

.card-business h4 {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 28px;
    color: #213b55;
    font-weight: 800;
    text-underline-offset: 5px;
    margin-bottom: 2%;
    text-align: center
}

.thumb {
    margin: 12px 12px 16px;
    border-radius: 10px;
    aspect-ratio: 16/13;
    background: linear-gradient(180deg, #7cc6ff, #42a5f5 60%, #2c7dbf);
    position: relative;
    overflow: hidden
}

.thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 26% 58%, #fff 0 40%, #e8eef7 41% 48%, transparent 49%), linear-gradient(#fff 0 0) 8% 70% / 18% 8% no-repeat, linear-gradient(#fff 0 0) 28% 70% / 18% 8% no-repeat, linear-gradient(#fff 0 0) 48% 70% / 18% 8% no-repeat;
    opacity: .15
}

.thumb .img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px
}

.thum .img {
    background: url(https://cdn.pixabay.com/photo/2020/01/26/20/14/computer-4795762_1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 355px
}

.thum::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 61%), rgb(0 0 0 / 51%))
}

.cards.explore .thumb {
    background: #d9eef9
}

.cta {
    position: absolute;
    left: 29px;
    font-size: 16px;
    top: 149px;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: #213b55;
    box-shadow: 0 4px 10px rgb(0 0 0 / .06);
    border: 1px solid #d7e3ee
}

#exploreAll {
    visibility: hidden;
    height: 0;
    margin: 0
}

.demo-display {
    display: none
}

.flip-video {
    width: 100%;
    height: auto
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
    transform-style: preserve-3d;
    background: #f1f4f6;
    border: 1px solid #e6ecf2
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg)
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden
}

.flip-card-front {
    color: #fff
}

.flip-card-back {
    font-family: "PublicSans-Bold", sans-serif;
    background: #213b55;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 20px;
    transform: rotateY(180deg)
}

.flip-card-back h4 {
    font-family: "PublicSans-Bold", sans-serif;
    margin-bottom: 10px;
    text-align: left;
    color: #fff
}

.flip-card-back p {
    font-size: 18px;
    font-family: "Inter_18pt-Regular";
    text-align: left;
    color: #fff
}

.flip-card-back h6 {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
    color: #ececec;
    text-decoration: underline;
    cursor: pointer
}

.working-domain-section {
    width: 100%;
    height: auto;
    background: rgb(240 240 240 / 60%);
    clear: both;
    float: left;
    padding-top: 64px
}

.working-domain-container {
    display: grid;
    grid-template-columns: 56% 44%;
    grid-gap: 3px;
    height: auto
}

.working-domain-left {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 2px
}

.working-card {
    position: relative;
    width: 100%;
    height: auto;
    background: #dde;
    padding: 2px
}

.working-card .img-container img {
    width: 100%;
    height: auto
}

.working-title p {
    padding-top: 25px;
    padding-left: 15px;
    text-align: left !important;
    font-family: "Rubik-bold";
    font-size: 1.125rem;
    font-weight: 500;
    color: #0774c7;
    line-height: 20px
}

.domain-description {
    padding-top: 10px;
    padding-bottom: 20px;
    height: auto;
    overflow: hidden;
    text-align: left
}

.container-right {
    padding-left: 1px;
    height: auto;
    width: 100%
}

.split-content {
    display: table-cell;
    height: auto;
    width: 100%;
    height: auto;
    vertical-align: top;
    padding: 0rem 1.5rem
}

.title-intro {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: normal;
    color: #4e4953;
    font-family: "Inter_18pt-Regular"
}

.title {
    margin: 0;
    color: #4e4953;
    font-family: "Rubik-bold";
    font-size: 2.6rem
}

.title span {
    font-size: 3rem
}

.rich-text {
    line-height: normal
}

.rich-text>*:first-child {
    margin-top: 0
}

.description {
    font-family: "Inter_18pt-Regular";
    font-size: 18px
}

.description p {
    padding-top: 10px;
    font-family: "Inter_18pt-Regular";
    text-align: justify
}

.description p b {
    font-size: 20px;
    font-weight: 600
}

.domain-description p {
    padding-left: 15px;
    padding-right: 15px;
    font-family: Rubik-Regular;
    font-size: 15px;
    font-weight: 450;
    letter-spacing: .3px;
    text-align: left;
    line-height: 20px;
    transition: 0.6s
}

.w-container {
    margin: 0 auto;
    padding: 4.6rem 0
}

.work-header-section h2 {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 2.8rem;
    color: #213b55;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    letter-spacing: .3px
}

.work-header-section p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    text-align: left;
    color: #213b55
}

.work-header-section a {
    color: #0065f2;
    text-decoration: underline;
    font-weight: 500
}

.work-content-container {
    display: grid;
    grid-template-columns: 58% 43%;
    grid-gap: 0;
    padding-top: 1.3%;
    padding-bottom: 7%;
    padding: 5px 0
}

.work-section-box {
    width: 100%;
    height: auto;
    padding-bottom: 10px
}

.work-box-container {
    display: grid;
    grid-template-columns: 12% 85%;
    gap: 12px;
    margin-top: 1%;
    padding: .5em
}

.work-logo-box,
.work-service-content-container-right {
    margin: auto;
    margin-top: 13px
}

.work-section-box:hover .DevOps-logo-box svg {
    transform: scale(1.1);
    color: #fff
}

.work-logo-box svg {
    transition: transform 1s
}

.work-internal-content-box {
    padding-top: 15px;
    color: #213b55
}

.work-section-box:hover .work-internal-content-box h3,
.work-section-box:hover .work-internal-content-box p {
    color: #fff
}

h3,
.work-section-box:hover .work-internal-content-box p {
    color: #fff
}

.work-service-content-container-right {
    margin: auto
}

.work-service-content-container-right p {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 10.3x;
    text-align: center;
    font-family: "PublicSans-Bold", sans-serif;
    color: #213b55
}

.work-service-content-container-right p span {
    font-size: 27px;
    color: #0065f2;
    background-color: #f1f4f6;
    padding: .2em
}

.work-internal-content-box h3 {
    font-family: "PublicSans-Regular", sans-serif;
    font-size: 24px;
    line-height: 2rem;
    letter-spacing: normal;
    margin-bottom: 3%;
    color: #213b55
}

.work-internal-content-box p {
    font-family: "Inter_18pt-Regular";
    text-align: left;
    font-size: 1.29rem;
    font-weight: 300;
    line-height: 1.3;
    color: #213b55
}

.work-section-box:hover {
    color: #fff;
    background-color: #213b55
}

.work-logo-box svg {
    fill: currentColor;
    transition: transform 1s, color 0.3s
}

.work-section-box:hover .work-logo-box svg {
    color: #fff;
    transform: scale(1.1)
}

.brnifts-strp {
    background: #fff;
    padding: 64px 0;
    border: 1px solid #d3d3d3
}

.brnifts-strp .wrap {
    text-align: center
}

.brnifts {
    padding-top: 100px;
    background-color: #fff
}

.brnifts h3 {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1e293b;
    font-family: "PublicSans-Bold", sans-serif
}

.brnifts h2 {
    width: 71%;
    color: #021440;
    text-align: left;
    font-family: "PublicSans-Bold", sans-serif
}

.brnifts .industry-wrapper {
    padding-bottom: 7%
}

.brnifts-strp h2 {
    margin-bottom: 15px;
    color: #021440;
    letter-spacing: -.0833333rem
}

.brnifts-strp h2,
.brnifts-strp h1,
.plus p,
.featurPage .trust h2 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 42px;
    font-family: "PublicSans-Bold", sans-serif
}

.brnifts-strp h3 {
    text-align: center;
    font-size: 21px;
    padding-top: 15px;
    color: #213b55;
    font-family: "OpenSans-Regular";
    font-family: "PublicSans-Bold", sans-serif;
    margin: 0 auto
}

.brnifts h2 span {
    color: #0047bb;
    font-weight: 700
}

.brnifts-strp h2 span,
.brnifts-strp h1 span,
.plus p span {
    color: #0047bb;
    font-weight: 700;
    font-family: "ErasDemiITC";
    font-size: 3rem
}

.brnifts-strp-wrap {
    display: flex;
    justify-content: space-around;
    padding-top: 30px
}

.brnifts-strp-wrap p {
    color: #212a42;
    text-align: center;
    padding-top: 10px;
    font-family: "Inter_18pt-Regular";
    font-size: 16px
}

.brnifts .border-style,
.border-style {
    border-right: none
}

.brnifts .border-bttm-style,
.border-bttm-style {
    border-bottom: none
}

.brnifts .border-style-bth,
.border-style-bth {
    border-bottom: none;
    border-right: none
}

.brnifts ul li {
    min-height: 300px;
    float: left;
    width: 33.33%;
    padding: 20px 33px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    cursor: pointer
}

.brnifts ul li:hover {
    box-shadow: 5px 5px 100px rgb(0 0 0 / .12), 0 4px 8px rgb(0 0 0 / .06);
    background: #fff
}

.brnifts ul li span {
    display: block;
    text-align: left;
    width: 18%
}

.brnifts ul li span img {
    transition: transform 1s
}

.brnifts ul li span img:hover {
    transform: scale(1.1)
}

.icons-content {
    display: flex;
    width: 33%;
    flex-direction: column;
    padding: 15px 10px;
    align-items: center;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center
}

.icons-content:hover {
    cursor: pointer
}

.icons-content img {
    width: 80px;
    text-align: center;
    align-items: center
}

.brnifts ul li {
    min-height: 300px;
    float: left;
    width: 33.33%;
    padding: 20px 33px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative
}

.brnifts ul li:hover {
    box-shadow: 0 8px 25px rgb(0 0 0 / .12);
    background: #fff;
    transform: translateY(-6px);
    border-color: #fff0
}

.brnifts ul li span img {
    width: 70px;
    transition: transform 0.3s ease
}

.brnifts ul li:hover span img {
    transform: scale(1.15) rotate(3deg)
}

.brnifts ul li h3 {
    transition: color 0.3s ease
}

.brnifts ul li:hover h3 {
    color: #0065f2
}

.brnifts ul li p {
    transition: color 0.3s ease
}

.pricing-section {
    padding: 64px 20px;
    background-color: #f1f4f6;
    color: #213b55
}

.pricing-section-sec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: 500;
    font-family: "PublicSans-Bold", sans-serif
}

.pricing-section-sec h2 {
    width: 89%;
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 3rem;
    letter-spacing: -.0233333rem;
    line-height: 3rem;
    margin-bottom: 0;
    text-align: left;
    color: #021440
}

.busi {
    color: #0047bb
}

.pricing-section p.subtitle {
    font-family: "Inter_18pt-Regular";
    color: #434e5c;
    margin-bottom: 40px;
    font-size: 1.3rem
}

.pricing-section-sec p {
    line-height: 30px;
    font-size: 24px;
    padding-top: 10px;
    font-family: "Inter_18pt-Regular";
    text-align: left
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 10px;
    margin: 0 auto;
    text-align: center
}

.card-sec {
    box-sizing: border-box;
    background: #fff;
    padding: 26px 14px;
    border: 1px solid #ddd;
    transition: 0.3s;
    border: none;
    box-shadow: 0 6px 20px rgb(0 0 0 / .1);
    font-family: "Inter_18pt-Regular"
}

.card-sec:hover {
    box-shadow: 0 6px 20px rgb(0 0 0 / .1)
}

.card-sec h3 {
    font-size: 1.83rem;
    letter-spacing: -.0366667rem;
    line-height: 1.15;
    margin-bottom: 15px;
    text-align: center;
    color: #213b55;
    font-family: "PublicSans-Bold", sans-serif
}

.card-sec .usd {
    font-family: "PublicSans-Regular";
    font-size: 15px;
    margin-top: 3px
}

.card-sec p {
    text-align: center;
    font-family: "Inter_18pt-Regular";
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    margin-bottom: 0;
    color: #434e5c
}

.card-sec a {
    display: flex;
    margin-top: 30px;
    color: #0065f2;
    text-decoration: none;
    font-size: 15px;
    justify-content: center
}

.card-sec a:hover {
    text-decoration: underline
}

.price-sec {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 3rem;
    margin-bottom: -8px;
    display: flex;
    justify-content: center;
    color: #213b55
}

.price-sec1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.rupees,
.currency-symbol,
.price-value {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 37px;
    padding-top: 8px;
    padding-right: 3px;
    font-weight: 700;
    color: #213b55
}

.usd {
    font-size: 13px;
    text-align: center
}

.price-sec small {
    font-size: 14px
}

.price small {
    font-size: 14px;
    font-weight: 400;
    color: #333
}

.footer-links-sec {
    margin-top: 30px;
    text-align: center
}

.footer-links-sec a {
    margin: 0 10px;
    text-decoration: none;
    font-weight: 300;
    color: #000;
    font-size: 1.1rem
}

.footer-links-sec .see {
    color: #0065f2;
    font-size: 16px;
    text-decoration: underline;
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.footer-links-sec .see:hover {
    transform: translateY(-2px)
}

.btn-try {
    display: inline-block;
    margin-top: 30px;
    padding: 9px 30px;
    background-color: #fff0;
    text-decoration: none;
    border: 2px solid gray;
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.btn-try:hover {
    transform: translateY(-2px)
}

.section {
    max-width: 1160px;
    margin: auto;
    padding: 100px 0
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ffe6a3;
    background: #fff7d6;
    font-weight: 700;
    color: #8f7a2c
}

.title {
    font-family: "PublicSans-Bold", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin: 16px 0 8px;
    color: #021440;
    text-align: center
}

.sub {
    margin: 0 auto 28px;
    text-align: center;
    color: var(--muted);
    font-size: 19px
}

.sr-only {
    position: absolute;
    left: -9999px
}

.section .carousel {
    position: relative;
    max-height: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important
}

.viewport {
    overflow: hidden;
    border-radius: 24px
}

.track {
    display: flex;
    transition: transform .6s ease
}

.slide {
    flex: 0 0 100%;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.testo-card {
    background: var(--card);
    border-radius: 22px;
    border: 1px solid var(--border);
    position: relative
}

.video-wrap {
    padding: 22px;
    background: linear-gradient(180deg, #ebf1ff 0%, #eaf0ff 38%, #eef3ff 100%)
}

.video-surface {
    height: 280px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f0f4ff 0%, #e7edff 100%);
    display: grid;
    place-items: center;
    position: relative
}

.play {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(closest-side, #3c6bff, #2e57ff);
    box-shadow: 0 10px 20px rgb(46 87 255 / .35)
}

.play:before {
    content: "";
    display: block;
    border-left: 14px solid #fff;
    border-top: 9px solid #fff0;
    border-bottom: 9px solid #fff0;
    margin-left: 24px
}

.duration {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: #fff;
    border: 1px solid #e8ecf7;
    border-radius: 10px;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 700
}

.person-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 58px
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
    color: #213b55;
    font-weight: 800;
    display: grid;
    place-items: center
}

.avatar1 {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: url(data:image/jpeg;base64,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);
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover
}

.avatar2 {
    width: 80px;
    height: 70px;
    border-radius: 10px;
    background: url(data:image/jpeg;base64,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);
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover
}

.avatar3 {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: url(data:image/jpeg;base64,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);
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover
}

.name {
    font-weight: 700;
    font-size: 19px;
    color: #213b55
}

.role {
    font-size: 14px;
    color: #8391a7
}

.video-quote {
    margin-top: 14px;
    color: #5c6a83;
    font-style: italic
}

.quote-wrap {
    padding: 26px 26px 20px
}

.quote-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 70%)
}

.quote-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #ffefb0;
    display: grid;
    place-items: center;
    color: #d29900;
    font-weight: 900;
    margin-bottom: 10px
}

blockquote {
    margin: 0;
    color: #213b55;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 200
}

.profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    margin-bottom: 8%
}

.stars {
    color: #ffb400;
    font-size: 18px;
    margin-top: 6px
}

.stats {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.pill {
    flex: 1 1 180px;
    background: #fbfcff;
    border: 1px solid #edf1fb;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 6px 18px rgb(18 46 115 / .06) inset
}

.pill h5 {
    margin: 0 0 2px;
    font-size: 13px;
    color: #8a97af;
    font-weight: 700
}

.pill p {
    margin: 0;
    font-weight: 800;
    color: #213b55
}

.brand {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef3ff;
    display: grid;
    place-items: center;
    color: #315dff;
    font-weight: 800;
    flex: 0 0 40px
}

#s1:checked~.carousel .track {
    transform: translateX(0%)
}

#s2:checked~.carousel .track {
    transform: translateX(-100%)
}

#s3:checked~.carousel .track {
    transform: translateX(-200%)
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px
}

.dots label {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ccd6f4;
    cursor: pointer;
    transition: all .25s
}

#s1:checked~.carousel .dots label[for="s1"],
#s2:checked~.carousel .dots label[for="s2"],
#s3:checked~.carousel .dots label[for="s3"] {
    width: 22px;
    background: var(--primary)
}

.nav {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5ebfb;
    box-shadow: 0 8px 20px rgb(26 45 98 / .12);
    transform: translateY(-50%);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 5
}

.nav.prev {
    left: 0
}

.nav.next {
    right: 0
}

.nav.prev:after,
.nav.next:after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #8493b2;
    border-right: 2px solid #8493b2;
    display: block
}

.nav.prev:after {
    transform: rotate(225deg)
}

.nav.next:after {
    transform: rotate(45deg)
}

.nav {
    display: none
}

#s1:checked~.carousel label.nav.to-s3-prev {
    display: grid
}

#s1:checked~.carousel label.nav.to-s2-next {
    display: grid
}

#s2:checked~.carousel label.nav.to-s1-prev {
    display: grid
}

#s2:checked~.carousel label.nav.to-s3-next {
    display: grid
}

#s3:checked~.carousel label.nav.to-s2-prev {
    display: grid
}

#s3:checked~.carousel label.nav.to-s1-next {
    display: grid
}

.features-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
    position: relative;
    overflow: hidden
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgb(59 130 246 / .1), rgb(147 197 253 / .05));
    border-radius: 50%;
    z-index: 0
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgb(30 64 175 / .08), rgb(59 130 246 / .03));
    border-radius: 50%;
    z-index: 0
}

.container {
    z-index: 1
}

.section-header {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 27px;
    margin-bottom: 80px;
    text-align: center;
    position: relative
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Inter_18pt-Regular";
    border: 1px solid rgb(59 130 246 / .2)
}

.section-title {
    font-size: 3rem;
    text-align: left;
    color: #021440;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-family: "PublicSans-Bold", sans-serif
}

.section-subtitle {
    text-align: left;
    font-size: 1.3rem;
    color: #434e5c;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 12%;
    line-height: 1.7
}

.section-subtitle a,
.industry-header-description a,
.pricing-section-sec .subtitle a {
    text-align: left;
    color: #0065f2;
    text-decoration: underline
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 10px 30px rgb(59 130 246 / .3);
    position: relative;
    overflow: hidden
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
    transition: left 0.6s
}

.cta-primary:hover::before {
    left: 100%
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgb(59 130 246 / .4)
}

.features-container {
    align-items: start;
    margin-top: 80px
}

.features-sidebar {
    position: sticky;
    top: 100px
}

.sidebar-content {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgb(0 0 0 / .08);
    border: 1px solid rgb(59 130 246 / .1)
}

.sidebar-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px
}

.sidebar-text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px
}

.sidebar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 15px;
    border: 1px solid #e2e8f0
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    display: block
}

.stat-label {
    font-size: .9rem;
    color: #64748b;
    font-weight: 500
}

.features-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
}

.feature-item {
    background: #fff;
    border-radius: 5px;
    padding: 45px 28px;
    box-shadow: 0 15px 40px rgb(0 0 0 / .06);
    border: 1px solid rgb(59 130 246 / .08);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease
}

.feature-item:hover::before {
    transform: scaleX(1)
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 60px rgb(0 0 0 / .12)
}

.feature-header {
    box-shadow: 0 15px 28px rgb(209 209 209 / 86%);
    align-items: center;
    gap: 1px;
    margin-bottom: 25px;
    padding: 4%
}

.f-blue {
    background-color: #0774c7
}

.f-yellow {
    background-color: orange
}

.feature-icon {
    margin: 0 auto;
    width: 70px;
    height: auto;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0
}

.feature-title {
    width: 100%;
    text-align: center;
    margin-top: 3%;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    font-family: "Raleway-Medium";
    line-height: 1.3
}

.feature-title span {
    font-family: "Raleway-Regular";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.5
}

.feature-description {
    color: #434e5c;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    gap: 8px
}

.feature-link:hover {
    color: #1e40af;
    gap: 12px
}

.feature-link::after {
    content: '\2192';
    font-size: 1.2rem;
    transition: transform 0.3s ease
}

.feature-link:hover::after {
    transform: translateX(3px)
}

.industry-page {
    background-color: #f8fafc;
    padding-bottom: 4%
}

.flip-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 10px;
    gap: 60px
}

.flip-text-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.flip-text-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000
}

.flip-text-content>p {
    color: #555;
    font-size: 15px;
    margin: 0 0 10px
}

.flip-text-content>a {
    text-decoration: none;
    color: #e63946;
    font-weight: 500
}

.flip-title-list {
    display: flex;
    flex-direction: column;
    margin-top: 30px
}

.flip-title {
    border-bottom: 1px solid #ddd;
    padding: 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease
}

.flip-title h3 {
    font-family: "PublicSans-Bold", sans-serif;
    margin: 0;
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #021440
}

.flip-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease
}

.flip-details p {
    padding-left: 20px;
    margin: 13px 0;
    font-size: 1.2rem;
    color: #434e5c;
    line-height: 1.5
}

.flip-details ul {
    margin: 0;
    padding-left: 20px
}

.flip-details li {
    color: #444;
    font-size: 15px;
    margin-bottom: 5px
}

input[type="radio"] {
    display: none
}

#startup:checked~.flip-text-content .flip-title[for="startup"] .flip-details,
#manufacturers:checked~.flip-text-content .flip-title[for="manufacturers"] .flip-details,
#wholesalers:checked~.flip-text-content .flip-title[for="wholesalers"] .flip-details,
#service:checked~.flip-text-content .flip-title[for="service"] .flip-details,
#ecommerce:checked~.flip-text-content .flip-title[for="ecommerce"] .flip-details {
    max-height: 200px;
    opacity: 1;
    padding-top: 0
}

#startup:checked~.flip-text-content .flip-title[for="startup"],
#manufacturers:checked~.flip-text-content .flip-title[for="manufacturers"],
#wholesalers:checked~.flip-text-content .flip-title[for="wholesalers"],
#service:checked~.flip-text-content .flip-title[for="service"],
#ecommerce:checked~.flip-text-content .flip-title[for="ecommerce"] {
    color: #bed3fa
}

.flip-title h3 {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease
}

.flip-title h3::after {
    content: '\2192';
    position: absolute;
    right: -25px;
    top: 12px;
    font-size: 20px;
    color: #2563eb;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    visibility: hidden
}

.flip-title:hover h3::after {
    opacity: 1;
    transform: translateX(5px);
    visibility: visible
}

.flip-title:hover {
    background-color: #dbeafe8a
}

.flip-visual-content {
    width: 50%;
    position: relative
}

.flip-visual {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 350px
}

.flip-visual img {
    width: 60%;
    transition: transform 0.5s ease
}

.flip-visual:hover img {
    transform: scale(1.05)
}

#startup:checked~.flip-visual-content .flip-visual.startup,
#manufacturers:checked~.flip-visual-content .flip-visual.manufacturers,
#wholesalers:checked~.flip-visual-content .flip-visual.wholesalers,
#service:checked~.flip-visual-content .flip-visual.service,
#ecommerce:checked~.flip-visual-content .flip-visual.ecommerce {
    opacity: 1;
    transform: translateY(0)
}

.industry-header {
    padding: 100px 0 50px;
    background: #f8fafc;
    text-align: center
}

.industry-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 0
}

.industry-main-title {
    text-align: left;
    font-size: 3.1rem;
    color: #021440;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-family: "PublicSans-Bold", sans-serif
}

.industry-main-title {
    text-align: left;
    font-size: 3.1rem;
    color: #021440;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -.025em
}

.industry-header-description {
    font-size: 1.3rem;
    width: 80%;
    color: #434e5c;
    line-height: 1.7
}

.industry-all-types-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 14px 28px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: all 0.3s ease
}

.industry-all-types-button:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(37 99 235 / .25)
}

.industry-section {
    padding: 0 0;
    background: #f8fafc;
    position: relative
}

.industry-section:nth-child(even) {
    background: #f8fafc
}

.industry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.industry-layout-reverse {
    grid-template-columns: 1fr 1fr
}

.industry-layout-reverse .industry-text-content {
    order: 2
}

.industry-layout-reverse .industry-visual-content {
    order: 1
}

.industry-text-content {
    padding: 40px 0
}

.industry-label {
    display: inline-block;
    background: rgb(37 99 235 / .1);
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.industry-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0047bb
}

.industry-text {
    font-size: 1.3rem;
    color: #434e5c;
    line-height: 1.7;
    margin-bottom: 32px
}

.industry-feature-list {
    list-style: none;
    padding: 0
}

.industry-feature-item {
    display: flex;
    font-family: "Inter_18pt-Regular";
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: #475569
}

.industry-feature-icon {
    width: 20px;
    height: 20px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.industry-feature-icon svg {
    width: 12px;
    height: 12px;
    color: #fff
}

.industry-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 7%
}

.industry-illustration {
    width: 100%;
    max-width: 500px;
    height: 490px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgb(37 99 235 / .1)
}

.industry-illustration-svg {
    width: 200px;
    height: 200px;
    color: #2563eb
}

.industry-startup-bg {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%)
}

.industry-startup-bg .industry-illustration-svg {
    color: #059669
}

.industry-manufacturing-bg {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%)
}

.industry-manufacturing-bg .industry-illustration-svg {
    color: #d97706
}

.industry-wholesale-bg {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%)
}

.industry-wholesale-bg .industry-illustration-svg {
    color: #7c3aed
}

.industry-service-bg {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%)
}

.industry-service-bg .industry-illustration-svg {
    color: #0284c7
}

.industry-ecommerce-bg {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%)
}

.industry-ecommerce-bg .industry-illustration-svg {
    color: #dc2626
}

.industry-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.industry-floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgb(37 99 235 / .3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite
}

.industry-dot-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s
}

.industry-dot-2 {
    top: 30%;
    right: 25%;
    animation-delay: 2s
}

.industry-dot-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 4s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@media (max-width:1024px) {
    .brnifts h2 {
        width: 90%
    }

    .industry-wrapper {
        padding: 0 30px
    }

    .industry-main-title,
    .title,
    .title span,
    .pricing-section-sec h2,
    .brnifts-strp h2,
    .brnifts-strp h2 span {
        font-size: 2.5rem
    }

    .industry-layout {
        gap: 60px
    }

    .industry-title {
        font-size: 2.25rem
    }

    .industry-header-description {
        width: 100%
    }

    .industry-title {
        margin-bottom: 9px
    }
}

@media (max-width:768px) {

    .sub,
    .industry-header-description,
    .section-subtitle,
    .hero-description {
        font-size: 17px
    }

    .industry-wrapper {
        padding: 0 20px
    }

    .industry-header {
        padding: 80px 0 0
    }

    .industry-main-title {
        font-size: 2.5rem
    }

    .industry-section {
        padding: 20px 0
    }

    .industry-layout,
    .industry-layout-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .industry-layout-reverse .industry-text-content,
    .industry-layout-reverse .industry-visual-content {
        order: initial
    }

    .industry-title {
        font-size: 2rem
    }

    .brnifts h2 {
        width: 100%
    }

    .industry-visual-content {
        padding: 20px
    }

    .industry-illustration {
        max-width: 300px;
        height: 250px
    }

    .industry-illustration-svg {
        width: 150px;
        height: 150px
    }
}

.choose-us-section {
    padding: 100px 0;
    background: #fff
}

.choose-header {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 10px
}

.choose-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -.025em
}

.brnifts-strp .section-badge {
    text-align: center
}

.brnifts-strp .section-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 836px;
    padding: 0;
    line-height: 1.7
}

.choose-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin-top: 60px
}

.choose-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 21px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease
}

.choose-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgb(0 0 0 / .08);
    transform: translateY(-2px)
}

.choose-card:hover::before {
    transform: scaleX(1)
}

.choose-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px
}

.choose-icon {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease
}

.choose-card:hover .choose-icon {
    background: #eff6ff;
    border-color: #2563eb
}

.choose-icon svg {
    width: 24px;
    height: 24px;
    fill: #2563eb
}

.choose-number {
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px
}

.choose-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3
}

.choose-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7
}

.choose-highlight {
    color: #2563eb;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    font-family: "Inter_18pt-Regular";
    padding: 1px 0
}

.choose-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0
}

.choose-stat-item {
    text-align: center
}

.choose-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    display: block
}

.choose-stat-label {
    font-size: .875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px
}

@media (max-width:640px) {
    .stat-value {
        font-size: 1.1rem
    }

    .head {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .desc {
        max-width: unset
    }

    .grid {
        grid-template-columns: 1fr
    }

    .feature-title {
        font-size: 1.3rem
    }

    .feature-header {
        margin-bottom: 13px
    }

    .feature-link {
        font-size: 1rem
    }

    .features-main {
        grid-template-columns: 1fr
    }

    .industry-section {
        padding: 10px 0
    }

    .industry-header {
        border: none;
        padding: 30px 0 3px
    }
}

@media (max-width:768px) {
    .choose-us-section {
        padding: 60px 20px
    }

    .choose-title {
        font-size: 2.25rem
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .choose-card {
        padding: 36px 28px
    }

    .choose-stats {
        flex-direction: column;
        gap: 32px;
        align-items: center
    }

    .choose-feature-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left
    }

    .choose-icon {
        margin: 0 0 16px 0
    }
}

@media (max-width:480px) {
    .choose-us-section {
        padding: 40px 16px
    }

    .choose-title {
        font-size: 1.875rem
    }

    .choose-card {
        padding: 28px 20px
    }
}

@media screen and (max-width:1250px) {

    .wrap,
    .container,
    .industry-wrapper {
        width: 100%;
        padding: 0 30px
    }
}

@media (max-width:1024px) {
    .hero-content {
        gap: 6px
    }

    .hero-title {
        font-size: 3rem
    }

    .hero-title .highlight,
    .industry-title .highlight {
        font-size: 3rem
    }

    .hero-subtitle {
        font-size: 1.375rem
    }

    .hero-description {
        font-size: 1.4rem
    }
}

@media (max-width:768px) {
    .slide {
        padding: 1px
    }

    .video-wrap {
        padding: 1%
    }

    blockquote {
        font-size: 16px
    }

    .container {
        padding: 0 20px
    }

    .brnifts .industry-wrapper {
        padding: 0
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 0
    }

    .hero-title {
        font-size: 3rem
    }

    .hero-subtitle {
        font-size: 1.3rem
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: none
    }

    .cta-buttons {
        justify-content: center
    }

    .dashboard-mockup {
        transform: none;
        max-width: 500px
    }

    .dashboard-mockup:hover {
        transform: scale(1.02)
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2px
    }

    .chart-bars {
        height: 85px
    }

    .chart-header {
        margin-bottom: 4px
    }
}

@media (max-width:1024px) {
    .industry-layout {
        grid-template-columns: 47% 53%;
        gap: 0
    }

    .industry-visual-content {
        padding: 0
    }

    .flip-container {
        gap: 0
    }

    .flip-details p {
        margin: 2px 0
    }

    .hero-content {
        height: auto
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .features-sidebar {
        position: static
    }

    .feature-title span {
        font-size: 1em
    }

    .section-title,
    H2 span {
        font-size: 2.5rem
    }

    .section-header {
        gap: 7px
    }

    .features-main {
        gap: 10px
    }

    .section-header,
    .features-container {
        margin-bottom: 0;
        margin-top: 0
    }

    .features-section {
        padding: 42px 0
    }

    .feature-header {
        align-items: baseline
    }

    .feature-item {
        padding: 15px
    }
}

@media (max-width:768px) {
    .section {
        padding: 50px 0
    }

    .features-section {
        padding: 20px 0
    }

    .container {
        padding: 0 20px
    }

    .section-title {
        font-size: 2.2rem
    }

    .cta-container {
        flex-direction: column;
        align-items: center
    }

    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 15px
    }

    .sidebar-stats {
        grid-template-columns: 1fr
    }

    .feature-description,
    .industry-text,
    .industry-feature-item,
    .brnifts-strp-wrap p,
    .card-sec p {
        font-size: 15px
    }

    .industry-visual-content {
        display: none
    }

    .industry-layout {
        grid-template-columns: 100%
    }

    .industry-text-content {
        padding: 0 0
    }
}

@media (max-width:480px) {

    .section-title,
    .section-title,
    H2 span,
    .brnifts-strp h2,
    .industry-main-title,
    .brnifts h2,
    .brnifts h2 span,
    .title,
    .title span,
    .pricing-section-sec h2,
    .brnifts-strp h2 span {
        font-size: 2.1rem;
        line-height: 2.4rem
    }

    .brnifts .industry-wrapper {
        padding: 0%;
        margin-top: 5%
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem
    }

    .feature-title {
        font-size: 1.2rem
    }

    .price-sec {
        font-size: 1.8rem
    }

    .rupees {
        padding-top: 3px
    }

    .card-sec h3 {
        font-size: 1.4rem;
        margin-bottom: 9px
    }

    .card-sec p {
        margin-top: 8px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 12px
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 5px
    }

    .hero-title .highlight,
    .industry-title .highlight {
        font-size: 2.5rem
    }

    .hero-subtitle {
        margin-bottom: 10px;
        font-size: 18px
    }

    h1 {
        padding: 6px 0
    }

    .hero-content {
        padding: 50px 0
    }

    .brnifts ul li span img,
    .brnifts ul li span img {
        width: 53px
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 1rem
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .dashboard-content {
        padding: 16px
    }

    .chart-container,
    .recent-transactions {
        padding: 16px
    }

    #startup:checked~.flip-text-content .flip-title[for="startup"] .flip-details,
    #manufacturers:checked~.flip-text-content .flip-title[for="manufacturers"] .flip-details,
    #wholesalers:checked~.flip-text-content .flip-title[for="wholesalers"] .flip-details,
    #service:checked~.flip-text-content .flip-title[for="service"] .flip-details,
    #ecommerce:checked~.flip-text-content .flip-title[for="ecommerce"] .flip-details {
        max-height: 300px
    }
}

@media (max-width:786px) {
    .section-header {
        grid-template-columns: 1fr;
        margin-bottom: 4%
    }

    .work-content-container {
        grid-template-columns: 1fr;
        grid-gap: 20px
    }

    .work-service-content-container-right p {
        font-size: 28px
    }

    .pricing-section-sec {
        display: flex;
        flex-direction: column
    }

    .head {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .a-title {
        font-size: 2.5rem;
        margin-bottom: 0
    }

    .section-subtitle {
        padding-top: 0%
    }

    .section-title {
        margin-bottom: 6px
    }
}

@media (max-width:1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .a-title {
        font-size: 2.5rem
    }
}

@media (max-width:890px) {
    .flip-container {
        flex-direction: column
    }

    .flip-text-content {
        width: 100%;
        height: auto
    }

    .flip-visual-content {
        display: none
    }

    .brnifts {
        padding-top: 27px
    }

    .flip-details p {
        margin: 12px 0
    }
}

@media (max-width:980px) {
    .industry-illustration {
        width: 100%;
        max-width: 427px
    }

    .slide {
        grid-template-columns: 1fr
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr
    }

    .hero-section {
        padding-top: 11%;
        height: auto;
        background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%)
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 70%;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgb(59 130 246 / .05) 0%, rgb(147 197 253 / .1) 100%);
        z-index: 1
    }

    .content-left,
    .hero-title,
    .hero-subtitle,
    .hero-description {
        max-width: 100%;
        text-align: center
    }

    .cta-buttons {
        justify-content: center
    }

    .hero-badge {
        margin-bottom: 9px
    }

    .hero-description {
        margin-bottom: 18px
    }
}

@media (max-width:480px) {
    .flip-title h3 {
        font-size: 1.3rem
    }

    .industry-header-description,
    .pricing-section p.subtitle,
    .brnifts-strp .section-subtitle,
    .sub,
    .industry-header-description,
    .section-subtitle,
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.4
    }

    .industry-header-description {
        padding-bottom: 3%
    }

    .industry-feature-item {
        margin-bottom: 8px
    }

    .industry-all-types-button {
        font-size: 1rem;
        padding: 12px 24px
    }

    .industry-title {
        font-size: 19px
    }

    .industry-illustration {
        max-width: 280px;
        height: 220px
    }

    .industry-illustration-svg {
        width: 120px;
        height: 120px
    }
}

@media (max-width:360px) {
    .dashboard-mockup {
        max-width: 290px
    }

    .dashboard-nav {
        gap: 9px
    }

    .feature-description,
    .industry-text,
    .industry-feature-item,
    .brnifts-strp-wrap p,
    .card-sec p {
        font-size: 14px
    }

    .flip-title h3 {
        font-size: 1.2rem
    }

    .flip-title {
        padding: 10px 0
    }
}

.reshdr {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 13;
    display: none
}

.reshdr ul {
    background: #014274
}

.reshdr ul li {
    float: left;
    width: 20%;
    margin: 0;
    padding: 10px;
    border-right: 1px solid #f4f4f4
}

.reshdr ul li a {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-align: center;
    align-items: center;
    color: #fff
}

.reshdr ul li i {
    color: #fff;
    margin-bottom: 5px
}

.tpHdr {
    background: #002d77;
    padding: 12px 0;
    position: relative;
    z-index: 1
}

.wrap {
    max-width: 1170px;
    min-width: 320px;
    margin: 0 auto;
    width: 96%
}

.tp-container {
    display: flex;
    align-items: center;
    justify-content: center
}

.tpHdr .lftpnl {
    float: left
}

ul {
    margin-left: 0
}

.tpHdr .lftpnl li {
    float: left;
    margin-right: 25px
}

.tpHdr .lftpnl li a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    font-family: "Inter_18pt-Regular";
    font-size: 14px;
    text-decoration: none
}

ul li {
    list-style: none
}

ul:after {
    content: "";
    display: block;
    clear: both
}

.tpHdr .marquee-container {
    margin: 0 auto;
    width: 35%;
    text-align: center;
    line-height: 2.5rem;
    background: #fff0
}

.tpHdr .mil {
    float: right;
    color: #fff;
    font-family: "Inter_18pt-Regular";
    font-size: 14px;
    text-decoration: none;
    margin: 0
}

.error-msg,
.success-msg {
    color: #fff
}

img,
svg {
    vertical-align: middle
}

.clear {
    clear: both
}

.header-container {
    width: 100%;
    background: rgba(49, 56, 62, 255);
    min-height: 75px;
    scroll-behavior: smooth
}

nav {
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 0;
    box-sizing: border-box;
    z-index: 10;
    align-items: center;
    padding: 13px 0
}

.logo-section {
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding-top: 5px
}

.menu-icon {
    display: none;
    padding: 15px 15px;
    float: right;
    margin-right: 10px;
    cursor: pointer
}

.navigation-menu {
    display: flex;
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    align-items: center
}

.navigation-menu ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: right;
    flex-grow: 1
}

.navigation-menu ul li {
    padding: 0 5px;
    margin-right: 5px
}

.navigation-menu ul li a {
    text-decoration: none;
    line-height: 25px;
    color: #444;
    font-weight: 500;
    font-size: 17px
}

.navigation-menu ul li.active a {
    color: #2563eb
}

.navigation-menu ul li a:hover {
    transition: 0.1s
}

.nav-link {
    line-height: 3rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Inter_18pt-Regular";
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 500
}

header nav ul li {
    position: relative
}

header nav ul.nv li a:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 2px;
    background: #0065fd;
    bottom: -4px;
    width: 0;
    transition: 0.3s ease
}

header nav ul.nv li:hover a:after {
    width: 87%
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    grid-gap: 0;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 13;
    align-items: center;
    box-shadow: 0 0 1px 0 #0c1a4b
}

ul.subNv li {
    margin-right: 6px;
    position: relative;
    padding: 0
}

.btns-head {
    background: #fff;
    color: #002d77;
    padding: 8px 19px;
    font-family: "Inter_18pt-Regular";
    border: 1px solid #002d77;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgb(59 130 246 / .3)
}

.btns-head-second {
    background: #008308;
    color: #fff !important;
    font-family: "Inter_18pt-Regular";
    padding: 8px 19px;
    border: 1px solid #008308;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgb(59 130 246 / .3)
}

.btns-head:hover,
.btns-head-second:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(59 130 246 / .4)
}

.hamburger {
    background: #0b86e6;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    transition: .2s ease-out
}

.hamburger::before {
    background: #0b86e6;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: 5px
}

.hamburger::after {
    background: #0b86e6;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: -5px
}

.toggle-btn:checked~.navigation-menu {
    max-height: 360px
}

.toggle-btn:checked~.logo-section .hamburger-menu .menu-icon .hamburger {
    background: #fff0
}

.toggle-btn:checked~.logo-section .hamburger-menu .menu-icon .hamburger::before {
    transform: rotate(-45deg);
    top: 0
}

.toggle-btn:checked~.logo-section .hamburger-menu .menu-icon .hamburger::after {
    transform: rotate(45deg);
    top: 0
}

.trial .wrap {
    position: relative;
    z-index: 1
}

.trial {
    background: #f1f4f6;
    padding: 4% 0 7%;
    border-top: 1px solid #dbd8d8;
    position: relative
}

.trial h2 {
    font-size: 3rem;
    color: #021440;
    text-align: center;
    letter-spacing: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px
}

.trial h2 span {
    color: #0047bb;
    font-size: 44px;
    font-family: "ErasITC-Medium";
    font-weight: 700
}

.trial p {
    font-size: 20px;
    line-height: 1.4;
    color: #434e5c;
    margin-bottom: 40px;
    text-align: center
}

.trial .btngrp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px
}

.trial .btngrp .btn:hover {
    background: #0065f2;
    opacity: 1;
    color: #fff
}

.trial .btngrp .btn {
    text-decoration: none;
    font-family: "Inter_18pt-Regular";
    box-shadow: 0 10px 15px rgb(0 0 0 / .3);
    margin: 0;
    margin-right: 20px;
    border-radius: 5px;
    background: #008308;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.5;
    padding: 11px 19px
}

.trial .btn img {
    margin-right: 7px;
    width: 21px
}

.trial .btngrp .btn:hover {
    box-shadow: none
}

.trial .btngrp .btn:last-child:hover {
    background: #008308
}

.trial .btngrp .btn:last-child {
    margin-right: 0;
    background: #0047bb;
    color: #fff;
    text-align: center
}

.strp-hide .btngrp {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px
}

.strp-hide .btngrp .btn1 {
    box-shadow: 0 10px 15px rgb(0 0 0 / .3) !important;
    margin: 0;
    border: none !important;
    background: #0065f2 !important;
    font-family: "Poppins-Regular", sans-serif;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.5;
    padding: 9px 20px !important
}

.strp-hide .btngrp .btn1:hover {
    box-shadow: none !important
}

.strp-hide .btngrp .btn2:hover {
    box-shadow: none
}

.strp-hide .btngrp .btn2 {
    background: orange;
    color: #000;
    font-family: "Poppins-Regular", sans-serif;
    padding: 9px 20px !important;
    margin: 0;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.5;
    font-size: 14px;
    padding: -100px 0;
    box-shadow: 0 10px 15px rgb(0 0 0 / .3);
    text-align: center
}

.strp-hide .btngrp footer .btnGrp .btn {
    margin-right: 0;
    margin-left: 3px;
    border-radius: 3px;
    background: #fff0;
    color: #fff;
    font-size: 12px;
    border: 1px solid #fff
}

.wrapper {
    position: relative
}

.playpause {
    background-image: url(http://png-4.findicons.com/files/icons/2315/default_icon/256/media_play_pause_resume.png);
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: contain;
    background-position: center;
    z-index: 1
}

.wrapper {
    display: inline-flex;
    list-style: none;
    width: 100%;
    justify-content: center;
    padding-left: 0rem
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgb(0 0 0 / .1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(.68, -.55, .265, 1.55)
}

.wrapper span i {
    font-size: 20px
}

.wrapper .icon:hover i {
    color: #e1d1d1
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
    z-index: 2
}

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 69px;
    right: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / .05);
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    background-color: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.cd-top i {
    color: #fff
}

.pricing-section {
    padding: 64px 20px;
    background-color: #f1f4f6;
    color: #213b55
}

.pricing-section-sec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: 500;
    font-family: "PublicSans-Bold", sans-serif
}

.pricing-section-sec h2 {
    width: 89%;
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 3rem;
    letter-spacing: -.0233333rem;
    line-height: 3.2rem;
    margin-bottom: 0;
    text-align: left;
    color: #021440
}

.busi {
    color: #0047bb
}

.pricing-section p.subtitle {
    font-family: "Inter_18pt-Regular";
    color: #434e5c;
    margin-bottom: 40px;
    font-size: 1.3rem
}

.section-subtitle a,
.industry-header-description a,
.pricing-section-sec .subtitle a {
    text-align: left;
    color: #0065f2;
    text-decoration: underline
}

.pricing-section-sec p {
    line-height: 30px;
    font-size: 24px;
    padding-top: 10px;
    font-family: "Inter_18pt-Regular";
    text-align: left
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 10px;
    margin: 0 auto;
    text-align: center
}

.card-sec {
    box-sizing: border-box;
    background: #fff;
    padding: 26px 14px;
    border: 1px solid #ddd;
    transition: 0.3s;
    border: none;
    box-shadow: 0 6px 20px rgb(0 0 0 / .1);
    font-family: "Inter_18pt-Regular"
}

.card-sec:hover {
    box-shadow: 0 6px 20px rgb(0 0 0 / .1)
}

.card-sec h3 {
    font-size: 1.83rem;
    letter-spacing: -.0366667rem;
    line-height: 1.15;
    margin-bottom: 15px;
    text-align: center;
    color: #213b55;
    font-family: "PublicSans-Bold", sans-serif
}

.card-sec .usd {
    font-family: "PublicSans-Regular";
    font-size: 15px;
    margin-top: 3px
}

.card-sec p {
    text-align: center;
    font-family: "Inter_18pt-Regular";
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    margin-bottom: 0;
    color: #434e5c
}

.card-sec a {
    display: flex;
    margin-top: 30px;
    color: #0065f2;
    text-decoration: none;
    font-size: 15px;
    justify-content: center
}

.card-sec a:hover {
    text-decoration: underline
}

.price-sec {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 3rem;
    margin-bottom: -8px;
    display: flex;
    justify-content: center;
    color: #213b55
}

.price-sec1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.rupees {
    font-family: "PublicSans-Bold", sans-serif;
    font-size: 24px;
    padding-top: 15px;
    padding-right: 3px;
    font-weight: 700;
    color: #213b55
}

.usd {
    font-size: 13px;
    text-align: center
}

.price-sec small {
    font-size: 14px
}

.price small {
    font-size: 14px;
    font-weight: 400;
    color: #333
}

.btn-try {
    display: inline-block;
    margin-top: 30px;
    padding: 9px 30px;
    background-color: #fff0;
    text-decoration: none;
    border: 2px solid gray;
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.btn-try:hover {
    transform: translateY(-2px)
}

@media screen and (max-width:780px) {
    header a.logo {
        width: 68%
    }
}

@media only screen and (max-width:1070px) {
    header nav ul.nv li a:after {
        display: none
    }

    .btns-head:hover,
    .btns-head-second:hover {
        box-shadow: none
    }

    .btns-head {
        background: #fff0;
        border: none;
        box-shadow: none;
        padding: 0
    }

    .btns-head-second {
        background: #fff0;
        border: none;
        box-shadow: none;
        padding: 0
    }

    nav {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0;
        z-index: 1;
        padding: 10px 0
    }

    .navigation-menu ul {
        display: none
    }

    .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 650;
        text-transform: capitalize
    }

    .nav-link-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 650;
        text-transform: capitalize;
        background-color: inherit;
        padding: 0
    }

    .navigation-menu ul li {
        padding: 10px 0
    }

    .navigation-menu ul li a {
        font-size: 16px;
        color: #fff;
        padding-bottom: 0
    }

    .menu-icon {
        display: flex
    }

    #toggle-btn:checked~.navigation-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: left;
        background: linear-gradient(135deg, #002d77, #002d77);
        margin-left: 0;
        top: 4%
    }

    .navigation-menu {
        display: contents
    }

    header .wrap {
        width: 100%;
        padding: 0 0
    }

    ul.subNv li {
        text-align: center
    }

    .subNv {
        padding-bottom: 15px
    }

    .logo-section {
        padding-bottom: 2%
    }

    .logo img {
        padding-left: 5%
    }

    .navigation-menu ul li.active a {
        color: #f2b500
    }
}

@media(max-width:400px) {
    .logo img {
        width: 92%;
        height: auto
    }
}

@media only screen and (max-width:360px) {
    nav {
        display: grid;
        grid-template-columns: 1fr;
        z-index: 1
    }

    .navigation-menu {
        background-color: linear-gradient(57deg, #00c6a7, #1e4d92)
    }

    .navigation-menu ul {
        display: none
    }

    .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 650;
        text-transform: capitalize
    }

    .nav-link-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 650;
        text-transform: capitalize;
        background-color: inherit;
        padding: 0
    }

    .navigation-menu ul li a {
        font-size: 16px;
        color: #fff
    }

    .menu-icon {
        display: flex
    }

    #toggle-btn:checked~.navigation-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: left;
        background-color: #fff
    }
}

@media(max-width:1024px) {
    .pricing-section-sec h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        line-height: 2.2rem
    }
}

@media(max-width:480px) {

    .pricing-section-sec h2,
    .section-title h2,
    H2 span {
        font-size: 2rem
    }

    .pricing-section p.subtitle {
        margin-bottom: 21px
    }

    .pricing-section {
        padding: 19px 2px
    }

    .why-pro-text p,
    .section-title p,
    .pricing-section p.subtitle {
        font-size: 15px
    }
}

@media(max-width:786px) {
    .pricing-section-sec {
        display: flex;
        flex-direction: column
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / .8)
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 0;
    width: 80%;
    max-width: 700px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .5);
    text-align: center
}

.modal-content iframe {
    border-radius: 5px;
    min-width: 100%;
    height: 26em
}

.close {
    position: absolute;
    top: -16px;
    right: -26px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    cursor: pointer
}

.modal.slctPup .modal-content {
    position: relative;
    padding-bottom: 40px
}

.popup.mdgMdl .modal-content .modal-body {
    display: block;
    padding: 20px
}

.footer {
    background-color: var(--bg-deep);
    color: var(--text-main);
    padding:7% 4% 2%;
    position: relative;
    overflow: visible;
  
}

.footer-wave {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    overflow: visible;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 20px;
}

.footer-wave .shape-line {
    stroke: rgba(255,255,255,0.12);
    stroke-linecap: round;
}

.subscribe-tab {
    position: absolute;
    top: 0px; /* moved higher so the white box clears logos on most screens */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    z-index: 10;
} 

.subscribe-tab input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: #212d40;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.error-msg{
   display:none;
   text-align:center;
   margin-bottom:30px;
   margin-top: -52px;
}

.subscribe-tab input::placeholder {
    color: #131315;
}

.subscribe-tab input:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50px;
}

.subscribe-tab input:not(:last-child) {
    border-right: 1px solid rgba(29, 30, 31, 0.2);
}

.subscribe-tab .subscribe-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
 font-family: "Inter_18pt-Regular";
}

.subscribe-tab .subscribe-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -2px rgba(59, 130, 246, 0.4);
}

.footer::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 350px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.5fr;
    gap: 3%;
    /* grid-template-columns: 1fr 0.8fr 1fr 1.5fr;
    gap: 130px; */
    position: relative;
    z-index: 10;
}

.footer-content h4{
  font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
}

.brand-col .logo-area {
    margin-bottom: 24px;
}

.logo-img {
    max-width: 290px;
    height: auto;
    width: auto;
    display: block;
}

.brand-description p{
    margin-top: 12%;
    font-size: 1.4em;
    line-height: 1.8;
    color: var(--text-main);
  font-family: cursive;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #ffffff 0%, #7785ff 100%);
    /* background: linear-gradient(135deg, #e0f2fe 0%, #2f10b9 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description p {
    margin: 0; 
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.contact-item:hover .icon-circle {
    background: rgba(59, 130, 246, 0.2);
}

.social-links {
    display: flex;
    gap: 16px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5);
    border-color: transparent;
}

.footer-col h4 {font-family: system-ui;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover, .feature-items a:hover {
    color: var(--accent-blue);
    transform: translateX(8px);
}

.feature-list {
    list-style: none;
}

.feature-items  a{ text-decoration: none;transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #cbd5e1;
}

.check-icon {
    color: var(--accent-green);
}

.demo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.demo-card h4 {
    margin-bottom: 16px;
    font-size: 15px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Inline email tab for demo card */
.demo-inline-form .email-tab {
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(2,6,23,0.12);
    border: 1px solid rgba(2,6,23,0.06);
    width: 100%;
}

.demo-inline-form .email-tab input {
    border: none;
    background: transparent;
    padding: 14px 20px;
    min-width: 0;
    flex: 1;
    color: #0f172a;
    font-size: 15px;
    border-radius: 999px;
}

.demo-inline-form .email-tab input::placeholder {
    color: #94a3b8;
}

.demo-inline-form .submit-btn.inline {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(37,99,235,0.18);
    border: none;
}

@media (max-width: 480px) {
    .demo-inline-form .email-tab {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    .demo-inline-form .submit-btn.inline {
        width: 100%;
    }
}

.input-group-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
}

input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: var(--font-family);
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    padding: 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.4);
    filter: brightness(1.1);
}

.footer-bottom {
    max-width: 1400px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

.legal-links {
    display: flex;
    gap: 32px;
}

.legal-links a {
    color: #859cbd;
    /* color: inherit; */
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer {
        padding: 80px 32px 32px;
    }
    .error-msg{
        margin-top: -20px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .demo-card {
        padding: 20px;
    }
    .subscribe-tab {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 32px;
    }
.footer-bottom { margin: 0px auto 0;padding-top: 10px;}
     .subscribe-tab {
        top: -9px;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 98%;
        padding: 10px;  border-radius: 20px; gap: 7px;
    }
.subscribe-tab input {padding: 14px 7px;    font-size: 13px;}
.subscribe-tab .subscribe-btn{padding: 14px 12px;font-size: 11px;}
    .subscribe-tab input {
        border-right: 1px solid rgba(5, 5, 5, 0.2);
        padding: 12px 16px;
        border-right: none;
        border-radius: 12px;
    }

    .subscribe-tab input:focus {
        border-radius: 12px;
    }
.footer-col h4{    margin-bottom: 8px;}
    .subscribe-tab input {
        border-right: 1px solid rgba(5, 5, 5, 0.2);
        padding: 12px 16px;
        border-right: none;
        border-radius: 12px;
    }

    .subscribe-tab input:focus {
        border-radius: 12px;
    }

    
   
    .footer-content {
        grid-template-columns: 1fr;
    }
    .input-group-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* .subscribe-tab {
      
        grid-template-columns: 1fr;
        padding: 10px;
        border-radius: 12px;
        gap: 12px;
        max-width: 94%;
    } */

    /* Ensure the logo stays above the subscribe tab */
    .logo-area {
        position: relative;
        z-index: 300;
    }
}

/*@media (max-width: 480px) {
    .subscribe-tab {
        padding: 12px;
        border-radius: 16px;
    }
    .subscribe-tab input {
        padding: 14px;
    }
    .logo-img {
        height: auto;
        max-width: 160px;
    }
    .social-links {
        gap: 12px;
    }
}*/

.clear {
    clear: both
}

.brnifts {
    margin-bottom: 0rem;
    padding: 20px 0
}

.brnifts-strp-wrap {
    padding: 10px 0;
    gap: 0rem
}

.brnifts ul li p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

@media screen and (max-width:780px) {
    .brnifts ul li {
        padding: 8px 10px;
        width: 49.33%;
        min-height: 265px;
        border: none
    }

    header a.logo img {
        padding-top: 4px
    }
        .trial {
        background: #f1f4f6;
        padding: 60px 0px 90px;
    }
}

@media screen and (max-width:700px) {
    .feature-description {
        margin-bottom: 0
    }

    .brnifts ul li {
        min-height: 200px
    }

    .brnifts-strp-wrap {
        display: flex;
        flex-direction: column
    }

    .icons-content {
        width: 100%
    }
}

@media screen and (max-width:460px) {

    h1,
    .features-details .list h3,
    .serve h3,
    .contact-section h2,
    .support-section h2,
    .brnifts-strp h2 {
        margin-bottom: 0;
        padding: 12px 0;
        font-size: 2em
    }

    .wrap,
    .container,
    .industry-wrapper {
        width: 100%;
        padding: 0 10px
    }

    .brnifts ul li {
        width: 100%;
        padding: 15px 15px;
        border: none
    }

    .trial .btngrp {
        flex-direction: column;
        gap: 7px
    }

    .trial .btngrp .btn {
        text-align: center;
        /* margin-bottom: 15px; */
        margin-right: 0
    }

    .btn {
        width: 100%
    }

  
    .legal-links a{font-size: 12px;}.legal-links {
      gap: 1px;
}
}

@media screen and (max-width:560px) {
    .brnifts-strp {
        padding: 22px 0;
        border: none
    }

    footer {
        padding: 29px 0 0
    }

    header a.logo img {
        width: 70%;
        padding-top: 4px
    }

    .wrap {
        padding: 0 15px
    }

    .industry-main-title,
    .brnifts h2 span,
    H2 span,
    .trial h2,
    .trial h2 span,
    .pricing-section-sec h2,
    .brnifts h2 {
        font-size: 2rem
    }

    .trial p {
        font-size: 16px
    }

    .brnifts ul li {
        width: 100%;
        padding: 15px 15px;
        border: none
    }
}@media only screen and (max-width:360px){.subscribe-tab input { padding: 12px 1px;}.subscribe-tab{max-width: 100%;
        padding: 7px;}    .subscribe-tab .subscribe-btn {
        padding: 12px 9px;
        font-size: 10px;
    }}